Contact person Rel.ship Data not getting updated in B2B Web User Mngt

Hi CRM Gurus,
Need some help on Web User Management functionality.
Sub: Contact person Relationship data not getting updated when we change the company (to wich contact person belong to) in ISA CRM 5.0 Web User Management.
we are currently on CRM ISA 5.0 and using Web User Managment for our B2B scenario. New creation of users is working fine. But when we want to change the company (Sold to pary) for the existing contact person, the relationship data in CRM is not getting updated and the below are the details.
Contact person No: XXXX (has a Relationship: "Is contac person for YYYY company in CRM)
Company/Sold to Party: YYYY (has a relationship "Has contact person XXXX in CRM).
When I chage the contact person's (XXXX) company  from  YYYY to ZZZZ,
- Relationships of the new assignment for ZZZZ in CRM not getting updated.
- Old Records in YYYY is not getting deleted (i.e. relationships.
- There is No relationship data appear in XXXX.
Appreciate any inputs on the same.
Thanks,
Rahul >>>

Hi Rahul,
I'd suggest you running a session trace / ABAP debugging to see if some information is not getting passed from the Java stack onto the ABAP stack. An alternate move would be to create a new OSS customer message.
Cheers,
Ashok.

Similar Messages

  • Batch Classification data not getting updated during the GR of the PO

    Dear Gurus,
    While doing the GR of the Purchase order the classification data for the batch should get updated .However we can see those data in MSC2N (Change batch) but not in MSC3N (Display Batch) .While consultuing with SAP we found that the data in MSC3N is directly picked in the AUSP table but the data in MSC2 N  reads the information directly from the
    reference table field (MCH1-LWEDT & MCH1-LIFNR .My Qusetion is why this the AUSP entries are not getting updated during the GR itself.
    Sumit Mohan

    Hi Sumit,
    I am not sure about your question, but if you want to populate the classification data during goods receipt then you need to maintain characteristics values in material master for classification tab under class type batch i.e. 022. After then it will apper during goods receipt for characteristics value for batch.
    Regards,
    Bhagat

  • RFx - Upload thru excel - Condition data not getting updated

    Hi all,
    In SRM7.0
    I've implemented BBP_PD_DOWNLOAD badi to change the download upload format of excel.
    All fields from my excel are getting updated, but item conditional data is not getting updated. Any notes, or something ???
    Throw some light please !
    Regards,
    Ashwin.

    OSS supported us by creatin a Note for this.
    Hope this is covered in the support packs of new releases.

  • 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.

  • SM 13: Data not getting updated.

    Hi Basis Gurus,
    We have installed SAP IDES for ECC6.0 using Oracle Database in our Windows 2003 Server. Everything was fine till we dicovered that the materials we create are not getting updated in the Database. When I checked SM12, the lock was created and in SM13 the data is still at initial stage as follows
    810     RAJARNO     20080730     110902     MM01 @06\QUpd.record with enqueues@     Initial
    Can somebody explain why this is happening and how can i resolve the same?
    Thanks in Advance for your help.
    Regards,
    Rajesh Manoharan

    Hi Siddesh / Samrat,
    The logs are pretty low. Infact the system is 1 week old i.e. we installed it only a week back.
    I checked the SM 14 status.. it says Update is Active.
    I checked even the hard disk space and it shows 30 Gig free space..
    Please let me know anything else I need to see.
    Thanks,
    Rajesh Manoharan

  • Second level child rows not getting updated by a web service call

    hi,
    I have a web service that takes a Header object (type: Header). Below is the part of the WS schema:
    <xsd:complexType name="Header">
    <xsd:sequence>
    <xsd:element name="Segment1" type="xsd:string" minOccurs="0"/>
    <xsd:element name="SoldtoBuId" type="xsd:long" minOccurs="0" nillable="true"/>
    <xsd:element name="ChangeAcceptedFlag" type="xsd:string" minOccurs="0" nillable="true"/>
    <xsd:element name="Lines" type="Line" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Line">
    <xsd:sequence>
    <xsd:element name="LineNum" type="xsd:long" minOccurs="0" nillable="true"/>
    <xsd:element name="ChangeAcceptedFlag" type="xsd:string" minOccurs="0" nillable="true"/>
    <xsd:element name="Schedules" type="Schedule" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Schedule">
    <xsd:sequence>
    <xsd:element name="ScheduleNum" type="xsd:long" minOccurs="0" nillable="true"/>
    <xsd:element name="ChangeAcceptedFlag" type="xsd:string" minOccurs="0" nillable="true"/>
    </xsd:sequence>
    </xsd:complexType>
    So a header element can have one or more lines and a line can have one or more schedules.
    Each of those entities have are based on tables (via EO & VO).
    Header table has primary key of HeaderId,
    Line table has primary key of LineId,
    Schedule table has primary key of ScheduleId,
    These primary keys are not part of the schema however they are there in the VOs.
    A Header can be uniquely identified by combination of Segment1 & SoldToBu which are part of the header element and they are added as a Altkey on the HeaderVO,
    For a given header a line can be uniquely identified by the LineNum which is added as Alt key on LineVo,
    And for a given line a schedule can be uniquely identified by the ScheduleNum which is added as Alt key on ScheduleVo.
    LineVO is added to the Service AM under HeaderVO via a ViewLink and similarly ScheduleVO is added below LineVO via viewLink.
    When I invoke the webservice the service identifies the header and line rows and updates them. It also identifies schedule rows but they are not getting updated.
    Any Idea what the prob. can be.
    Thanks in Advance!!
    Anil

    Hi Juhani,
    Do you try to execute the Web Service with SoapUI or XMLSpy??
    I think that is not a problem with abap side, but with java. I recomend to you use the following prefix in function modules:
    IMPORTING: I_
    EXPORTING: E_
    TABLES: T_
    Regards,
    Edson Thomaz

  • Header data not getting updated in line item level

    Hi,
    We are trying to update Pricing date at header level but it is not gettting copied to item level.
    getting an message "The header business data does not apply to item xxxx"
    i have checked the item category and "business item" field is checked. and for the same sales order previously we were able to change the pricing date at header level and it got applied to item level but this time is is not getting applied.
    kindly suggest.

    If there are multiple line items which are having different data; in your case, Pricing Date, then in that case, when you try to change at header level, system will pop up this message.
    You can also have a look at the following note:-
    Note 336660 - Message V1403 in sales order with article order no
    G. Lakshmipathi

  • Tuple data not getting updated during Import!!!!!

    Hi Experts,
    I am trying to update the tuple data using Import Manager.
    I am using Set tuple update
    New data - > Create
    Existing Data -> To update mapped fields.
    In the scenario there can be various Company Code data for one MDM ID. When I try to import the data for some of the records all the Company Codes are updated whereas for others some of them gets updated and not all.
    Has anyone come across this issue.
    Would really appreciate if you can share the solution ASAP.
    Thanks in advance.
    Best Regards,
    Parul Malhotra

    Hi Parul,
    Please do a test,try importing the same record through import manager.
    If you get correct result through Import manager and incorrect using MDIS it suggests there is an issue with the automated Tuple import.As Abhishek has rightly said there is a bug in SAP MDM SP04 and lower versions and that has been taken care in SP06 and higher versions.
    Please let us know your findings.
    Thanks,
    Ravi

  • Vendor data not getting updated properly

    we have recently encountered a couple of issues where
    1) a vendor was unblocked for all purchase org in ECC , but this was not replicated to SRM .In SRM , the vendor stilll showed as blocked in table BUT000
    2) Vendor Name2 field was changed but was not replicated to SRM.
    I have checked , the BBP_vendor_sync has been running properly and in SLG1 there are no errors.
    what could be the issue ...is there any sap note for this ?

    Hi,
    Pl ensure that you have made the following settings for running BBP_VENDOR_SYNC. http://help.sap.com/saphelp_srm40/helpdata/en/56/54f137a5e6740ae10000009b38f8cf/frameset.htm
    Else run BBPUPDVD to update the vendor data.
    Regards,
    Nikhil

  • 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 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

  • 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.

  • 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

  • New problem! When I sync my iPhone 5s to Outlook the events entered in my phone Calendar do not get updated to my outlook calendar on my laptop yet entries on entered on my outlook calendar do get updated to my phone??

    New problem! When I sync my iPhone 5s to Outlook the events entered in my phone Calendar do not get updated to my outlook calendar on my laptop yet entries on entered on my outlook calendar do get updated to my phone??
    iPhone 5s
    Software - IOS 8.1
    iTunes - v12
    I have been using sync on all previous phones to date without issue, I have had the 5s since Nov 2014 and no issue, on Sunday without warning or changes to my phone or Outlook sync now has this error.
    I have restored my phone but still has same problem.

    Your IT person is an idiot.
    http://lmgtfy.com/?q=how+to+sync+iphone+with+outlook

Maybe you are looking for

  • Standard SAP report for rescheduling.

    Hi Gurus, If we see the stock requirement list we sometimes see that the rescheduling coloumn gets populated asking us to reschedule the particular MRP element. My client wants to know if there is any specific SAP report which can give me the list of

  • Acrobat 9 installation doesn't accept licence key

    We've recently moved and in the process acquired new PCs.  I'm attempting to re-install Acrobat 9 Pro and several other tools using the AcroPro90_efg installer (which is the only one that appears to be available on the Internet).  All of our Adobe to

  • Leopard install disc in Snow Leopard?

    I'm trying to run Disk Utility from an install disc to resize my startup disk partition (previously decreased in size to make room for a Linux partition, which is now deleted), and I'm having trouble locating my Snow Leopard disc, so I wonder if it's

  • Using aperture  with three monitors

    This is both a tip and a question: tip:  If you have 3 monitors, and the left one is set to be your primary display, then run the main aperture window on the middle one.  It an the right one will act the way it does with a 2 monitor setup. If Apertur

  • CIN Excise Trnasaction Type

    Hi, Off late ,I observed a new Excise Transaction Type :GRTR -Goods Reciept Transfer Order.Any idea, whether this is available in a new CIN module release ? Also how do you check the Support Package for CIN module in a system?