SSP ticket cannot interpreted

Hi people,
When I executed a query from query designer or via enteprise portal I always get this error:
            "A SSP ticket was received and can't be interpreted"
Any suggestion???
More thanks

Hi,
You should have this parameters in your instance profile. The query call an ABAP program throuh the ICF, and some checks make an autentication about caller. This configuration parameters enable SSO and program can interpret SSP tickets.
●     login/create_sso2_ticket
●     login/accept_sso2_ticket
Regards.

Similar Messages

  • A SSP  ticket was received and can't be interpreted

    Hi All,
    We are trying to .NET use Authentication features in EP Portal. Here: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/edb8a190-0201-0010-d398-c23e34f30295#_header1_2 it's said that you can use portal SSO to connect with SAP .NET Connector  and then use MySAPSSSO2 ticket directly.
    Here's my code:
        Dim m_oDestination As New SAP.Connector.Destination
        Dim conn As SAP.Connector.SAPConnection
        m_oDestination.MySAP_SSO2 = HttpUtility.UrlDecode(Request.Cookies("MYSAPSSO2").Value)
       m_oDestination.AppServerHost = "110.1.3.120"
       m_oDestination.Client = "800"
       m_oDestination.SystemNumber = "00"
            conn = New SAP.Connector.SAPConnection(m_oDestination) 'create a new connection
            conn.Open()
            proxy.Connection = conn
           Response.Write("Connected")
            conn.Close()
    But when the conn.Open() Line is reached an Exception is raised :  SAP.Connector.RfcLogonException: It's been received a SSP ticket that cannot be interpreted
    So we don't know what to do next? Do we need to install an specific library before trying this?
    Thanks for you help

    Hi Reiner,
    I have changed the code, now using a portal destination:
    Dim conn As SAP.Connector.SAPConnection
    conn = New SAP.Connector.SAPConnection(PortalDestination1.ConnectionString)
    conn.Open()
    conn.Close()
    The error now is: The system is unable to interpret the SSO ticket received
    The content of PortalDestination2.ConnectionString is:
    MYSAPSSO2="AjExMDAgABRwb3J0YWw6QWRtaW5pc3RyYXRvcogAE2Jhc2ljYXV0aGVudGljYXRpb24BAAACAAMwMDADAANFUFAEAAwyMDA2MDYzMDE1NTAFAAQAAAAICgAA/wD0MIHxBgkqhkiG9w0BBwKggeMwgeACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBwDCBvQIBATATMA4xDDAKBgNVBAMTA0VQUAIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDYwNjMwMTU1MDI2WjAjBgkqhkiG9w0BCQQxFgQUm0m9kiieDwfJkPFTdQ7lkStQMIAwCQYHKoZIzjgEAwQuMCwCFBeA4EjwV1LgeulpLOXaNyssOVuAhQJkbhSjWJzvpw7oCxELErjm+s2A==" CLIENT=800 LANG=en ASHOST=IP SYSNR=0 SNC_QOP=0
    What could be the reason the connector can't interpret the ticket? Could it be altered  somehow? How can we know this?
    Thanks for you answer

  • Cannot Interpret the data in the file

    Hi,
    I need to upload rate routing and I have created a BDC program using a sample recording.
    While I am uploading the data from the flat file, I am getting an error message " Cannot Interpret the data in the file ".
    Please help me where I might have gone wrong. I have checked with template in the flat file and it is correct.
    Please do the needful.
    Thanks,
    Ranjan R Jinka
    Edited by: Ranjan Jinka on Apr 29, 2011 8:55 AM

    Hai Ranjan,
    Please, Check this
    " Can not interpret the data in file " error while uploading the data in DB
    - Check the heading of the excel column and filed used in program.
    If possible, please paste the program so the viewers have a better idea and you will get the exact solution.
    Regards,
    Mani

  • "Cannot interpret data in file" error while using GUI_UPLOAD for .xls file

    Hi,
         I have made a program using FM GUI_UPLOAD to upload an .xls file to an internal table. But upon executing ,it gives error "Cannot Interpret data in file". I have seen in other posts people talking about GUI_UPLOAD FM to upload data from excel directly into internal table. Kindly help.
    Here is my code. I had tried using different combination for HAS_FIELD_SEPARATOR but still its not working.
    In my emp1.xls file , the data in each column is present in the same order as in the internal table. Although the first column in my internal table is NUMC. I dont know if that is causing the problem.
    REPORT  ZUPLOAD_1.
    data: itab TYPE TABLE OF zempl_master WITH HEADER LINE.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\empl1.xls'
        FILETYPE                      = 'ASC'
        HAS_FIELD_SEPARATOR           = 'X'
    *   HEADER_LENGTH                 = 0
    *   READ_BY_LINE                  = 'X'
    *   DAT_MODE                      = ' '
    *   CODEPAGE                      = ' '
    *   IGNORE_CERR                   = ABAP_TRUE
    *   REPLACEMENT                   = '#'
    *   CHECK_BOM                     = ' '
    *   VIRUS_SCAN_PROFILE            =
    *   NO_AUTH_CHECK                 = ' '
    * IMPORTING
    *   FILELENGTH                    =
    *   HEADER                        =
      TABLES
        DATA_TAB                      = itab.
    * EXCEPTIONS
    *   FILE_OPEN_ERROR               = 1
    *   FILE_READ_ERROR               = 2
    *   NO_BATCH                      = 3
    *   GUI_REFUSE_FILETRANSFER       = 4
    *   INVALID_TYPE                  = 5
    *   NO_AUTHORITY                  = 6
    *   UNKNOWN_ERROR                 = 7
    *   BAD_DATA_FORMAT               = 8
    *   HEADER_NOT_ALLOWED            = 9
    *   SEPARATOR_NOT_ALLOWED         = 10
    *   HEADER_TOO_LONG               = 11
    *   UNKNOWN_DP_ERROR              = 12
    *   ACCESS_DENIED                 = 13
    *   DP_OUT_OF_MEMORY              = 14
    *   DISK_FULL                     = 15
    *   DP_TIMEOUT                    = 16
    *   OTHERS                        = 17
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP at itab.
      write:/ itab-emp_no,itab-name.
    endloop.

    hi amber22 you need to use the below fm to upload an xls file
    FORM EXCEL_UPLOAD .
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          FILENAME    = FILENAM
          I_BEGIN_COL = 1
          I_BEGIN_ROW = 1
          I_END_COL   = 6
          I_END_ROW   = 100
        TABLES
          INTERN      = xl_itab.
    * EXCEPTIONS
    * INCONSISTENT_PARAMETERS = 1
    * UPLOAD_OLE = 2
    * OTHERS = 3 .
      IF SY-SUBRC = 0.
    MESSAGE 'DATA UPLOADED SUCCESSFULLY' TYPE 'I'.
      ENDIF.
    ENDFORM.                    " EXCEL_UPLOAD

  • How come AE cannot interpret Alpha Channel from ProRes4444 ?

    Hi there,
    I exported a video clip using Final Cut Pro X with alpha channel using the ProRes4444 codec.
    I have tested his alpha channel works & it works in FInal Cut Pro X when I import it back to Final Cut Pro X to test it.
    However, when I bring this file to After Effects CS5, it cannot recognize the alpha channel because the transparent part are all in solid black.
    How do I make AE interpret the ProRes4444 file as transparent with alpha channel ?
    Thanks

    Rick Gerard wrote:
    ryan_khoo wrote:
    Q1. But how do I check the file interpretation in AE ?
    Q2. I am using AE CS5. Is it bcos you are using AE CS5.5 that you never have problem with ProRes4444 ?
    Q1. This is part of the basics. Select the file you want to interpret in the Project Panel then either right click or go to the menu File>Interpret Footage>Main or use the keyboard shortcut Alt/Option + Ctrl/Cmnd + G
    Q2. Nope... It's always worked. There were some gamma problems for a while, and a few other bugs here and there with ProRez, but if you're Mac is up to date you should have no problems with the alpha channel.
    Thanks Rick for your help, I really appreciate it as I am not quite familiar with AE.
    Q1. I did the steps you taught me & a new screen pop out. But under the "Main Options" tab, the section under Alpha, there are 4 choices (Ignore, Straight-Unmatted, Premutliplied-Matted with color, Invert Alpha). But all these was all greyed out. Any idea why ?
    Q2. I am using Mac & I just checked my AE CS5 is Version 10.0. I am a student and i bought the Student Edition. Student Edition not allowed to update, right ?
    Thanks

  • ALE Delta using tcode RSO2. Cannot interpret status.

    Dear Gurus:
    I tried to do ALE Delta (tcode RSO2) for table VBAK (sales document: header
    data) . the changing document is VERKBELEG.
    After you click OK, Then you have list of fields (i.e. columns) property of VBAK table.
    The first column is status, which (as so far) lists only two status.
    1. Green checkmark
    2. Yellow zig-zag arrow.
    Next to field details, type, etc.
    My question is: What is the difference between those statuses ?
    Rgds,
    BWAS

    Alberto,
    I'm sorry but I don't know any way how to "repair" red delta queues. The only way is to do a reinitialization. The reason maybe that you didn't empty all delta queues before the system migration.
    Did you check in SBIW in Logistics cockpit if all your extract structures are active? Maybe some transport requests were missing which set the datasources active. It looks  like an error or missing step in your system migration routine. Sorry for that.
    Regards,
    Juergen

  • The current DNG Profile Editor cannot interpret 7.1 raw settings

    Hi,
    I am frustrated that the DNG Profile Editor is not able to apply Lightroom's or Camera Raw's settings since the new Process 2012 has been in effect.
    This SEVERLY limits the usefulness of the Profile Editor. And yes I know it is a beta.
    However, are there no plans to release a compatible version?
    Thanks,
    Juan

    Ah, that's the problem, I have v1.3. Thanks! I've tested it and it validates all DNG files fine.
    The reason I have the wrong version is the Adobe DNG SDK web page (here) links to the 1.3 version of the SDK. The only way to know there's a newer version is if you search for it or someone tells you - like you have.

  • Dump Error : Unable to Interpret '/'

    Hello,
             we are trying to upload Material Master, where we have a Custom Field, this custom field is defined as NUMC(10) data type in BMMH1-YYD_YMANU and also in MARC table. And this field has been customized in Material Master in a seperate screen, our client our in production from long time, now we are getting problem only when migrating data. Manually it works fine.
    And this field was configured in the below LSMW Program,
    Object               0020   Material master
    Method               0000
    Program Name         RMDATIND
    Program Type         D   Direct Input
    Now while uploading we are getting error at statement MOVE_FIELD_SLASH statement saying cannot interpret slash(/).
    But we are passing Number '1000000012' into this field. And if we pass blank then we are not getting this error, cannot reallly find what the problem is.
    Can any one help.

    Murali R wrote:
    Hi Anand,
    >
    > Thanks for yor reply.
    >
    > The field FKDAT in source system is in YYYYMMDD format only.  The date values coming in is like 12.08.2011.
    >
    > Regards,
    > Murali
    Try this..
    data:l_date type sy-datum.
    l_date0(4) = FKDAT5(4).
    l_date4(2) = FKDAT3(2).
    l_date6(2) = FKDAT0(2).
    Now use l_date to subtract from sy-datum.

  • Interpreting a call stack traceback

    I am trying to diagnose a segv crash in our application but All I have to go on is a call stack traceback that was harvested at the time of the crash. This is workshop 4.0 vintage running on Solaris 2.6. The application was built with level 2 optimisation.
    one line of the traceback follows:
    00098de8 CSax_ExchApi::WriteData(CEis_OutMsgContext*)(88f1e4, 539878, 894750, 3a5e8c, 1, 5ae118) + 114
    My questions are:
    1. What does the + 114 signify?
    2. Is it correct that the 1st arg shown (88f1e4) is the value of the this ptr?
    3. Is it correct that the 2nd arg shown (539878) is the value of the parameter?
    4. Do the values of the rest of the args have any significance?
    Thanks

    one line of the traceback follows:
    00098de8
    CSax_ExchApi::WriteData(CEis_OutMsgContext*)(88f1e4,
    539878, 894750, 3a5e8c, 1, 5ae118) + 114
    My questions are:
    1. What does the + 114 signify?The program counter was 114 bytes past the beginning of the named function. The traceback looks for the nearest defined symbol before the location. If the problem is in a non-global function, the address might not be inside the named function. Example:
    int foo(){ return 0; } // global tiny function
    static int bar() // non-global function
    // crash in here someplace
    The traceback will show a reference to foo + some offset, because bar is not a known symbol.
    Now, the odd thing here is that on SPARC, instructions are on 4-byte boundaries, and 114 is not a multiple of 4. The problem might be a jump to a non-aligned address, which will cause a fault and crash. An invalid jump is normally the result of using a bad pointer. The use of the bad pointer could be far-removed from when and where the crash occurred.
    2. Is it correct that the 1st arg shown (88f1e4) is
    the value of the this ptr?Yes.
    3. Is it correct that the 2nd arg shown (539878) is the value of the parameter?Yes, if the parameter size is 32 bits.
    4. Do the values of the rest of the args have any significance?Without debug data, the traceback arbitrarily shows the first few values on the stack, but cannot interpret them. You need to compare the values shown to the actual source code to make sense out of them.

  • Cannot locate images

    I am new at lighroom 4 I did a family session and had the family decide on 54 images they liked that I would edit and I placed them into a collection and editted them well I created a folder in my pictures portion of my computer to place the editted version and now lightroom is stating that the image cannot be found and I tried relocating them to direct them to where they live in the computer file but it states that there are other pictures similar would you like to view this and I hit open but nothing happens so I am extremly worried I have lost these images I dont have backup that exist...please help me!

    First of all, don't panic. Your photos are wherever you put them on your hard disk. You should be able to find these photos using your operating system.
    You should be able to fix these problems in Lightroom, by moving the photos back to where they were (using your operating system), or via http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm
    Now to take a step backwards, you seem to have made a number of beginner Lightroom mistakes, all of which are avoidable in the future.
    Once you made a collection with these photos, you have properly organized the photos, and so there was no reason to move them to a specific folder
    If you move or rename photos outside of Lightroom, then Lightroom no longer knows where the photos are and gives you a missing indicator (the ? icon) Lightroom does not contain your photos, it only contains a pointer to the photo's location, and that's why moving photos outside of Lightroom causes problems. My best advice is to develop a workflow where you don't move photos from here to there. And if you MUST move photos from here to there, do this in Lightroom.
    Lightroom does not save the edited versions of your photos. This is different than other software that you may have used in the past. That is why you will not find a Save command in Lightroom. What Lightroom does is it saves, in its database, the changes you made (for example, exposure +0.24, contrast +20, highlights –25) and will re-draw this photo according to these changes whenever you open Lightroom. Most non-Adobe programs cannot interpret these changes and so can only show you the unedited photos.
    If you need the edited versions of the photos for some non-Lightroom purpose, you must export the photos.
    Let me strongly recommend you begin watching some video tutorials on the basics on Lightroom such as these:
    http://tv.adobe.com/watch/getting-started-with-adobe-photoshop-lightroom-4/lightroom-4-imp orting-and-organizing-your-images/
    http://tv.adobe.com/watch/creative-suite-podcast-photographers/lightroom-dude-where-are-my -photos/

  • RSECADMIN: Hierarchy node checked can not be interpreted (trace)

    Hi there,
    Time for me to ask for your help.
    When using RSECADMIN for tracing Hierarchy Analysys Authorization I cannot interpreted the hierarchy node that is checked:
    - The authorizations found are displayed as a clickable text e.g.  Node 1  and the value can be found below the check
    - The hierarchy node checked however is displayed as e.g.  Node 4 1 0 7 1 and I can not translate this node to any existing node in my hierarchy.
    [See this picture |http://farm4.static.flickr.com/3172/2978379084_acdf6baba5_o.jpg]that shows an example.
    Could anybody help me to find out the checked authorization node?
    Thank you!
    Kind regards,
    Lodewijk

    Hi Steve,
    Thanks for your reaction, in this case the problem indeed might be something else instead of the ZKLANT node. I will have a look at it rightaway.
    Nevertheless I find it very discomforting that these strange node numbers seem to be of no use at all.
    Can anyone shine a light on this issue?
    Thanks,
    Lodewijk

  • Ticket vs Domain

    Hi,
    I need to clarify an issue.
    In help.sap.com, most of the documentation about Using Logon Tickets mentions that "Any Web servers or SAP Web AS servers that are to accept the logon ticket as the authentication mechanism must be placed in the same DNS domain as the issuing server. The logon ticket cannot be used for authentication to servers outside of this domain.".
    The question is, this only applies to HTTP(s) communication or also when using RFC protocol between portal and SAP?
    If portal and SAP must be on the same DNS domain to communicate using RFC protocol, this means the same physical machine domain or at least an DNS resolution?
    Thanks and Regards,
    Paul Croft

    user user wrote:
    Hi, what is the unique identifier of a domain? the domain name?
    Machine 1 , server 1 in domain A // cluster Z
    Machine 2 , server 2 in domain B // cluster Z
    From the previous post,i understand that this is illegal.Yes, it is illegal. Domain is the element which includes clusters and/or
    independent managed servers. Yes, domain name is a unique identifier of
    a domain.
    If i want to achieve the following configuration
    Machine 1 , server 1(aaa.aaa.aaa.aaa:7001) in domain A // cluster Z
    Machine 2 , server 2(bbb.bbb.bbb.bbb:7001) in domain A // cluster Z
    assuming machine 1, server 1 in domain A and cluster Z already created.
    in machine 2,i will create a domain A and add server 2, and add it to a cluster Z.
    will server 2 know its in domain A? Or more specifically, will servers on DIFFERENT > machine know what its part of a domain ?
    > when i define the clustering address for cluster Z for eg:
    > aaa.aaa.aaa.aaa:7001,bbb.bbb.bbb.bbb:7001, does
    > weblogic actually poll all the ip address:port to ensure that the
    > server's domain name is the same?
    Your configuration should look for example like this:
    Machine 1, Admin server (aaa.aaa.aaa.aaa:7101) domain A
    Machine 1, Managed server1 (aaa.aaa.aaa.aaa:7001) domain A // clusterZ
    Machine 2, Managed server2 (bbb.bbb.bbb.bbb:7001) domain A // clusterZ
    You have to add administration server to your configuration
    http://e-docs.bea.com/wls/docs100/cluster/config.html#wp1023838
    http://e-docs.bea.com/common/docs100/confgwiz/intro.html
    You have to define cluster in the domain, and configuration servers
    which are in this cluster. Setting a cluster address is not enough.
    All Managed servers, when starting, connect to the Admin server which
    verify domain membership.
    To set up a cluster just go step by step this list
    http://e-docs.bea.com/wls/docs100/ConsoleHelp/taskhelp/clusters/ClusterRoadmap.html
    Best Regards,
    Karol Muszynski

  • How to connect to R/3 via JCo using MYSAPSSO2?

    Hello!
    I'm developing a J2EE application who resides in an EP with Single Sign On. I have to retrieve some data from R/3, the way I want to connect is via JCo using MYSAPSSO.
    I have read that is possible to connect passing MYSAPSSO2 as <i>user</i> and its value as <i>password</i>. The java code in the jsp is something like this:
    javax.servlet.http.Cookie [] my_cookies = request.getCookies();
    java.util.Hashtable cks = new Hashtable();
    for(int i=0;i<my_cookies.length;i++){
         cks.put(my_cookies<i>.getName(),java.net.URLDecoder.decode(my_cookies<i>.getValue()));
    String user = "$MYSAPSSO2$";
    String pass = (String)cks.get("MYSAPSSO2");
    JCO.Client conex;
    JCO.Repository rep;
    boolean ok=true;
    conex = JCO.createClient("000",user,pass,"es","192.168.0.1","00","","");
    try{
         conex.connect();
         rep = new JCO.Repository("mirep",conex);
    } catch (Exception e){
         out.write("<br>"e"<br>");
         ok = false;
    if (ok)
         conex.disconnect();
    We are working with EP6 SP2, WAS 6.20.
    The error is:
    com.sap.mw.jco.JCO$Exception: (103) RFC_ERROR_LOGON_FAILURE: Se ha recibido un ticket SSP que no se puede interpretar
    (I translate you:)
    RFC_ERROR_LOGON_FAILURE: unable to interpret a retrieved SSP ticket
    Thank you all!!

    Ok!
    I have solve the problem. So, I was trying to connect via SSO within an user that was not registered in R/3 and I forgot it.
    Sorry for the inconvenience.

  • Unable to open the XML files in Nakisa

    Hi Gurus,
    We are unable to open certain XML files in Nakisa. They show up as encrypted in the notepad or fail to open using the XML Marker. The files in question are
    AppResources.xml
    LoginConfiguration_SAP_Standard
    LoginConfiguration_Anonymous
    Purpose: We want to enable the SSO with the portal . We have checked the radio button but nakisa does not recognize the SSO ticket from the portal (Any folder in Nakisa where we need to place the Portal ticket?)
    Also we want Nakisa to show the org chart for the logged in user. Luke had mentioned that some changes need to be made in the AppResources.xml (hope i correctly remember this) and we were looking to make these changes (rather try out.. any pointers please..?)
    Thanks and Regards,
    Arun E V

    Hi Arun,
    These files are encrypted. If your organisation is a partner with Nakisa you can obtain the decrypter from them.
    Portal SSO works without any configuration directly in the XML files. If you are getting an error stating that the Portal ticket cannot be interpreted then your configuration is not correct. In your URL iView you need to ensure the fully qualified domain name (FQDN) is used for the application URL. In the Administrator Console you need to ensure you enter the system details (Host, Sys Nr and Client) for the backend system which holds your SSO ticket for that Portal. You need to use FQDN here too.
    There is additional security configuration that can be done in the XML files but SSO will still work with just the Administrator Console configuration.
    I hope that helps!
    Luke

  • Open closed XML files - IPCC

    Hi All
    We are looking to implement basic IVR into our schools using our IPCC Express Prem.
    We would like to provide school admin staff with the ability to manage their own open/closed xml files and were thinking of writing an
    application that delivers username, password and date fields that would then update their relevant files on IPCC.
    Can anyone suggest possible problems,flaws,advice to help our adventure.
    Thanks
    Rich

    Hi Arun,
    These files are encrypted. If your organisation is a partner with Nakisa you can obtain the decrypter from them.
    Portal SSO works without any configuration directly in the XML files. If you are getting an error stating that the Portal ticket cannot be interpreted then your configuration is not correct. In your URL iView you need to ensure the fully qualified domain name (FQDN) is used for the application URL. In the Administrator Console you need to ensure you enter the system details (Host, Sys Nr and Client) for the backend system which holds your SSO ticket for that Portal. You need to use FQDN here too.
    There is additional security configuration that can be done in the XML files but SSO will still work with just the Administrator Console configuration.
    I hope that helps!
    Luke

Maybe you are looking for