Archive url access throws error "SSF error: Decoding not possible"

Hi
We are using function module HRWPC_RFC_EP_READ_PHOTO_URI to pull the photo of an employee in ESS.
When we paste the url in browser we get following error
SSF error: Decoding not possible
Can anyone help to resolve this.
regards
barin

Barin,
check these links
       1060613       SSF error, Decoding not possible       
     983550      SSF-Error occurs when viewing attachments of a solution
https://forums.sdn.sap.com/click.jspa?searchID=17894100&messageID=5942357
https://forums.sdn.sap.com/click.jspa?searchID=17894100&messageID=6347898
Thanks
Bala Duvvuri

Similar Messages

  • SSF error: Decoding not possible

    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.

    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

  • Document Contains Errors. Approval is not Possible.

    I have a SC approval that errored out when coming back to SRM. We run RBBP_OFFLINE_EVAL program periodically throughout the day to pick up offline approvals from users. In the spool list, I see this message:
    Document Contains Errors. Approval is not Possible. And the system gives me the WI ID, SC # and the object type BUS2121.
    I've never seen such an error before. The document here...is it referring to the approval email itself? We instruct our users to not edit the approval email in any way. They just have to click on the approval link and click on Send in Outlook. I don't know if the document it's referring to is the SC or the approval email.
    Can anyone help?
    SN

    Hi,
    You are right. This error is the issue. To answer your other question why this message was not raised earlier;the problem could be that at the time of sc creation, there might be sufficient budget. But because your shopping cart was in approval for some time, it is possible that some more shopping carts have been raised with the same WBS and got approved. This would reduce the overall budget available. When the shopping cart is approved, one more check is done by the system and this time there was no sufficient budget.Hence the error is displayed. Only option for you now would be to ask FI people to increase budget or resubmit the cart by changing the value of the shopping cart.
    Regards,
    Sanjeev

  • I want to upgrade the software (currently I have Mac OS X 10.6.4) but when the mac is downloading the new version i get an error message and is not possible get the most updated software: Mac OS X 10.6.8 or either the most recent itunes why?!?!?!

    I want to upgrade the software (currently I have Mac OS X 10.6.4) but when the mac is downloading the new version i get an error message and is not possible get the most updated software: Mac OS X 10.6.8 or either the most recent itunes why?!?!?!

    Then you either have a network problem or a hardware problem or a corrupted hard drive. You might try:
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    You can also try downloading from another computer on a different network connection.

  • Dump - Access using NULL object reference is not possible!!!

    Hi,
    I'm using the BCS class for sending HTM format email so i use the below code for that its working,
    DATA: gr_document      TYPE REF TO cl_document_bcs,
    gr_document = cl_document_bcs=>create_document(
                          i_type    = 'HTM'
                           i_text    = t_html
                           i_importance = '5'
                           i_subject = gc_subject ).
    Next task is to send the image so i'm creating an another object to the same class, below code
    *Image from MIME
    DATA: o_mr_api         TYPE REF TO if_mr_api.
    DATA is_folder TYPE boole_d.
    DATA l_img1 TYPE xstring.
    DATA l_img2 TYPE xstring.
    DATA l_loio TYPE skwf_io.
    DATA: lo_document   TYPE REF TO cl_document_bcs.
    IF o_mr_api IS INITIAL.
       o_mr_api = cl_mime_repository_api=>if_mr_api~get_api( ).
    ENDIF.
    CALL METHOD o_mr_api->get
       EXPORTING
         i_url              = '/SAP/PUBLIC/ZDEMO/tick.png'
       IMPORTING
         e_is_folder        = is_folder
         e_content          = l_img1
         e_loio             = l_loio
       EXCEPTIONS
         parameter_missing  = 1
         error_occured      = 2
         not_found          = 3
         permission_failure = 4
         OTHERS             = 5.
    CALL METHOD o_mr_api->get
       EXPORTING
         i_url              = '/SAP/PUBLIC/ZDEMO/Delete.png'
       IMPORTING
         e_is_folder        = is_folder
         e_content          = l_img2
         e_loio             = l_loio
       EXCEPTIONS
         parameter_missing  = 1
         error_occured      = 2
         not_found          = 3
         permission_failure = 4
         OTHERS             = 5.
    *Convert XSTRING to ITAB
    DATA :lt_hex1 TYPE solix_tab,
           lt_hex2 TYPE solix_tab,
           ls_hex LIKE LINE OF lt_hex1,
           lv_img1_size TYPE sood-objlen,
           lv_img2_size TYPE sood-objlen.
    CLEAR : lt_hex1, lt_hex2, ls_hex, lv_img1_size, lv_img2_size.
    WHILE l_img1 IS NOT INITIAL.
       ls_hex-line = l_img1.
       APPEND ls_hex TO lt_hex1.
       SHIFT l_img1 LEFT BY 255 PLACES IN BYTE MODE.
    ENDWHILE.
    WHILE l_img2 IS NOT INITIAL.
       ls_hex-line = l_img2.
       APPEND ls_hex TO lt_hex2.
       SHIFT l_img2 LEFT BY 255 PLACES IN BYTE MODE.
    ENDWHILE.
    *Findthe Size of the image
    DESCRIBE TABLE lt_hex1 LINES lv_img1_size.
    DESCRIBE TABLE lt_hex2 LINES lv_img2_size.
    lv_img1_size = lv_img1_size * 255.
    lv_img2_size = lv_img2_size * 255.
    *Attach Images
    clear: lo_document.
    lo_document->add_attachment(
       EXPORTING
         i_attachment_type     =  'png'                  " Document Class for Attachment
         i_attachment_subject  =  'img1'                " Attachment Title
         i_attachment_size     =  lv_img1_size           " Size of Document Content
         i_att_content_hex     =  lt_hex1  " Content (Binary)
    lo_document->add_attachment(
       EXPORTING
         i_attachment_type     =  'png'                  " Document Class for Attachment
         i_attachment_subject  =  'img2'                " Attachment Title
         i_attachment_size     =  lv_img2_size           " Size of Document Content
         i_att_content_hex     =  lt_hex2  " Content (Binary)
    but it throws the dump " Access using NULL object reference is not possible"  when i tries to access for method add_attachment...
    Thanks,
    Siva

    Yes there is commit work after that, Below code
          gr_document = cl_document_bcs=>create_document(
                           i_type    = 'HTM'
                            i_text    = t_html
                            i_importance = '5'
                            i_subject = gc_subject ).
    *Image from MIME
    DATA: o_mr_api         TYPE REF TO if_mr_api.
    DATA is_folder TYPE boole_d.
    DATA l_img1 TYPE xstring.
    DATA l_img2 TYPE xstring.
    DATA l_loio TYPE skwf_io.
    DATA: lo_document   TYPE REF TO cl_document_bcs.
    IF o_mr_api IS INITIAL.
       o_mr_api = cl_mime_repository_api=>if_mr_api~get_api( ).
    ENDIF.
    CALL METHOD o_mr_api->get
       EXPORTING
         i_url              = '/SAP/PUBLIC/ZDEMO/tick.png'
       IMPORTING
         e_is_folder        = is_folder
         e_content          = l_img1
         e_loio             = l_loio
       EXCEPTIONS
         parameter_missing  = 1
         error_occured      = 2
         not_found          = 3
         permission_failure = 4
         OTHERS             = 5.
    CALL METHOD o_mr_api->get
       EXPORTING
         i_url              = '/SAP/PUBLIC/ZDEMO/Delete.png'
       IMPORTING
         e_is_folder        = is_folder
         e_content          = l_img2
         e_loio             = l_loio
       EXCEPTIONS
         parameter_missing  = 1
         error_occured      = 2
         not_found          = 3
         permission_failure = 4
         OTHERS             = 5.
    *Convert XSTRING to ITAB
    DATA :lt_hex1 TYPE solix_tab,
           lt_hex2 TYPE solix_tab,
           ls_hex LIKE LINE OF lt_hex1,
           lv_img1_size TYPE sood-objlen,
           lv_img2_size TYPE sood-objlen.
    CLEAR : lt_hex1, lt_hex2, ls_hex, lv_img1_size, lv_img2_size.
    WHILE l_img1 IS NOT INITIAL.
       ls_hex-line = l_img1.
       APPEND ls_hex TO lt_hex1.
       SHIFT l_img1 LEFT BY 255 PLACES IN BYTE MODE.
    ENDWHILE.
    WHILE l_img2 IS NOT INITIAL.
       ls_hex-line = l_img2.
       APPEND ls_hex TO lt_hex2.
       SHIFT l_img2 LEFT BY 255 PLACES IN BYTE MODE.
    ENDWHILE.
    *Findthe Size of the image
    DESCRIBE TABLE lt_hex1 LINES lv_img1_size.
    DESCRIBE TABLE lt_hex2 LINES lv_img2_size.
    lv_img1_size = lv_img1_size * 255.
    lv_img2_size = lv_img2_size * 255.
    *Attach Images
    create object lo_document type cl_document_bcs.
    lo_document->add_attachment(
       EXPORTING
         i_attachment_type     =  'png'                  " Document Class for Attachment
         i_attachment_subject  =  'img1'                " Attachment Title
         i_attachment_size     =  lv_img1_size           " Size of Document Content
         i_att_content_hex     =  lt_hex1  " Content (Binary)
    lo_document->add_attachment(
       EXPORTING
         i_attachment_type     =  'png'                  " Document Class for Attachment
         i_attachment_subject  =  'img2'                " Attachment Title
         i_attachment_size     =  lv_img2_size           " Size of Document Content
         i_att_content_hex     =  lt_hex2  " Content (Binary)
           "Add document to send request
           CALL METHOD gr_send_request->set_document( gr_document ).
           TRY.
             CALL METHOD gr_send_request->SET_SEND_IMMEDIATELY
               EXPORTING
                 I_SEND_IMMEDIATELY = 'X'.
    *    CATCH CX_SEND_REQ_BCS INTO BCS_EXCEPTION .
    **Catch exception here
           ENDTRY.
           DATA: LO_SENDER TYPE REF TO IF_SENDER_BCS VALUE IS INITIAL.
           TRY.
             LO_SENDER = CL_SAPUSER_BCS=>CREATE( SY-UNAME ). "sender is the logged in user
    * Set sender to send request
             gr_send_request->SET_SENDER(
             EXPORTING
             I_SENDER = LO_SENDER ).
    *    CATCH CX_ADDRESS_BCS.
    ****Catch exception here
           ENDTRY.
           "Send email
           CALL METHOD gr_send_request->send(
             EXPORTING
               i_with_error_screen = 'X'
             RECEIVING
               result              = gv_sent_to_all ).
           IF gv_sent_to_all = 'X'.
             WRITE 'Email sent!'.
           ENDIF.
           "Commit to send email
           COMMIT WORK.
           "Exception handling
         CATCH cx_bcs INTO gr_bcs_exception.
           WRITE:
             'Error!',
             'Error type:',
             gr_bcs_exception->error_type.
       ENDTRY.

  • RFC to HTTP Interface - Access using NULL object reference is not possible

    Hi All,
    I am working on a Interface RFC to HTTP where in I am sending the data to a third party system.
    Using PI 7.3 and Adapter type XI to send this data.
    I am getitng an error Short dump occured when executing message in qRFC queue <Queuename>: Date/time 02.12.2011 08:44:57, user XXXXX, runtime error: Access using NULL object reference is not possible.
    <SAP:Code area="INTERNAL">QRFC_SYSTEM_DUMP</SAP:Code>
    I am entering the parameters such as target host,service number,path correctly with addrseing type as URL.
    The message is failing in the call adapter step with the above error.
    There are no messages stuck in SMQ2 as well.
    Now on the other if I use the  adapter type HTTP_AAE the messages is getting successfully delivered with the same parameters mentioned above.But as we know it is a plain adapter and will not have the SOAP envelope.
    We would want to send the data using the XI adapter.
    Any idea as why this issue is happening?
    Helpful answers will be rewarded points.
    Thanks & Regards,
    RK

    Hi,
    please go through below threads,
    Error for all the interfaces
    Access via NULL object reference not possible., error key: RFC_ERROR_SYSTEM
    hope it will help you
    regards,
    ganesh

  • Digital signature error- SSF Error

    Hi,
    I am trying to do a digital signature using signature method " System signature with Authorisation by User ID and Password"  but facing an error after I enter my password during the digital signature.
    Error is "SSF error: Unknown Error"
    Message No: IS014
    Please let me know what needs to be done to resolve this error.
    Setting completed are QM Material Authorisation group cretaed for Result Recording and Usage Decision Digital Signature.
    Thanks
    Vineeth

    Check and if necessary maintain the standard settings. To do this, execute the following activities in the IMG under SAP Web Application Server -> System Administration -> Digital Signature:
    • Define application-dependent parameters for SSF functions
    • Define security settings for the system
    Also In IMG check settings under >> SAP Netweaver--> Application Server > System Administration -> Maintain the Public Key information for the system> Maintaining the system security information.

  • PCUI Error(SSF error : Invalid signer)

    Hi All
    we have implemented the PCUI functionality in portal thru CRM 4.0 Business package. all bsp pages are working fine.
    but when i click on the activities link in portal and then i selected one particular order documents in Activities page , when i  click to open that documet then it is opening in the new window with the error
    "<b>SSF error : Invalid signer</b>"
    but when try to open the same document in CRM system it is opening fine.
    ( Actually documents are created in different formats like PDF,CSV and XML)
    Can you help me how to solve this "SSF error:Invalid signer " in portal for Activities link in PCUI application
    Regards
    Sunil

    Hi,
    I am facing the same error in OAC0 although the connection to the external Documentum Server is successful as shown by Test Connection.
    Can anyone suggest either the possible reasons or a solution to this.
    Note: I have tried to tick/untick the "No Signature" box.

  • ABUMN-error "Posting transaction is not possible (Value date not allowed)"

    Hi,
    When we are trying to transfer asset within company code thru Tcode ABUMN, we are getting a error as
    "Posting transaction is not possible (Value date not allowed)"
    What actually we are doing is we are trying to transfer the previous year asset for example say 01.04.2007 assets on today.
    the Parameters are as below
    Document date :26.03.2008
    Posting Date :26.03.2008
    Asset value date is 01.04.2007.
    Then the system is throwing an error and not alloing to post the previous year transfers.
    Can any one help me out.
    Cheers
    Sri

    Hi,
    I think, if you give old asset value date, system will give you the error.  This may be because, you are trying to transfer the assets with old values, means in your examble the dep. from the 01.04.2007 to 29.02.2008 whould have been charged.
    So, give the current year date means any date from 01.01.2008 to till date.
    If you read F1 help for the value date column, it states,
    Asset value date
    The asset value date is the value date for Asset Accounting. It can deviate from the posting and document date and be in posting periods already closed for Financial Accounting. However, the posting year and asset value date year must be the same.
    Since the asset value date can have a direct influence on the amount of depreciation, the system creates a default value when it can. You can specify in Customizing how the the default asset value date is  determined by the system.
    Hope it helps
    Saravanan.A

  • FBV1 error - Transaction Type 030 not possible

    Hi SAP experts,
    I am currently facing an issue while in FBV1 (via batch input)
    It displays error message Transaction Type 030 not possible (posting to affiliated company), however, the asset group that it belongs to can only be Type 030  (Acquisition in group area only).
    How can this be fixed?
    Is there another TType that is similar to 030 ?
    Any help is welcome
    Regards
    Roger

    Hi,
    check SAPNET note 127650.
    Best regards

  • System Error u0096 Restart is Not Possible!

    Hi guys,
    I have a sync scenario that calls an http service. When the http service is not available (down) the message in the monitor has a sys error status and the restart is not possible. With an identical scenario, but async, the status is also system error but Manual Restart is possible.
    My question is: this is a typical behavior for sync http scenarios? I would like to be able to restart this message, is it possible?
    Thanks in advance,
    Ricardo.

    Hi Michal
    Thanks for your quick response.
    I’m using these sync calls under a BPM and I found a way to reprocess this messages in system error. So, in Message Monitor open the PE and over the task in error (ex. send step) open the work item and go to “EDIT” menu, in EDIT menu press “change” and you will see on the left side “Services for Administration” and something like “reprocess after error, press the execute button and the sync calls is restarted.
    I believe without BPM is not possible restart sync calls, but with BPM it is
    Thanks Michal.
    Regards,
    Ricardo.
    Message was edited by: Ricardo  Quintino
    Message was edited by: Ricardo  Quintino

  • Error with IBAN Generation not possible

    hello
    In transaction XK01, when I create a vendor in bank details I have an error when I add the IBAN. This vendor is Spanish.
    If I create directly the IBAN I have this message : " Generation not possible". Why.
    But if I create this supplier by entering the first :
    - County,
    - Bank key
    - Bank account
    - CK
    The iban be generated without errors.
    I set this bank in FI01.
    Could you help me.
    Best regards

    hi, I am using ECC500 and I just  follow following instructions.
    It is working fine.
    Cheers
    >
    SAP Note 503182:
    >Solution
    >    1. Copy function module SAMPLE_INTERFACE_00003030
    >  from SAMPLE_INTERFACE_00003030
    >    to CONVERT_BANK_ACCOUNT_2_IBAN_ES
    >      Function group: IBAN
    >      2. Copy function module SAMPLE_INTERFACE_00003040
    >      from SAMPLE_INTERFACE_00003040
    >      to CONVERT_IBAN_2_BANK_ACCOUNT_ES
    >     Function group: IBAN
       >   3. Implement the attached source code corrections.
        >  4. BTE setting:
       >   Transaction: FIBF
      >    Settings -> P/S function modules
        >  Create the following entries:
         > Event      Country    Function module
          >00003030   ES        CONVERT_BANK_ACCOUNT_2_IBAN_ES
         > 00003040  ES         CONVERT_IBAN_2_BANK_ACCOUNT_ES

  • Bug 9953612 : MS ACCESS THROWS ORA-1461 ERROR WHILE UPDATING THROUGH 11.2 ODBC DRIVER

    Hello,
    i really cant find the patch. I am wrong or is there really no one after years.
    Can somebody post the link to the patch if it exists, please.
    greetz
    Rigoletto

    > "UPDATE PRODUCTS SET pPrice = newPrice WHERE pID
    = productID"
    The newPrice and productID are variables and you need to append them to the SQL string. Also, you need to provide single-quotes around those values.
    Your update SQL should look like:
    String updateSql = "UPDATE PRODUCTS SET pPrice = '" +newPrice
        +"' WHERE pID = '" +productID +"' ";A better way is to make use of PreparedStatement. In that case, the sql string would be:
    String updateSql = "UPDATE PRODUCTS SET pPrice = ? WHERE pID = ?"and use setString() in PreparedStatement to set the parameters.

  • Download error on creative cloud. not possible to download new items

    hi i am unable to download new apps to my creative cloud .
    i have a full membership.
    it keeps on saying download error on the apps page.
    what can i do ?

    what do you mean ?
    i am not a pro ?
    please explain safe mode with networking.
    thank you

  • Attempt to access dead view row error when using validator

    This is a problem that myself and other members of my team have encountered. We managed to fix the problem and so I'm posting it here for future reference.
    Environment
    JDeveloper 10.1.3.x (specific version used: 10.1.3.3.0)
    ADF Business Components
    ADF Faces
    Problem
    A creation form has a field that has a validator (a backing bean method).
    If a correct value is entered and the validation succeeds on the first time, there is no problem.
    If an incorrect value is entered and the validation fails (a ValidatorException is thrown by the method), then a correct value is entered and the validation is successful, the page displays an error and it is not possible to commit the new row.
    The error shown is:
    Attempt to access dead view row of persistent id <number>
    Cause
    At some point the newly created row is lost or removed from the iterator after the first attempt at validation and therefore is not accessible on the second validation.
    Solution
    The action binding used to create the new row must be set to the CreateInsert action (40) rather than the Create action (41). This is done in the page definition file for the page on which the create action is used.

    Thanks.Your tip works perfect!

Maybe you are looking for

  • Security issues with Livecycle Designer

    In the past, I have been able to modify and change documents inside of Adobe Acrobat after creating the forms inside of LD. I've recently run into a problem where the security settings in Adobe Acrobat continue to advise that it is unable to make cha

  • Safari/Mail certificate problem with gmail/google

    Here is my problem: I have set-up Mail to use my gmail account through POP. Since yesterday, when I try to get or send mail, mail gives me the error: Unable to verify SSL server pop.gmail.com Mail was unable to verify the identity of this server, whi

  • MMS - how do I....

    Sorry I know this has been beaten to death, but now I'm confused. I know how to send an mms via my email to another person mms text and it works fine. I know when someone sends me an mms I have to go to viewmymessage.com, which we all know rarely wor

  • Annoyed [Android]

    So I have my Android tablet setup to automatically install updates for all the apps I'm using. While I don't use all of them, they are there because I need them or they provide a service that I need. Well recently I went to open up a PDF file using t

  • Error 1604 while trying to update to ISO 5

    I was trying to update my iPhone 4 to the new ISO 5. It did the back up of the phone but while it was updating i recieved the error 1604. I turned off my firewalls, and disabaled my antivirus and tried again. It reconized my phone and said it was in