PSGUID Field in the Hide in the Quality System,Unhide in Dev System

Hi all,
We have applied note 929584 to get the GUID filed in the Standared extractors.
That is perfectly applied & we have tested in BW development & R/3 Dev.
same request we have trasported to Quality system but in some data sources GUID , CPR_GUID & OBSNR fields are in the HIDE .
I have done the following things:
1. I have checked in RSA2 of Quality system those filelds are "Fileds to be trasfered" check box is unchecked *( But not in DEV)
2.RSA6 also those filed are with HIDE Check box ( But not in DEV).
3. I have reactivated the datasources in DEV sytem once agin & Retrasported but still those fileds are in the same situation.
So please suggest me How I have to unhide these fileds in the Quality System.
Please suggest me.
Thanks,
Kiran Manyam
Edited by: kiran manyam on Apr 1, 2009 11:03 AM

Hi Rajiv,
Thank you very much for the quick reply. I created an entity adapter and did things as you said .. But start date field is not getting pre populate. what i want is once the user clicks on the "Users -- > Create" link create user page should loaded and system date need to be shown as the start date..
For an example in create user page 'change password at next logon' chek box is already checked(prepopulated) once the create user page is loading. Likewise what i want is when user creation page is loading display the current system date as the start date..
I think now my problem is clear to you..
will it be possible to do.. can you please help on that....
Regards,
i.k.

Similar Messages

  • Unable to load the data into Cube Using DTP in the quality system

    Hi,
    I am unable to load the data from PSA to Cube using DTP in the quality system for the first time
    I am getting the error like" Data package processing terminated" and "Source TRCS 2LIS_17_NOTIF is not allowed".
    Please suggest .
    Thanks,
    Satyaprasad

    Hi,
    Some Infoobjects are missing while collecting the transport.
    I collected those objects and transported ,now its working fine.
    Many Thanks to all
    Regards,
    Satyaprasad

  • What actions should be taken while working with  the quality system

    Hi all,
    The development phase has been completed, I would like to know what are the steps we need to follow when we are working with  the quality system.
    I have some doubts regarding this could any one give the inputs please.
    1. Where should we create any Roles and Authorizations.Dev/QA/Prd
    2. Where should we  craete process Chains. Dev/QA/Prd.
    3. Can I transport the queries without using  Bex transport. What will happen If i dont use the Bex transport.
    Thanks in Advance
    Regards
    Kumar

    Hi Kumar,
    your BW quality system will be connected to your R/3 Production system from where you'll extract the real time data and do testing which includes estimation of downtime in case of filling up of the set up tables and so on...
    the most general procedure is to create the Roles and Authorizations in teh development system and then transport it across to production through your quality system...
    Process chains you afford to create it directly in your production system itself... that's no big deal...
    And of course, you'll have to transport the queries only using the BEx transport.. there's no other go for this as its the standard procedure given by SAP...
    Hope it helps..
    Regards
    Manick

  • How to replicate customer fields in the  backend system.

    Hi All,
    I need to transfer PO customer fields that were created in the SRM system to backend SAP system.
    I am using Extended Classic Scenario in SRM and SRM Version is 5.0.
    I am able to replicate the data created in SRM system to the backend.
    How ever, I found the following BADI while debugging.
    1. BBP_DOC_SAVE_BADI
    2. BBP_CTR_RELVAL_ICC
    3. BBP_DOC_SAVE_ICC
    4. BBP_F4_SAVE_DB
    5. HRSYNC_P
    Hence, please tell me which BADI, I need to use to send my customer fields to the backend system.
    Regards,
    Venky.

    Hi
    As Disha told, <u>You need to create a customer Implementation of any othe BADIs using SE19 Transaction.
    Say, you create an active customer Implementation of BBP_ECS_PO_OUT_BADI...</u>
    <u><b>See links given in earlier reply for detailed sample code.</b></u>
    <u>Write the following sample code (pls change it as per your business requirement)</u>
    METHOD if_ex_bbp_ecs_po_out_badi~bbp_b46b_po_outbound.
    ** Customer fields
    MOVE 'POHEADER' TO w_customer_fields-refobject.
    *PO approver
    MOVE 'ZZAPPROVER' TO w_customer_fields-fieldname.
    MOVE is_header-zzlastapprover TO w_customer_fields-container.
    APPEND w_customer_fields TO ct_bapi_customer_fields.
    *SC Date
    MOVE 'ZZSCDATE' TO w_customer_fields-fieldname.
    MOVE lv_scheader-created_at TO w_customer_fields-container(15).
    APPEND w_customer_fields TO ct_bapi_customer_fields.
    *Requester Org
    MOVE 'ZZORGA' TO w_customer_fields-fieldname.
    MOVE w_requester_orgunit TO w_customer_fields-container.
    APPEND w_customer_fields TO ct_bapi_customer_fields.
    endmethod.
    <u>BBP_PO_INBOUND_BADI in R/3.</u>
    method IF_EX_BBP_PO_INBOUND_BADI~BBP_MAP_BEFORE_BAPI.
    data wa_customer_fields TYPE BBPS_IF_CUSTOMER_FIELDS.
    data : WA_BAPI_TE_MEPOHEADER type BAPI_TE_MEPOHEADER,
    WA_BAPI_TE_MEPOHEADERX type BAPI_TE_MEPOHEADERX.
    data WA_EXTENSIONIN TYPE BAPIPAREX.
    data txt_960(960) type c.
    *** EKKO Customer fields.
    *PO Number
    move BBP_POHEADER-PO_NUMBER to WA_BAPI_TE_MEPOHEADER-PO_NUMBER.
    move BBP_POHEADER-PO_NUMBER to WA_BAPI_TE_MEPOHEADERX-PO_NUMBER.
    *ZZAPPROVER
    READ TABLE BBP_CUSTOMER_FIELDS INTO wa_customer_fields
    WITH KEY refobject = 'POHEADER'
    fieldname = 'ZZAPPROVER'.
    IF SY-SUBRC EQ 0.
    MOVE wa_customer_fields-container TO WA_BAPI_TE_MEPOHEADER-ZZAPPROVER.
    WA_BAPI_TE_MEPOHEADERX-ZZAPPROVER = 'X'.
    endif.
    *ZZSCDATE
    READ TABLE BBP_CUSTOMER_FIELDS INTO wa_customer_fields
    WITH KEY refobject = 'POHEADER'
    fieldname = 'ZZSCDATE'.
    IF SY-SUBRC EQ 0.
    MOVE wa_customer_fields-container TO WA_BAPI_TE_MEPOHEADER-ZZSCDATE.
    WA_BAPI_TE_MEPOHEADERX-ZZSCDATE = 'X'.
    endif.
    *ZZORGA
    READ TABLE BBP_CUSTOMER_FIELDS INTO wa_customer_fields
    WITH KEY refobject = 'POHEADER'
    fieldname = 'ZZORGA'.
    IF SY-SUBRC EQ 0.
    MOVE wa_customer_fields-container TO WA_BAPI_TE_MEPOHEADER-ZZORGA.
    WA_BAPI_TE_MEPOHEADERX-ZZORGA = 'X'.
    endif.
    CLEAR txt_960.
    CLEAR WA_EXTENSIONIN.
    write WA_BAPI_TE_MEPOHEADER to txt_960 left-justified.
    WA_EXTENSIONIN-STRUCTURE = 'BAPI_TE_MEPOHEADER'.
    WA_EXTENSIONIN-VALUEPART1 = txt_960(240).
    WA_EXTENSIONIN-VALUEPART2 = txt_960+240(240).
    WA_EXTENSIONIN-VALUEPART3 = txt_960+480(240).
    WA_EXTENSIONIN-VALUEPART4 = txt_960+720(240).
    append WA_EXTENSIONIN to BAPI_EXTENSIONIN.
    CLEAR txt_960.
    CLEAR WA_EXTENSIONIN.
    write WA_BAPI_TE_MEPOHEADERX to txt_960 left-justified.
    WA_EXTENSIONIN-STRUCTURE = 'BAPI_TE_MEPOHEADERX'.
    WA_EXTENSIONIN-VALUEPART1 = txt_960(240).
    WA_EXTENSIONIN-VALUEPART2 = txt_960+240(240).
    WA_EXTENSIONIN-VALUEPART3 = txt_960+480(240).
    WA_EXTENSIONIN-VALUEPART4 = txt_960+720(240).
    append WA_EXTENSIONIN to BAPI_EXTENSIONIN.
    endmethod.
    Hope this will help.
    Regards
    - Atul

  • Change master data of business consolidation directly in the quality system

    Dear All,
    I need to change master data of business consolidation directly in the quality system.
    Anyone an idea?
    Kind regards,
    Marilia

    Welcome to SDN.
    There are SAP Notes 933024, 804057 and 592239 that provide a means of opening UCWB only for master data objects.
    Another possible work around is to make the updates in BW and use the synchronization programs UGMDSYNC and UGMDSY20. However for FS Items and Cons Groups all of the master data elements such as breakdown category and period of first consolidation are not available for entry in BW so for these characteristics the maintenance must still be completed in UCWB.
    Edited by: Dan Sullivan on Jan 4, 2011 10:59 PM

  • Select the language field in the source system ?

    Hi,
    when I schedule the load for 0cust_sales_text there popups the message 'Select the language field in the source system -> Long text'.
    Long text says: 'Either no language field is selected as a selection field in the source system KC1CL005 in DataSource 0CUST_SALES_TEXT, or the language field is not assigned to InfoObject 0LANGU in BW.'
    In the DataSource there is not an object for language? I don't know what to do.
    Tobias

    Hello,
    texts of 0cust_sales are not marked as language-dependent.
    the psa tells me, which records are marked as error, but i don't understand it.
    green     1     1     0009     03     MB     L605930     cust a
    green     1     2     0009     03     XX     L605930     cust a
    red     1     3     0009     04     MB     0000013081     cust b
    red     1     4     0009     04     XX     0000013081     cust b
    green     1     5     0020     01     MB     0000001570     cust c
    green     1     6     0020     01     XX     0000001570     cust c
    red     1     7     0020     01     MB     0000001571     cust c
    red     1     8     0020     01     XX     0000001571     cust c
    red     1     9     0020     01     MB     0000001572     cust c
    red     1     10     0020     01     XX     0000001572     cust c
    green     1     11     0020     01     MB     0000001578     cust d
    The error messages say there were double records
    Tobias

  • Requirement 607 does not work in the Quality System

    Hi,
    I have the following problem. We have transported the entire developed applications from Development System to the Quality System.
    Maintained one output type through T-code MN04. The self created requirement 607(output control) doesn't take
    any effect in the Quality System. I have set a breakpoint in the code (within Requirement 607 coding) it doesnt
    stop there. Clearly said it does not work similar as in the Development System. There is everything OK.
    Did you ever come into across with such a problem. Please help me on this topic.
    Friendly Regards
    Marco

    Hello Marco
    I had once a very similar problem like yours and it was indeed due to a problem of generating these odd exits as described by Roger.
    The SAP note which helped to solve the problem was: [Note 28683 - PERFORM_NOT_FOUND: VOFM routine is not active|https://service.sap.com/sap/support/notes/28683]
    Regards
      Uwe

  • Transporting a Data Source and Hierachie to the Quality System

    Hello,
    i have following problem.
    I want to transport a  generic data source from our development system into the quality system.
    In the development system the hierachie looks like
    New-Hierroot
    ->CO
        ->ABB
             ->Datasource ABB
    When i transport the data source into the quality system the hierache looks
    New Hierroot
    ->Nodesnotconnected
      ->CO
          ->ABB
               ->Datasource ABB
    How can i solve this problem? Transaction rsa9? We dont have business content on our r/3 systems and iam not allowed to change such settings...??
    Thank you greetings

    i don't understand that exarctly.
    Transport connectionscreen is se09? (what transaction is that?)
    and whatis a dev to Q mapping
    Sorry iam new..
    Message was edited by:
            Katsumoto

  • Navigate_absolute is not working in the quality system.

    Hi experts,
    i developed a webdynpro component and integrated into EP, Here when i test my application through ep (developmemt system) everthing is working fine. But when i test the application through ep (quality system) exit button is not working its not navigating to OVERVIEW SCREEN in EP, And the code which i have written in the exit button is.
    Exit button is working in development system but its not working in quality system.
    METHOD onactionexit .
    TYPES: BEGIN OF navigation,
        target       TYPE string,
        mode         TYPE string,
        features     TYPE string,
        window       TYPE string,
        history_mode TYPE string,
        target_title TYPE string,
        context_url  TYPE string,
       END OF navigation.
      DATA: wa_navigation TYPE navigation.
      DATA lo_api_component  TYPE REF TO if_wd_component.
      DATA lo_portal_manager TYPE REF TO if_wd_portal_integration.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_portal_manager = lo_api_component->get_portal_manager( ).
    wa_navigation-target =  'ROLES://pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.pages/com.sap.pct.erp.ess.overview'.
      wa_navigation-mode   = '0'.
      CALL METHOD lo_portal_manager->navigate_absolute
        EXPORTING
          navigation_target = wa_navigation-target
          navigation_mode   = wa_navigation-mode.
    please provide requried information.
    Thanks & Regards.
    Bhushan.

    Hi,
    The both mentioned virtual systems are in different LPAR's (Physical host).
    Already I have checked the /etc/services and looks every thing is fine in the file. I have also checked the file inetd.conf  and I didn't find any thing # on the Telnet.It seems every thing is fine in the both files.
    Can you please look in to it and provide some thing which I have to look in the OS level.
    Thanks & Regards,
    Sandeep

  • How to delete Transport Request in the Quality system?

    Hi all,
    I have made some modifications in the update rule and i have transported to QA. And i found the update rule is active.
    But in the transports i have transported some irrelevant multi providers along with the update rule. So is it possible to delete the irrelevant multi providers and queries that are been associated in the update rule in the QA.
    if to delete let me know how to delete those unnecesary MP been transported in QA.
    thanxs
    haritha

    HI
    Unlock the request in se03 and delete what u want in the se09 tcode in the quality. U will find a delete button on the top.
    Correct me if i am wrong
    Khaja

  • Data source inactive in the quality system

    Hi all,
    I transported R/3 datasource from DEV to QA and replicated datasource in to BWQ but the datasource in QA is inactive eventhough it is in active mode in R/3 QA system. When I checked the RSOLTPSOURCE  table there is no entry for my datasource. When i try to transport the transfer rules it is giving error 'DataSource xxxxxxxx does not exist in source system XYZ of version A'. How to activate the datasource in BW quality system.
    Could any one help me to resolve this issue.
    Thanks in advance.
    Mandadi

    Hi,
    Firstly nly the active data sources in the source system will be available for useing in the bw.
    R/3 check whether the datasource is active or not. If not active activateit.
    If active , on the bw side replicate that particular datasource. and activate it again through program <b>RS_TRANSTRU_ACTIVATE_ALL</b>
    Hope this helps
    Janardhan Kumar

  • Purchase requisition and Purchase order fields in the APO system

    Hi
    I have to develop a report in the APO system for which material id needs to be linked with purchase order and purchase requisition fields. I am not able to locate the table to pick these fields.Please anyone can tell which table,FM or BAPI to use.
    thanks in advance

    You should be able to retrieve the PegID for this particular material/plant combination using /SAPAPO/DM_PEGID_GET_MATERIAL and then using OM LC Get data you should be able to retrieve all the order categories you need for the report.

  • Material Document field to be added  in the Quality Notification F3 type

    Hello Experts,
    i have to add Material Document field in the Quality Notification (F3 type --Material rel. defect ) through
    T-code QM01.
    Please help me out.
    thanks

    Hi
    IMG-->QM>Quality notifications->Notification Creation->Define Screen Templates--> Define Initial Screens--> select F3 here and enter QM03_CREATE_QMEL_WITH_WINDOW in the column Name of the function module and enter 0100 in the  initial screen column., save it.
    If you wish to make material document field mandatory, then go to
    IMG-->QM>Quality notifications->Notification Creation->Define Screen Templates--> Field Selection: Initial Screens--> select the radio button as REQ for the field RQM01-MBLNR that is for material doc.
    Similarly for in the above menu you can make mandatory for reference object screen also
    IMG-->QM>Quality notifications->Notification Creation->Define Screen Templates--> Field Selection: Reference Object Screens--> select the radio button as REQ for the field RQM01-MBLNR that is for material doc.
    Now, once you finish this , go and try QM01 you will find the POP for Material document entry coming immediately if you pres the Notification button for F3 Notification type.
    Best Regards
    SAM

  • Changes are not reflecting in the Quality

    Hi,
    These are standard SAP Components. I have imported the ESS and MSS Packages.
    Actually 3 Development Components are using in my application (Tra,TraTri and TraTre).Tra is the root DC.
    I have made  changes  to those objects and sucecessfully  build  without errors.
    After check-in all  activities  those activities are working fine in Development system.
    But those changes not refclecting in Quality system. So i was founded build log error in Consolidation.
    I was fixed the error in the Development system and build the components without build error.
    still now changes are not reflecting in the quality system.
    But out of 3 DCs(Tra,TraTri,TraTre) Tra and TraTre are working fine in Quality(changes are  reflecting) only problem in TraTri DC (changes are not reflecting in the Quality)..
    Please help me as soon as possible....Its very help full for me
    Regards
    Sudhakar Reddy A

    Hi Slava,
    very very thanks to you for the fast reply. but one thing in my side.
    When i release the activities after successful build, i export those changes and place them in the import queue of the consolidation system in the CMS.
    The export in the SAP NetWeaver Developer Studio packs all selected activities into a change request, and then places them in the import queue of the consolidation system.
    When the my system administrator imports this request into the consolidation system, the released changes are integrated into the DTR workspace of the consolidation system; the build server compiles the modified components.
    my system administrator findout build error in consolidation system:
    [wdgen] [Error]   .PersonnelNumberCheck: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck [modelClass]: The context model node has not been bound to a model class (Hint: A Context model node has to be bound to a model class or mapped to a model node of another controller.)
         [wdgen] [Error]   .PersonnelNumberCheck.I_Employeenumber: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck_Output [modelClass]: The context model node has not been bound to a model class (Hint: A Context model node has to be bound to a model class or mapped to a model node of another controller.)
         [wdgen] [Info]    com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck_Output [supplyingRelationRole]: Supply function or supplying relation role missing (Hint: A child node which is not mapped must have either a supplying relation role or a supply function or one of its parent nodes must have a supply function.)
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.E_Name: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck_Et_Return [modelClass]: The context model node has not been bound to a model class (Hint: A Context model node has to be bound to a model class or mapped to a model node of another controller.)
         [wdgen] [Info]    com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck_Et_Return [supplyingRelationRole]: Supply function or supplying relation role missing (Hint: A child node which is not mapped must have either a supplying relation role or a supply function or one of its parent nodes must have a supply function.)
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Type: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Log_No: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Field: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.System: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message_V1: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message_V3: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message_V2: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Log_Msg_No: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Number: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message_V4: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Parameter: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Id: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Row: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextValueAttribute EmployeeName [readOnly]: The context attribute has to be read-only. (Hint: As the mapped context attribute is read-only this attribute has to be read-only, too.)
    I was fix error in my development system with out any build errors. still now not working ...pls give me any suggestion.i dont have access to consolidation system.
    Regards,
    Sudhakar

  • Unable to view the messages in sxmb_moni - Quality System

    Hi,
    We have got a strange problem in the diaplay view for  TCode - sxmb_moni for our Quality system. 
    We have different scenarios - Idoc to Web Service (synchronous using BPM), Proxy to Web Service both inbound and outbound etc all to the same Webservice.
    Whenever a scenario executes in the Development system, we are able to view the WSDL data that is sent to the Web Service along with the response given by the Web Service in all the cases successfull or unsuccessful.
    But if the scenario is executed in the Quality system there are a few different cases for the display view in sxmb_moni :
    Case 1 ) Incase of IDoc to Webservice "Successfull " (ECC -> PI-> Webservice)Scenario we are able to see only the data that is sent to the Webservice. We are not able to view the WSDL sent to the Webservice and the Response received.
    Case 2)  Incase of IDoc to Webservice " Unsuccessfull / Error " (ECC -> PI-> Webservice) Scenario We are able to view all the data that is sent to the Webservice right from the Idoc to BPM, the WSDL, the response received.
    Case 3) In case of Proxy scenarios both inbound and outbound "Successfull ", we are neither able to view the data that is sent to the Webservice or the response received from the Web Service.
    Case 4 ) In case of Proxy scenarios both inbound and outbound "Unsuccessfull ", we are able to view only the error and not the data that is exchanged between both the systems.
    The point to be noted is that in case of Successfull executions the data is well received at the Web Service end.
    What could be  possibly missing between the two systems Development and Quality due to which we are not able to view messages in the T-Code SXMB_MONI
    Thanks a lot for all the inputs!

    Hi Lalit,
    In sxmb_ad transaction, go to configuration integration engine (edit) and set Trace Level = 3.
    See that:
    The specified item was not found.
    Regards,
    Carme.

Maybe you are looking for

  • Lightening imovies taken in low light places

    Hi, I did a wonderful video of my niece's wedding but no one listened to me (as usual) when I explained that there needs to be plenty of light reflecting off the faces of the subjects. I did not want to use an obnoxous camera light at the delicate ce

  • Repetitive Broadcom errors in journalctl

    Hi, I've managed to get everything setup on my Macbook Air 2014. I checked journalctl for errors since last boot and discovered that the following is getting logged once a second (also present in dmesg output): kernel: ERROR @wl_cfg80211_get_tx_power

  • I live in France but am english. How do I Find selection free books in English?

    Registered as living in France even though I'm English, I want books in my native language on I books. Every time suggestions on store are French books. Any suggestions?

  • Soundtrack Pro 2.02 will not open

    I purchased Logic Studio as soon as it was available. When the update came out I loaded it just fine. Logic Studio works perfectly. Soundtrack Pro will not open at all. I clicked on the alias in the dock, the icon bounced one, and then just sat there

  • Time capsule crash when i add external drive

    Hi all: I have a time capsule that is running out of disk space. When I plug in a usb external drive, the time cap turns amber and all the wireless functions go off line. Time capsule firm ware is up to date. Does anyone know what is wrong?