Synchronization in ABAP ....

Hello friends,
I would like to know do we have kind of synchronization utility avaible as we have in java world.... like as soon as a user is working with an object, then the other user can only view that particular object ( not edit it )
thanks in advance...

Haider,
If you are talking about the custom code, the second you get into EDIT mode of a program / function, other user can only view it.
The same thing is valid for business documents as well. This is internally taken care by SAP.
If you are talking about something else, please explain.
Regards,
Ravi
Note : Please reward the posts that are helpful.

Similar Messages

  • IDM7.1- Synchronization with ABAP and JAVA

    hi all
    we are planning to Integrate EP(datasource: LDAP) and CUA/ABAP system with IDM7.1.
    Can somebody tell me How IDM takes care of CUA syncrhonization with LDAP and EP.  Synchronization is obsolete or its done by IDM internally.
    Please suggest us.
    regards

    Hi Jai,
    1) Connection establishment between LDAP, EP & ABAP.
    2) We define a Synchronization Job in IDM to sycn data between all the above
    3) When there is a change in LDAP or ABAP, Event Agents (out-of-box idm) detects the change and runs the synchronization job.
    How to define the synchronizaiton job is depends on the requirement.
    hope the above helps you.
    regards
    Anand.M

  • Password Hook Configuration in IdM

    Dear Experts,
    Currently I'm working on an IDM password hook implementation. I'm very new to this and need you expert advice on how to implement this scenario.The customer already have a CUA in the landscape and they are would also continue using it. They want IDM only to synchronize the ABAP password with that of windows AD using the password hook functionality of IDM.
    I've installed the IDM runtime engine.MC and the dispatcher on a seperate machine. Now I've to install the password hook on AD and then create provisioning jobs from IC to synchronize the password to the connected ABAP systems
    I've some specific qustions on this -
    1 - The inital load from the CUA works fine but do I also need to read the passwords from CUA.
    2 - How will the AD know where the IDM is located. Do I need to install runtine components on AD also.
    3 - The pssword hook configuration will be done on the AD.
    4 - Once this is complete, how do I create a job that picks up this changed password and updates the Identity Store
    Any help on this would be highly appreciated.
    Regards,
    Amlan
    Edited by: Amlan Dutta on Jan 21, 2011 9:15 AM

    Hi Amlan,
    I've created a how to guide on my on, extending the existing guide, or make it more clearly. But my experiences are from the PasswordHook of IDM 7.0. In my opinion this tool hasn't changed deeply.
    l hope, it will be helpful to you.
    1. You have to Install the PasswordHook and the DSERT (Data Synchronisation Engine RunTime) on one of your DCs.
    2. You have to check each configuration step within the regestry. For this please use the following regestry key (may be it differs from your setting):
    My Computer\HKEY_LOCAL_MACHINE\System\controlset001\control\lsa\MxPwdHook
    3. Within the argument line, please encapsulate the argument %1 with "" to make sure, that in case of <Space>-charakters within the loginname the right string used for the argument %2.
    4. for every field, not containing any content, please ensure by using the registry, that this field is realy empty. During my tests I found out, that some fields are containing <Space>-charakters that can't deleted by the configuration programm.
    If you have any further questions, don't hesitate.
    Kind regards,
    Achim

  • Adding LDAP User store to UME

    We need to authenticate users against an LDAP server.  This works fine from the workbench where the UME ContentSource is database_only.  However, the central WebAs (Netweaver 2004) was installed with ContentSource of r3_rw.  According to the documentation, a prerequisite to adding an LDAP user store is: "You have installed a SAP Web Application Server Java where the UME is configured to use the database of the J2EE Engine as data source."  Since our WebAS Java is not configured this way, is there any way, short of re-installing the server, to add an LDAP user store?  TIA,
    Steve

    Hi Steve,
    Once you choose an ABAP data source, there is no going back.
    You can however synchronize the ABAP with the LDAP server. Have the ABAP user management periodically import users from the LDAP server.
    -Michael

  • How to synchronize concurrent access to static data in ABAP Objects

    Hi,
    1) First of all I mwould like to know the scope of static (class-data) data of an ABAP Objects Class: If changing a static data variable is that change visible to all concurrent processes in the same Application Server?
    2) If that is the case. How can concurrent access to such data (that can be shared between many processes) be controlled. In C one could use semaphores and in Java Synchronized methods and the monitor concept. But what controls are available in ABAP for controlling concurrent access to in-memory data?
    Many thanks for your help!
    Regards,
    Christian

    Hello Christian
    Here is an example that shows that the static attributes of a class are not shared between two reports that are linked via SUBMIT statement.
    *& Report  ZUS_SDN_OO_STATIC_ATTRIBUTES
    REPORT  zus_sdn_oo_static_attributes.
    DATA:
      gt_list        TYPE STANDARD TABLE OF abaplist,
      go_static      TYPE REF TO zcl_sdn_static_attributes.
    <i>* CONSTRUCTOR method of class ZCL_SDN_STATIC_ATTRIBUTES:
    **METHOD constructor.
    *** define local data
    **  DATA:
    **    ld_msg    TYPE bapi_msg.
    **  ADD id_count TO md_count.
    **ENDMETHOD.
    * Static public attribute MD_COUNT (type i), initial value = 1</i>
    PARAMETERS:
      p_called(1)  TYPE c  DEFAULT ' ' NO-DISPLAY.
    START-OF-SELECTION.
    <b>* Initial state of static attribute:
    *    zcl_sdn_static_attributes=>md_count = 0</b>
      syst-index = 0.
      WRITE: / syst-index, '. object: static counter=',
               zcl_sdn_static_attributes=>md_count.
      DO 5 TIMES.
    <b>*   Every time sy-index is added to md_count</b>
        CREATE OBJECT go_static
          EXPORTING
            id_count = syst-index.
        WRITE: / syst-index, '. object: static counter=',
                 zcl_sdn_static_attributes=>md_count.
    <b>*   After the 3rd round we start the report again (via SUBMIT)
    *   and return the result via list memory.
    *   If the value of the static attribute is not reset we would
    *   start with initial value of md_count = 7 (1+1+2+3).</b>
        IF ( p_called = ' '  AND
             syst-index = 3 ).
          SUBMIT zus_sdn_oo_static_attributes EXPORTING LIST TO MEMORY
            WITH p_called = 'X'
          AND RETURN.
          CALL FUNCTION 'LIST_FROM_MEMORY'
            TABLES
              listobject = gt_list
            EXCEPTIONS
              not_found  = 1
              OTHERS     = 2.
          IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          CALL FUNCTION 'DISPLAY_LIST'
    *       EXPORTING
    *         FULLSCREEN                  =
    *         CALLER_HANDLES_EVENTS       =
    *         STARTING_X                  = 10
    *         STARTING_Y                  = 10
    *         ENDING_X                    = 60
    *         ENDING_Y                    = 20
    *       IMPORTING
    *         USER_COMMAND                =
            TABLES
              listobject                  = gt_list
            EXCEPTIONS
              empty_list                  = 1
              OTHERS                      = 2.
          IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
        ENDIF.
      ENDDO.
    <b>* Result: in the 2nd run of the report (via SUBMIT) we get
    *         the same values for the static counter.</b>
    END-OF-SELECTION.
    Regards
      Uwe

  • Synchronization JAVA and ABAP Dictionary

    Hello all,
    I'm going to do some Java-Development and have to call function modules in SAP ABAP (BAPIs) Environment. All the Input and output parameters are defined within the ABAP Dictionary. Do I have to create all these Dataelements and Structures again in the JAVA-Dictionary? Is there no way to generate them from ABAP-Dictionary? I can't believe this!
    Thanks for Help!
    Wolfgang Ritter

    Hi Wolfgang,
    Of course you can generate Proxies to call ABAP BAPIs. Within NWDS, follow this menu path: "File > New > Other" In the popup box select "SAP Connectivity", Click next, this starts the SAP Enterprise Connector wizard that will guide you through connect to an SAP system, selecting BAPIs/RFMs and then will generate all the Java Code needed for calling those BAPIs/RFMs.
    There is tons of documentation out there for this tool.
    Good luck!
    Jeff

  • Job SM:SYNCHRONIZE USER DATA FOR NOTIFICATION canceled

    Dear SAP Guru,
    The BG job SM:SYNCHRONIZE USER DATA FOR NOTIFICATION is canceled every day and it´s
    generating shortdump. Our system is SAP EHP1 for SAP Solution manager.
    SAP ABA and SAP BASIS components are release 701 level 3.
    ST is release 400 level 19
    ST-PI is release 2008_1_700 level 1
    ST-A/PI is release 01L_CRM570
    Pls look on this shortdump.
    Runtime Errors         RAISE_EXCEPTION*
    Date and Time          22.03.2010 06:50:11
    |Short text                                                                                |
    |    Exception condition "CUSTOMIZING_NOT_FOUND" raised.                                           |
    |What happened?                                                                                |
    |    The current ABAP/4 program encountered an unexpected                                          |
    |    situation.                                                                                |
    |What can you do?                                                                                |
    |    Note down which actions and inputs caused the error.                                          |
    |                                                                                |
    |                                                                                |
    |    To process the problem further, contact you SAP system                                        |
    |    administrator.                                                                                |
    |                                                                                |
    |    Using Transaction ST22 for ABAP Dump Analysis, you can look                                   |
    |    at and manage termination messages, and you can also                                          |
    |    keep them for a long time.                                                                    |
    |Error analysis                                                                                |
    |    A RAISE statement in the program "SAPLDSWP_UTILITY" raised the exception                      |
    |    condition "CUSTOMIZING_NOT_FOUND".                                                            |
    |    Since the exception was not intercepted by a superior                                         |
    |    program, processing was terminated.                                                           |
    |                                                                                |
    |    Short description of exception condition:                                                     |
    |                                                                                |
    |                                                                                |
    |    For detailed documentation of the exception condition, use                                    |
    |    Transaction SE37 (Function Library). You can take the called                                  |
    |    function module from the display of active calls.                                             |
    |    -                                                                                |
    |How to correct the error                                                                          |
    |                                                                                |
    |    If the error occures in a non-modified SAP program, you may be able to                        |
    |    find an interim solution in an SAP Note.                                                      |
    |    If you have access to SAP Notes, carry out a search with the following                        |
    |    keywords:                                                                                |
    |                                                                                |
    |    "RAISE_EXCEPTION" " "                                                                         |
    |    "SAPLDSWP_UTILITY" or "LDSWP_UTILITYU19"                                                      |
    |    "DSWP_GET_GLOBAL_CUSTOMIZING"                                                                 |
    |                                                                                |
    |    or                                                                                |
    |                                                                                |
    |    "SAPLDSWP_UTILITY" "CUSTOMIZING_NOT_FOUND"                                                    |
    |                                                                                |
    |    or                                                                                |
    |                                                                                |
    |    "RDSWP_NM_SYNC_USER_DATA " "CUSTOMIZING_NOT_FOUND"                                            |
    |    If you cannot solve the problem yourself and want to send an error                            |
    |    notification to SAP, include the following information:                                       |
    |                                                                                |
    *|   
    |System environment                                                                                |
    |    SAP-Release 701                                                                               |
    |                                                                                |
    |    Application server... "crsgrant"                                                              |
    |    Network address...... "10.128.32.175"                                                         |
    |    Operating system..... "Windows NT"                                                            |
    |    Release.............. "5.2"                                                                   |
    |    Hardware type........ "2x Intel 801686"                                                       |
    |    Character length.... 8 Bits                                                                   |
    |    Pointer length....... 32 Bits                                                                 |
    |    Work process number.. 13                                                                      |
    |    Shortdump setting.... "full"                                                                  |
    |                                                                                |
    |    Database server... "CRSGRANT"                                                                 |
    |    Database type..... "ORACLE"                                                                   |
    |    Database name..... "SM1"                                                                      |
    |    Database user ID.. "SAPSM1"                                                                   |
    |                                                                                |
    |    Terminal.......... " "                                                                        |
    |                                                                                |
    |    Char.set.... "Czech_Czech.28592"                                                              |
    |                                                                                |
    |    SAP kernel....... 701                                                                         |
    |    created (date)... "Apr 12 2009 22:43:15"                                                      |
    |    create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"                              |
    |    Database version. "OCI_10201_SHARE (10.2.0.4.0) "                                             |
    |                                                                                |
    |    Patch level. 39                                                                               |
    |    Patch text.. " "                                                                              |
    |                                                                                |
    |    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."                |
    |    SAP database version. 701                                                                     |
    |    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows                |
    |     NT 6.0"                                                                                |
    |                                                                                |
    |    Memory consumption                                                                            |
    |    Roll.... 8112                                                                                |
    |    EM...... 4181184                                                                              |
    |    Heap.... 0                                                                                |
    |    Page.... 24576                                                                                |
    |    MM Used. 873664                                                                               |
    |    MM Free. 170296                                                                               |
    |User and Transaction                                                                              |
    |                                                                                |
    |    Client.............. 001                                                                      |
    |    User................ "SOLMAN"                                                                 |
    |    Language key........ "E"                                                                      |
    |    Transaction......... " "                                                                      |
    |    Transactions ID..... "C27635DF574FF121B0470050569757E9"                                       |
    |                                                                                |
    |    Program............. "SAPLDSWP_UTILITY"                                                       |
    |    Screen.............. "SAPMSSY0 1000"                                                          |
    |    Screen line......... 6                                                                        |
    |Information on where terminated                                                                   |
    |    Termination occurred in the ABAP program "SAPLDSWP_UTILITY" - in                              |
    |     "DSWP_GET_GLOBAL_CUSTOMIZING".                                                               |
    |    The main program was "RDSWP_NM_SYNC_USER_DATA ".                                              |
    |                                                                                |
    |    In the source code you have the termination point in line 22                                  |
    |    of the (Include) program "LDSWP_UTILITYU19".                                                  |
    |    The program "SAPLDSWP_UTILITY" was started as a background job.                               |
    |    Job Name....... "SM:SYNCHRONIZE USER DATA FOR NOT"                                            |
    |    Job Initiator.. "SOLMAN"                                                                      |
    |    Job Number..... 00104000                                                                      |
    Have you some solution or advice?
    Best Regards
    Jakub

    Please could you check the following ?
    - Please ensure that the latest version of note 1172948 has been implemented
    - Please follow the recommendation in note 1314587.
    - Check table 'DSWPGLOBALCUSTOM' and ensure that the entry 'DTMLOG' is available.  Create the entry if missing.
    These procedures will solve this issue.

  • Please help, unable to synchronize and run Applications NW2004s

    Hi All,
    I am newbie (no only for mobile, them for SAP)  i can't run any example! and i really need for your help:
    I have a Pentium IV +2GB RAM + Windows server 2003 + Oracle ( I them try to install the system in a Xeon but i have problems with the SDM password so i can't update the Java Components to  SP 10).
    <b>The Enviroment:</b>
    <b>Sever called erick:</b>
    1) First i install NW2004s  ABAP + JAVA + MI 7.0, SP 6 over Oracle 10.2
    2) After that i Update:
    Kernel to version 83
    SAINT, ABA, Basis to SP 10
    JSPM, NWCLIENT, NWLAP, NWADMIN, NWDRIVERS to SP 10 for MI 7.0
    3) After that, i used the MI template going to my server: http://erick:50100/nwa, login as J2EE_ADMIN, deploy & changes.... it appears to work... but when a login into the web system it says:
       System Landscape Directory is not accessible.
       Local System Only can be administrate. (maybe here is the key)
    <b>On the Client side:</b>
    Windows XP + NW developer Studio Version: 7.0.10 + MI Client (I extract this from the NWCLIENTNT10_0-20000910.SCA, SAP Mobile Infrastructure, Version MI 70 SP10 Pacht 0 )
    NW developer Studio is Configured in this form (Using Windows -> Preferences -> MI Development)
    MI Folder: C:\Archivos de programa\SAP Mobile Infrastructure (Archivos de Programas  (Spanish) = Program Files)
    Java SDK tools.jar file: C:/j2sdk1.4.2_08/lib/tools.jar, I can't change it.
    MI server name: localhost (I think this is Wrong, this have to be erick?, i will try with this)
    MI weapp TCP port: 4444
    Command line to launch browser: cmd /C    start iexplorer
    Awt runtime:
    MI Home Folder: C:\Archivos de programa\SAP Mobile Infrastructure (C) (I extract this from the NWCLIENTNT10_0-20000910.SCA too)
    MI Logon Information: eilarraza, this user was the one that i create to update the system in the server, it has: SAP_ALL, and SAP_NEW permissions.
    Password: The Master Password of the system.
    When a push the Test Setting button, it works!
    <b>MI Client Configuration:</b>
    USER: eilarraza
    Client: 000
    Languaje: EN
    Country: Venezuela
    Time Zone: ACT
    <b>Synchronization:</b>
    Protocol: http
    Host: erick
    Port: 50100
    System: ERI
    Proxy: NO, we used DHCP.
    <b>Problem:</b>
    I am Unable to synchronize with MI server.
    I import a .war file, i export It, but a i can't run It.
    Searching in the forum i arrive to a Excellent BLOG: http://jogel.sdn.googlepages.com/milad
    (Literally i read all the BLOG, is very good for the newbies, it is a excellent work)
    I Install the mobile application using a tool called LAD, i restart the MI Client, and the application is Installed!!! But when a try to Syncronized it i received the same error:
    Syncronization Started.
    Connection Set up (without proxy) to http://erick:50100/sap/bc/MJC/mi_host?~sysid=ERI&
    Connection to server failled
    Problems in the Syncrhonization Not Found 404; The server has not found anything matching the URI given.
    Basically i can't Syncrhonaze the MI Client with the Server. I search in the Forum, Documentation, Google, Blogs, etc etc, Surely is a configuration problem, please i need some tips.
    Best Regards,
    Erick Ilarraza

    Hi Jo Santiago, Sivakumar V
    Thanks a lot for your help! 
    <b>Jo</b>: I made Pings to erick:
    Ping statistics for xxx.xxx.xxx.xxx: (i removed the local ip)
    Packects: Sent = 4, Received = 4, Lost = 0  (0% loss), Works perfect.
    nslookup does not work, maybe because all the machines are in a local network.
    I am investigating about: ICM Logon and SLD. I don't know what it is that, i Remember that in the installation phase i say NO when he ask me to install the SLD.
    <b>Sivakumar:</b>
    After the 3 Steps, the services (that were down) now are UP but when a try to test the service he ask me for:
    Enter username and password for "SAP Web Application Server [ERI] at http://erick:8001
    I try with <b><i>J2EE_ADMIN + Master Password</i></b>, I always use this user to go into the Web Server.
    Logon failed.
    Note
    Logon performed in system ERI .
    Logon performed for client 001 and language EN.
    Them i try with: SAP*, and eilarraza (SAP_ALL, SAP_NEW permissions)
    It does not work.
    After i try to synchronize the MI Client (with the services mi_host and mi_services UP). But it does not work. 
    So who is exactly the middleware user? The J2EE_ADMIN? or the one that i create with SAP* to update the system to SP10 (It has SAP_ALL, SAP_NEW permissions, in my case is called eilarraza) Maybe the problem is that i a not using the correct user in the MI Client configuration neither in the test of the service.
    Best Regards,
    Erick Ilarraza

  • UME with ABAP AS and LDAP Datasource

    Hello SDN´s
    We have tried very hard for the last days configuring the ume-xml for the following scenario:
    -     LDAP is used to authenticate the user
    -     AS ABAP is used to store the roles of the user (because they automatically becomes groups in the portal)
    - the portal and the ABAP-system are  on different servers
    Given facts:
    1)     we canu2019t synchronize the roles of the ABAP system to the LDAP
    2)     we have to use the open-LDAP for the authentication
    3)     DataSources are readonly
    4)     User can have similar or different userid´s on the DataSources (Mapping required)
    Therefore, we read the user and account information from the LDAP and groups/roles form the ABAP AS.
    Result:
    a)     user with similar userid on LDAP and ABAP AS: These user were no longer able to log on to the portal
    b)     user with different id´s (mapped) on LDAP and ABAP: Can log on
    Questions:
    -     Is it true that similar userid´s leads to inherent problems of the UME Persistence Manager?
    -     Did we set up a wrong config-xml?
    -     Is there any other way how we could authenticate to the LDAP and having the Roles of a user read from the ABAP system dynamically?
    Thank you very much for your help
    Sincerely, A. Hunziker

    Hi Andre,
    Not sure if my remarks below can help you but I do hope that it can shine you some light.
    We have LDAP as our main UME, which is configured in our Portal7.0. This means that security groups created in LDAP are "replicated" into the Portal. We created Portal Roles which are assigned to the security groups created in LDAP. We also use SSO and it was setup via the SPNego Wizard (http://help.sap.com/saphelp_nw70/helpdata/EN/45/40a0de773a7527e10000000a114a6b/frameset.htm). This way, the user only needs to login via Windows and access the Portal without having to login (when users have the same Windows userID as that of their SAP ID). If the users have a different userID between Windows and SAP, then they do a user map under personalization of the Portal.
    To connect our Portal to our backend systems, we created a reference system (http://help.sap.com/saphelp_nw70/helpdata/EN/89/6eb8deaf2f11d5993700508b6b8b11/frameset.htm) and we have our Portal certificates in all backend systems (http://help.sap.com/saphelp_nw70/helpdata/EN/d3/41c8efb31d11d5993800508b6b8b11/frameset.htm).
    With the above, users have SSO from Windows to Portal and via the reference system, they can enjoy SSO as well into our backend systems.
    Basically we have control what the users can see from the Portal (directly from LDAP security groups with users assigned to that) and what the user can do on backend is still maintain in the backend authorisation setup.
    Hope that can help you.
    Ray

  • While running synchronization jobs I am getting an error with program terminated

    Dear All,
    While running the synchronization jobs I am getting an ABAP dump error in GRC system SAPMSSY1 and CL_GRAC_USER_REP.
    Do somebody had any of such problem?
    Regards,
    Abhisshek

    Dear Colleen,
    That was correct! I was running multiple jobs at the same time and they might were trying to accesss the same table.
    I am surprise SAP ST22 dumps also stating that I must send SAP message.
    Regards,
    Abhishek

  • ABAP GUI from HANA Developer Studio

    Hi,
    I am facing this issue when stating ABAP GUI / execute any abap program in HANA developer Studio. Any solution for this?
    Failed to create the Parts Controls:
    java.lang.IllegalStateException: Could not start SAP GUI for Windows: C:/Program Files (x86)/SAP/FrontEnd/sapgui/\SapGuiServer
    at com.sap.adt.sapgui.ui.internal.win32.embedding.WinGuiServerProxy$SapGuiServerProcess.start(WinGuiServerProxy.java:593)
    at com.sap.adt.sapgui.ui.internal.win32.embedding.WinGuiServerProxy.startGuiServerProcess(WinGuiServerProxy.java:156)
    at com.sap.adt.sapgui.ui.internal.win32.WinGuiFragment.getGuiServerProxy(WinGuiFragment.java:86)
    at com.sap.adt.sapgui.ui.internal.win32.embedding.EmbeddedWinGuiEditor.createEmbeddedGuiContent(EmbeddedWinGuiEditor.java:85)
    at com.sap.adt.sapgui.ui.internal.views.AbstractSapGuiWorkbenchPart.createPartControl(AbstractSapGuiWorkbenchPart.java:121)
    at com.sap.adt.sapgui.ui.internal.editors.AbstractSapGuiEditor.createPartControl(AbstractSapGuiEditor.java:149)
    at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:142)
    at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:96)
    at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:323)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:877)
    at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:857)
    at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:119)
    at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:333)
    at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:254)
    at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162)
    at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:102)
    at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71)
    at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:53)
    at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:129)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:949)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:633)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:735)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:706)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:700)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:685)
    at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.showTab(StackRenderer.java:1147)
    at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer$1.handleEvent(LazyStackRenderer.java:65)
    at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41)
    at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180)
    at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150)
    at org.eclipse.swt.widgets.Display.syncExec(Display.java:4688)
    at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:205)
    at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38)
    at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197)
    at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197)
    at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1)
    at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230)
    at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148)
    at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135)
    at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78)
    at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39)
    at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:80)
    at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:58)
    at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374)
    at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171)
    at org.eclipse.e4.ui.internal.workbench.ModelServiceImpl.showElementInWindow(ModelServiceImpl.java:576)
    at org.eclipse.e4.ui.internal.workbench.ModelServiceImpl.bringToTop(ModelServiceImpl.java:543)
    at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.delegateBringToTop(PartServiceImpl.java:619)
    at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.bringToTop(PartServiceImpl.java:331)
    at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.showPart(PartServiceImpl.java:1046)
    at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:3112)
    at org.eclipse.ui.internal.WorkbenchPage.access$21(WorkbenchPage.java:3034)
    at org.eclipse.ui.internal.WorkbenchPage$8.run(WorkbenchPage.java:3016)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
    at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:3012)
    at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2976)
    at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2959)
    at com.sap.adt.sapgui.ui.SapGuiPlugin.openGuiEditor(SapGuiPlugin.java:180)
    at com.sap.adt.sapgui.ui.SapGuiPlugin.openEditorAndStartTransaction(SapGuiPlugin.java:122)
    at com.sap.adt.sapgui.ui.internal.handlers.OpenSapGuiHandler.openView(OpenSapGuiHandler.java:45)
    at com.sap.adt.sapgui.ui.internal.handlers.OpenSapGuiHandler.execute(OpenSapGuiHandler.java:39)
    at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:290)
    at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:90)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:243)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:224)
    at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132)
    at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.execute(HandlerServiceHandler.java:167)
    at org.eclipse.core.commands.Command.executeWithChecks(Command.java:499)
    at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
    at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:213)
    at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.executeItem(HandledContributionItem.java:850)
    at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.handleWidgetSelection(HandledContributionItem.java:743)
    at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.access$7(HandledContributionItem.java:727)
    at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$4.handleEvent(HandledContributionItem.java:662)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1057)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4170)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3759)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1113)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:997)
    at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:140)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:611)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:567)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
    Caused by: java.io.IOException: Cannot run program "C:/Program Files (x86)/SAP/FrontEnd/sapgui/\SapGuiServer": CreateProcess error=2, The system cannot find the file specified
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:1042)
    at com.sap.adt.sapgui.ui.internal.win32.embedding.WinGuiServerProxy$SapGuiServerProcess.start(WinGuiServerProxy.java:590)
    ... 110 more
    Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified
    at java.lang.ProcessImpl.create(Native Method)
    at java.lang.ProcessImpl.<init>(ProcessImpl.java:288)
    at java.lang.ProcessImpl.start(ProcessImpl.java:133)
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:1023)
    ... 111 more
    My HANA developer studio is not at C:\ProgramFiles(x86) folder.

    This problem is resolved - i updated my SAPGUI.

  • How to create Roles in UME (ABAP+JAVA stack)

    Hi,
    I have created roles earlier on JAVA stack alone. However, this time I am working on JAVA+ABAP stack. When I am trying to create role in UME, I am getting only two tabs:
    General Information
    Assigned Groups
    I am not getting Assinged Actions tab here.How do I assing actions ?
    Can any one please help me in creating roles in ABAP+JAVA stack.
    That would be  a great help!
    Regards
    Faisal

    HI Faisal,
    When ABAP is the UME, you can only edit users / groups that are J2EE only. Any group that is defined in ABAP is read-only for the Java Server to prevent conflicts (there is no synchronization) and has to be changed in ABAP.
    Please take a look at this link, which has a great graphic describing this.
    http://help.sap.com/saphelp_nw04s/helpdata/en/7c/36dcd59865b246b993c471199ba37a/content.htm
    So, if the Java group was created in ABAP, the ABAP user has to have the ABAP role assigned to him, so that he is in the group on the Java server. make sense? The graphic in the link above really explains it well I think.
    If you a new / custom Java group (not in ABAP) then you should be able to assign users to it from the Java server.

  • Portal Password Reset Application In webdynpro for ABAP

    Hello Friends,
    I am new to WDA . I want to create a Password Reset application in WDA like this
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0c09b9d-52e0-2d10-3981-86bfa8e19dc3?quicklink=index&overridelayout=true]
    Can someone pls give the solution , how to start??
    Thanks in advance
    Himani

    I am afraid that this is not going to be possible for you. From WebDynpro for ABAP, you do not have portal API's to do that.
    May be an idea ,If you have SSO in place you could try to call some FM's in r3 side to change the password in r3 system and this would synchronize the UME in portal.

  • Dialog Instances Java are not up after System Copy NW2004s SR2 ABAP+JAVA

    Hello guys,
    I have just  performed a system copy of our BW system (douple stack NW2004s) wich consists from CI and 2 DIs. First I  made an export using SAPINST (Software from SAP_BUSINESS_SUITE_2005_SR2 for sparc solaris), where I choosed in SAP Installation Master->SAp Netweaver 2004s Support Release 2->Additional Software Life-cycle Tasks->System Copy->Oracle->Source System->Central System->Based on ABAP and Java->Database and Central Instance Export. I couldn't find any special task for export java from my dialog instances, so I thought it would be ok like that. Then I used the same software on my target system, choosed ...Additional Software Life-cycle Tasks->System Copy->Oracle->Target System->Central System->Based on ABAP and Java->Central System Installation. In the Dialog input phase of SAPINST I indicated that use db specific tools to copy your database. So I made the database restore+recovery with our DB tools and continued withthe SAPINST and Import.
    Afterwards the ABAP part and Java on the central Instance run perfect, but Java Stack is not up by both of Dialog Instances. I have checked the configtool on the server where the CI is running (the DIs are running on different linux servers) and couldn't see any entries for my dialog instances, only the CI was seable there. I tried to start configtool from the application server, but there I could find only the file config.properties in the directory /usr/sap/<SID>/.../j2ee/configtool/, others were simply not there, so it was impossible to start it. Have i forgotten something by EXPORT/IMPORT or I should just use other software for coping a System with douple stack on a CI and DIs? Or should I get configtools for Linux platform ( have searched but not found yet) and try to make the same changes wich i have done by the CI before i started Java on the CI? The most irritated point is that i can't see the dialog instanes in Configtool from the CI.
    Any other suggestions and good advices?
    Thanks a lot in advance.
    Regards, Polina

    Hi Manoj, </p>
    I have founded following information in the work directory of one of my dialog instances ( where the java stack doesn't want to start after the copy):  /usr/sap/SID/instance/work/ <br>
    1) std_server0.out  is in the condition before the system copy, no new data was written there. <br>
    2)dev_disp <br>
    DpJ2eeStart: j2ee state = STARTED<br>
    DpJ2eeLogin: j2ee state = CONNECTED<br>
    Fri Feb 26 12:58:04 2010<br>
    ERROR => DpJ2eeMsgProcess: NiRead failed (NIECONN_BROKEN) [dpxxj2ee.c   1212]<br>
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)<p>
    Fri Feb 26 12:58:20 2010<br>
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN<br>
    Fri Feb 26 12:57:20 2010<br>
    ***LOG Q0I=> NiIBindSocket: could not delete file '/tmp/.sapstream64984' for hdl 2: unlink (1: Operation not permitted) [nixxi.cpp 3207]<br>
    ERROR => NiIBindSocket: could not delete file '/tmp/.sapstream64984' (hdl 2; errno=0) [nixxi.cpp    3214]<br>
    WARNING => NiIBind: Could not bind local domain socket, only listening on internet socket [nixxi.cpp    3491]<p>
    It seems that java is trying to start but something goes wrong and  it have to shut down<p>
    3)dev_bootstrap<br>
    [Thr 1086335296] JLaunchIExitJava: exit hook is called (rc = 66)<br>
    [Thr 1086335296] **********************************************************************<br>
    ERROR => The Java VM terminated with a non-zero exit code.<br>
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'<br>
    for additional information and trouble shooting.<br>
    **********************************************************************<br>
    [Thr 1086335296] SigISetIgnoreAction : SIG_IGN for signal 17<br>
    [Thr 1086335296] JLaunchCloseProgram: good bye (exitcode = 66)<p>
    4) jvm_bootstrap.out<br>
    ...<br>
    Exception occurred:<br>
    com.sap.engine.frame.core.configuration.NameNotFoundException: A configuration with the path "cluster_data/dispatcher/ID264509300" does not exist.
    ..<br>
    Exception occurred:<br>
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!<br>
            at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:476)<br>
            at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:146)<br>
    com.sap.engine.bootstrap.SynchronizationException: No such Dialog Instance (ID264509300) in the database! Check database consistency or local Bootstrap properties!<br>
    [Bootstrap module]> Problem occurred while performing synchronization.<p>
    j2ee/instance_id = ID2645093 <--- that is the ID of those DI where i took these traces from. So it seems that this ID is not in the database at all. Probably the infromation about the java stack of my DIs was not exported at all...<p>
    Thanks in advance. <br>
    Regards, <br>
    Polina

  • How to pull data from Active Directory in ABAP (non-CUA approach)?

    All,
    We have a requirement to pull information from AD into a WAS 6.20 system.
    I know there is the standard CUA/UME LDAP synchronization discussed at length in this forum but this in not what we are looking for. We would like to connect from an ABAP program (BAPI/RFC) to AD and pull a specific field  and store it in a custom table.
    I found one thread that describes how to do this with WebDynpro in Java, but this would be our last resort since we wouldn't be able to do that from the actual 6.20 WAS but would have to use another 2004s system which would extend the architecture of the current design.
    Any thoughts?
    Thanks
    GS

    Hi,
    1. First configure the LDAP properties in transaction LDAP
    2.You can use the functions LDAP_SYSTEMBIND and LDAP_SEARCH to retrieve the info you want
    you can read <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/906061c5-176b-2910-5091-e23baa4e7038">this document</a> for more help

Maybe you are looking for

  • Sending read receipts

    How can I change settings to stop my mobile from sending read receipts? I've turned it off in outlook (as far as I know), but when using my mobile this does not seem to work. Using intellisync and an E65. appreciate any advice E65

  • I/O Exception in multithreading application

    I have a multithreading application that utilizes OracleDataSource with explicit caching enabled. The cache is sized to keep as little opened connections as possible. It works fine but under heavy load I'm getting I/O Exception: The Network Adapter c

  • Creative cloud app isnt loading

    Hello i have been using creative cloud for a while, but when i wanted to upgrade some of the applications, creative cloud appears to be loading but nothing happens. i uninstalled and then installed it again but still the same, i searched for similar

  • "Creative Cloud.exe" disk churning

    I just installed CC today to try out PhotoShop.  The install ended hours ago and I've run PS since then. Now I'm noticing a lot of disk chattering on my Windows 7 box and looking through the Windows Task Manager I found CreativeCloud.exe chewing up D

  • Bulb Mode / Time Mode - whats the difference?

    Hi, Whats the difference between the  bulb mode & the time mode in the manual setting on a nikon D60 DSLR? I put the camera in the buld mode to able to shoot the fireworks but when i would change a setting  to be able to use my wireless remote it wen