A special requirement regarding ResourceAdapter + MDB

Hello,
Our project encounters a very special issue when using JCA 1.5. As we all know, when an MDB is stopped (or the application server is shutting down), the "endpointDeactivation" is called inside the resource adapter class. But when this method is called, the endpoint is already stopped so we cannot use it to do anything.
Our requirement is that before the endpoint is shut down, we want to do some clean up work which needs the context of the MDB. Then we can call "endpointDeactivation" as normel. MDB.ejbDestroy() apparently doesn't meet this requirement.
Does anyone have any ideas on this? We are thinking about using MBeans but not quite sure if this can get it done...
Thank you!

I understand that ejbRemove() may not be called if the EJBContainer crashes or if a SystemException is thrown from the bean. In these circumstances, there is no mechanism available to perform cleanup from within the context of the bean. You will need to somehow do this cleanup outside of the MDB which is being stopped.
Aside from the above scenarios you should be able to rely on ejbRemove() for cleanup operations. Can you explain why ejbRemove() does not meet your requirements.
-John

Similar Messages

  • A very special requirement regarding JCA1.5

    Hello,
    Our project encounters a very special issue when using JCA 1.5. As we all know, when an MDB is stopped (or the application server is shutting down), the "endpointDeactivation" is called inside the resource adapter class. But when this method is called, the endpoint is already stopped so we cannot use it to do anything.
    Our requirement is that before the endpoint is shut down, we want to do some clean up work which needs the context of the MDB. Then we can call "endpointDeactivation" as normel. MDB.ejbDestroy() apparently doesn't meet this requirement.
    Does anyone have any ideas on this? We are thinking about using MBeans but not quite sure if this can get it done...
    Thank you!

    I understand that ejbRemove() may not be called if the EJBContainer crashes or if a SystemException is thrown from the bean. In these circumstances, there is no mechanism available to perform cleanup from within the context of the bean. You will need to somehow do this cleanup outside of the MDB which is being stopped.
    Aside from the above scenarios you should be able to rely on ejbRemove() for cleanup operations. Can you explain why ejbRemove() does not meet your requirements.
    -John

  • ICloud Email Deliverability: special requirements

    Dear Team!
    We are developing a web-application.
    It sends calendar invitations from server to email boxes.
    Does iCloud Email service has special requirements to email deliverability?
    For example, DKIM and SPF signatures and MS records?
    Bogdan

    In the iPhoto preferences ==> accounts eletee teh accoun and r-enter all of te inforamtion
    or even bette IMHO is to set Mail as the email client in the iPhot prefereces and use i
    LN

  • Special requirements for bussines

    Hello,
    I would like to use skype manager for my bussines but I'm not sure if it meets the requirements. I'll appreciate if someone can help me with my questions.
    The scenario is as follows:
    There are 100 employees, but only 10 of them will be connected at the same time, so only 10 users needed.
    Each user will be assigned with skype balance.
    There is an application which connects to the skype and makes calls through it.
    The employee won't be able to make calls through the skype, but only through the application which connects to skype.
    My question is whether this scenario is possible. Especially topic 4.
    Furthermore, the employees will be calling all around the world. Are there any special rates for bussineses for this kind of subscription?
    Best Regards,
    Edi Buslovich.

    Hello Edi Buslovich.
       Everything that you need to know about Skype Manager can be found in the
    Skype Manager User Guide. I hope this helps. If you have any further questions, I will be more then happy to answer them for you. Just post them here and I'll find the answers to them.
    Beowolfv
    ╔═══╗ ♪
    ║███║ ♫
    ║ (●) ♫
    ╚═══╝♪♪ "Old School iPod"
    Regards,
    Beowolfv
    -If I Answered Your QuestionThenPlease Give "KUDOS" And Mark It As A "SOLUTION" So Others Can Find Help.

  • A Special Requirement

    Dears,I am in need of a solution which is very peculiar. I need to receive all the http request in my own servlet. The requirement is something like this1. If the URL is http://www.domainname.com/<user_id> i need to take him to a diffrent place with some prior validations.2. If its a normal URL like http://www.domainname.com/dir1/file1.jsp then it should serve the corresponding jspSpecifically, i donot want my IIS to do this bifurcation. IIS redirects all the hits using wlForward to weblogic cluster.I have a cluster setup with ISAPI plugin and 2 weblogic servers.I have set HttpClusterServlet as my default servlet and registred all possible file extensions to FileServlet.Can anyone suggest any possible solution.Any help would be highly appriciated,Regards,Param
              

    I understand that ejbRemove() may not be called if the EJBContainer crashes or if a SystemException is thrown from the bean. In these circumstances, there is no mechanism available to perform cleanup from within the context of the bean. You will need to somehow do this cleanup outside of the MDB which is being stopped.
    Aside from the above scenarios you should be able to rely on ejbRemove() for cleanup operations. Can you explain why ejbRemove() does not meet your requirements.
    -John

  • Help Required - Regarding New Implementation

    Hello Experts,
    Implementing a new SAP ... and got bit confused about the April 1 opening balances and March closure.
    On 1st March 2014 we entered the following Opening Balances -
    1. Open POs
    2. Open Sales Orders
    3. Stock Opening Balances
    Then for the month of March we have been running SAP and the legacy system in parallel , making the following transactions –
    1.       Sales Order (Invoiced in March only)
    2.       Deliveries
    3.       All AR Invoices
    4.       All Purchase Orders
    5.       All GRNs
    6.       All AP Invoices
    7.       No Bank receipts or payments were created. End of the month both AR and AP invoices will be Open for bank receipts and payments respectively.
    The main question is which transactions need to be created/ closed to have opening balances in SAP.
    (In other words ...
    What is required now to create the correct opening balances? Can we close the invoices, both sales and purchases, without creating receipts and payments, respectively?
    How do we need to enter the customer and supplier opening balances when we have already created all the invoices for the month of march?)
    Your help will be much appreciated...
    Thank you.
    Best Regards

    Hi, Venkat
    I think that your Subject is not relevant to your problem
    For Search Help problem please follow the test the following code.
    PARAMETERS: ppernr LIKE pa0001-pernr.
    DATA: i_return TYPE ddshretval OCCURS 0 WITH HEADER LINE,
          c TYPE c VALUE 'S'.
    * Search Help for Pernr
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR ppernr.
      TYPES: BEGIN OF t_pernr,
        pernr LIKE pa0001-pernr,
        ename LIKE pa0001-ename,
      END OF t_pernr.
      DATA: it_pa0001 TYPE STANDARD TABLE OF t_pernr WITH HEADER LINE.
      SELECT pernr ename from pa0001
        INTO CORRESPONDING FIELDS OF TABLE it_pa0001
        where pa0001~endda = '99991231' .
    *    WHERE zsdo~kunnr IN sokunnr.
      DELETE it_pa0001 WHERE pernr = '00000000'.
      SORT it_pa0001 BY pernr.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield    = 'PERNR'
          dynpprog    = sy-repid
          dynpnr      = sy-dynnr
          dynprofield = 'PERNR'
          value_org   = c
        TABLES
          value_tab   = it_pa0001
          return_tab  = i_return.
    Pleae Reply if any Issue,
    and If above is also not solution too, than Please Explain your Problem
    Kind Regards,
    Fasial
    Edited by: Faisal Altaf on Jan 17, 2009 2:46 PM

  • Idoc to File Scenario(SFTP) with special requirement

    Hi experts,
    We have a scenario Idoc-->File(SFTP), in which one field which is having multi-line and we want that field as structured below.
    Expected Output-
    <?xml version="1.0" encoding="UTF-"> <ggol_xml_payment><cust_payment_header><sender_id>SGCI</sender_id><receiver_id>RBOSNL2A</receiver_id>
    <file_creation_date>140314</file_creation_date><file_creation_time>105426</file_creation_time><transaction_count>0</transaction_count>
    <file_ref_nu>510703</file_ref_nu><format>PEXR</format></cust_payment_header>
    <payment>EDI_DC40_U0040000000113461553701
    3014
    E2EDP02001                   
    0040000000113461557000021000013030105100001110                                                                                                             
    E2IDLU5                      
    00400000001134615570000220000000200240000            
    JPY                                                                                    
    E2IDLU5                      
    0040000000113461557000023000000020030                 JPY   
    </payment></ggol_xml_payment>
    As you can see in the expected output, the payment node is itself a flat file king of structure. And it should be as its shown above.
    Can this be done with any custom module or ABAP code? Please suggest over the scenario.
    Thanks a lot!
    Regards,
    Nidhi Srivastava

    Thanks for your replies.
    I know the requirement is bit unclear. Now, the client gave a second option.
    They are telling if the file say xyz.txt(flat file content- mapped to payment node) is there in unix directory and PI picks the file there. Now, the XMLtags needs to be added to this picked file as shown in the above structure.
    xyz.txt
    EDI_DC40_U0040000000113461553701
    3014
    E2EDP02001                   
    0040000000113461557000021000013030105100001110                                                                                                             
    E2IDLU5                      
    00400000001134615570000220000000200240000            
    JPY                                                                                    
    E2IDLU5                      
    0040000000113461557000023000000020030                 JPY   
    Expected Output-
    <?xml version="1.0" encoding="UTF-"> <ggol_xml_payment><cust_payment_header><sender_id>SGCI</sender_id><receiver_id>RBOSNL2A</receiver_id>
    <file_creation_date>140314</file_creation_date><file_creation_time>105426</file_creation_time><transaction_count>0</transaction_count>
    <file_ref_nu>510703</file_ref_nu><format>PEXR</format></cust_payment_header>
    <payment>EDI_DC40_U0040000000113461553701
    3014
    E2EDP02001                   
    0040000000113461557000021000013030105100001110                                                                                                             
    E2IDLU5                      
    00400000001134615570000220000000200240000            
    JPY                                                                                    
    E2IDLU5                      
    0040000000113461557000023000000020030                 JPY   
    </payment></ggol_xml_payment>
    Is this possible anyways? I am not sure if we can write adapter module for adding the tags.
    Please suggest if we can achieve this by any means?
    Thanks!
    Regards,
    Nidhi

  • Help required regarding webCenter Portal Development

    Hi Sir ,
    I'm a Student doing Software Engineering and Developing Software Project Portal (automation of Institutional(university Final Year Software Projects Process)
    Previously My university was not allowed me to develop Final Year Degree project on PLATFORM.. so I've tryed to develop it using Java Portlet AAI and other methodologies .. but unfortunately I've fielded to develop that Portal
    now my university has allowed me to develop on WebCenter Portal Development Framework... I've little know ADF ... now I only have 12 day to develop and deliver .I'm following
    Yannick Ongena website www.yonaweb.be/using_multiple_navigation_models_template_webcenter_11g_ps3_0
    and following multiple blogs
    BUT THE PROBLEM IS THAT
    these blogs and website are not very much responsive .. I've very less time .. I need urgent reply for my problems that I'm facing throwout development
    I've Installed
    Jdeveloper 1.1.1.1.6.0
    Xe 11g db 11.2.0.2.0
    WebCenter Portal Development Framework
    As I mention I've NOT MORE THAN 12 days, Please respond to My REQUEST .. Also Refer me To a PERSON WHO CAN HELP ME FOR ABOUT 10 days
    and
    share me BLOGS / WEBSITE / REFERENCE MARTIAL .. that will help me
    one of problem is that I think DEV schema is Created when we install RCU , I've Created UCM and PORTAL schema through RCU .. But mistalenly I've Removed the DEV schema as well
    and facing the below problem
    I’ve Created DEV , UCM and PORTAL schema from RCU. and Then try to install UCM ,when schema password screen appear for LOGIN and Create weblogic domain , It tell me INCORRECT PASSWORD, SO , I’ve DROP these 3 schema using RCU , during DROP schema, different errors appeared , and I’ve DELETED the middle ware\rcu_Home folder and Unzip the rcu.rar fresh file to the same directory
    NOW
    when I RUN rcu.bat and selected CREATE SCHEMA then RCU WOULD NOT ALLOW ME TO CREATE SCHEMA FOR PORTAL , DEV , UCM ..and also they appear in combo box to select
    BUT I’ve ALREADY DROP THAT
    I think it only droped not DELETED
    tell me the sqlplus commands fro DELETE schema. and also tell if it is DANGEROUS to delete some schema(example DEV schema) as I’m developing portal via WEB CENTER -Jdeveloper(integrated weblogic) , Xe , RCU, UCM )
    WAITING FOR REPLY
    BEST REGARDS
    ]|_|(¯`·._)a¿])

    @ngsankar @Nasir thanks for Reply
    NO Sir I have to deliver some functionality (basic functionality) on 5 Nov. and then they'll give us 1 more month if our work is satisfactory
    AND I'm not a very Beginner to ADF and WebCenter ..I've Installed the environment and Following Yanic website and parallel implementing my requirement .. It is rapid app dev. I think I cant develop satisfactory app in hours if any I can tell me that HOW TO IMPLEMENT THAT SPECIFIC Requirement AND FEATURE .. its easy I think ..and I will InshaALLAH .. its do or die for me
    Sir in 1 day I can finalize and develop UI ..(JSF pages and this bindings and template )
    for its Content I was Started UCM and then I stuck ,
    I Basically need to provide JSF Pages and portlets for Users (Student groups - Project Supervisors - Project Coordinator )
    I have to create Users and their Pages(Project Coordinator - Project Supervisor and STUDENT Group's)
    1)Project Coordinator is the Head Who Allocated Project Supervisors to the Student Group in response to Messages(sent from the portlet at home page)from the students that desire to make group and want desire supervisor . in response to this message the Supervisor can Reply and ASK FOR MEETING and the the coordinator has the authority to ALLOCATE
    2)Project Coordinator Create PLAN (1 year Plan) in tabular form (for example Project Group Supervisor and Its STUDENT GROUP has to Deliver 20 MILESTONE Deliverable throughout the year(Project group Supervisor can Divide Each MILESTONE into TASK and SUB TASKS...and Student Group has to Upload )
    Supervisor can give the task to student group and student group has to upload /Submit the required Deliverable /(task file ) supervisor within the given period MARK THIS TASK AS AN OK AND GIVE ANOTHER TASK OR ASK FOR METING
    in this way We achieve/provide
    Provide Central Repository for the Whole Software Projects that are Valuable ..
    ALSO DOCUMENT TRACEABILITY is achieved
    Workflow management (Task given and submission and meetings and attendance etc)
    This Functionality plus Basic ADF and WebCenter built in Functionality can also improve Collaboration and Productivity and Performance
    I've very less time AND willing to work.... waiting for Help and suggestions

  • Help required  regarding ObjectValueSelector

    Hi all,
    I have a requirement like this, in my View I have 2 DropDownByKeys  and 1 input field. The inputfield should be empty and the 2 DropDoenByKeys shud be populated with the data from backend, when I click on save button, the data shud be saved in the backend with the given values. I have a Bapi which have all these fields and will also save to the database.
    How to do this appl? Give me development procedure step-wise and also suggest me where and what code shud be written. Its urgent. Plz someone share your knowledge.
    regards,
    Datta Saru
    Thanks a lot in advance.

    Hi ,
    You can populate dropdown values from BAPI using the following steps. I assume you have idea about custom controller.
    step1:
    Create custom controller.Inside custom controller Bind input value then execute BAPI.
    step2:
    Now you have value node which is returned from BAPI. After execute BAPI you can find size using the following code. create value node and model node object using the code.
    Step3:
    <custom controller name>.IRole_ResultNode modelnode=wdContext.nodeRole_Result();
    <custom controller name>.IRole_OutputNode valuenode=wdContext.nodeRole_Output();
    valuenode.invalidate();
    int size=modelnode.size();
    Step4:
    After find size using loop fetch values from model node into value node.Asume in this value node contains key and value.
    for(int x=0;x<modelnode.size();x++){
    <custom controller name>.IRole_ResultElement modelElement=modelnode.getRole_ResultElementAt(x);
    <custom controller name>.IRole_OutputElement valueElement=wdContext.createRole_OutputElement();
    valueElement.setId(modelElement.getKey());
    valueElement.setText(modelElement.getValue());
    valuenode.addElement(valueElement);
    step5:
    After that bind this value node(Role_Output) into Component controller. Then Bind value node(Role_Output) from component controller into view.
    Step6:
    Finally bind dropdown UI Element into Role_Output node's attribute(ID).
    Kind Regards,
    S.Saravanan
    Message was edited by: Saravanan S
    Message was edited by: Saravanan S
    Message was edited by: Saravanan S

  • Indonesia  - ODN VAT/Tax invoice -Special requirement.

    Dear All,
    Appreicate your help and advice to handle this requirement.
    We have implemented the indonsian ODN functionality for issuing ( Domestic -Tax invoices -VAT serial no ).
    Currently it works as below  when an invoice cancellation process takes place.
    for ex:
    VF01- Invoice creation    - 915069944 - VAT /ODN # -> 0109001455609098
    VF11-Invoice cancellation-940003647 - VAT /ODN  #-> 0109001455609098  ( cancellation will not consume new ODN - will be same as original invoice).
    VF01 - Invoice creation -   915069945 - VAT/ODN # ->  0109001455609099 ( Revision invoice).
    The problem is when a revision invoice is created, then ODN number is consuming a new ODN #  for a revision invoice (55609099).
    The requirement is when a revision invoice is created, we would need the same ( original ) ODN number (55609098) to be consumed and not to consume new ODN (55609099). Additionally, we also need to notify that this is a revision invoice by changing the ( STATUS CODE) to 1 from 0.
    That is for the (Revision)  invoice 915069945 - the expected VAT/ODN no should be assigned as   -  0119001455609098.
    I was checking over several notes 1033737 / 1578519 /1856053/1839112. This one 1033737 says that we may not be able to change the status code at all from 0 to 1 .
    Two things:
    1. How could we stop system consuming a new # (ODN) ,when a revision invoice ->( further to cancellation invoice) is created.
    2. If option # 1 is possible, then how could we change the status code from 0 to 1.
    Is there a standard functionality in which we could acheive this by any chance, since i couldnt find more details on this topic any where.
    Else, Will it be feasible if  going for an enahcement for acheiving this without disturbing any of the other ODN's. ex(Italy).
    How best we could handle if we go for enhacement. We are using same SD (Invoice) and FI(Accouting) numbers as same sequence no's.
    Thanks,
    Best Regards,
    Kumar.

    I am not sure why you have used Invoice no. as tax Invoice no. (faktur No.)
    SAP has given standard configuration to generate faktur no. for each invoice. Separate number range has to be maintained for the same.
    Tax Invoice number is populated in the Reference field of Invoice and same is copied in Accounting document.
    For changes of status code on the basis of Customer tax classification we have implemented customer exit where we change the first two digits appropriately based on Customer tax classification.

  • Urgent requirment regarding billing

    hello,
    v r working on service related project for buses,so here for service v r raising the invoice every month  through contact periodic billing,for each bus v will raise the invoice at the starting of the month,so there will be some 180 single invoices for each bus,now the buisness reqirment is, they wanted only one invoice of all 180 buses.how to do this in single invoice,
    please guide me
    Edited by: Lakshmipathi on Oct 2, 2011 8:46 AM
    Avoid SMS type words which are not allowed here

    Dear abdulshaik ,
    I hope for this requirement we can achevie by "invoice list" configuration.
    1. Condition type RL00 (factoring discount) must be maintained and, if required, also the condition type MW15.
    2. An invoice list type must be assigned to each billing type that you want to process in invoice lists. The standard version of the SAP R/3 System includes two types of invoice lists: LR for invoices and debit memos, LG for credit memos.
    3. Copying requirements must be defined (for example, the payer, terms of payment and other fields that must be identical in the documents to be included in the invoice list).
    4. Copy controls must be maintaine for Commertial invoice and invoice list document.
    You can go through this link ,
    http://help.sap.com/saphelp_46c/helpdata/en/dd/561102545a11d1a7020000e829fd11/content.htm.
    Please let me know if you have any further clarifications
    Thanks&Regards
    Raghu.k

  • Urgent requirement - Regarding a dump

    Hi experts,
    I have written a program which changes the status of a contract from 'Released' or 'completed' to 'Expired'. The program is supposed to run in the background.
    The problem is, while writing it I tested in the development server with few test cases and it was working fine both in dialog mode and background mode. But when it is executed in the background mode in testing server, it is throwing a dump showing some Java related error after 3000secs/30000secs, i.e., after some limited no. of seconds.
    What could be the problem.
    Please help. It's an urgent issue.
    Regards,
    Sangeeta.
    N.B. Points will be awarded generously

    Runtime Errors         SYSTEM_CANCELED
    Date and Time          03/18/2008 05:47:03
    Short text
    The program "SAPLCRM_LINK_OB" was terminated manually.
    What happened?
    The current program "SAPLCRM_LINK_OB" has been terminated by another mode.
    What can you do?
    This is no program error. Therefore, no counter measures are
    necessary.
    No error that requires action
    Error analysis
    The current program has been terminated from another mode, e.g. with
    Transaction SM50.
    How to correct the error
    No error elimination is necessary.
    System environment
    SAP-Release 700
    Application server... "NAP0B"
    Network address...... "10.160.13.3"
    Operating system..... "AIX"
    Release.............. "5.3"
    Hardware type........ "00CEADCF4C00"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 25
    Shortdump setting.... "full"
    Database server... "NAP0B"
    Database type..... "ORACLE"
    Database name..... "CS1"
    Database user ID.. "SAPCP1"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Aug 5 2007 20:47:34"
    create on........ "AIX 2 5 005DD9CD4C00"
    Database version. "OCI_102 (10.2.0.2.0) "
    Patch level. 123
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5"
    Memory consumption
    Roll.... 16192
    EM...... 335187840
    Heap.... 0
    Page.... 843776
    MM Used. 324756688
    MM Free. 2033456
    User and Transaction
    Client.............. 010
    User................ "CRMBATCH"
    Language Key........ "E"
    Transaction......... " "
    Program............. "SAPLCRM_LINK_OB"
    Screen.............. "SAPMSSY0 1000"
    Screen Line......... 6
    Information on caller of Remote Function Call (RFC):
    System.............. "########"
    Database Release.... 700
    Kernel Release...... 700
    Connection Type..... "E" (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
    Call Type........... "synchron and non-transactional (emode 0, imode 2)"
    Inbound TID.........." "
    Inbound Queue Name..." "
    Outbound TID........." "
    Outbound Queue Name.." "
    Client.............. "###"
    User................ "############"
    Transaction......... " "
    Call Program........." "
    Function Module..... "EXTRACT_DATA"
    Call Destination.... "<unknown>"
    Source Server....... "NAP0B"
    Source IP Address... "10.160.13.3"
    Additional information on RFC logon:
    Trusted Relationship " "
    Logon Return Code... 0
    Trusted Return Code. 0
    Note: For releases < 4.0, information on the RFC caller are often
    only partially available.
    Information on where terminated
    Termination occurred in the ABAP program "SAPLCRM_LINK_OB" - in
    "CRM_LINK_GET_OB".
    The main program was "ZCRR_BA_STATUS_CHANGE ".
    In the source code you have the termination point in line 43
    of the (Include) program "LCRM_LINK_OBU01".
    The program "SAPLCRM_LINK_OB" was started as a background job.
    Job Name....... "YBAEXPIRE"
    Job Initiator.. "BAHER1X"
    Job Number..... 05125001
    Source Code Extract
    Line
    SourceCde
    13
    LS_LINK_BUFFER_OB TYPE CRMT_LINK_BUFFER,
    14
    LS_LINK_OB        TYPE CRMT_LINK_COM.
    15
    FIELD-SYMBOLS: <LINK_I> TYPE CRMT_LINK_WRK.
    16
    17
    18
    REFRESH ET_LINK.
    19
    IF <GS_LINK_BUFFER>-GUID_HDR NE IV_GUID_HDR.
    20
    21
    READ TABLE GT_LINK_BUFFER
    22
    ASSIGNING <GS_LINK_BUFFER>
    23
    WITH TABLE KEY GUID_HDR = IV_GUID_HDR.
    24
    25
    IF NOT SY-SUBRC IS INITIAL.
    26
    27
    CLEAR LS_LINK_BUFFER_OB.
    28
    LS_LINK_BUFFER_OB-GUID_HDR = IV_GUID_HDR.
    29
    INSERT LS_LINK_BUFFER_OB INTO TABLE GT_LINK_BUFFER.
    30
    31
    READ TABLE GT_LINK_BUFFER
    32
    ASSIGNING <GS_LINK_BUFFER>
    33
    WITH TABLE KEY GUID_HDR = IV_GUID_HDR.
    34
    35
    CALL FUNCTION 'CRM_LINK_GET_DB'
    36
    EXPORTING
    37
    IV_GUID_HDR = IV_GUID_HDR
    38
    IMPORTING
    39
    ET_LINK     = LT_LINK_BUFFER.
    40
    41
    LOOP AT LT_LINK_BUFFER ASSIGNING <LINK_I>.
    42
    >>>>>
    CLEAR LS_LINK_OB.
    44
    MOVE-CORRESPONDING <LINK_I> TO LS_LINK_OB.
    45
    46
    CASE <LINK_I>-OBJTYPE_HI.
    47
    WHEN GC_OBJECT_TYPE_CONVERT-ORDERADM_H.
    48
    LS_LINK_OB-OBJNAME_HI  = GC_OBJECT_NAME-ORDERADM_H.
    49
    WHEN GC_OBJECT_TYPE_CONVERT-ORDERADM_I.
    50
    LS_LINK_OB-OBJNAME_HI  = GC_OBJECT_NAME-ORDERADM_I.
    51
    WHEN OTHERS.
    52
    READ TABLE GT_OBJECT_TYPES
    53
    ASSIGNING <GS_OBJECTS>
    54
    WITH KEY TYPE = <LINK_I>-OBJTYPE_HI.
    55
    CHECK SY-SUBRC = 0.
    56
    LS_LINK_OB-OBJNAME_HI = <GS_OBJECTS>-NAME.
    57
    ENDCASE.
    58
    59
    CASE <LINK_I>-OBJTYPE_SET.
    60
    WHEN GC_OBJECT_TYPE_CONVERT-ORDERADM_H.
    61
    LS_LINK_OB-OBJNAME_SET  = GC_OBJECT_NAME-ORDERADM_H.
    62
    WHEN GC_OBJECT_TYPE_CONVERT-ORDERADM_I.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    16
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    BA Status Change
    SY-MSGTY
    I
    SY-MSGID
    SY-MSGNO
    000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20080318
    SY-UZEIT
    054701
    SY-XPROG
    SAPLSBAL_DB
    SY-XFORM
    EXTRACT_DATA
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    10 FUNCTION     SAPLCRM_LINK_OB                     LCRM_LINK_OBU01                        43
    CRM_LINK_GET_OB
    9 FUNCTION     SAPLCRM_LINK_OW                     LCRM_LINK_OWU01                        65
    CRM_LINK_GET_OW
    8 FUNCTION     SAPLCRM_ORDER_OW                    LCRM_ORDER_OWU47                      310
    CRM_ORDER_ENQUEUE
    7 FORM         SAPLCRM_ORDER_OW                    LCRM_ORDER_OWF07                      132
    ENQUEUE_ORDER
    6 FUNCTION     SAPLCRM_ORDER_OW                    LCRM_ORDER_OWU04                       62
    CRM_ORDER_PREPARE_SINGLE_OW
    5 FUNCTION     SAPLCRM_ORDER_OW                    LCRM_ORDER_OWU02                      140
    CRM_ORDER_MAINTAIN_SINGLE_OW
    4 FUNCTION     SAPLCRM_ORDER_OW                    LCRM_ORDER_OWU01                      367
    CRM_ORDER_MAINTAIN_MULTI_OW
    3 FUNCTION     SAPLCRM_ORDER_API                   LCRM_ORDER_APIU05                     102
    CRM_ORDER_MAINTAIN
    2 FORM         ZCRR_BA_STATUS_CHANGE               ZCRR_BA_STATUS_CHANGE                 439
    CHANGE_STATUS
    1 EVENT        ZCRR_BA_STATUS_CHANGE               ZCRR_BA_STATUS_CHANGE                 238
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.      10 Ty.          FUNCTION
    Name  CRM_LINK_GET_OB
    IV_GUID_HDR
    F,xK#(#i##### #Z
    4274120600000A05
    6C8BB8090000A0DA
    ET_LINK
    Table[initial]
    EV_REF_TO_BUFFER
    0.0.0.0.0.0.0.1.
    C0000000
    F0000000
    GT_LINK_BUFFER
    Table IT_182[203x24]
    FUNCTION-POOL=CRM_LINK_OBDATA=GT_LINK_BUFFER
    Table reference: 98
    TABH+  0(20) = 0700000060BD6808070000006017C79000000000
    TABH+ 20(20) = 00000062000000B6000000CB00000018FFFFFFFF
    TABH+ 40(16) = 0400013F0000056000104BAC01800000
    store        = 0x0700000060BD6808
    ext1         = 0x070000006017C790
    shmId        = 0     (0x00000000)
    id           = 98    (0x00000062)
    label        = 182   (0x000000B6)
    fill         = 203   (0x000000CB)
    leng         = 24    (0x00000018)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000014
    occu         = 16    (0x00000010)
    access       = 2     (ItAccessSorted)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 1     (ItUnique)
    keyKind      = 3     (user defined)
    cmpMode      = 5     (cmpSingle)
    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         = 0x0700000060BD6860
    pgHook       = 0x07000000649ECAD0
    idxPtr       = 0x0700000063C05D88
    shmTabhSet   = 0x0000000000000000
    id           = 145   (0x00000091)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 560   (0x00000230)
    lineAlloc    = 560   (0x00000230)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x00000001)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0700000060BD69F8
    collHook     = 0x0000000000000000
    ext2         = 0x0000000000000000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    <GS_LINK_BUFFER>
    ###i########
    4710000000FF
    68B000AD00FF
    242600A500FF
    CB89000A00FF
    SY-SUBRC
    0
    0000
    0000
    LS_LINK_BUFFER_OB
    ###i########
    4710000000FF
    68B000AD00FF
    242600A500FF
    CB89000A00FF
    %_DUMMY$$
    0000
    0000
    2222
    0000
    SYST-REPID
    SAPLCRM_LINK_OB
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454454544445442222222222222222222222222
    310C32DFC9EBFF20000000000000000000000000
    LT_LINK_BUFFER
    Table IT_2344825[16x40]
    FUNCTION=CRM_LINK_GET_OBDATA=LT_LINK_BUFFER
    Table reference: 17179
    TABH+  0(20) = 07000000730048880700000069E07C2800000000
    TABH+ 20(20) = 0000431B0023C779000000100000002800000130
    TABH+ 40(16) = 0400014000000590001043D421800000
    store        = 0x0700000073004888
    ext1         = 0x0700000069E07C28
    shmId        = 0     (0x00000000)
    id           = 17179 (0x0000431B)
    label        = 2344825 (0x0023C779)
    fill         = 16    (0x00000010)
    leng         = 40    (0x00000028)
    loop         = 304   (0x00000130)
    xtyp         = TYPE#000015
    occu         = 16    (0x00000010)
    access       = 2     (ItAccessSorted)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 3     (user defined)
    cmpMode      = 10    (cmpMany)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x070000007357D7D0
    pgHook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    shmTabhSet   = 0x0000000000000000
    id           = 1793616 (0x001B5E50)
    refCount     = 2     (0x00000002)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 3     (0x00000003)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x070000006E428C48
    collHook     = 0x0000000000000000
    ext2         = 0x0000000000000000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    <LINK_I>
    ###i#######i####0530
    47100000471000000000
    68B000AD68B000AD0000
    242600A5242600A53333
    CB89000ACD89000A0530
    LS_LINK_OB
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.
    00000000000000000000000000000000000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000000000000000000000000000000000
    00000000000000002222222222222222222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000000000000000000000000000000000
    <LINK_I>-OBJTYPE_HI
    05
    00
    00
    33
    05
    GC_OBJECT_TYPE_CONVERT-ORDERADM_H
    05
    00
    00
    33
    05
    SY-REPID
    SAPLCRM_LINK_OB
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454454544445442222222222222222222222222
    310C32DFC9EBFF20000000000000000000000000
    %_SPACE
    0
    0
    2
    0
    No.       9 Ty.          FUNCTION
    Name  CRM_LINK_GET_OW
    IV_GET_ALL
    0
    0
    2
    0
    IV_GUID_HI
    F,xK#(#i##### #Z
    4274120600000A05
    6C8BB8090000A0DA
    IV_INHERIT_FROM_STR
    0
    0
    2
    0
    IV_OBJNAME_HI
    ORDERADM_H
    000000000000000000000000000000
    000000000000000000000000000000
    454454445422222222222222222222
    F245214DF800000000000000000000
    IV_OBJNAME_SET
    PRIDOC
    000000000000000000000000000000
    000000000000000000000000000000
    554444222222222222222222222222
    0294F3000000000000000000000000
    ET_LINK
    Table[initial]
    %_ARCHIVE
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY-REPID
    SAPLCRM_LINK_OW
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454454544445452222222222222222222222222
    310C32DFC9EBFF70000000000000000000000000
    SY-MSGID
    00000000000000000000
    00000000000000000000
    22222222222222222222
    00000000000000000000
    GS_EMPTY_ADM_I
    0.0.0.0.0.0.0.0.0.0.0.1.            ####                                                              #
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2220000000000002222222222220000222222222222222222222222222222222222222222222222222222222222220
    00000000000000C000000000000000C000000000000000000000000000000000000000000000000000000000000000
    SV_GUID_HI
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.
    0000000000000000
    0000000000000000
    SPACE
    0
    0
    2
    0
    SY-MSGNO
    000
    000
    000
    333
    000
    GS_EMPTY_BUFFER
    0.0.0.0.0.0.0.0.0.0.0.1.
    0000000000FF
    0000000000FF
    0000000000FF
    0000000000FF
    SY-MSGV1
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    SY-MSGV2
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    SY-MSGV3
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    SY-MSGV4
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    GC_CI_NAME
    CI_EEW_ORDERADM_H             CI_EEW_ORDERADM_I             CI_EEW_ACTIVITY_H             CI_E
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    4454455454454445422222222222224454455454454445422222222222224454455445454555422222222222224454
    39F557FF245214DF8000000000000039F557FF245214DF9000000000000039F557F13496949F8000000000000039F5
    SYST-REPID
    SAPLCRM_LINK_OW
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454454544445452222222222222222222222222
    310C32DFC9EBFF70000000000000000000000000
    <GS_BUFFER_OB>-GUID_HDR
    F,nÎ#(#i##### #Z
    426C120600000A05
    6CEEB8090000A0DA
    LV_GUID_HDR
    F,xK#(#i##### #Z
    4274120600000A05
    6C8BB8090000A0DA
    %_PRINT
    HU02001ZCRR_BA_STAT                                                                    XXX8##:
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    4533333545554455545222222222222222222222222222222222222222222222222222222222222222222225553003
    8502001A322F21F341400000000000000000000000000000000000000000000000000000000000000000000888800A
    GC_OBJNAME_ITM
    ORDERADM_I
    000000000000000000000000000000
    000000000000000000000000000000
    454454445422222222222222222222
    F245214DF900000000000000000000
    TRUE
    X
    0
    0
    5
    8
    LV_REF_TO_BUFFER
    0.0.0.0.0.0.0.1.
    C0000000
    F0000000
    <GS_BUFFER_OB>
    ###i########
    461000005004
    6EB000AD500D
    2C2600A5000A
    CE89000A000A
    <GS_BUFFER_OB>-LINKS
    Table IT_2342432[10x160]
    FUNCTION-POOL=CRM_LINK_OWDATA=<GS_BUFFER_OB>-LINKS
    Table reference: 19882
    TABH+  0(20) = 07000000737A8E1007000000736BF77000000000
    TABH+ 20(20) = 00004DAA0023BE200000000A000000A0FFFFFFFF
    TABH+ 40(16) = 0400013F0000062000104BD401800000
    store        = 0x07000000737A8E10
    ext1         = 0x07000000736BF770
    shmId        = 0     (0x00000000)
    id           = 19882 (0x00004DAA)
    label        = 2342432 (0x0023BE20)
    fill         = 10    (0x0000000A)
    leng         = 160   (0x000000A0)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000018
    occu         = 16    (0x00000010)
    access       = 2     (ItAccessSorted)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 1     (ItUnique)
    keyKind      = 3     (user defined)
    cmpMode      = 10    (cmpMany)
    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         = 0x0700000072F870B8
    pgHook       = 0x0000000000000000
    idxPtr       = 0x0700000073004810
    shmTabhSet   = 0x0000000000000000
    id           = 1791893 (0x001B5795)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x00000001)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x070000007255E500
    collHook     = 0x0000000000000000
    ext2         = 0x0000000000000000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    No.       8 Ty.          FUNCTION
    Name  CRM_ORDER_ENQUEUE
    IT_ITEMS
    Table[initial]
    IV_ENQUEUE_MODE
    E
    0
    0
    4
    5
    IV_GUID
    F,xK#(#i##### #Z
    4274120600000A05
    6C8BB8090000A0DA
    IV_LOCAL
    0
    0
    2
    0
    IV_LOGSYS
    0000000000
    0000000000
    2222222222
    0000000000
    IV_PARTIAL
    0
    0
    2
    0
    EV_ALREADY_LOCKED
    0
    0
    2
    0
    GC_OBJECT_NAME-CUSTOMER_I
    CUSTOMER_I
    000000000000000000000000000000
    000000000000000000000000000000
    455544455422222222222222222222
    3534FD52F900000000000000000000
    FALSE
    0
    0
    2
    0
    GC_CASHFLOW_USAGE
    0102030510
    0000000000
    0000000000
    3333333333
    0102030510
    GC_DEFAULT_SCENARIO_MAINTAIN
    0
    0
    2
    0
    %_DUMMY$$
    0000
    0000
    2222
    0000
    GC_DEB_CRED_NOTE
    06
    00
    00
    33
    06
    SY-REPID
    SAPLCRM_ORDER_OW
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454454545445545222222222222222222222222
    310C32DFF2452FF7000000000000000000000000
    GC_SCENARIO_NUMBER_8
    08
    00
    00
    33
    08
    SY-SUBRC
    0
    0000
    0000
    GC_BIN_REL_TYPE
    VONAATTAURL NOTEBDCOBDCIREPLMASUASGNUPG OUTLISUSGAIDINTAINVOPO  PDHLPLNKUBB1UBB2PNT RSHPSRCEIS
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    5444455455424454444444445454445545445542455445554444445444545422544454445443544354525545554445
    6FE1144152C0EF45243F2439250CD135137E5070F54C935371949E419E6F0F00048C0CEB522152220E402380323593
    GC_AGREEMENT_MESSAGE
    EF
    000
    000
    244
    056
    GC_OBJECT_NAME-ORDERADM_H
    ORDERADM_H
    000000000000000000000000000000
    000000000000000000000000000000
    454454445422222222222222222222
    F245214DF800000000000000000000
    GC_OBJECT_TYPE-CONTRACT_SERVICE
    BUS2000112
    0000000000
    0000000000
    4553333333
    2532000112
    GC_OBJECT_NAME-PRIDOC
    PRIDOC
    000000000000000000000000000000
    000000000000000000000000000000
    554444222222222222222222222222
    0294F3000000000000000000000000
    RSJOBINFO
    00000000000000                                  ##
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222233333333333333222222222222222222222222222222222200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    LT_LINK_COM
    Table[initial]
    SYST-REPID
    SAPLCRM_ORDER_OW
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454454545445545222222222222222222222222
    310C32DFF2452FF7000000000000000000000000
    %_SPACE
    0
    0
    2
    0
    No.       7 Ty.          FORM
    Name  ENQUEUE_ORDER
    GC_SCENARIO_10
    0
    0
    2
    0
    IS_HEADER_GUID
    F,xK#(#i##### #Z
    4274120600000A05
    6C8BB8090000A0DA
    GC_APO_REL
    2.0A      3.0A      3.1A      4.0       4.1       5.0
    000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000
    323422222232342222223234222222323222222232322222223232222222
    2E010000003E010000003E110000004E000000004E100000005E00000000
    GC_OBJECT_KIND-ORDERADM_H
    A
    0
    0
    4
    1
    GC_LEAS_PROCESS_KIND
    IO
    00
    00
    44
    9F
    LS_ACTIVE_SWITCH
    0.0.0.0.0.0.0.1. 0000000000
    0000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000
    0000000023333333333222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000
    LS_ACTIVE_SWITCH-PRICING
    0
    0
    2
    0
    GC_ACT_SWITCH-INACTIVE
    A
    0
    0
    4
    1
    IV_INIT
    X
    0
    0
    5
    8
    GC_DEFAULT_SCENARIO_7
    0
    0
    2
    0
    LS_ALREADY_LOCKED_ORDERS-OPEN_PRIDOC
    0
    0
    2
    0
    GC_EMPTY_GUID
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.
    0000000000000000
    0000000000000000
    IV_LOCAL
    0
    0
    2
    0
    %_PRINT
    HU02001ZCRR_BA_STAT                                                                    XXX8##:
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    4533333545554455545222222222222222222222222222222222222222222222222222222222222222222225553003
    8502001A322F21F341400000000000000000000000000000000000000000000000000000000000000000000888800A
    LV_ALREADY_LOCKED
    0
    0
    2
    0
    GC_DEFAULT_TIMEZONE
    ABCD
    0000
    0000
    4444
    1234
    No.       6 Ty.          FUNCTION
    Name  CRM_ORDER_PREPARE_SINGLE_OW
    IS_OPPORT_H
    0000000000################0000000000000000   00000000000                        00000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    3333333333000000000000000033333333333333332223333333333322222222222222222222222233333333333222
    000000000000000000000C000C00000000000000000000000000000000000000000000000000000000000000000000
    IT_FINPROD_I
    Table[initial]
    IT_ORGMAN
    Table[initial]
    IT_PRICING
    Table[initial]
    IT_PRIDOC
    Table[initial]
    IT_PRODUCT_I
    Table[initial]
    IT_SALES
    Table[initial]
    IT_SHIPPING
    Table[initial]
    CS_ORDERADM_H
    0000000000###i####0007001044ZSP100000000
    0000000000471000000000000000000000000000000000000000000000000000000000000000000000000000000000
    000000000068B000AD0000000000000000000000000000000000000000000000000000000000000000000000000000
    3333333333242600A53333333333555333333333222222222222222222222222222222222222222222222222222222
    0000000000CB89000A0007001044A30100000000000000000000000000000000000000000000000000000000000000
    CT_INPUT_FIELDS
    Table IT_60[1x192]
    PROGRAM=ZCRR_BA_STATUS_CHANGEDATA=GT_INPUT_FIELD
    Table reference: 38
    TABH+  0(20) = 070000006013B7280700000061400C4800000000
    TABH+ 20(20) = 000000260000003C00000001000000C0FFFFFFFF
    TABH+ 40(16) = 0400000000000860001045D401800000
    store        = 0x070000006013B728
    ext1         = 0x0700000061400C48
    shmId        = 0     (0x00000000)
    id           = 38    (0x00000026)
    label        = 60    (0x0000003C)
    fill         = 1     (0x00000001)
    leng         = 192   (0x000000C0)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000030
    occu         = 16    (0x00000010)
    access       = 2     (ItAccessSorted)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 3     (user defined)
    cmpMode      = 10    (cmpMany)
    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         = 0x0700000060B8C400
    pgHook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    shmTabhSet   = 0x0000000000000000
    id           = 45    (0x0000002D)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)

  • Clarification required regarding Destinations

    Hi Experts,
    I have a doubt regarding the security of destinations for WSIL, WSDL and RFC.
    Whenever we create the destinations for WSIL, WSDL and RFC, in the security part we select the "User ID / Password" mechanism and enter the user ID and password (Administrator in case of SAP WebAS and for ECC <superadmin> ID)
    Can we use a different ID for both these systems while creating the Logical Destinations?
    If Yes, please let me know the minimum Authorizations required for the User ID and the steps.
    Regards,
    Poojith MV

    Wrong forum!
    >Can we use a different ID for both these systems while creating the Logical Destinations?
    Yes.
    BR, Siarhei

  • Guideence required regarding SAP MM certification

    Hi All,
    As per my analysis the latest Exam code for MM is
    Solution Consultant SCM - Procurement with mySAP ERP 2005.
    I am actually an ABAP'er but have good knowledge in SAP MM, now that i am planning to take the above certification can you please guide me
    1. how to prepare for the exam , what documents to refer to ? and where can i find them how complex the questions would be .. what is the preparation time required .. (I am in US so i can take up the test any time .. need not be only during the Tech'ed )
    Any kind of help on the above would really really help me .
    thanks in advance ..
    regard's
    Sudheer V

    Hi Pandari,
    Thank you for amazingly fast reply ..
    Yes I will have to work hard for certification ... i am planing to take up the certification on my own .. not through the company .. is there a way to download the certification documents anywhere .. as per me its not available for download ...
    what are the other sources for for getting the material .. also what are the documents which i have to prepare for ( Like for ABAP certification we have BC410, BC430 etc )
    Can you help me finding the correct documentation .. so that i can start off with my preparation ..
    Thanks and regrad's
    Sudheer V

  • T CODES for special requirements in Physical Inventory

    Hi experts:
      Does the SAP provide the T CODES for physical inventory which can meet the following requirements separately or collectivelly:
      1、it can display the current book quantity when we input the right physical quantity as what we do in Mi04。
      2、It can provide us a field to input the slip no. when we do the inventory adjustment as what we do in mI07. So that we can trace the whole adjustment process with the slip no.
    Thanks.

    Hi,
    Try with t.codes mi20 and mi24.  might be useful.
    regards
    alexandro

Maybe you are looking for