Should workflow job programming make by client or by server?

I have a DEVL server with SRM client 100, 110, 120 and 130.
Should the workflow automatic customizing (Tx SWU3) make by client or only once for all server in any client?

.

Similar Messages

  • Steps should be taken to make a client copy say from dev to test using BDLS

    Some one help to write up on real situation at any client site...by BASIS group
    for SRM box..
    Say client num in Dev is 100
    and we want to copy all that to a test box where the client number is 101...
    initially client 100 SRM box is pointing to R/3 say dev box 201
    the new R/3 box is 202. And we have to point the 101 to 202. So I am just wondering the steps
    taken by BASIS group to build the test env. 101 ---> 202

    Hello,
    we had experienced some problems during client copy with SRM in our earlier project.
    I am not a basis guy but i can give you some hint for yr situation:
    - Copy R/3 client 101 to 202 with the profile SAP_ALL
    - change the SID with BDLS
    - Copy SRM client 100 to 101 with the profile SAP_CUST
    - change the SID with BDLS
    - Now download the masterdata from R/3 to SRM
    SRM client should never be copied with SAP_ALL profile because ,if done so the logical system for product masters is copied that of old client.
    This creates total chaos and nothing works.
    BR
    Dinesh
    reward if helps

  • Related to Network program using Java Client and C server

    I am little bit experience in java technology. I need an urgent help as I have to submit a document related to C server and Java client. But while searching in net i cant get a proper guidance for C server as many errors thrown in sys/socket.h and other new header files. Can any one help me out for giving source code for C Server. so that i can further involve in that document. Please help me out. i am really helpless by the way the C server thrown error. after finishing that C server only i can concentrate on Java client...

    Hai Josah,
    Thanks for your reply.. I have gone through many sockets server program in C but the real proble is the header file they include like
    socket.h and in.h etc.. they also provide these header files but if we compile in turboC they inturn require some other header files. I dont get the full hierarchy of C server program. I found some help in Java programming Archive about C Server and java client. As i am new to C i cant get the full header files for the server.c if i complete taht only i can proceed to java client. If u can redirect me for any good C sites also i can be thankful for u forever..please

  • What programs should I use to make an interactive ebook for ipad?

    What programs should I use to make an interactive children's ebook for ipad?

    Adobe has a DPS add-on for InDesign (http://www.adobe.com/products/digital-publishing-suite-single.html) and it handles all the page transitions as well as swapping between portait and landscape. I think the way most people work is the pages are built in inDesign and regions of animation from EA are added second. But if every page had full screen animation, I suppose you may want to build your pages in Edge first.

  • Problem with program hanging randomly on certain commands from win 7 pro client to SB Server

    Having a problem with program hanging randomly on certain commands from Win-7 Pro Client to SB Server Both 64-Bit
    Five other slower XP-Pro 32 Bit systems though they are older and slower systems do not seem to hang as readily if at all.
    It has been very frustrating as the Client-System, SB-Server and Program should work w/o any hitches, but this seems to work fine @ times and then hang randomly.
    Would appreciate any and all suggestions in assisting.... JimBAgde-MSS  

    You can try this, as I have had similar problems with another MS Access .MDB file and slow access before. This fixed my problem for me. On the slow computer, make sure the program is set to see the .mdb file via UNC path, not a mapped drive letter. ex.
    USE:  \\yourserver\shared\dental\file.mdb
    DO NOT: S:\\shared\dental\file.mdb
    hope this helps

  • Unable to make the Client Copy

    Hi Team ,.
                 I am trying to make a client Copy after SCCL transaction is performed when we check the status
    in SCC3 it's throwing an error
    Error :
    Client 200 logon locked
    Client Copy probably cancelled
    The Client could be the source client of a copy
    Reset Lock        Keep Lock      Cancel
    Please help
    Regards ,
    Madhu

    I went through this Document
    Client copy error :
    RFC destination for client copy in systems with Financials Basis
    (FINBASIS) component.
    The system could not find any suitable RFC destination for processing
    for client 001.
    This note also appears if an RFC destination was found but this does not
    work.
    o   RFC destination: 001
    o   Error text:
    Proceed as follows to eliminate this error:
    1.  Start the wizard to create a new RFC connection
    or perform the following steps manually:
    1.  Create an RFC destination with the target ZK>source client of client
         copy (in this case 001).
    2.  Check whether the RFC destination works in transaction SM59.
         To avoid errors when assigning the password or the authorizations of
         the RFC user, use the authorization test Test -> Authorization.
    3.  Enter the RFC destination:
         -   Transaction: FINB_TR_DEST (Destinations for Transport Methods of
             the Financials Basis)
         -   Client: 001
    4.  Start the client copy again.
    SOLUTION:
    Login to client 001
    Go to sm59, create rfc connection type 3, give the rfc destination : FINBASIS_001
    Logon and security--> give user id and password (of any user in client 000)(user should be a service user or communication user so as to avoid password lock situation)
    Check Test connection: test ---à authorization test.
    Login in to new client: 800
    Run the tcode: FINB_TR_DEST
    Click on new entries:
    Give the client: 001 and destination as FINBASIS_001 and save .
    Run Tcode: sccl
    Source: 001
    Target: 800
    Run as background job.  Go to sm37 & check the status.

  • Can i run UDP  client and UDP  server socket program in the same pc ?

    hi all.
    when i execute my UDP client socket program and UDP server socket program in the same pc ,
    It's will shown the error msg :
    "Address already in use: Cannot bind"
    but if i run UDP client socket program in the remote pc and UDP server socket program run in local pc , it's will success.
    anybody know what's going on ?
    any help will be appreciated !

    bobby92 wrote:
    i have use a specified port for UDP server side , and for client define the server port "DatagramSocket clientSocket= new DatagramSocket(Server_PORT);"Why? The port you provide here is not the target port. It's the local port you listen on. That's only necessary when you want other hosts to connect to you (i.e. when you're acting as a server).
    The server should be using that constructor, the client should not be specifying a port.
    so when i start the udp server code to listen in local pc , then when i start UDP client code in local pc ,i will get the error "Address already in use: Cannot bind"Because your client tries to bind to the same port that the server already bound to.

  • Should i create a client and a server socket in a same application

    Greetings,
    In which situation sould i have a server socket ? and in which situation should i have a client socket ?and in which situation should i have both?
    I 'm making a app. who receives info (like alarms ) from a automation machine and also that same app. as a scheduler who send commands according to dates to the automation machine.
    Now the automation machine is programmed like a socket tcp/ip server who is always on and the app. is a client.
    Every time there's an alarm the machine sends me the info and i put it in a mysql database.
    Every time there's an event programmed the app. sends a string to the machine.
    The question is that i can't maintain that socket always connected, Sometimes disconnets.
    I was thinking of making the change of creating in both sides a server and a client, so that, for example, in the app. the client woul d handle the event msgs and the server would accecpt connections with alarms from the automaition machine.
    Since i'm a newbie in Java could somebody give me some tips, please?
    Thanks

    Thanks Peter....
    But i already do that....
    I have a thread who handles the connection management.
    If by some reaseon the connection is lost the thread reconnects it.
    My problem is that sometimes it reconnects every second, and i loose info provided by the automatian machine.
    The best thing to have it would be a socket listener, but Java does have any.
    Is there any API that does a socket listener?

  • Workflow Jobs in SAP Identity Management

    Hello Experts,
    We have SAP Idm 7.1, Novell eDirectory and GRC AC 5.3 Installed successfully.
    Now, I have to create 2 workflow jobs in SAP IdM 7.1 for Novell eDirectory.
    1- One job to query the Novell IDM Vault for any new identities and populate NW IDM.
    2- The second job to query Novell IDM to determine if any identities have been changed from u2018Activeu2019 to u2018Terminatedu2019. If the ID has been changed to u2018Terminatedu2019 then lock the SAP ID and remove the roles, and set the User Group to u2018Expiredu2019, and set the expiration date to the day prior to termination."
    Can anyone let me know, how can I create those 2 workflow jobs?
    Thanks,
    Haleem

    the implementation guide contains an error:
    in the class MyOnSubmit{...
    the head of the function should be:
    public IdMValueChange[] onSubmit(Locale aLocale, int aSubjectMSKEY, int     aObjectMSKEY, Task aTask, IdMSubmitData aValidate) throws IdMExtensionException {
    the guide defines the task as int.
    br
    Andreas

  • Workflow Mail sending in different clients

    Hi All,
    I created a single step workflow which has just 'SendMail' step in it.I have two clients in my sstem 200 and 280.When i execute this workflow using F8 from 200 client it sends out a mail and workflow gets completed. But when i execute this workflow in client 280 , it errors out saying method 'SENDTASKDESCRIPTION' can not be executed. I checked the bindings and all is perfect .
    Now i cant figure out what could be the possible difference in client 200 and 280 because of which i am getting an error only in client 280 and not in 200 for the same workflow
    Thanks in advance for your help
    Regards
    Shylesh

    Hi Anand,
    Standard Program 'RSWUWFMLEC' is reponsible to send all mails.
    Please check this program in both the clients.
    The text in the mail will be coming from the work item text.
    To find which standard task is passing the text, goto Tcode SWDD
    give your Workflow template number and check the standard task over there.
    or goto Tcode SWI1 and check the log of the workflow.
    Note: Reward points for helpful answer.
    Regards,
    Andy.

  • As much as the space in HD is necessary to be able to make a Client Copy??

    Hi everybody!!
    As much as the space in HD is necessary to be able to make a Client Copy??
    After the installation, the still servant with approximately 11 GB of free space in C (Total 30 GB) and around 100 free GB in E (Total 190 GB) , in E installed SAP  himself ECC6 along with the data base ( Oracle 10,0,2 ), when all tag aiming at the record E did installation  itself, but in a minute to make the Client Copy he remains without space in the Drive C (38,3 MB Free)
    The Client Copy is for the "Client 300 Test", the Client Copy in DEV with 3 Client ( 100 DEV, 120 QA DEV, 130 Sandbox ) it could come true trouble-free
    thanks
    Edited by: Manuel Sandoval on Aug 18, 2008 7:16 PM
    Edited by: Manuel Sandoval on Aug 18, 2008 7:20 PM

    Where do the "Client Copy" goes down the process in reviewing the "TCode ST22" I find the following:
    Runtime Errors         DBIF_SETG_SQL_ERROR
    Date and Time          19.08.2008 06:21:19
    Short text
         SQL error occurred when accessing table.
    What can you do?
         Note which actions and input led to the error.
         For further help in handling the problem, contact your SAP administrator
         You can use the ABAP dump analysis transaction ST22 to view and manage
         termination messages, in particular for long term reference.
    How to correct the error
         Database error text........: "ORA-03106: fatal two-task communication protocol
          error"
         Internal call code.........: "[SETG/GET /INDX_HIER ]"
         Please check the entries in the system log (Transaction SM21).
         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:
         "DBIF_SETG_SQL_ERROR" " "
         "SAPLSHI2" or "LSHI2U25"
         "STREE_READ_BUFFERED_DATA_GENER"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
        4. Details about the conditions under which the error occurred or which
        actions and input led to the error.
    System environment
        SAP-Release 700
        Application server... "mts-qua"
        Network address...... "192.168.1.48"
        Operating system..... "Windows NT"
        Release.............. "5.2"
        Hardware type........ "4x Intel 80686"
        Character length.... 16 Bits
        Pointer length....... 32 Bits
        Work process number.. 0
        Shortdump setting.... "full"
        Database server... "MTS-QUA"
        Database type..... "ORACLE"
        Database name..... "ECQ"
        Database user ID.. "SAPSR3"
        Char.set.... "C"
        SAP kernel....... 700
        created (date)... "May 22 2007 00:14:27"
        create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
        Database version. "OCI_10201_SHARE (10.2.0.1.0) "
        Patch level. 111
        Patch text.. " "
        Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
        SAP database version. 700
        Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows
         NT 6.0"
        Memory consumption
        Roll.... 8176
        EM...... 2090448
        Heap.... 0
        Page.... 16384
        MM Used. 1943008
        MM Free. 145920
    User and Transaction
        Client.............. 300
        User................ "SAP*"
        Language key........ "E"
        Transaction......... " "
        Program............. "SAPLSHI2"
        Screen.............. "SAPLSMTR_NAVIGATION 0100"
        Screen line......... 2
    Information on where terminated
        Termination occurred in the ABAP program "SAPLSHI2" - in
         "STREE_READ_BUFFERED_DATA_GENER".
        The main program was "SAPLSMTR_NAVIGATION ".
        In the source code you have the termination point in line 57
        of the (Include) program "LSHI2U25".
    Source Code Extract
    Line  SourceCde
       27             DO_NOT_READ_DEVCLASS       = 'X'
       28        IMPORTING
       29 *          MESSAGE          =
       30             STRUCTURE_HEADER = STRUCTURE_HEADER
       31        EXCEPTIONS
       32             OTHERS           = 0.
       33 *
       34   READ TABLE BUFFER_DATA WITH KEY TREE_ID = STRUCTURE_ID.
       35   MODIFY_INDEX = SY-TABIX.
       36 *
       37   IF NOT STRUCTURE_HEADER-BUFFERVAR CS BUF_NODE.
       38     GET_NODES = FALSE.
       39     BUFFER_DATA-NODES_OK = FALSE.
       40   ENDIF.
       41   IF NOT STRUCTURE_HEADER-BUFFERVAR CS BUF_REF.
       42     GET_REFERENCES = FALSE.
       43     BUFFER_DATA-REFS_OK = FALSE.
       44   ENDIF.
       45   IF NOT STRUCTURE_HEADER-BUFFERVAR CS BUF_TEXT.
       46     GET_TEXTS_LANGUAGE = SPACE.
       47     BUFFER_DATA-TEXT_OK = FALSE.
       48   ENDIF.
       49 *
       50 * get nodes and/or references
       51   IF GET_NODES EQ TRUE OR GET_REFERENCES EQ TRUE.
       52     SELECT SINGLE * FROM TTREELOADS WHERE TREE_ID EQ STRUCTURE_ID.
       53     IF SY-SUBRC EQ 0.
       54       CLEAR BUFFER_NODES. REFRESH BUFFER_NODES.
       55       CLEAR BUFFER_REFS. REFRESH BUFFER_REFS.
       56       IF GET_NODES EQ TRUE AND GET_REFERENCES EQ TRUE.
    >>>>>         IMPORT BUFFER_NODES BUFFER_REFS FROM DATABASE INDX_HIER(XX)
       58                                ID STRUCTURE_ID.
       59         BUFFER_DATA-NODES_READ = TRUE.
       60         BUFFER_DATA-REFS_READ = TRUE.
       61       ELSE.
       62         IF GET_NODES EQ TRUE.
       63           IMPORT BUFFER_NODES FROM DATABASE INDX_HIER(XX)
       64                                ID STRUCTURE_ID.
       65           BUFFER_DATA-NODES_READ = TRUE.
       66         ELSEIF GET_REFERENCES EQ TRUE.
       67           IMPORT BUFFER_REFS  FROM DATABASE INDX_HIER(XX)
       68                                ID STRUCTURE_ID.
       69           BUFFER_DATA-REFS_READ = TRUE.
       70         ENDIF.
       71       ENDIF.
       72 *     nodes[] = buffer_nodes[].
       73 *     references[] = buffer_refs[].
       74       APPEND LINES OF BUFFER_NODES TO NODES.
       75       APPEND LINES OF BUFFER_REFS  TO REFERENCES.
       76     ELSE.
    Contents of system fields
    Name     Val.
    SY-SUBRC 0
    SY-INDEX 0
    SY-TABIX 1
    SY-DBCNT 1
    SY-FDPOS 2
    SY-LSIND 0
    SY-PAGNO 0
    SY-LINNO 1
    SY-COLNO 1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE SAP Easy Access
    SY-MSGTY E
    SY-MSGID 01
    SY-MSGNO 289
    SY-MSGV1 SAP*
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO 0
    SY-DATUM 20080819
    SY-UZEIT 062116
    SY-XPROG
    SY-XFORM
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
          Name
       10 FUNCTION     SAPLSHI2                            LSHI2U25                               57
          STREE_READ_BUFFERED_DATA_GENER
        9 FUNCTION     SAPLSHI2                            LSHI2U14                               82
          STREE_READ_TOP_LINE_GENER
        8 FUNCTION     SAPLSHI1                            LSHI1U12                               73
          STREE_STRUCTURE_READ_TOP_NODE
        7 FUNCTION     SAPLSHI1                            LSHI1U14                               47
          STREE_STRUCTURE_READ_N_TOP_LEV
        6 FUNCTION     SAPLSHI6                            LSHI6U08                               38
          STREE_HIERARCHY_READ
        5 FUNCTION     SAPLSMNU_NEW                        LSMNU_NEWU02                          130
          MENU_GET_MENU_TREE_PART
        4 FUNCTION     SAPLSMTR_NAVIGATION_MODULES         LSMTR_NAVIGATION_MODULESU01           140
          NAVIGATION_LOAD_MENU_DATA
        3 FORM         SAPLSMTR_NAVIGATION                 LSMTR_NAVIGATIONF11                    14
          HELP_FORM_LOAD_ALL
        2 FORM         SAPLSMTR_NAVIGATION                 LSMTR_NAVIGATIONF0I                   511
          CONTROL_INITIALIZE_TREE
        1 MODULE (PBO) SAPLSMTR_NAVIGATION                 LSMTR_NAVIGATIONO01                    10
          STATUS_0100
    Chosen variables
    Name
        Val.
    No.      10 Ty.          FUNCTION
    Name  STREE_READ_BUFFERED_DATA_GENER
    GET_NODES
        X
        5
        8
        0
        0
    GET_REFERENCES
        X
        5
        8
        0
        0
    GET_TEXTS_LANGUAGE
        2
        0
        0
        0
    STRUCTURE_ID
        S000
        53332222222222222222222222222222
        30000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
    NODES[]
        Table IT_235[0x1102]
        \FUNCTION=STREE_READ_TOP_LINE_GENER\DATA=INEXTLEVEL[]
        Table reference: 44
        TABH+  0(20) = 00000000800EC451000000002C000000EB000000
        TABH+ 20(20) = 000000004E040000FFFFFFFF046C0000F0080000
        TABH+ 40( 8) = 08000000C1248001
        store        = 0x00000000
        ext1         = 0x800EC451
        shmId        = 0     (0x00000000)
        id           = 44    (0x2C000000)
        label        = 235   (0xEB000000)
        fill         = 0     (0x00000000)
        leng         = 1102  (0x4E040000)
        loop         = -1    (0xFFFFFFFF)
        xtyp         = TYPE#000033
        occu         = 8     (0x08000000)
        access       = 1     (ItAccessStandard)
        idxKind      = 0     (ItIndexNone)
        uniKind      = 2     (ItUniqueNon)
        keyKind      = 1     (default)
        cmpMode      = 2     (cmpSingleMcmpR)
        occu0        = 1
        groupCntl    = 0
        rfc          = 0
        unShareable  = 0
        mightBeShared = 0
        sharedWithShmTab = 0
        isShmLockId  = 0
        gcKind       = 0
        isUsed       = 1
        isCtfyAble   = 1
        >>>>> Shareable Table Header Data <<<<<
        tabi         = Not allocated
        pghook       = Not allocated
        idxPtr       = Not allocated
        shmTabhSet   = Not allocated
        id           = Not allocated
        refCount     = Not allocated
        tstRefCount  = Not allocated
        lineAdmin    = Not allocated
        lineAlloc    = Not allocated
        shmVersId    = Not allocated
        shmRefCount  = Not allocated
        shmIsReadOnly = Not allocated
        >>>>> 1st level extension part <<<<<
        regHook      = 0x00000000
        collHook     = 0x00000000
        ext2         = 0x30F6BC51
        >>>>> 2nd level extension part <<<<<
        tabhBack     = 0xC013B251
        delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
        pb_func      = 0x00000000
        pb_handle    = 0x00000000
    REFERENCES[]
        Table IT_236[0x516]
        \FUNCTION=STREE_READ_TOP_LINE_GENER\DATA=REFERENCES[]
        Table reference: 45
        TABH+  0(20) = 00000000C0F6BC51000000002D000000EC000000
        TABH+ 20(20) = 0000000004020000FFFFFFFF046C000020120000
        TABH+ 40( 8) = 10000000C1248001
        store        = 0x00000000
        ext1         = 0xC0F6BC51
        shmId        = 0     (0x00000000)
        id           = 45    (0x2D000000)
        label        = 236   (0xEC000000)
        fill         = 0     (0x00000000)
        leng         = 516   (0x04020000)
        loop         = -1    (0xFFFFFFFF)
        xtyp         = TYPE#000082
        occu         = 16    (0x10000000)
        access       = 1     (ItAccessStandard)
        idxKind      = 0     (ItIndexNone)
        uniKind      = 2     (ItUniqueNon)
        keyKind      = 1     (default)
        cmpMode      = 2     (cmpSingleMcmpR)
        occu0        = 1
        groupCntl    = 0
        rfc          = 0
        unShareable  = 0
        mightBeShared = 0
        sharedWithShmTab = 0
        isShmLockId  = 0
        gcKind       = 0
        isUsed       = 1
        isCtfyAble   = 1
        >>>>> Shareable Table Header Data <<<<<
        tabi         = Not allocated
        pghook       = Not allocated
        idxPtr       = Not allocated
        shmTabhSet   = Not allocated
        id           = Not allocated
        refCount     = Not allocated
        tstRefCount  = Not allocated
        lineAdmin    = Not allocated
        lineAlloc    = Not allocated
        shmVersId    = Not allocated
        shmRefCount  = Not allocated
        shmIsReadOnly = Not allocated
        >>>>> 1st level extension part <<<<<
        regHook      = 0x00000000
        collHook     = 0x00000000
        ext2         = 0x78F6BC51
        >>>>> 2nd level extension part <<<<<
        tabhBack     = 0x0014B251
        delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
        pb_func      = 0x00000000
        pb_handle    = 0x00000000
    TEXTS[]
        Table[initial]
    SY-REPID
        SAPLSHI2
        5454544322222222222222222222222222222222
        310C389200000000000000000000000000000000
        0000000000000000000000000000000000000000
        0000000000000000000000000000000000000000
    UP_NAME_USER_EXIT_2
        USER_EXIT_2
        5545545455322222222222222
        5352F5894F200000000000000
        0000000000000000000000000
        0000000000000000000000000
    REF_TABLE_NAME
        2222222222222222
        0000000000000000
        0000000000000000
        0000000000000000
    I_TNODET[]
        Table[initial]
    TTREELOADS
        S000                            20060927073108G
        53332222222222222222222222222222333333333333334
        30000000000000000000000000000000200609270731087
        00000000000000000000000000000000000000000000000
        00000000000000000000000000000000000000000000000
    NODE_TYPE_STEXT_F_MODULE
        STREE_NODE_TYPE_GET_STEXT_XXXX
        555445444455554544555545555555
        34255FEF45F4905F754F34584F8888
        000000000000000000000000000000
        000000000000000000000000000000
    SY-SUBRC
        0
        0000
        0000
    BUFFER_NODES
        2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    BUFFER_NODES[]
        Table[initial]
    BUFFER_REFS
        2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    BUFFER_REFS[]
        Table[initial]
    TRUE
        X
        5
        8
        0
        0
    SYST-REPID
        SAPLSHI2
        5454544322222222222222222222222222222222
        310C389200000000000000000000000000000000
        0000000000000000000000000000000000000000
        0000000000000000000000000000000000000000
    INDX_HIER
        XXS000                            ############################################################
        5553332222222222222222222222222222000000000000000000000000000000000000000000000000000000000000
        8830000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    INDX_HIER-CLUSTR
        0
        00
        00
    GLOBAL_TREE_REF_TYPE_STXT
        STREE_GET_STEXT_FOR_RTYPE_XXXX
        555445445555455544555555455555
        34255F754F34584F6F2F24905F8888
        000000000000000000000000000000
        000000000000000000000000000000
    PROPERTY_OWN_LONGTEXT
        1
        3
        1
        0
        0
    NODE_TYPES_WITH_OWN_LONGTEXT[]
        Table[initial]
    TRTYPEH
        2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_ARCHIVE
        2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_DUMMY$$
        2222
        0000
        0000
        0000
    No.       9 Ty.          FUNCTION
    Name  STREE_READ_TOP_LINE_GENER
    DISPLAY_MODE
        D
        4
        4
        0
        0
    FILTER_ID
        22222222222222222222222222222222
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
    STRUCTURE_ID
        S000
        53332222222222222222222222222222
        30000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
    TABLE_NAME
        TMENU01
        544453322222222
        4D5E50100000000
        000000000000000
        000000000000000
    MESSAGE
                             000
        2222222222222222222223332222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    PARENT_NODE
        22222222222222222222222222222222
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
    STRUCTURE_TOP_LINE[]
        Table IT_233[0x1234]
        \FUNCTION=STREE_STRUCTURE_READ_N_TOP_LEV\DATA=STRUCTURE[]
        Table reference: 42
        TABH+  0(20) = 0000000030F1C151000000002A000000E9000000
        TABH+ 20(20) = 00000000D2040000FFFFFFFF04640000900E0000
        TABH+ 40( 8) = 08000000C1248001
        store        = 0x00000000
        ext1         = 0x30F1C151
        shmId        = 0     (0x00000000)
        id           = 42    (0x2A000000)
        label        = 233   (0xE9000000)
        fill         = 0     (0x00000000)
        leng         = 1234  (0xD2040000)
        loop         = -1    (0xFFFFFFFF)
        xtyp         = TYPE#000063
        occu         = 8     (0x08000000)
        access       = 1     (ItAccessStandard)

  • How to make 2 clients on same VLAN communicate to each other when tunnel-loop-prevention is enabled?

    Requirement:
    How to make two clients on same VLAN communicate to each other when tunnel-loop-prevention is enabled on tunneled-node configuration at controller?
    Whenever we enable tunnel-loop-prevention on controller while we configure tunneled-node, the communication between two tunneled-node client on same VLAN is blocked or dropped.
    If the tunneled-node clients are of different VLANs then they can communicate between them even when the tunnel-loop-prevention is enabled on the controller.
    Solution:
    To make two tunneled-node client on same VLAN to communicate between them, we need to enable "local-proxy-arp" for the interface VLAN on the controller.
    Once it is enabled now the tunneled-node clients on same VLAN can communicate between each other. 
    Configuration:
    To enable "local-proxy-arp":
    Get to the interface of the VLAN on the controller
    Example :
    (config)#interface vlan 5
    (config)#ip local-proxy-arp
    To enable tunnel loop prevention on controller
    (config)# tunnel-loop-prevention
    Verification
    Show commands:
    To check if tunnel-loop-prevention is enabled or disabled
    #show tunneled-node config
    Tunnelded node Server: Enabled
    Tunnel Loop Prevention: Enabled
    To check if local-proxy-ap is enabled:
    #show interface vlan 5
    Look for in the output "ProxyARP enable"

    streetfi8er wrote:
    Server ready,waiting for client:
    Exception in thread "New THREAD" java.lang.NullPointerException
         at server4$server4Thread.run(server4.java:88)
    Failed to accept client
    when i run the second client programme on different a console in the same system i get the error that:
    Unknown HostOK, I'm no socket programming expert; but I can see a few potential problems with what you've written.
    1. First off, which line is line 88? Line numbers would be useful. Also, indenting your code properly would make it easier to read.
    2. Your 'while(!str.equalsIgnoreCase("close"))' will always fail with a NullPointerException because 'str' is initially set to null.
    3. Your 'while(true)' loop worries me. How does it exit? Relying on an exception is usually very bad practise.
    4. You are not handling SecurityExceptions. While it's unlikely to happen on your machine; it could easily happen on another.
    5. It might be worth indicating the actual exception thrown in your "Failed to accept client" message. accept() can throw three different types of IOException.
    6. All the threads you create will be called "New THREAD", which doesn't provide much value.
    HIH
    Winston

  • How to find the particular record in 1000's of workflow jobs are running

    Hi,
    In a data manager -> in workflow tab>IF a record is in CHECK-OUT MODE there are 1000's of jobs are running in that workflow tab. Can anyone tell me how to find that particular record in that workflow jobs.
    Can anyone show me the difference in getting a record in 5.5 and 7.1

    Hello COTI
    Unfortunatly, SAP MDM doesn't have good ability for  WF search.
    All WF clarify by it's status (unlaunched, avialable, Received, complited, error  etc.)
    For each WF SAP MDM assing unique Job ID and this id will be shown in Job ID field in Data Manager WF Tab.
    You can change WF list order by all WF fields like as Job ID, Step, User, Start etc. and try to find your's WF.
    You can use Java API - this is one of the best solution for WF management and WF mass upload  (for example)
    Regards
    Kanstantsin Chernichenka

  • I am trying to copy more or less 30G from my MacbookPro to an external hard drive and it is stuck in the "preparing to copy" step. But that for more than one hour. What should I do to make it faster? Thanks a lot in advance!

    I am trying to copy more or less 30G from my MacbookPro to an external hard drive and it is stuck in the "preparing to copy" step. But that for more than one hour. What should I do to make it faster? Thanks a lot in advance!

    Thanks Shootist007, by blockd files I mean files that I have changed to blocked and when I tried to move then for the first time, I had to unblock again. I am trying to backup my pictures, my songs and other files like word documents and excel tables. First I put all of them as blocked, what caused the first problems on trying to move them. Then, I've unchecked the block option and if I try to move one by one, there is no problem. The issue is to move all together, because it gets stuck in the preparing to copy files step. Anyway, if I cannot do all by once, I'll do it one by one, event though that was not suposed to happen if we are talking about technology, right? Anyway, I thank you again for trying to help me!

  • I purchased OS X Lion on my laptop and if I use the same username on my desktop it should just download not make me pay again, yet it is still saying "BUY APP" not "INSTALL." What do I do?

    I purchased OS X Lion on my laptop and if I use the same username on my desktop it should just download not make me pay again, yet it is still saying "BUY APP" not "INSTALL." What do I do?

    Hi...
    How to re download apps from the Mac App Store:
    Open the App Store. From the menu bar click Store > Sign In
    Click Purchases from the top of the App Store window.
    Select which apps you want to re download. Then right or control click where you see Installed  then click Install.
    Make sure and use the same Apple ID used for the original purchase.
    Mac App Store: Backing up your app purchases

Maybe you are looking for

  • Lost use of GUI apps in 8.1.7 on RedHat 6.2

    Well, After going through the install yesterday and just everything being peachy, I find that today when I startup any of the apps I was using yesterday, such as oemapp console for example, today I get: SIGSEGV recieved at befffa6c in /lib/libc.so.6.

  • Documents opened with Pages 5.0 not opening with Pages 09

    I just downloaded the new version of Pages 5.0, and I really don't like it, it makes taking notes in class harder for me, and I wanted to go back to the previous version, but the documents that I opened with Pages 5.0 I cannot open them anymore with

  • Create a Flat File like text_io in forms6i

    Hello, how i create a flat file (to download or in files system) via apex, like I did in oracle forms using text_io, for example employees.txt Name                          Last Name Salary Fernando                     Medina      5000.00 thanks in a

  • Installing Shake 4.1 Blocks or Cancels Compressor

    I thought after installing Shake something else was causing Compressor to be grayed out when attempting to transfer footage to Compressor from FC, and when clicking the Compressor icon on the dock, it bounces a few times before stopping and nothing e

  • FF v5.01 is locking up when I am typing in a Facebook text field on the news feed. This is new. What's up?

    what more details do you need? THE NEWS FEED on one's home page in FB... my browser has now locked up while typing a text comment to a friend at least 3 times.