cancel
Showing results for 
Search instead for 
Did you mean: 

SSF error: Decoding not possible

Former Member
0 Kudos

Hi all,

I need to get the absolute URI from a DOC_ID (TOAHR table), to display an employee photo in the browser.

I'm trying with the following FM:

SCMS_AO_URL_READ

ARCHIVELINK_URL_GENERATE

but both returns me sy-subrc = 0, the same URL and the same error message:

"SSF error: Decoding not possible"

when I'm copying the returned URL in the browser...

anybody could tell me what's the problem / error?

Thanks!

Miguel Angel.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hey,

have you solved the problem?

I have exactly the same problem at the moment.

Thanks!

Former Member
0 Kudos

ok i've got it....

i used cl_crm_documents=>get_with_url to geht the urls.

the returning value is cutted in the gui after some chars. thats why copy and past didn't work for me.

but variable conatains the complete url, althoug the complete url isnt shown on the gui.

i tried something like this, and it worked:

CALL FUNCTION 'CALL_BROWSER'

EXPORTING

URL = lv_url

EXCEPTIONS

FRONTEND_NOT_SUPPORTED = 1

FRONTEND_ERROR = 2

PROG_NOT_FOUND = 3

NO_BATCH = 4

UNSPECIFIED_ERROR = 5

OTHERS = 6

.