Data is not getting updated in table using RFC

Hi Experts,
In my scenario, I am calling one RFC using RFC receiver channel. After running scenario, channel is showing status that RFC executed successfully. But when I am checking tables in R/3 system, data is not getting updated.
Moreover , when we tried to execute the RFC manually in R/3 system, that time data uploaded into table successfully.
Could anybody tell me what would the reason that data not uploading into table when we send it through XI.
Regards,
Sari

HI Sari,
as you have scenario with RFC receiver.. and as you mentioned that it not updating tables when run through PI but when you execute RFC manually tables got updates.. then following are the options you can check..
-- if you check RFC communication channel and if everything ok on then.. this means that your RFC is getting triggered successfully..but as you said tables are not updated.. for this you can go to SXMB_MONI and check the log take payload after mapping.. and compare it with the input when you try to execute it manually.. I think the input when you try manually and input to RFC when you try through PI is different and that is causing the Problem.. you will be able to see the difference in input then check.. I think the problem is data and not RFC communication channel..so by using this you will come to know difference
-- else if possible configure your ID in PI in RFC Receiver and then check and put breakpoint on ABAP side.. so that when PI will hit RFC you will get it in debug mode and able to see what is going wrong..
Thanks,
Bhupesh

Similar Messages

  • Data is not getting updated in DB table

    hi all
    i am doing IDOC to jdbc scenario
    i am triggering idoc from R/3 and the data is going into DB table
    sender side:       ZVendorIdoc
    receiver side:
    DT_testVendor
      Table
        tblVendor
          action       UPDATE_INSERT
          access      1:unbounded
            cVendorName 1
            cVendorCode 1
         fromdate    1
         todate      1
          Key
            cVendorName  1
    if i trigger idoc for example vendor 2005,2006 and 2010 data is getting updated in the table
    but again if i trigger idoc for same vendor nos data does not get updated in DB table while message is successfull in moni and RWB both
    plz suggest if any change need to be done to update the data
    Regards
    sandeep sharma

    Hi Ravi
    you are right, vendor no is my key field . problem is when i send data again then it should Update the data but it's not updating the data again
    i did on exp with this : i deleted all the record from the table and then  triggered idoc for vendor 2005 , 2006,2010 after this data is updated in the table i deleted the rows for vendor no 2006 and 2010 and kept the row for vendor 2005
    then i again trigered the idoc for vendor no 2005,2006 and 2010 now this should update and it should insert rows for vendor no 2006 and 2010 but i am surprised its not updating the data
    Thanks
    sandeep

  • Data is not getting updated in R3 from CRM

    Hi All,
               I have a small query pertaining to CRM Middleware.
    We have extended the standard scenario using EEWB for sending few customer fields thru CUSTOMER_H. This is assigned to the adapter in R3AC1.
    The data is getting populated in the structure correctly. But the problem is that the Z* field is not getting updated in R3. The more strange thing is that it is getting overwritten in CRM by data from R3.
    I have checked the problem and found out that the updateflag for z* field is missing. But the problem is that I donot know, how to populate the update flag for the field.
    Is there any customization or setting in EEWB for updating the flag?
    Please help... Please let me know if u want more informaiton.
    Thanks
    Sanu

    Sanu,
    The reason for R3 data getting overwritten in CRM is because the BSS_CENTI has a blank record
    and BSS_CENTIX structure might have a X indicator within BAPIMTCS structures.
    BSS_CENTI holds central data for the customer and BSS_CENTIX holds the change flags for the fields in central data.
    To fix this issue, you have to use CRM table SMOFSUBINT and configure a custom function module which basically yanks the 2 structures from BAPIMTCS table.
    Note:- You do this ONLY if you don't want custom fields from ECC to update CRM. Otherwise you have to make sure the BSS_CENTI and BSS_CENTIX structures are consistent in CRM and ECC.

  • Values not getting updated in table mvke

    Hi,
    I am working on a module pool program.In the o/p screen there are many records.If the user wants to change the field values of a particular record,he clicks on the checkbox besides that record and when he click on the change button,control goes to update screen.In this screen when the user changes the value of one particular field and click on the checkbox beside and then click on the execute button,the changed value of that field should get updated in that particular record in the database table.Here I want to update mvke and marc tables.
    I have used FM BAPI_MATERIAL_SAVEDATA to update the database tables.
    Only marc table is getting updated with changed values.mvke table is not getting updated.What would be the reason for this.
    I am sending a part of my code.Please check it.
    form move_mat_data .
    *Header
    gt_bapi_head-material = gs_output1-matnr.
    gt_bapi_head-ind_sector = gs_output1-mbrsh.
    gt_bapi_head-matl_type = gs_output1-mtart.
    gt_bapi_head-basic_view = 'X'.
    gt_bapi_head-purchase_view = 'X'.
    gt_bapi_head-account_view = 'X'.
    gt_bapi_head-sales_view = 'X'.
    *Client
    gt_bapi_client-matl_group = gs_output1-matkl.
    gt_bapi_client-base_uom = gs_output1-meins.
    gt_bapi_clientx-matl_group = 'X'.
    gt_bapi_clientx-base_uom = 'X'.
    *Plant
    gt_bapi_marc1-plant = gs_output1-werks.
    gt_bapi_marc1-pur_status = gs_output1-mmsta.
    gt_bapi_marc1-mrp_type = gs_output1-dismm.
    gt_bapi_marc1-mrp_ctrler = gs_output1-dispo.
    gt_bapi_marc1-serv_level = gs_output1-zserclass.
    gt_bapi_marc1-availcheck = gs_output1-mtvfp.
    gt_bapi_marcx-plant = gs_output1-werks .
    gt_bapi_marcx-pur_status = 'X'.
    gt_bapi_marcx-mrp_type = 'X'.
    gt_bapi_marcx-mrp_ctrler = 'X'.
    gt_bapi_marcx-serv_level = 'X'.
    gt_bapi_marcx-availcheck = 'X'.
    Material Description
    REFRESH gt_materialdesc.
    gt_materialdesc-langu = gs_output1-spras.
    gt_materialdesc-matl_desc = gs_output1-maktx.
    append gt_materialdesc.
    *Sales
    gt_bapi_mvke1-sales_org = gs_output1-vkorg.
    gt_bapi_mvke1-distr_chan = gs_output1-vtweg.
    gt_bapi_mvke1-sal_status = gs_output1-vmsta.
    gt_bapi_mvke1-valid_from = gs_output1-vmstd.
    gt_bapi_mvkex-sales_org = 'X'.
    gt_bapi_mvkex-distr_chan = 'X'.
    gt_bapi_mvkex-sal_status = 'X'.
    gt_bapi_mvkex-valid_from = 'X'.
    endform. " move_mat_data

    Hello Hema,
    Find the fields which you need to populate with values:
    As an example i'm trying to update DISPO from MARC and VKORG from MVKE.
    No need to fill clientdata and clienddatax.
    * Header data
          MOVE g_wa_mat_out-s_matnr TO g_r_headdata-material.
          MOVE 'X' TO g_r_headdata-mrp_view.
    * Plant data
          MOVE g_wa_mat_out-t_werks TO: g_r_plantdata-plant,
                                        g_r_plantdatax-plant.
              MOVE g_wa_mat_out-t_dispo_new TO g_r_plantdata-mrp_ctrler.
              MOVE 'X' TO g_r_plantdatax-mrp_ctrler.
              MOVE g_wa_mat_out-t_vkorg_new TO g_r_salesdata-sales_org.
              MOVE 'X' TO g_r_salesdatax-sales_org.
    Reward If Helpful.
    Regards
    Sasidhar Reddy Matli.
    Edited by: Sasidhar Reddy Matli on Feb 7, 2008 11:49 AM

  • CJ20N-fields are not getting updated in table PROJ

    Hi all,
    I have a requirement where I need to transfer the WBS element data created in one system to another using IDOC.
    The idoc has generated sucessfully and was also sent/processed successfully in the recieving system but fields STSPD and STSPR are not getting poulated in table PROJ.
    In the confic I have assigned FM:IDOC_INPUT_PROJECT to the process code.
    Thanks,
    Gaurav

    Hi,
    Please check with the Customer and Material Statistics group in the Customer and material master respectively.
    Further check with the LIS settings (Sales Area combination with the Update group).
    Reward points if this helps you.
    Regards,
    Harsh

  • Master Data is not Getting Updated Properly.

    Dear Expert,
    I am trying to pull the data by Info package but The text is not getting updated.
    The Master data object is    0BPARTNER .  To update this Master data , we ghave 2 info packages
    0BPARTNER_ATTR   and    0BPARTNER_TEXT.    But the text is not getting updated ( like the fiels E-mail address, Address 1, Address 2, Address 3, Address 4,.... Phone No,Etc.
    What could be the Reason for this and How can I solve this issue  ?
    Tahnks,
    Utpal

    Hi,
    Could you please check the data in RSA3.
    If everything is there in R/3 side.Then,please check are you giving any
    condition in the infopackage .
    Please run the infopackage without giving any condition.
    Thanks,
    Saveen Kumar

  • Data is not getting updated in CRM

    HI experts,
    I am updating the new address and postal codes in ISU.And now if I check these address for buisness partner in CRM. Its not getting updated.
    why this is happening?
    Is there any BDOC used in this case then how we can check that BDOC?
    Thanks,
    Jassi

    Hello
    I am sure that the problem occurs due to this.
    You need to know the error message. To do this:
    1) Choose any red document from transaction SMW01
    2) Click on button "Show BDoc message errors/receivers" (9th button from the left)
    3) In the opening window there is a button "Errors". There is where you can find the error message.
    I hope it helps. Please, provide points if helpful.
    Joaquin

  • Field KZWI4 is not getting updated in table EKPO

    I have a case where for two scheduling agreements the pricing procedure getting determined is the same, but the field KZWI4 (subtotal 4) in table EKPO is getting updated for one SA and not for the other. The only difference in the two SAs are the tax codes. Do tax codes have any bearing on the field KZWI4 getting updated in table EKPO?
    Regards,
    Pratima.

    Hi Pratima,
    unfortunately i can only write that I am facing the same challenge at the moment. I will update the discussion as soon as I have a solution.
    Best regards
    Bjoern

  • Using PC data targets not get updated...

    Hai murali/friends...
    now in my daily running process chain i have one error . i.e. in that if i use transaction rspcm the daily running chain is showing yellow colour...not showing in green colour and then i have displayed , display varient and then it shows one execute info package as yelloow colour  i tried to right click on that and i displayed display messages and then it shows
             "INFORMATION WAS STORED IN SOURCE SYSTEM"
    to avoid this i mean i need to get data succefully updated but instead of this am getting above messages and my data targets also not updated succefully ...what will be the solution??? and in PSA data is available.....
    help me friends.... last day onwards am trying to solve this issue but i can not......

    thnak you very much sreekanth....
    but while trying to load manually .. it is saying that already already data is there in delta... we cant not process this request...
    like that am getting ... am totally ... confused sreekanth... in other messages am getting
    There is a discrepancy between the confirmation and deletion of qRFC-LUWs
    Message no. RSQU016
    Diagnosis
    When data was confirmed and deleted in the qRFC queue, the system found a discrepancy between the number of newly confirmed LUWs (                                               2282) and the number of LUWs to be deleted (                                               3424).
    Where more LUWs are to be deleted than were previously confirmed, a previous delete attempt was terminated.
    The LUWs were confirmed but not completely deleted from the qRFC and tRFC tables. The confirmation already ensures that the data is not transferred into the BW again with a subsequent request.
    Delta extraction was continued.
    Procedure
    You do not need to do anything urgently.
    If the message also arises during all subsequent delta requests, contact SAP Support with the message number at hand. In this case, there is a danger that the qRFC and tRFC tables run at full capacity, which may also affect other applications.

  • Addtional tab CI field not getting updated in table

    Hi all,
    I am using cProjects 4.0 system.
    I had implemented addtional custom tab to display project custom include fields. In CI include of dpr_project table i added custom fields.
    Then created new webdynpro component and in implemented interface tab in had implemented DPR_CUST_EXT_INTF.  In view i displayed the 2 custom fields i added. In cProjects SPRO, i had given my component name for addtional tab. When I run the application it is showing those fields i added in addtional tab. While saving it is not updating custom field. Please let me know what needs to be done.
    Thanks & Regards,
    Karthick S

    Hi,
    For adding custom fields from CI_* includes, I advise you to use available feature in SAP standard 'field groups for customer fields' under : SPRO -> Collaboration Projects -> Global Enhancements to Project Elements.
    This is the easiest way to add custom tabs & fields without webdynpro development. All standard functions are supported: field control, save, BADI...
    BR
    Matthias

  • KNA1-UPDAT/ KNA1-UPTIM ,Confirmation date/time not getting updated  CRM/ECC

    Hi
    I found a case  where, when Gen. data of BP is changed in CRM, Table BUT000 is updated with  corresponding date and time of change.  This chaged data is replicated  to ECC but in KNA1 table UPDAT- update date and UPTIM- update time fields are not updated.
    Can anyone suggest possible solution for this.
    Thanks
    Rahul

    Hi
    I found a case  where, when Gen. data of BP is changed in CRM, Table BUT000 is updated with  corresponding date and time of change.  This chaged data is replicated  to ECC but in KNA1 table UPDAT- update date and UPTIM- update time fields are not updated.
    Can anyone suggest possible solution for this.
    Thanks
    Rahul

  • Date is not getting updated in SQL database.

    Hello Everyone,
    Regarding my problem, i am using business connector to transfer data from SAP to SQL Server. But in BC, on executing, it shows syntax error for the date field. I used "trim" transformer to convert the date field, bt the error is still same.
    Can anyone tell me which type of transformer should i use or is there any other way to do this?????
    Thanks,
    Vinita

    Hi DJ,
    It's interesting that the value is showing when the page loads, that would imply that you have done everything in terms of setting the item's source up properly. Can you answer the following questions:
    1) What version of APEX are you using?
    2) Is there any 'on update' trigger logic firing that could be doing this. Does a simple update using a SQL statement directly work properly?
    3) Is this item disabled in anyway when the form is submitted (dynamic action disable for example)?
    4) Can you also just verify (although I'm pretty sure you did this already), that all the 'Source' attributes are correct (eg 'Source Used = Always...', 'Source Type = Database Column' and 'Source value or expression = [your column]')?
    Regards,
    Anthony.

  • Change pointer for HR master data is not getting generated in table BDCP

    Hi,
    I have done all the required configuration for change pointer for HR master Distribution and it was working fine few days back. Now suddnly it has stopped working.
    Can anyone assist me on how should i debug it.
    Thanks
    Sunil Singh

    Hi Shital,
    Thanks for your Reply.
    I am not able to find that path in SPRO
    Basic Functions-> application Area
    And Also My change pointer configuration was working properly and it suddenly stopped working.
    I mean to say all the required settings was done previously.
    Anyways kindly let me know how should i proceed.
    Thanks
    Sunil Singh

  • BDOC status completely processed: data not getting updated

    Hi Experts
       I'm  downloading BP data from R/3 system to CRM system , data is successfully getting into the CRM system when checking the SMW01 it was showing the status fully processed (status green) ,but data is not getting updated in tables.
    Please let us know what could be the possible reason
    Thanks & regards
    Rajasekhar

    1) First check the data in the BDOC. Check if the partners are really cmoing.
    2) Check if there are any dumps created in ST22. If yes Pls analyze them.
    3) Check the flow defintion for bdoc type BUPA_MAIN. You can check this in SMW01. Check if the actual call to upload the data and  create BP is done.

  • BADI for MIGO update - Data not getting saved in table sometimes

    Hi,
    This is regarding automatic update of material document number to our Z Table for Gate entry in MM.
    Steps for Generating  GR throu2019 MIGO:-
    1) the user has to key in the gate entry number and plant,
    2) then after giving i/p values the user has to click the save button,
    3) MIGO number is generated by the system which is updated in gate entry header table.
    For updating the MIGO number BADI is used . But some time the system is not updating the GR number in gate entry header table.
    Can we use COMMIT WORK statement in BADI? Hope its not advisable to use it.
    What else can we do if data is not getting stored in table while updating throu2019 BADI?
    Inside the Method : IF_EX_MB_MIGO_BADI~POST_DOCUMENT the below code is written,
    Instead Of Updating The Gate Entry Item Table Now
    Update The Gate Entry Header Table. Update The
    Value Of The Field MBLNR With Current Document Number
    Generated Updating the header table ZMM_GATE_ENTRY
        SELECT SINGLE *
          FROM ZMM_GATE_ENTRY
          INTO WA_ZMM_GATE_ENTRY
         WHERE GATEENTRYNO EQ GS_EXDATA_HEADER-GATEENTRYNO
           AND WERKS       EQ GS_EXDATA_HEADER-WERKS
           AND GYEAR       EQ GS_EXDATA_HEADER-ENTRY_DATE+0(4).
    Check To Ensure That Once A Gate Entry Number
    Is Associated With A GR It Cannot Be Reused
        IF WA_ZMM_GATE_ENTRY-GR_NUMBER IS INITIAL.
          WA_ZMM_GATE_ENTRY-REFERENCE = GS_EXDATA_HEADER-REFERENCE.
          WA_ZMM_GATE_ENTRY-REFWERKS  = GS_EXDATA_HEADER-WERKS.
          WA_ZMM_GATE_ENTRY-GR_NUMBER = IS_MKPF-MBLNR.
          WA_ZMM_GATE_ENTRY-GR_YEAR   = IS_MKPF-MJAHR.
    MODIFY ZMM_GATE_ENTRY FROM WA_ZMM_GATE_ENTRY .u201Dupdating the workarea
    u201CThe above modify stmt updates data sometimes and does not updates the data sometimes
        ELSE.
          MESSAGE E901(ZMM) WITH GS_EXDATA_HEADER-GATEENTRYNO WA_ZMM_GATE_ENTRY-GR_NUMBER.
        ENDIF.
    Plz suggest some soln?
    Regards,
    P.S.Chitra

    Hi,
    This is regarding automatic update of material document number to our Z Table for Gate entry in MM.
    Steps for Generating  GR throu2019 MIGO:-
    1) the user has to key in the gate entry number and plant,
    2) then after giving i/p values the user has to click the save button,
    3) MIGO number is generated by the system which is updated in gate entry header table.
    For updating the MIGO number BADI is used . But some time the system is not updating the GR number in gate entry header table.
    Can we use COMMIT WORK statement in BADI? Hope its not advisable to use it.
    What else can we do if data is not getting stored in table while updating throu2019 BADI?
    Inside the Method : IF_EX_MB_MIGO_BADI~POST_DOCUMENT the below code is written,
    MODIFY ZMM_GATE_ENTRY FROM WA_ZMM_GATE_ENTRY .u201Dupdating the workarea
    u201CThe above modify stmt in code updates data sometimes and does not updates the data sometimes
    Moderator message: duplicate post locked.
    Edited by: Thomas Zloch on Aug 10, 2010 11:33 AM

Maybe you are looking for

  • How can i change my macbook pro keyboard buttom english to arabic

    How can i change my macbook pro keyboard buttom english to arabic

  • Files MIssing

    HELP! I have a problem with my files on my site. I use dreamweaver on a daily basis and today I noticed that a chunk of my file are missing. They are not listed in the files window in dreamweaver. When I o to open the pages they don't show up there e

  • SCCM 2012 R2 - Setting security Role for SCEP reporting shows nothing.

    Have an issue. I've created a new security role for a user so he can view reports about Endpoint Protection(Just copied Endpoint Manager role and set all permissions to Read) . But when user runs reports, he gets nothing:

  • Click and show in any order

    Senario Captivate 5 I have 4 faces on the left of my slide and 4 hidden text boxes of information next to them. The learner clicks the face to show the information. If the learner clicks out of sequence they cannot then go back and click previous fac

  • Windows 8.1 x64 error 0x80070002 While System Restore

     Today, I downloaded a file while Widows Defender was updating and it did not warn me about a virus. Now when I try to open Widows Defender, it says Windows cannot find 'C:\Program Files\Windows Defender\MSASCui.exe' so I tried to restore. then when