Exit button in ABAP Webdynpro doesnot work with SPNEGO

Dear Webdynpro Gurus,
we are in weird situation where we have webdynpro application in ABAP with exit button.
we have ABAP System and EP System and SSO configured for these two systems.
We configured EP system with Microsoft Active directory for single-signon with SPNEGO.
this configuration is working fine.
the situation is when we click on exit button, it is not redirecting to the main iview and there is no action taking place.
please find the code for the exit button:
*METHOD onactionexit .*
  *CONSTANTS lc_uri TYPE string VALUE 'ROLES://portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.roles'.*
  *constants lc_url type string value '/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_employee_search'.*
'ROLES://pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.pages/com.sap.pct.erp.ess.overview'.**
*   Call New portal Page or iView**
  *TYPES: BEGIN OF navigation,*
    *target       TYPE string,*
    *mode         TYPE string,*
    *features     TYPE string,*
    *window       TYPE string,*
    *history_mode TYPE string,*
    *target_title TYPE string,*
    *context_url  TYPE string,*
   *END OF navigation.*
  *DATA: wa_navigation TYPE navigation.*
  *data : lv_url1 type string.*
  *DATA lo_api_component  TYPE REF TO if_wd_component.*
  *DATA lo_portal_manager TYPE REF TO if_wd_portal_integration.*
  *lo_api_component = wd_comp_controller->wd_get_api( ).*
  *lo_portal_manager = lo_api_component->get_portal_manager( ).*
  *concatenate lc_uri lc_url into lv_url1 respecting blanks .*
  *wa_navigation-target = lv_url1.*
  *wa_navigation-mode   = '0'.*
  *CALL METHOD lo_portal_manager->navigate_absolute*
    *EXPORTING*
      *navigation_target = wa_navigation-target*
      *navigation_mode   = wa_navigation-mode "IF_WD_PORTAL_INTEGRATION=>CO_SHOW_INPLACE*
      *post_parameters = ABAP_TRUE.*
*ENDMETHOD.*
Please help me to get out of this situation.
Thanks & Regards,
Khurshid.

It is calling the workflow program exit before the SAP_WAPI_WORKITEM_COMPLETE function module.
So closing the thread.

Similar Messages

  • Header information not displaying in ABAP Webdynpro record working time

    1. I am not seeing the header information, personnel number, name, cost center, on the ABAP Webdynpro record working time timesheet. When I run the timesheet profile in CAT2 the header contains the personnel number, name, cost center, but these do not display when the ABAP Webdynpro timesheet is run
    2. Is there a version of the ABAP webdynpro timesheet that prompts for the personnel number, date and profile prior to executing the timesheet?  I want to define an ESS link for managers to update timesheets of individual teammates.  The teammate do not necessarily have to be their direct reports

    Hi David,
    CATS Webdynpro application is a OIF fpm. Please check if you have performed the FPM IDR configuration properly.
    In standard, the ESS CATS does not prompt for the personnel number except in CE scenario. In MSS addon, you have an option to launch the ESS CATS application on-behalf of the employee. Please refer to the sap library documentation.
    Hope this helps,
    Regards,
    Roy

  • Print button in ABAP WebDynpro

    Hello all,
      The client has requested a 'Print' button in our webdynpro application - ie a simple button that triggers the browser command Ctrl P.
    I have searched the forum, and it seems that this is not possible, because WebDynpro cannot execute browser commands (or indeed, javascript).
    Can someone please suggest a solution - OR - confirm that this functionality is not possible?
    thanks
    Paul
    Note: Note: We do NOT want to use ALV, Adobe or Smartforms. We just want to print what's on the webdynpro screen.

    Micky,
    I thank you for that clear response: It is not possible to print from ABAP WebDynpro.
    > What should that printbutton do?
    We want it to do the same as Ctrl P, which is to print the entire web page. (We don't have frames etc)
    >WD4A is normally intended to be used with Adobe Interactive forms
    This is news to me! Is this an accepted view in the SAP communit... that WebDynpro requires Adobe to achieve full functionality? That is disappointing, to say the least. And a step back from BSP.
    We are building multiple online calculators, and it would be a huge overhead to have to develop (and maintain) an Adobe form for each calculator, simply to enable the user to print the contents of the screen....
    I have read in SDN that you can invoke a browser Print command from Java Webdynpro. A class WDPrintService has been provided.
    Printing in Web Dynpro, finally
    How can it be that this functionality is "not possible" for one flavour of WebDynpro, but plainly available in the other....?
    cheers
    Paul

  • How does ABAP webdynpro architecture works......

    Hi experts,
    I am new to Abap webdynpro and i have a task to finish.
    Basically i gone through many documents on WDA, but was able to understand very little.
    I have following questions --
    1. When u create component, what is the use of component controller?
    2.. What exactly context and context node difference? Do we need to create an attribute(input box, button etc), under one context?
    3. How can i read the date entered by user? where to read? If i want to read a particular iinput box data and save it to database table, how and where it has to be done?
    4. How can i read the table data, complete table of UI?
    5. What is an interface controller/component?
    I still have lot of doubts about understanding MVC architecture, but I am so so sorry as I have little scope OO abap, so fining difficult to understand.
    Kindly if someone explain me I would be greatfully thankfull to you.
    Thanks in advance,
    Niraja.

    Hi Niraja,
    I am replying to your questions 1 by 1.
    +When u create component, what is the use of component controller?
    +
    Ans A component controller contains the context,attributes, methods etc for a component. No component can exist without this.Even a view has its own controller having same contents.
    All the tabs which you see after clicking on COMPONENT  CONTROLLER constitute the controller.
    What exactly context and context node difference? Do we need to create an attribute(input box, button etc), under one context?
    Ans: Context itself is a context node, but the only difference is that its the root and has unchangeable properties.It has a fixed cardinality of 1..1 where as a node can have different properties.
    All nodes and attributes for different UIs are created in the context only.
    How can i read the date entered by user? where to read? If i want to read a particular iinput box data and save it to database table, how and where it has to be done?
    Ans: Data can be read in form of nodes and attributes. Every UI element for example an Input field will be bound to a attribute.
    You can read these values by code ( use CODE WIZARD).
    You can code in any methods given under method tabs.
    You can create your own methods like event handlers for buttons and different events. You can write all your queries in these methods
    +How can i read the table data, complete table of UI?
    +
    Ans: If u mean by reading the whole node data, I would suggest you to use code wizard and understand the code.
    5. What is an interface controller/component?
    Ans: If you want to share your component and make it available for use in other components you define your make your methods and context visible in this controller .
    Please see the link below for whole Web Dynpro ABAP help.
    [WD ABAP|http://help.sap.com/saphelp_nw04s/helpdata/en/43/1f6442a3d9e72ce10000000a1550b0/frameset.htm]
    I would suggest you to understand things and try them and then come with doubts.
    Regards,
    Sumit Oberoi

  • Does the "Exit" button on the captvate playbar works?

    Hello there..
    The Exit button on my captivate play bar is not working?
    Any reason?
    tnx.
    Kartik.

    Hi there
    Sorry, but I have to disagree. The real answer here is that it's not as simple as that. Sure, sercurity restrictions may be one possible cause but the causes are many. It's my own understanding that it often has to do with the way the window presenting the Captivate was opened to begin with.
    Click here for more
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • WebDynpro - Start working with this technology - what must i know ?

    Hi Gurus,
    I am just starting with webdynpro and i want to persuade some companies to use this tool.
    But i don't know how can i do that, because i can make webdynpro but i don't knok how it would be use from internet without an intranet conection.
    I don't know if i need to work with a portal consultant or if only with a basis we can do that.
    I am very confuse of that :S
    Could you help my please? any help or link will be very helpful.
    thanks you very much.
    Matias Palermo.

    Hi,
    you can find a lot of documents on sdn.sap.com
    for your help just go thru this thread
    Book for Webdynpro Abap
    thnks

  • MobileMe preferences button and menu doesn't work with Firefox 4 on Mac OS X 10.6.6

    When I login to my MobileMe account I have two buttons on the top right of the page: Preferences and My Account name.
    Both I can select but when I do I cannot press either one of the menu entries that show. So I cannot change anything or create folders in iDisk for instance. All did work on Firefox version 3.6. It also works on Safari.
    What settings do I have wrong? I like Firefox more than Safari.
    Thanks.
    Fritsander

    You can install the portable Firefox 3.6.x version to access websites that do not work with Firefox 5+.
    *http://www.freesmug.org/portableapps:firefox#toc1
    *http://sourceforge.net/projects/osxportableapps/files/Portable%20Firefox%20OS%20X/

  • ABAP webdynpro iView issue with Internet explorer

    Greetings,
    We are trying to integrate ABAP webdynpro with portal using the standard SAP webdynpro iView template, we are able to successfully integrate and display on portal pages.
    However if we are using IE version 7.0 browser we do not have any issues, but when we try to use IE version 6.0 the webdynpro portal pages does not display any content. A workaround was to open up the IE settings and change the setting for Navigate sub-frames across different domains to 'enable' from 'disable'.
    This fixed the issue.
    Also we came across information that we can change the setting to force the portal to use the css from the ABAP backend by changing the iView property 'Supply portal stylesheet' from 'Yes' to 'No'. Does this affect the portal behavior in rendering content in MS IE.
    Please let us know if there are any other methods to overcome this issue, as this will affect many of our users.
    iview isolation is of type 'URL'
    page isolation is set to 'Embedded'
    Portal page used is default framework type not webdynpro type
    thanks,
    Sudhir

    Greetings,
    This issue was fixed.
    I found this blog helpfull
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/wdabap/general%2btechnical%2baspects
    thanks,
    Sudhir
    Edited by: Sudhir Sidd on Jul 23, 2008 5:42 AM

  • Image Zooming doesnot working with phonegap on windows phone 8.1

    I have a staic image of google map.when i click the image  ,i want pop up the image and then only i want to zoom the image.The image is samll,when i click it it must be come out of the div tag and the zoom.But it doesnot work properly in android and
    windows.
    If anyone have any idea.How to do it in windows phone 8.1?
    Please give me solution

    We're not PhoneGap experts on this forum.  You may want to find a Phonegap forum to ask this question.  
    I'd help with doing this in C# but you're talking about div tags which aren't in C# but HTML apps.  
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Left side USB doesnot work with Maxtor 100GB portable Drive

    The USB on the leftside of my new MBP 15" 2.16 120GB has suddenly stopped working with my USB2 Maxtor 100GB pocket hard drive. The RHS USB works fine with the portable drive.
    The LHS USB port works fine with an external mouse.
    I looked for the HW diagnosing software but could not locate it. However, the power-on self test is passed.
    Does anyone knows how to check that the LHS USB is functioning properly and how to reset the drivers for it if any?
    Thanks.
    Tareq
    MBP 15" 2.16GHz 120GB   Mac OS X (10.4.8)  

    http://discussions.apple.com/thread.jspa?messageID=2504128&#2504128
    This seems to be a common problem for some reason.

  • SSO to ABAP WebDynpros not working

    Hello,
    I'm using a Portal in Version 7.3 and a As ABAP /.3 with EWM 9.0
    I tried to use the single sign on to log on to my web applications on the ABAP host.
    What I had done:
    set login/accept_sso2_ticket = 1
    Imported the certificate of the java system to strustsso2 to certificate list and ACL
    Created a connection to the system in the portal and created the content:
    Now when I test the application, I get the log-in screen from the AS ABAP with no error message:
    Here a trace from JAVA side:
    Username and hostnames replaced w/ ********
    Uniquename is the same as username on abap side.
    But uniqueID is: USER.CORP_LDAP."USERNAME"
    14:24:57:592 Path ********* HTTP Worker [@2055327366],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:24:57:593 Debug ********* HTTP Worker [@2055327366],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:24:57:594 Debug ********* HTTP Worker [@2055327366],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:24:57:595 Debug ********* HTTP Worker [@2055327366],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:24:57:596 Path ********* HTTP Worker [@2055327366],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:24:57:625 Debug ********* HTTP Worker [@2055327366],5,... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30007, REPLY:
    HTTP/1.1 200 OK
    14:24:57:625 Debug ********* HTTP Worker [@2055327366],5,... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30007, REPLY:
    Server: SAP NetWeaver Application Server 7.41 / AS Java 7.40
    Cache-Control: no-cache, no-store
    Expires: -1
    Pragma: no-cache, no-store
    Content-Type: text/xml;charset=UTF-8
    Content-Encoding: gzip
    Date: Mon, 30 Jun 2014 12:24:57 GMT
    Transfer-Encoding: chunked
    14:24:59:052 Debug Guest HTTP Worker [@875917609],5,D... ...ttpserver.HttpTraceRequest.traceRaw CLIENT: 30008, REQUEST:
    POST /webdynpro/resources/sap.com/pb/PageBuilder HTTP/1.1
    accept: */*
    accept-language: de
    referer: http://*********:50100/webdynpro/resources/sap.com/pb/PageBuilder;jsessionid=vSGTJpcu-sQU_xveTHdP6ur7hqXsRgG6O7kA_SAP
    x-requested-with: XMLHttpRequest
    content-type: application/x-www-form-urlencoded
    accept-encoding: gzip, deflate
    user-agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3)
    host: *********:50100
    content-length: 1037
    connection: Keep-Alive
    cache-control: no-cache
    cookie: saplb_*=(J2EE12139420)12139450; MYSAPSSO2=AjExMDAgAA1wb3J0YWw6YTI3NjMyiAAHZGVmYXVsdAEABkEyNzYzMgIAAzAwMAMAA0RQNQQADDIwMTQwNjMwMTIwMAUABAAAAAgKAAZBMjc2MzL%2FAQQwggEABgkqhkiG9w0BBwKggfIwge8CAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBzzCBzAIBATAiMB0xDDAKBgNVBAMTA0RQNTENMAsGA1UECxMESjJFRQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTQwNjMwMTIwMDA5WjAjBgkqhkiG9w0BCQQxFgQUNs4%2FHri8F11VFYhshuOhiyYp6HUwCQYHKoZIzjgEAwQuMCwCFB2MMiML6NTm3!ivKk9HyOPsFXTTAhRIuOABa2KJvsZ2OW3Kxk54lC0oTg%3D%3D; JSESSIONID=vSGTJpcu-sQU_xveTHdP6ur7hqXsRgG6O7kA_SAP5LQnigZlKmtBX197-cBmidml; JSESSIONMARKID=-eEc3Ayv-HiHE_pKLmCIaxFJho6uah7XxWp7o7uQA; PortalAlias=portal
    sap-ext-sid=ELAtPibSEw6d2rrh*yg5QQ--jG9Rt3CREdAZSPlAAf*yKQ--&sap-wd-cltwndid=WID1404129774581&sap-wd-norefresh=X&sap-wd-secure-id=KAaGOd0pc2u4NDQyI9tQDw%3D%3D&SAPEVENTQUEUE=Page_ContextMenu%EE%80%82Id%EE%80%84...page%EE%80%85ControlId%EE%80%84zzzzJBDO.TreeView.FilesTreeItemType.0.childNode.1.Files.0%EE%80%85PosX%EE%80%8497%EE%80%85PosY%EE%80%84170%EE%80%85Shift%EE%80%84false%EE%80%85Ctrl%EE%80%84false%EE%80%85Alt%EE%80%84false%EE%80%83%EE%80%82ClientAction%EE%80%84submit%EE%80%83%EE%80%82%EE%80%83%EE%80%81Form_Request%EE%80%82Id%EE%80%84...form%EE%80%85Async%EE%80%84false%EE%80%85FocusInfo%EE%80%84%40%7B%22sFocussedNodeId%22%3A%20%22zzzzJBDO.TreeView.FilesTreeItemType.0.childNode.1.Files.0%22%2C%20%22sFocussedId%22%3A%20%22zzzzJBDO.TreeView.FilesTreeItemType.0.childNode.1.Files.0-cnt-start%22%2C%20%22sApplyControlId%22%3A%20%22zzzzJBDO.TreeView.catalogTree%22%7D%EE%80%85Hash%EE%80%84%EE%80%85DomChanged%EE%80%84false%EE%80%85IsDirty%EE%80%84false%EE%80%83%EE%80%82EnqueueCardinality%EE%80%84single%EE%80%83%EE%80%82%EE%80%83
    14:24:59:057 Path ********* HTTP Worker [@875917609],5,D... ...tion.programmatic.getLoggedInUser() Entering method
    14:24:59:057 Debug ********* HTTP Worker [@875917609],5,D... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:24:59:057 Debug ********* HTTP Worker [@875917609],5,D... ...thentication.programmatic.getTicket Found data for the ticket
    14:24:59:058 Debug ********* HTTP Worker [@875917609],5,D... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:24:59:058 Path ********* HTTP Worker [@875917609],5,D... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:24:59:062 Path ********* HTTP Worker [@875917609],5,D... ...ication.programmatic.getAuthSchemes Entering method
    14:24:59:402 Debug ********* HTTP Worker [@875917609],5,D... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30008, REPLY:
    HTTP/1.1 200 OK
    14:24:59:402 Debug ********* HTTP Worker [@875917609],5,D... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30008, REPLY:
    Server: SAP NetWeaver Application Server 7.41 / AS Java 7.40
    Cache-Control: no-cache, no-store
    Expires: -1
    Pragma: no-cache, no-store
    Content-Type: text/xml;charset=UTF-8
    Content-Encoding: gzip
    Date: Mon, 30 Jun 2014 12:24:59 GMT
    Transfer-Encoding: chunked
    14:25:00:310 Debug Guest HTTP Worker [@1640558794],5,... ...ttpserver.HttpTraceRequest.traceRaw CLIENT: 30009, REQUEST:
    POST /webdynpro/resources/sap.com/pb/PageBuilder HTTP/1.1
    accept: */*
    accept-language: de
    referer: http://*********:50100/webdynpro/resources/sap.com/pb/PageBuilder;jsessionid=vSGTJpcu-sQU_xveTHdP6ur7hqXsRgG6O7kA_SAP
    x-requested-with: XMLHttpRequest
    content-type: application/x-www-form-urlencoded
    accept-encoding: gzip, deflate
    user-agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3)
    host: *********:50100
    content-length: 974
    connection: Keep-Alive
    cache-control: no-cache
    cookie: saplb_*=(J2EE12139420)12139450; MYSAPSSO2=AjExMDAgAA1wb3J0YWw6YTI3NjMyiAAHZGVmYXVsdAEABkEyNzYzMgIAAzAwMAMAA0RQNQQADDIwMTQwNjMwMTIwMAUABAAAAAgKAAZBMjc2MzL%2FAQQwggEABgkqhkiG9w0BBwKggfIwge8CAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBzzCBzAIBATAiMB0xDDAKBgNVBAMTA0RQNTENMAsGA1UECxMESjJFRQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTQwNjMwMTIwMDA5WjAjBgkqhkiG9w0BCQQxFgQUNs4%2FHri8F11VFYhshuOhiyYp6HUwCQYHKoZIzjgEAwQuMCwCFB2MMiML6NTm3!ivKk9HyOPsFXTTAhRIuOABa2KJvsZ2OW3Kxk54lC0oTg%3D%3D; JSESSIONID=vSGTJpcu-sQU_xveTHdP6ur7hqXsRgG6O7kA_SAP5LQnigZlKmtBX197-cBmidml; JSESSIONMARKID=-eEc3Ayv-HiHE_pKLmCIaxFJho6uah7XxWp7o7uQA; PortalAlias=portal
    sap-ext-sid=ELAtPibSEw6d2rrh*yg5QQ--jG9Rt3CREdAZSPlAAf*yKQ--&sap-wd-cltwndid=WID1404129774581&sap-wd-norefresh=X&sap-wd-secure-id=KAaGOd0pc2u4NDQyI9tQDw%3D%3D&SAPEVENTQUEUE=PopupMenu_Select%EE%80%82Id%EE%80%84zzzzJBDO.TreeView.BrowseContextMenu%EE%80%85ItemId%EE%80%84zzzzJBDO.TreeView._55%EE%80%85ConnectedControlId%EE%80%84zzzzJBDO.TreeView.FilesTreeItemType.0.childNode.1.Files.0%EE%80%85Checked%EE%80%84false%EE%80%85UserData%EE%80%84%EE%80%83%EE%80%82ClientAction%EE%80%84submit%EE%80%83%EE%80%82ContextPath%EE%80%84FolderContent.0.childNode.1.Files.0%EE%80%85urEventName%EE%80%84POPUPMENUITEMSELECT%EE%80%83%EE%80%81Form_Request%EE%80%82Id%EE%80%84...form%EE%80%85Async%EE%80%84false%EE%80%85FocusInfo%EE%80%84%40%7B%22sFocussedId%22%3A%20%22zzzzJBDO.TreeView.FilesTreeItemType.0.childNode.1.Files.0%22%7D%EE%80%85Hash%EE%80%84%EE%80%85DomChanged%EE%80%84false%EE%80%85IsDirty%EE%80%84false%EE%80%83%EE%80%82EnqueueCardinality%EE%80%84single%EE%80%83%EE%80%82%EE%80%83
    14:25:00:314 Path ********* HTTP Worker [@1640558794],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:314 Debug ********* HTTP Worker [@1640558794],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:314 Debug ********* HTTP Worker [@1640558794],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:315 Debug ********* HTTP Worker [@1640558794],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:315 Path ********* HTTP Worker [@1640558794],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:316 Path ********* HTTP Worker [@1640558794],5,... ...ication.programmatic.getAuthSchemes Entering method
    14:25:00:341 Debug ********* HTTP Worker [@1640558794],5,... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30009, REPLY:
    HTTP/1.1 200 OK
    14:25:00:341 Debug ********* HTTP Worker [@1640558794],5,... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30009, REPLY:
    Server: SAP NetWeaver Application Server 7.41 / AS Java 7.40
    Cache-Control: no-cache, no-store
    Expires: -1
    Pragma: no-cache, no-store
    Content-Type: text/xml;charset=UTF-8
    Content-Encoding: gzip
    Date: Mon, 30 Jun 2014 12:25:00 GMT
    Transfer-Encoding: chunked
    14:25:00:725 Debug Guest HTTP Worker [@1510174997],5,... ...ttpserver.HttpTraceRequest.traceRaw CLIENT: 30010, REQUEST:
    GET /irj/servlet/prt/portal/prtroot/com.sap.portal.pagebuilder.IviewModeProxy?iview_id=pcd:portal_content/administrator/super_admin/super_admin_role/com.sap.portal.content_administration/com.sap.portal.content_admin_ws/com.sap.portal.wd_portal_content/com.sap.portal.admin.studio.configuration/actions/com.sap.portal.action.preview/com.sap.portal.defaultPreview&objectID=pcd%3Aportal_content%2Fcom.heidenhain.DW6%2FZEWMDLG_PC_APLZ&sap-config-mode=true&iview_mode=default HTTP/1.1
    accept: */*
    accept-language: de-DE
    user-agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3)
    accept-encoding: gzip, deflate
    host: *********:50100
    connection: Keep-Alive
    cookie: saplb_*=(J2EE12139420)12139450; MYSAPSSO2=AjExMDAgAA1wb3J0YWw6YTI3NjMyiAAHZGVmYXVsdAEABkEyNzYzMgIAAzAwMAMAA0RQNQQADDIwMTQwNjMwMTIwMAUABAAAAAgKAAZBMjc2MzL%2FAQQwggEABgkqhkiG9w0BBwKggfIwge8CAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBzzCBzAIBATAiMB0xDDAKBgNVBAMTA0RQNTENMAsGA1UECxMESjJFRQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTQwNjMwMTIwMDA5WjAjBgkqhkiG9w0BCQQxFgQUNs4%2FHri8F11VFYhshuOhiyYp6HUwCQYHKoZIzjgEAwQuMCwCFB2MMiML6NTm3!ivKk9HyOPsFXTTAhRIuOABa2KJvsZ2OW3Kxk54lC0oTg%3D%3D; JSESSIONID=vSGTJpcu-sQU_xveTHdP6ur7hqXsRgG6O7kA_SAP5LQnigZlKmtBX197-cBmidml; JSESSIONMARKID=-eEc3Ayv-HiHE_pKLmCIaxFJho6uah7XxWp7o7uQA; PortalAlias=portal
    14:25:00:727 Path ********* HTTP Worker [@1510174997],5,... ....getLoggedInUser(request, response) Entering method with (com.sap.portal.http.RequestWrapper@2011904b, [email protected]183c5f)
    14:25:00:727 Debug ********* HTTP Worker [@1510174997],5,... ....getLoggedInUser(request, response) Found user in session.
    14:25:00:727 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:727 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Trying to get subject from security session.
    14:25:00:727 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:727 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Set transient attributes.
    14:25:00:728 Debug ********* HTTP Worker [@1510174997],5,... ....getLoggedInUser(request, response) User principal: ********* (authentication method: mysapsso2)
    14:25:00:728 Debug ********* HTTP Worker [@1510174997],5,... ....getLoggedInUser(request, response) IUser object: Message buffer:
    No messages available.
    Transient data:
    * com.sap.security.core.persistence.imp.PrincipalDatabag Mon Jun 30 14:25:00 CEST 2014
    * UniqueID: USER.CORP_LDAP.*********
    * Type: USER
    * Home data source: CORP_LDAP
    * Private id part: *********
    * Existence not checked.
    * "com.sap.security.core.usermanagement"|->"j_authscheme" (no time limit)="default"
    * "com.sap.security.core.usermanagement"|->"MYSAPSSO2_STRING" (no time limit)="AjExMDAgAA1wb3J0YWw6YTI3NjMyiAAHZGVmYXVsdAEABkEyNzYz... (total length: 464 characters)"
    Persistent data:
    * com.sap.security.core.persistence.imp.PrincipalDatabag Mon Jun 30 14:25:00 CEST 2014
    * UniqueID: USER.CORP_LDAP.*********
    * Type: USER
    * Home data source: CORP_LDAP
    * Private id part: *********
    * Principal exists.
    * Direct parents:
    * ROLE: ROLE.UME_ROLE_PERSISTENCE.un:Administrator
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_SLD_CONFIGURATOR
    *       ROLE.UME_ROLE_PERSISTENCE.un:XiDir_Unrestricted
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ID_SERV_USER
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_API_DEVELOP_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ALERTCONF_DISPLAY_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_PCK_ADMIN
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_BPE_ADMINISTRATOR_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_RWB_SERV_USER
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ALERTCONFIGURATOR_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_CONFIGURATOR_J2EE
    *       ROLE.PCD_ROLE_PERSISTENCE.VvlvkEGjiW9zPFaxR/4pd2/bX5Q=
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ADMINISTRATOR_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:NWA_SUPERADMIN
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_SUPPORT_J2EE
    *       ROLE.PCD_ROLE_PERSISTENCE.q3C4FsluddsTqyHfaLsF26DZBEg=
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_APPL_SERV_USER
    * GRUP: GRUP.PRIVATE_DATASOURCE.un:SAP_XI_CONFIGURATOR
    *       GRUP.PRIVATE_DATASOURCE.un:SAP_XI_CONTENT_ORGANIZER
    *       GRUP.PRIVATE_DATASOURCE.un:SAP_XI_DEVELOPER
    *       GRUP.CORP_LDAP.cn=9999acc-jhp-ep-enable,ou=groups,ou=dp5,ou=sap-ep-entw,ou=sap-ep,o=jh,c=de
    *       GRUP.SUPER_GROUPS_DATASOURCE.EVERYONE
    *       GRUP.SUPER_GROUPS_DATASOURCE.AUTHENTICATED_USERS
    * "$serviceUser$"|->"SERVICEUSER_ATTRIBUTE" (no time limit)=
    * "com.sap.portal.dsm"|->"DebugControlFlag" (no time limit)=
    * "com.sap.portal.aidebug"|->"AppIntegratorDebugMode" (no time limit)=
    * "PrimaryHelpNS"|->"PrimaryHelpFlag" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"timezone" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"accessibilitylevel" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"email" (no time limit)="*******************"
    * "com.sap.security.core.usermanagement"|->"locale" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"lastname" (no time limit)="****"
    * "com.sap.security.core.usermanagement"|->"firstname" (no time limit)="*****"
    * "com.sap.security.core.usermanagement"|->"uniquename" (no time limit)="*********"
    * "com.sap.security.core.usermanagement"|->"salutation" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"displayname" (no time limit)=
    * "com.sapportals.portal.navigation"|->"uipmode" (no time limit)=
    14:25:00:728 Debug ********* HTTP Worker [@1510174997],5,... ....getLoggedInUser(request, response) Authscheme: default
    14:25:00:729 Path ********* HTTP Worker [@1510174997],5,... ....getLoggedInUser(request, response) Exiting method with *********
    14:25:00:729 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:729 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:730 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:730 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:730 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:730 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:730 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:730 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:731 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:731 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:733 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:733 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:733 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:734 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:734 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:734 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:734 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:735 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:735 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:735 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:735 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:735 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:735 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:736 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:736 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:736 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:736 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:736 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:736 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:736 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:737 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:737 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:737 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:737 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:737 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:737 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:738 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:738 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:738 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:738 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:740 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:741 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:741 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:741 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:741 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:741 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:742 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:742 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:742 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:742 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:742 Path ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthScheme Entering method with (default)
    14:25:00:742 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:743 Debug ********* HTTP Worker [@1510174997],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:743 Debug ********* HTTP Worker [@1510174997],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:743 Debug ********* HTTP Worker [@1510174997],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:743 Path ********* HTTP Worker [@1510174997],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:745 Debug ********* HTTP Worker [@1510174997],5,... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30010, REPLY:
    HTTP/1.1 302 Found
    14:25:00:745 Debug ********* HTTP Worker [@1510174997],5,... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30010, REPLY:
    Server: SAP NetWeaver Application Server 7.41 / AS Java 7.40
    Content-Type: text/html;charset=UTF-8
    Location: http://*********:50100/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.heidenhain.DW6!2fZEWMDLG_PC_APLZ?sap-config-mode=true
    Content-Encoding: gzip
    Content-Length: 762
    Date: Mon, 30 Jun 2014 12:25:00 GMT
    14:25:00:748 Debug Guest HTTP Worker [@1492310080],5,... ...ttpserver.HttpTraceRequest.traceRaw CLIENT: 30011, REQUEST:
    GET /irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.heidenhain.DW6!2fZEWMDLG_PC_APLZ?sap-config-mode=true HTTP/1.1
    accept: */*
    accept-language: de-DE
    user-agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3)
    accept-encoding: gzip, deflate
    host: *********:50100
    connection: Keep-Alive
    cookie: saplb_*=(J2EE12139420)12139450; MYSAPSSO2=AjExMDAgAA1wb3J0YWw6YTI3NjMyiAAHZGVmYXVsdAEABkEyNzYzMgIAAzAwMAMAA0RQNQQADDIwMTQwNjMwMTIwMAUABAAAAAgKAAZBMjc2MzL%2FAQQwggEABgkqhkiG9w0BBwKggfIwge8CAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBzzCBzAIBATAiMB0xDDAKBgNVBAMTA0RQNTENMAsGA1UECxMESjJFRQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTQwNjMwMTIwMDA5WjAjBgkqhkiG9w0BCQQxFgQUNs4%2FHri8F11VFYhshuOhiyYp6HUwCQYHKoZIzjgEAwQuMCwCFB2MMiML6NTm3!ivKk9HyOPsFXTTAhRIuOABa2KJvsZ2OW3Kxk54lC0oTg%3D%3D; JSESSIONID=vSGTJpcu-sQU_xveTHdP6ur7hqXsRgG6O7kA_SAP5LQnigZlKmtBX197-cBmidml; JSESSIONMARKID=-eEc3Ayv-HiHE_pKLmCIaxFJho6uah7XxWp7o7uQA; PortalAlias=portal
    14:25:00:753 Path ********* HTTP Worker [@1492310080],5,... ....getLoggedInUser(request, response) Entering method with (com.sap.portal.http.RequestWrapper@319c17af, [email protected]207c84)
    14:25:00:753 Debug ********* HTTP Worker [@1492310080],5,... ....getLoggedInUser(request, response) Found user in session.
    14:25:00:753 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:753 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Trying to get subject from security session.
    14:25:00:754 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:754 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Set transient attributes.
    14:25:00:754 Debug ********* HTTP Worker [@1492310080],5,... ....getLoggedInUser(request, response) User principal: ********* (authentication method: mysapsso2)
    14:25:00:755 Debug ********* HTTP Worker [@1492310080],5,... ....getLoggedInUser(request, response) IUser object: Message buffer:
    No messages available.
    Transient data:
    * com.sap.security.core.persistence.imp.PrincipalDatabag Mon Jun 30 14:25:00 CEST 2014
    * UniqueID: USER.CORP_LDAP.*********
    * Type: USER
    * Home data source: CORP_LDAP
    * Private id part: *********
    * Existence not checked.
    * "com.sap.security.core.usermanagement"|->"j_authscheme" (no time limit)="default"
    * "com.sap.security.core.usermanagement"|->"MYSAPSSO2_STRING" (no time limit)="AjExMDAgAA1wb3J0YWw6YTI3NjMyiAAHZGVmYXVsdAEABkEyNzYz... (total length: 464 characters)"
    Persistent data:
    * com.sap.security.core.persistence.imp.PrincipalDatabag Mon Jun 30 14:25:00 CEST 2014
    * UniqueID: USER.CORP_LDAP.*********
    * Type: USER
    * Home data source: CORP_LDAP
    * Private id part: *********
    * Principal exists.
    * Direct parents:
    * ROLE: ROLE.UME_ROLE_PERSISTENCE.un:Administrator
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_SLD_CONFIGURATOR
    *       ROLE.UME_ROLE_PERSISTENCE.un:XiDir_Unrestricted
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ID_SERV_USER
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_API_DEVELOP_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ALERTCONF_DISPLAY_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_PCK_ADMIN
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_BPE_ADMINISTRATOR_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_RWB_SERV_USER
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ALERTCONFIGURATOR_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_CONFIGURATOR_J2EE
    *       ROLE.PCD_ROLE_PERSISTENCE.VvlvkEGjiW9zPFaxR/4pd2/bX5Q=
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ADMINISTRATOR_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:NWA_SUPERADMIN
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_SUPPORT_J2EE
    *       ROLE.PCD_ROLE_PERSISTENCE.q3C4FsluddsTqyHfaLsF26DZBEg=
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_APPL_SERV_USER
    * GRUP: GRUP.PRIVATE_DATASOURCE.un:SAP_XI_CONFIGURATOR
    *       GRUP.PRIVATE_DATASOURCE.un:SAP_XI_CONTENT_ORGANIZER
    *       GRUP.PRIVATE_DATASOURCE.un:SAP_XI_DEVELOPER
    *       GRUP.CORP_LDAP.cn=9999acc-jhp-ep-enable,ou=groups,ou=dp5,ou=sap-ep-entw,ou=sap-ep,o=jh,c=de
    *       GRUP.SUPER_GROUPS_DATASOURCE.EVERYONE
    *       GRUP.SUPER_GROUPS_DATASOURCE.AUTHENTICATED_USERS
    * "$serviceUser$"|->"SERVICEUSER_ATTRIBUTE" (no time limit)=
    * "com.sap.portal.dsm"|->"DebugControlFlag" (no time limit)=
    * "com.sap.portal.aidebug"|->"AppIntegratorDebugMode" (no time limit)=
    * "PrimaryHelpNS"|->"PrimaryHelpFlag" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"timezone" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"accessibilitylevel" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"email" (no time limit)="*******"
    * "com.sap.security.core.usermanagement"|->"locale" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"lastname" (no time limit)="*******"
    * "com.sap.security.core.usermanagement"|->"firstname" (no time limit)="*******"
    * "com.sap.security.core.usermanagement"|->"uniquename" (no time limit)="*********"
    * "com.sap.security.core.usermanagement"|->"salutation" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"displayname" (no time limit)=
    * "com.sapportals.portal.navigation"|->"uipmode" (no time limit)=
    14:25:00:755 Debug ********* HTTP Worker [@1492310080],5,... ....getLoggedInUser(request, response) Authscheme: default
    14:25:00:755 Path ********* HTTP Worker [@1492310080],5,... ....getLoggedInUser(request, response) Exiting method with *********
    14:25:00:756 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:756 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:756 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:756 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:757 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:757 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:757 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:757 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:758 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:758 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:758 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:758 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:758 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:759 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:759 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:760 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:760 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:760 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:761 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:761 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:761 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:761 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:762 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:762 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:762 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:762 Path ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthScheme Entering method with (default)
    14:25:00:762 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:762 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:762 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:763 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:763 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:763 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:763 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:764 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:764 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:764 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:764 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:764 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:764 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:764 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:765 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:765 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:765 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:765 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:766 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:766 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:769 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:770 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:770 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:770 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:770 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:770 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:771 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:771 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:771 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:771 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:781 Debug ********* HTTP Worker [@1492310080],5,... ...ication.vuser.VirtualUserDataSource Populate principal databag failed as principal was not found.
    14:25:00:783 Info ********* HTTP Worker [@1492310080],5,... ...ap.security.core.util.SecurityAudit User mapping used | USERMAPPING.USE | USER.CORP_LDAP.********* |  | systemtype=[SAP_R3], system=["DW6CLNT100" (system landscape: "EnterprisePortal")], remote user ID=[(none)], uses strong encryption=[false]
    14:25:00:783 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:783 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:783 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:783 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:783 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:784 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:784 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:784 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:784 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:784 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:785 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:785 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:785 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:785 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:785 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:786 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:786 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:786 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:787 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:787 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:787 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:787 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:787 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:787 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:787 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:788 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:788 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:789 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:789 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:789 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:790 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:791 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:791 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:791 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:791 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:791 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:792 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:792 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:792 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:792 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:793 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:793 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:793 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:793 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:794 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:795 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:795 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:795 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:796 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:796 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:797 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:797 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:798 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:798 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:798 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:799 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:799 Debug ********* HTTP Worker [@1492310080],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:799 Debug ********* HTTP Worker [@1492310080],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:799 Debug ********* HTTP Worker [@1492310080],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:800 Path ********* HTTP Worker [@1492310080],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:802 Debug ********* HTTP Worker [@1492310080],5,... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30011, REPLY:
    HTTP/1.1 200 OK
    14:25:00:803 Debug ********* HTTP Worker [@1492310080],5,... ...rver.HttpTraceResponse.traceHeaders CLIENT: 30011, REPLY:
    Server: SAP NetWeaver Application Server 7.41 / AS Java 7.40
    Content-Type: text/html; charset=UTF-8
    Pragma: no-cache
    Cache-Control: no-store, no-cache, must-revalidate
    expires: 0
    Content-Encoding: gzip
    Date: Mon, 30 Jun 2014 12:25:00 GMT
    Transfer-Encoding: chunked
    14:25:00:825 Debug Guest HTTP Worker [@1497262423],5,... ...ttpserver.HttpTraceRequest.traceRaw CLIENT: 30012, REQUEST:
    POST /irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.heidenhain.DW6!2fZEWMDLG_PC_APLZ?sap-config-mode=true HTTP/1.1
    accept: application/x-ms-application, image/jpeg, application/xaml+xml, image/gif, image/pjpeg, application/x-ms-xbap, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
    referer: http://*********:50100/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.heidenhain.DW6!2fZEWMDLG_PC_APLZ?sap-config-mode=true
    accept-language: de-DE
    user-agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3)
    content-type: application/x-www-form-urlencoded
    accept-encoding: gzip, deflate
    host: *********:50100
    content-length: 90
    connection: Keep-Alive
    cache-control: no-cache
    cookie: saplb_*=(J2EE12139420)12139450; MYSAPSSO2=AjExMDAgAA1wb3J0YWw6YTI3NjMyiAAHZGVmYXVsdAEABkEyNzYzMgIAAzAwMAMAA0RQNQQADDIwMTQwNjMwMTIwMAUABAAAAAgKAAZBMjc2MzL%2FAQQwggEABgkqhkiG9w0BBwKggfIwge8CAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBzzCBzAIBATAiMB0xDDAKBgNVBAMTA0RQNTENMAsGA1UECxMESjJFRQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTQwNjMwMTIwMDA5WjAjBgkqhkiG9w0BCQQxFgQUNs4%2FHri8F11VFYhshuOhiyYp6HUwCQYHKoZIzjgEAwQuMCwCFB2MMiML6NTm3!ivKk9HyOPsFXTTAhRIuOABa2KJvsZ2OW3Kxk54lC0oTg%3D%3D; JSESSIONID=vSGTJpcu-sQU_xveTHdP6ur7hqXsRgG6O7kA_SAP5LQnigZlKmtBX197-cBmidml; JSESSIONMARKID=-eEc3Ayv-HiHE_pKLmCIaxFJho6uah7XxWp7o7uQA; PortalAlias=portal
    sap-config-mode=true&ClientWindowID=WID1404131100732&%24Roundtrip=true&%24DebugAction=null
    14:25:00:827 Path ********* HTTP Worker [@1497262423],5,... ....getLoggedInUser(request, response) Entering method with (com.sap.portal.http.RequestWrapper@2b8cfef, [email protected]5b554e)
    14:25:00:827 Debug ********* HTTP Worker [@1497262423],5,... ....getLoggedInUser(request, response) Found user in session.
    14:25:00:827 Debug ********* HTTP Worker [@1497262423],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:827 Debug ********* HTTP Worker [@1497262423],5,... ...thentication.programmatic.getTicket Trying to get subject from security session.
    14:25:00:827 Debug ********* HTTP Worker [@1497262423],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:827 Debug ********* HTTP Worker [@1497262423],5,... ...hentication.programmatic.enrichUser Set transient attributes.
    14:25:00:828 Debug ********* HTTP Worker [@1497262423],5,... ....getLoggedInUser(request, response) User principal: ********* (authentication method: mysapsso2)
    14:25:00:828 Debug ********* HTTP Worker [@1497262423],5,... ....getLoggedInUser(request, response) IUser object: Message buffer:
    No messages available.
    Transient data:
    * com.sap.security.core.persistence.imp.PrincipalDatabag Mon Jun 30 14:25:00 CEST 2014
    * UniqueID: USER.CORP_LDAP.*********
    * Type: USER
    * Home data source: CORP_LDAP
    * Private id part: *********
    * Existence not checked.
    * "com.sap.security.core.usermanagement"|->"j_authscheme" (no time limit)="default"
    * "com.sap.security.core.usermanagement"|->"MYSAPSSO2_STRING" (no time limit)="AjExMDAgAA1wb3J0YWw6YTI3NjMyiAAHZGVmYXVsdAEABkEyNzYz... (total length: 464 characters)"
    Persistent data:
    * com.sap.security.core.persistence.imp.PrincipalDatabag Mon Jun 30 14:25:00 CEST 2014
    * UniqueID: USER.CORP_LDAP.*********
    * Type: USER
    * Home data source: CORP_LDAP
    * Private id part: *********
    * Principal exists.
    * Direct parents:
    * ROLE: ROLE.UME_ROLE_PERSISTENCE.un:Administrator
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_SLD_CONFIGURATOR
    *       ROLE.UME_ROLE_PERSISTENCE.un:XiDir_Unrestricted
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ID_SERV_USER
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_API_DEVELOP_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ALERTCONF_DISPLAY_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_PCK_ADMIN
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_BPE_ADMINISTRATOR_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_RWB_SERV_USER
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ALERTCONFIGURATOR_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_CONFIGURATOR_J2EE
    *       ROLE.PCD_ROLE_PERSISTENCE.VvlvkEGjiW9zPFaxR/4pd2/bX5Q=
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_ADMINISTRATOR_J2EE
    *       ROLE.UME_ROLE_PERSISTENCE.un:NWA_SUPERADMIN
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_SUPPORT_J2EE
    *       ROLE.PCD_ROLE_PERSISTENCE.q3C4FsluddsTqyHfaLsF26DZBEg=
    *       ROLE.UME_ROLE_PERSISTENCE.un:SAP_XI_APPL_SERV_USER
    * GRUP: GRUP.PRIVATE_DATASOURCE.un:SAP_XI_CONFIGURATOR
    *       GRUP.PRIVATE_DATASOURCE.un:SAP_XI_CONTENT_ORGANIZER
    *       GRUP.PRIVATE_DATASOURCE.un:SAP_XI_DEVELOPER
    *       GRUP.CORP_LDAP.cn=9999acc-jhp-ep-enable,ou=groups,ou=dp5,ou=sap-ep-entw,ou=sap-ep,o=jh,c=de
    *       GRUP.SUPER_GROUPS_DATASOURCE.EVERYONE
    *       GRUP.SUPER_GROUPS_DATASOURCE.AUTHENTICATED_USERS
    * "$usermapping$"|->"ep6_sl_alias:e08dfb083a25d8c13fd73346ec28c7ae" (no time limit)=
    * "$serviceUser$"|->"SERVICEUSER_ATTRIBUTE" (no time limit)=
    * "com.sap.portal.dsm"|->"DebugControlFlag" (no time limit)=
    * "com.sap.portal.aidebug"|->"AppIntegratorDebugMode" (no time limit)=
    * "PrimaryHelpNS"|->"PrimaryHelpFlag" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"timezone" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"accessibilitylevel" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"email" (no time limit)="*******"
    * "com.sap.security.core.usermanagement"|->"locale" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"lastname" (no time limit)="*******"
    * "com.sap.security.core.usermanagement"|->"firstname" (no time limit)="********"
    * "com.sap.security.core.usermanagement"|->"uniquename" (no time limit)="*********"
    * "com.sap.security.core.usermanagement"|->"salutation" (no time limit)=
    * "com.sap.security.core.usermanagement"|->"displayname" (no time limit)=
    * "com.sapportals.portal.navigation"|->"uipmode" (no time limit)=
    14:25:00:828 Debug ********* HTTP Worker [@1497262423],5,... ....getLoggedInUser(request, response) Authscheme: default
    14:25:00:828 Path ********* HTTP Worker [@1497262423],5,... ....getLoggedInUser(request, response) Exiting method with *********
    14:25:00:829 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:829 Debug ********* HTTP Worker [@1497262423],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:829 Debug ********* HTTP Worker [@1497262423],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:829 Debug ********* HTTP Worker [@1497262423],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:829 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:829 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:830 Debug ********* HTTP Worker [@1497262423],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:830 Debug ********* HTTP Worker [@1497262423],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:830 Debug ********* HTTP Worker [@1497262423],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:830 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:830 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:830 Debug ********* HTTP Worker [@1497262423],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:830 Debug ********* HTTP Worker [@1497262423],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:831 Debug ********* HTTP Worker [@1497262423],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:831 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:832 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:832 Debug ********* HTTP Worker [@1497262423],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:832 Debug ********* HTTP Worker [@1497262423],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:832 Debug ********* HTTP Worker [@1497262423],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:832 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:833 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:833 Debug ********* HTTP Worker [@1497262423],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:833 Debug ********* HTTP Worker [@1497262423],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:833 Debug ********* HTTP Worker [@1497262423],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:833 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:834 Path ********* HTTP Worker [@1497262423],5,... ...tication.programmatic.getAuthScheme Entering method with (default)
    14:25:00:834 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:834 Debug ********* HTTP Worker [@1497262423],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:834 Debug ********* HTTP Worker [@1497262423],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:25:00:834 Debug ********* HTTP Worker [@1497262423],5,... ...hentication.programmatic.enrichUser Does not have any public credentials
    14:25:00:834 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Exiting method with *********
    14:25:00:835 Path ********* HTTP Worker [@1497262423],5,... ...tion.programmatic.getLoggedInUser() Entering method
    14:25:00:835 Debug ********* HTTP Worker [@1497262423],5,... ...tication.programmatic.getAuthscheme Trying to get subject from security session.
    14:25:00:835 Debug ********* HTTP Worker [@1497262423],5,... ...thentication.programmatic.getTicket Found data for the ticket
    14:2

    Hi Bastian
    some time ago I had the same problem,
    Scenario's
    1. SSO logon from ABAP SAPGUI to JAVA --> FAILS.
    2. SSO logon from ABAP webgui to JAVA --> SUCCESS.
    3. SSO logon from JAVA to ABAP --> SUCCESS
    If I understand you correctly, then you have the same issue I had with scenario 1. Since SAPGUI does not create MYSAPSSO2 cookie for the Java server, this "failing" behavior is normal.
    In case of SPNEGO or client certificate authentication the J2EE server will not ask for user ID and password.
    In case you have a different problem, I can advise you to study the 2 notes:
    1257108 - Collective Note: Analyzing issues with Single Sign On (SSO)
    1083421 - SSO2 Wizard
    Hope this will help you further investigate the problem
    Regards
    Sem

  • HELP- Buttons on 20" don't work with MacBook

    For the past two years I've been using my 20" Apple Cinema Display (the one with the white edges, not the newest version) with my 12" PowerBook by connecting it through Apple's ADC to DVI adapter and plugging it into the Mini-DVI slot on my PowerBook. It worked great and I especially liked how the power button on the display would turn the computer on without the need to open the lid of the PowerBook.
    I just bought a Black MacBook Pro, used the Migration assistant to transfer over my User folder. All works fine except the buttons on the display no longer does anything. I'll push it and it will glow but it doesn't seem any signal is sent to the MacBook. The display works fine when plugged in but neither the power button or the brightness button works anymore with the new MacBook.
    Very frustrating...any ideas? Could this be a limitation of the new integrated graphics card? But what would that have to do with powering on the computer?
    My MacBook currently only has 512MB RAM. The 2GB upgrade chip is on the way, but I'm not sure this would make any difference.

    Never got this to work, looks like it's a hardware limitation of the converter.

  • How to find function codes of the buttons in ABAP Webdynpro

    I had 2 buttons in my input screen of the WebDynpro, for both buttons some piece of logic is common. So i wrote that common logic in the default method 'WDDOBEFOREACTION', which will be triggered always before the corresponding methods got triggered.
    Now my problem is the method 'WDDOBEFOREACTION' triggering even when user hits ENTER in the input screen, to prevent the common logic not to execute need to write some condition based on the user action. But unfortunately was not able to find the way. Could any one suggest me on this.

    For your specific requirement :
    you should first determine the current action which triggered this WDDOBEFOREACTION method,
    as this method triggers for every action performed on the webdynpro view.
    For that below is the code
      DATA lo_api_view_controller    TYPE REF TO if_wd_view_controller.
      DATA lo_action                 TYPE REF TO if_wd_action.
      lo_api_view_controller = wd_this->wd_get_api( ).
      lo_action = lo_api_view_controller->get_current_action( ).
      IF lo_action IS NOT BOUND.
              IF lo_action->name EQ 'BUTTON1'   OR   lo_action->name EQ 'BUTTON2'.
    Where BUTTON1 and BUTTON2 are the actions associated with both the buttons.
    Write your common logic here and now it would get executed only for both these button cliks only
               ENDIF.
    ENDIF.
    Edited by: Avasarala Sampath on Oct 28, 2011 7:26 AM
    Edited by: Avasarala Sampath on Oct 28, 2011 7:29 AM

  • N86 media buttons and volume don't work with music

    I used my N86 on a trip last week as my music player, and used the nokia remote attachment which I used to play/pause, skip, repeat and adjust volume with no problems.  Just today I used my phone again, this time without the remote, or headphones, and now the media buttons on the end of the phone (when slid oposite the keypad) don't work, and the sound volume won't adjust with the volume key.  I even tried with the remote and that didn't work either.  The volume works fine with phone calls.  Any ideas on what caused this?
    PS I just updated to 20.115 and this did not correct the problem.  
    Bruce
    Message Edited by Erhard on 18-Nov-2009 02:43 PM
    Solved!
    Go to Solution.

    Sigh.. sorry to hear that. What is it with these phones that you have to format them all the time? (a rhetoric question, knowledgeable presons needn't answer )
    (Trivia: search results for 'hard reset': 6738, search results for 'format': 16063, search results for 'factory reset': 4329)
    You'll probably soon have that same problem again - my all means I don't hope you will, but I'm just guessing
    kvirtanen.deviantart.com

  • Enter Key doesnot work with JPopupMenu

    Bug ID: 4212563 JPopupMenu doesn't support arrow key navigation or Enter ,
    Sun says this bug id has been fixed, i am using 1.4.2_04-b05 , the arrow key seems to be working but the Enter key still fails for me? does someone have a workaround ?
    Thanks

    # Click the orange Firefox button and select Add-ons to open the add-ons manager
    # In the list of extensions click on AVG Safe Search to select it, then click the Disable button
    # Restart Firefox

Maybe you are looking for