Sold to party refernce data not synchroning properly

Hi Guys,
Today I came across a new issue...
In CRM order we have External reference to sold to party. Here we enter PO number at header level and it will synchronize to R/3.with out any problem.
But when I try to change the PO Number in R/3 order at header level, that value is not synchronizing with CRM header level,
Only for Billed Itemu2019s PO number is getting changed for remaining items it remains unchanged.
Is it standard behavior of system or is there anything we need to change?
Please help me on this,
Thanks & Regards,
Shaik

Hi Shaik,
  Please check the filters in SALESDOCUMENT middleware adapter object in CRM. If proper filters are not in place, it will not send the changes from ECC to CRM.
//Bhanu

Similar Messages

  • Sold-to-party Text data not getting displayed; Urgent

    I am current using a BI content 0CRM_COMP which contains sold-to-party, i have loaded this ODS, but when i view the data in bex i could only see the Key value and not the Text, even though i change the display mode to Key and Text both the columns displays only the Key value. is it because the master data is not loaded, i have also tried to load the Business Partner master data attributes and text till no use. Please help
    Note: These business partners are created in CRM and are nor from R/3

    Hi,
    Just check whether for this infoobject has master data and text option ticked or not in infoobject.
    If text option in there then search for the data scource0CRM_SOLDTO_TEXT or something like that which contain text for this particular infoobject and then laod the text for the same.
    Just got to the modelling tab -> infoprovider-> Application component in which you infoobject is present-> right click insert object as dat target-> give the name of your object this will give you data target one for master data one for text->activate data source and replicate in BW if not presen in BW-> make infosource on the text data source->make update rules for the text target and load.
    Or as Anil said sold to party is reference to customer load text into the custome with the same method iot will work fine.
    Hope it helps
    Thanks

  • We think 5.0.2 has fixed it! (InCopy Files Not Synchronizing Properly)

    Last year there was a topic (now archived) titled 'InCopy Files Not Synchronizing Properly' which discussed a problem with InCopy breaking the VC link after editing the story.
    5.02 update ID and IC seems to have fixed it. We have only done a quick test but would be grateful if others users involved in this topic would have a look and report back to this thread.
    I don't seem to be able to post to an archived topic, but am keen to let others know, so I have started this new thread.
    With hope
    Alan Edwards

    We've only produced one magazine since upgrading to 5.0.2, but I've noticed *significantly* fewer version control issues (2 versus about 20) since last issue. A dramatic improvement.
    Now if they could only fix that darn text wrap bug.
    Stephen

  • CRM To ECC Sold to party Communication Details Not populated in ECC

    Hi All
    i have one problem when we create sales order through crmd_order we need to give sold to party and ship to party numbers suppose like
    8000002166 for both and status i keep as order created and in partner tab i i seem all partner funtions(sold to, ship to ,bill to, payer)with 8000002166
    in header overivew i given posting date as feature date like 30-09-2013 then i try to save this order.
    the order generated sucussfully but problem is i am not getting sold to party details in ECC when i check VA03 And open cretaed order in CRM and clicking on sold to party and i seem details for this but i am not getting communication details like telephone number and email id extension number.
    for this sold to party we already maintained all communication details in CRM.When i open this sold to party BP i am able to see all details
    didnt understand why these details not replicated to ECC?
    We implemented one custom class there we implemented badi.
    IF_EX_CRM_DATAEXCHG_BADI~CRM_DATAEXCH_AFTER_BAPI_FILL
    i am not getting BAPI ADDRESS Table values into  CT_BAPIADDR1
    how can i send communciation details to ECC For sold to party?
    The code part we follow like below
    TYPES : BEGIN OF t_otc,                                                        " Type to create a table with the given columns.
              bpid            TYPE bu_partner,                                       " variable of store processed business partner ID's
              otcid           TYPE bu_partner,                                       " variable of store processed OTC ID's
              otcguid         TYPE bu_partner_guid,                                  " variable of store processed OTC GUID's
              address         TYPE bapibus1006_address,
              tel1_numbr      TYPE ad_tlnmbr1,
              tel1_ext        TYPE ad_tlxtns1,
              e_mail          TYPE ad_smtpadr,
              END OF t_otc.
    *&                             V A R I A B L E S                         &*
      DATA : lv_bp_payer      TYPE bu_partner,                                       " Variable To Cast the payer Id into BU_Partner data type.
             lv_partner_fct   TYPE crmt_partner_fct,                                 " Variable To Store Partner Function Number.
             lv_partner       TYPE bu_partner,                                       " Variable To Store Current Business Partner ID.
             lv_process_type  TYPE crmt_process_type,                                " Variable to Store process type.
             lv_sales_org     TYPE crmt_sales_org,                                   " Variable to store sales org. name of order
             lv_dis_channel   TYPE crmt_distribution_channel,                        " Variable to store distribution channel of order.
             lv_division      TYPE crmt_division,                                    " Variable to store division of sales org. data.
             lv_role          TYPE comt_partner_parvw,                               " Variable to store retrieved role from FM.
             lv_role_value    TYPE parvw,                                            " Variable to store the role value of Partner Functions.
             lv_otc_guid      TYPE bu_partner_guid,                                  " Variable to store OTC GUIDs for the OTC ID.
             lv_otc_id        TYPE kunnr.                                            " Varaible to OTC ID revocered from Table.
      DATA: lv_busspartner           TYPE bapibus1006_head-bpartner,
            lw_central_data          TYPE bapibus1006_central,
            lw_centraldata_person    TYPE bapibus1006_central_person.
    *&                             W O R K A R E A S                         &*
      DATA : lw_address       TYPE bapibus1006_address,                              " Work Area to store address recovered for BPID.
    *Start of code change for Defect 904 Fix
             lw_tel           TYPE bapiadtel,
             lw_email         TYPE bapiadsmtp.
    *End of code change for Defect 904 Fix
    *&                          INTERNAL TABLES                              &*
      DATA : li_otc           TYPE TABLE OF t_otc,                                   " Internal Table to Store the OTC IDs and BPS.
             li_values        TYPE          zconst_values_t,
    *Start of code change for Defect 904 Fix
             li_tel           TYPE STANDARD TABLE OF bapiadtel,
             li_email         TYPE STANDARD TABLE OF bapiadsmtp.
    *End of code change for Defect 904 Fix
    *                       F I E L D - S Y M B O L S                         *
      FIELD-SYMBOLS: <f_orderadm>      TYPE bad_orderadm_h_mess,
                     <f_otc>           TYPE t_otc,                                   " Field-Symbol to Read the OTC TABLE data.
                     <f_partner>       TYPE bad_partner_mess,                        " Field-Symbol of Partner Table For Looping.
                     <f_bapiparnr3>    TYPE bapiparnr3,                              " Field-Symbol to Store The Row of BAPIPARNR3.
                     <f_bapiaddr1>     TYPE bapiaddr1,
                     <f_orgman>        TYPE bad_orgman_mess,                         " Field-Symbol to Read the ORGMAN table.
                     <f_values>        TYPE zcr_const_values.
    *&                             C O N S T A N T S                         &*
      CONSTANTS :  lc_program_name     TYPE progname      VALUE 'ZOTC',
                   lc_param_payer      TYPE paramname     VALUE 'PAYER',              " Constant to Store Payer Parameter name.
                   lc_ref_kind         TYPE crmt_object_kind VALUE 'A',
                   lc_req_1            TYPE zrequest_no VALUE '1',
                   lc_req_2            TYPE zrequest_no VALUE '2'.
    * Retrieving the general and Common Data for a Order.
      READ TABLE it_bus_trans_msg-orderadm_h INDEX 1 ASSIGNING <f_orderadm>.
      IF sy-subrc EQ 0.
        lv_process_type = <f_orderadm>-process_type.
      ENDIF.
    * Reading the Orgnisation Details from ORGMAN Table.
      READ TABLE it_bus_trans_msg-orgman WITH KEY ref_kind = lc_ref_kind ASSIGNING <f_orgman>.
      IF sy-subrc EQ 0.
    *   Storing the Sales Organisational Data to find the OTC_ID.
        lv_sales_org = <f_orgman>-sales_org.
        lv_dis_channel = <f_orgman>-dis_channel.
        lv_division = <f_orgman>-division.
      ENDIF.
    * Retrieving the partner function number for the payer by giving requirement no 2 and rule no 1.
      CALL FUNCTION 'ZCRAN_GET_CONSTANT_VALUES'
        EXPORTING
          pi_program_name = lc_program_name
          pi_req_no       = lc_req_2
        IMPORTING
          po_const_values = li_values.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * Reading the value for the constant with the name as PAYER.
      READ TABLE li_values WITH KEY param_name = lc_param_payer ASSIGNING <f_values>.
      IF sy-subrc NE 0.
        RETURN.
      ENDIF.
    * Retrieving the Partner ID for the PAYER.
      READ TABLE it_bus_trans_msg-partner ASSIGNING <f_partner> WITH KEY ref_partner_fct = <f_values>-constant_value.
      IF sy-subrc EQ 0.
    *   Storing the current partner ID.
        lv_bp_payer = <f_partner>-ref_partner_no.
      ENDIF.
      REFRESH li_values.
    * Retrieving the Partner Function Number which are to be checked for replacing with the OTC ID with request no 1 and rule no 01.
      CALL FUNCTION 'ZCRAN_GET_CONSTANT_VALUES'
        EXPORTING
          pi_program_name = lc_program_name
          pi_req_no       = lc_req_1
        IMPORTING
          po_const_values = li_values.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * Transferring the constant value to our table for Partner Fucntion.
      LOOP AT li_values ASSIGNING <f_values>.
    * Read Partner table for Header data and the reference partner function retrieved.
        READ TABLE it_bus_trans_msg-partner WITH KEY ref_kind = lc_ref_kind ref_partner_fct = <f_values>-constant_value ASSIGNING <f_partner>.
        IF sy-subrc EQ 0.
    *     Storing Current Partner Function.
          lv_partner_fct = <f_partner>-ref_partner_fct.
    *     Storing Current Partner No.
          lv_partner = <f_partner>-ref_partner_no.
    *     Retrieving the Partner Role (R/3) for the current partner function of CRM.
          CALL FUNCTION

    The problem is in the Lotus Notes security level, not in SAP.

  • Data not aligned properly

    Here's my rtf structure
    group-by Product
    <there's a table in here>
    for-each Company
    <there's a table in here>
    for-each Community
    <there's a table in here>
    Data appear as below
    Computer
    <there's a table in here>
    Company 1000
    <there's a table in here>
    Community A
    <there's a table in here>
    Community B
    <there's a table in here>
    Community C
    <there's a table in here>
    Company 2000
    <there's a table in here>
    Community D
    <there's a table in here>
    Community E
    <there's a table in here>
    Right now, the Community C table header for example, will be on page 1 and its table will be on page 2 because its table does not fit on page 1.  So I selected for-each Community then paragraph -> Line and Page Breaks -> Keep with Next.  Then it works but the data appears as below
    Page 1
    Computer
    <there's a table in here>
    Company 1000
    <there's a table in here>
    <THERE A BIG BLANK SPACE HERE>
    Page 2
    Community A
    <there's a table in here>
    Community B
    <there's a table in here>
    Community C
    <there's a table in here>
    The Community Headers stay with their tables but there's a big blank space between a Community A and Company 1000
    I did the same Keep with Next with for-each Company and same result, I did it for group-by Product and same result, big blank space
    How can we make it so data will flow with each other and if a table header (Product or Company or Community) does not fit on a page then it will go to the next page please?

    Thanks Kavipriya for your help. The report shows data properly now.
    Thanks Nagireddy for your offer.

  • Smart form header data not displaying properly

    dear abapers,
         i need to display header..but am not able to get the data properly...

    Hi,
         Take a Text Element at the place where u want header(Before main Window) or
         use appropriate Smart Style(font ,size,style) or
         Check the Table ,Template Layout (if used).

  • Bean data not synchronized

    Hello,
    I have an BMP entity bean which holds fields from main table and underling table
    i.e CARD (int cardID,String catName,int catID,date, inserted,...) and CATEGORY(int catID,String catName,...)
    ejbLoad selects both ID and name from underling table together with everything else..
    after a while I write new catID to the bean and ejbStore updates CARD object's catID field in DB,but ejbLoad isn't called after and catName remains old and catID is new
    What would be a solution to keep all fields in bean synchronized with db state,which should be done by ejbLoad method
    Hopefully problem is clear enough
    Thanks in advance,
    Roland

    Make sure that you're not using the NotSupported transaction attribute in your deployment descriptor. Use Requires or RequiresNew on the method in your entity class.
    <ejb-jar>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>CardBMP</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>RequiresNew</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>

  • Leaving Action Date not refleting properly

    Dear Expert,
    We have implementing Germany Payroll for our client. We have created the actions like - Deputation Initiation, End of Deputation which is similar to Hiring & Leaving.
    While executing End of Deputation action, system is not taking the actual date given in all the info types. For Ex : End of Deputation date is 31.08.2008. But while excecuting the action  IT0000 &  IT0001 system is taking end date as 31.08.2008. But IT0006, IT0009, IT0014 & the customised info type which we have cretaed are taking the end date as 30.08.2008.
    Please note that we need to pay salary for 31.08.2008. Please suggest how can I get froward??
    Thanks a ton in advance
    Regards,
    Damodar Pai

    Hi Damodar,
    When you are running End Of Deputation action( Leaving action); on initial PA40 screen you enter 31.8.2008 in the From field and then run the action. The system will automatically take the End Of Deputation Action Date as 1.9.2008.
    That means the Last working day date of employee is 31.8.2008 and the salary will be paid till 31.8.2008
    Check in table T529A; in the Date field entry should be 1( specified filed is end date of old records)

  • Sold-To-Party description is not displaying in the Report.

    Dear Experts,
    I am facing with an issue . The issue is like,
    I am not able to see the some BUSINESS PARTNER Name in the Report. Some means arount 10 Business partner.. Instead of showing their name, its showing their Number . I am not able to find a reason , what for its coming like that ?
    When I checked in Master data table (Info object - 0BPARTNER ) , everything is  fine . Still I am not able to find the reason.
    Kindly suggest.
    Thanks,
    Utpal

    Hi,
       The changes are already loaded and and I have activated the master data too. But still, the issue is there.
    For example , These two are Business partner.  My issue is like the 2nd line. It should show the BP name.
    10062908          JAYAS  INDUS. LTD.
    10067177        10067177
    Kindly suggest.
    Thanks,
    Utpal

  • Disabled subscription sends notifications, relative date not working properly

    Hi
    I have two problems regarding subscriptions:
    1.When I disable a subscription, should I receive any further notifications? I am receiving notifications despite disabling the subscription.
    (I have cloned the template and deleted the original template, then sending email notification will be stopped, but as soon as assigning new template to subscription, sending emails starts, whether subscription is enabled or not)
    2. The criteria for subscription is as follows:
    Status = Active or Status = Pending and Source = Portal and Created date [relative] = [now-7d]
    Regarding the criteria, it must check whether it has past 7 days from incident creation, but it starts sending notifications without considering the [now -7d] condition.
    I use SCSM 2012 SP1 - Rollup 6.
    Am I doing something wrong?
    YSobhdel

    The actual criteria was Created Date greater than or equal to [now-7d]
    What I am trying to accomplish is that whenever an open incident (i.e., not resolved or closed incident) is active more than 7 days, assigned to user will be notified.
    My Question is , why is it happening in the first place, this criteria is nearly impossible to catch (equal to [now-7d]), yet it is sending notifications from the first day. I have testes the notification with
    Created Date greater than or equal to [now-7d] as well but to no avail, still the same problem.
    About delay, I am 100% sure that this is not performance problem, since this workflow is set to periodically check criteria and is run once a day. I have waited for the setting to apply for about two days and this is far beyond any delay! (for two consecutive
    days, I have received this notification).
    YSobhdel

  • Data Not Updating Properly in CUBE

    Hello Experts,
    There is one critical issue which i am facing in FI - CO scenario. please provide your inputs.
    we have a requirement to generate PNL statement  report from FI - CO. means the values for Revenue, COGS must be come from FI and Operating expenses like Sales and Marketing, Research & Development, General Administrative must come from CO.
    we took two Data Source 0FI_GL_10 and other is 0CO_OM_CCA_9. the entire data flow for FI is 0FI_GL_10 --> 0FIGL_O10 --> 0FIGL_C10 --> ZFICO_M01 and the entire data flow for CO is 0CO_OM_CCA_9 -->ZCO_C01 --> ZFICO_M01. i have initialized data  for both the data source. and for delta i have created process chain on hourly basis because our customer runs the report hourly basis means they post some entries in FI and they wanted to see it in BI after an hour.
    Now when we load delta records on hourly basis . all entries are not coming means some are missing. but if we check it after 24 hour then it will be come in cube. but after an hour it is not coming.and in that i case i have to refresh entire BI means delete all the data from BI and then load init again and all.
    are there any settings in ECC (R/3) side so that we can have right records in BI ?
    Regards,
    Komik Shah

    Hi Komik,
                      When there is a process chain to load the data on hourly basis. It would reflect the data in the cube. If u still found the problem then u have to check the process chain in which the info packages have been added. I don't thinks there is a ABAP program for this.
    Regards,
    Rahul.

  • DATA not coming properly

    Hi ,
    I have a customized report which uses the logical databse PSJ. It has project, wbs element(prps-posid) in the selection screen. When I give input to the project , the output is coming properly with the field(WBS element), but when I give the output WBS element as input in the field , it is retrieving some more data . I went into debugging and found that while retrieving posid from prps table , it is retrieving the value '############' due to which the output has more than the records that should be . Anyone has come across  this scenario, please reply .
    Thanks in advance.

    I assume that the change is present in the PSA. If so is it just one field that is changing or multiple fields. ?
    Also make sure the PSA is empty before loading.
    Asif

  • Data not shown properly

    Data entered and loaded, but it doesn't appear in the grid or data forms. In the cell history and data audit the data is shown as entered and loaded. Do you know this phenomenon.

    I would suggest you do a Data Extract, and see if any data is extracted. What this will also show you, is the POV.
    It is not uncommon that the POV is at Entity Currency Total or similar, and as you may not have run a consolidation yet, the view feels empty. Also, set up a grid, and check the status. You should see CN flag which would indicate data has 'changed', and requires a consolidation.

  • Data Not coming Properly for 0HR_PA_OS_1 Data Source?

    Hi Experts,
    I am trying to load data to 0PAOS_C01 using 0HR_PA_OS_1 data source. For field 0POS_OCCVAC key figure i am not getting any data from Data Source.
    I checked in RSA3 for 0HR_PA_OS_1 data source and  in that it is not populating data for filed OCC_VAC_PERC  field. I checked with HR functional team and they mentioned its a BI issue.
    Kindly tell me how can i populate values for the particular field. FYI i am getting correct data for other fields.
    Please help me.
    Thanks

    The possible reasons
    1.Your user id might not be having the proper authorization to pull the HR data.This you can confirm with your basis guy,if you are unable to find what are the authorization roles required for HR data, for the time being you can take SAP_ALL authorization in development box and try to pull.
                            OR
    2.Try to pull from BW side,you may be able to see the data there because this uses the background user id used in RFC connection ( provided if your background user id having proper authorization ).

  • Chain and store data not populating properly in BPARTNER

    Hi all,
    There is a field 0bpartner2 in the data source name 0BP_RELATIONS_ATTR. This field is also there in DSO1 which fetches the data from the mentioned datasource. Then using routines this field 0bpartner2 splits into two-->chain and store which are getting populated in the next level of DSO, DSO2 which finally goes into 0bpartner infoobject.
    But for two particular bp nos the values of chain and store are not getting populated.
    Checked in RSA3, the data is OK, but in the PSA level the data is not there.
    This is happening only for this two particular bp nos.
    Kindly help.

    Hi,
    at info package data selection don't have selection please check the below options.
    1. go to ECC -> enter the t code- RSA5 -> select the data source -> go to change mode -> select the check boxes possibility.
    2. if not there come to BI system select the data source go to change mode -> select selection menu -> browse and choose the X- selection possible.
    now it available selections at info package - while seeing the RSA3 data give the selection at info package
    Thanks,
    Phani.

Maybe you are looking for

  • WHAT DO THE DIFFERENT COLORS CIRCLES MEAN WHEN YOU LOCATE YOUR IPHONE?

    I was just wondering what do the different color circles mean when I've located my iphone. So far I've seen a green dot with a green bigger outlined circle around it , a gray circle , a gray circle with a gray bigger outline around it , a real big gr

  • Html form xml xml db

    Hi, Is there a sample that does this simple process: 1. Extract xml content from xml db table (via a PK key) 2. Transform it into html form input (via xsl) 3. Process the request from the submit action and update the original XML content 4. Update th

  • Using BT Mail With Mac

    I now use a Macbook and Mac Mail which connects to my BT e mail account.  I see the e mails on my Macbook but thought that this downloaded them from my on line account.  However, when i look at the on line account i have hundreds of e mails in there

  • Ebs logon page not displayed

    hi all, env setup OS = RHEL 4 DB= 9.2.0.6 EBS= 11.5.10.2 application services are running fine, all services return code is '0' security firewall was already disabled no changes performed on server BUT logon page is not openening, even on the applica

  • Upgrade from elements 9

    how much does it cost to upgrade from elements 9 to elements 11