BP change documents ( linking problem between Object id and Business Partner)

Hi,
We need to create a report for documents changed for a Business partner.
This will be done in sap bw.
on source side I have created the datasource with function module changedocument_read and I am getting most of the information
which I want. Only missing part is Business Partner number.
Can somebody suggest , how I would be able to link Object Id to business partner.
I need to pull everything that is changed at BP level and the Object class selection around 30 in number.
So I am looking for any standard function module which can provide me the link between Object id and Business partner.
If I establish the rules to determine the Business partner from Object id , its getting bit difficult.
Can somebody please help/suggest.
I have gone through many documents and scn posts but unable to find anything on this.
Thanks !

Hi, looking at the change history header table CDHDR it seems that object ID simple equals the internal format of the business partner number.

Similar Messages

  • Relation between Organisation Structure and Business Partner

    Dear All ,
    My Requirement is to pass any child node to get the corresponding parent node in the organisation structure created by T.Code : PPOMA_CRM.
    I found in HRP1001 table if you pass the BP in SOBID  field you will get the Parent field at OBJID in the same record . again you have to pass the OBJID as SOBID to get the next parent . Here my problem is the Business partner (SOBID) assigned in to two Org .Structure , So it is giving two records in the HRP1001 table . But i want to get the parent node comes under a particular Org Stucture .
    how it is related .
    Can any one help me on this,pls ?

    Hello,
    I don't know what your problem is, but try some of these fm. to help you to understand how hrp1001 table works. To find related objects you need to
    pass sobid into objid changing otype, ralat and sclas fields depending of what you are looking for.
    CRM_CENTRALPERSON_GET
    CRM_BUPA_GET_HROBJECT
    CRM_ORGUNIT_GETEMPLOYEES
    CRM_ORGUNIT_GETBUPA
    CRM_EMPLOYEE_GETORGUNIT
    CRM_CP_GET_POSITION
    CRM_IS_ORGUNIT_CONSISTENT
    Regards, Robert

  • Mapping between portal user and business partner

    Hello all,
    I would like to store data of portal users using a business partner in an ERP system. How to map a portal user to a business partner? My idea was to store the business partner ID in a field of the portal user. But there is no such field.
    Thanks for your help!
    Felix

    Hi Felix,
    user mapping involves creation of a system object and the corresponding system alias, and then assigning this system alias to the user( this is what is called user mapping in this context). and then you create a corresponding iView for the same and assign this iView to a role where the user is already having this role.
    This is the common steps for user mapping when connecting with external landscapes. I hope the partner mentioned is a specific type
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4361">Try this link</a>
    under this concentrate on the system object creation area.
    and I hope you have a particular role already assigned to your role.
    Cheers

  • Table for link between conttract account no and business partner

    Hi,
    can anyone let me know abt any table that defines relation between contract account and business partner.
    so dat for a contract account no i can get 1 business partner .
    Thnx,

    Hi
    Use the table
    <b>VVKKFOPT and VVKKFOP</b>
    both business partner and Contract account fields are there.
    Reward points if useful
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • Externalizable problems between v1.3 and v1.4

    Hej you.
    I have strange problems with the Externalizable objects.
    I Use many Object to Save my file, but wien i try to Externalizable on J1.3 and Denalizable again in J1.4 I got this message:
    E:\Programmer\Java\ProrgamName>Java ProrgamName
    javax.swing.JInternalFrame; Local class not compatible: stream classdesc serialV
    ersionUID=8792953236056021037 local class serialVersionUID=-6387351733537024688
    Can i trap J1.4 ID to use 1.3 ID, so it can use on ALL platforms, not just locally?
    When I Save and load on the same machine it works fine, but not when i moving to another machine with 1.4. Is a another method, or i Need to save all object to AscII instead in this smart method (that are poorly work)? I have surfed around javasoft.com with finding a answear.
    See my early quenstien on (closed):
    http://forum.java.sun.com/thread.jsp?forum=31&thread=273990
    With very regaards By:
    Super Bomba, Denmark
    PS. No Duke Dollars this time. Sorry.

    Hey.
    I found how to work around combatible problems between 1.3 and 1.4. For user, that want to save thier DynamicTree.java (http://java.sun.com/docs/books/tutorial/uiswing/components/example-swing/index.html)
    Use follow code (I using Externalizable):
      protected DefaultMutableTreeNode rootNode=null;
      protected DefaultTreeModel treeModel=null;
      public void writeExternal(ObjectOutput stream) throws IOException
      { stream.writeUTF(rootNode.toString());
        Vector values = new Vector();
        Object root = treeModel.getRoot();
        // Save the root, if its Serializable.
        if(root != null && root instanceof Serializable)
        { values.addElement("root");
          values.addElement(root);
        stream.writeObject(values);
      public void readExternal(ObjectInput stream) throws IOException
      { thisModel.removeAll();
        thisModel.setVisible(false);
        try
        { String title=stream.readUTF();
          rootNode = new DefaultMutableTreeNode(title);
          Vector values = (Vector)stream.readObject();
          int indexCounter = 0;
          int maxCounter = values.size();
          treeModel = new DefaultTreeModel(rootNode);
          if(indexCounter < maxCounter && values.elementAt(indexCounter).equals("root"))
          { TreeNode root = (TreeNode)values.elementAt(++indexCounter);
            treeModel = new DefaultTreeModel(root);
            indexCounter++;
          // kode for setting the tree start here
        catch (ClassNotFoundException e) {}
      }Hope, this is to use :-)
    Hi from
    Super Bomba

  • Connection Problems Between iChat 3 and iChat 4 Workaround

    Maybe this info will help others:
    iChat 4/Leopard users must initiate video chat to iChat 3/Tiger users:
    I have discovered that if an iChat 4/Leopard user initiates the video chat to an iChat3/Tiger user, it works, but if the iChat3/Tiger user initiates the video chat with an iChat 4/Leopard user it fails with a message saying that the receiver declined the invitation (even if the receiver tried to accept). This happens on a LAN as well as across the Internet.
    Likewise, to make conference video chats, make sure the iChat 4/Leopard user initiates, then adds the other parties.
    This post is NOT about iChat Server, although the problem occurs there too. If you are using iChat Server (part of OSX Server) see http://discussions.apple.com/thread.jspa?messageID=5995966 ).
    Hope this helps.
    ppj

    Hey.
    I found how to work around combatible problems between 1.3 and 1.4. For user, that want to save thier DynamicTree.java (http://java.sun.com/docs/books/tutorial/uiswing/components/example-swing/index.html)
    Use follow code (I using Externalizable):
      protected DefaultMutableTreeNode rootNode=null;
      protected DefaultTreeModel treeModel=null;
      public void writeExternal(ObjectOutput stream) throws IOException
      { stream.writeUTF(rootNode.toString());
        Vector values = new Vector();
        Object root = treeModel.getRoot();
        // Save the root, if its Serializable.
        if(root != null && root instanceof Serializable)
        { values.addElement("root");
          values.addElement(root);
        stream.writeObject(values);
      public void readExternal(ObjectInput stream) throws IOException
      { thisModel.removeAll();
        thisModel.setVisible(false);
        try
        { String title=stream.readUTF();
          rootNode = new DefaultMutableTreeNode(title);
          Vector values = (Vector)stream.readObject();
          int indexCounter = 0;
          int maxCounter = values.size();
          treeModel = new DefaultTreeModel(rootNode);
          if(indexCounter < maxCounter && values.elementAt(indexCounter).equals("root"))
          { TreeNode root = (TreeNode)values.elementAt(++indexCounter);
            treeModel = new DefaultTreeModel(root);
            indexCounter++;
          // kode for setting the tree start here
        catch (ClassNotFoundException e) {}
      }Hope, this is to use :-)
    Hi from
    Super Bomba

  • IDVD is producing DVDs which chop the edges off my video.  I have tried changing the aspect ratio between 4:3 and 16:9 but it hasn't helped.  My TV is definitely on the correct settings.  How can I solve this?

    iDVD is producing DVDs which chop the edges off my video.  I have tried changing the aspect ratio between 4:3 and 16:9 but it hasn't helped.  My TV is definitely on the correct settings.  How can I solve this?

    One way to to put the videos into an iDVD slideshow
    and set iDVD's Slideshow preferences to always scale slides to TV Safe Area. 
    However, some users have reported that the audio quality using this method is lessened.  I've not noticed it but then I don't have a good ear when it comes to that sort of thing. If you add more than one video in the same slideshow do not select any transition.
    OT

  • My messages are linked somehow between my phone and iPad. I need to make space on my iPad so I want to delete the messages off my iPad only. If I delete my messages off of my iPad, will they also be deleted off of my iPhone?

    My messages are linked somehow between my phone and iPad. I need to make space on my iPad so I want to delete the messages off my iPad only. If I delete my messages off of my iPad, will they also be deleted off of my iPhone?

    Welcome to the Apple community.
    If you delete messages on one device they arent deleted on others.

  • Diff between object based and ob. oriented

    diff between object based and ob. oriented

    Object-oriented requires at least three factors:
    1. Encapsulation: Combining data and the methods that manipulate the data into a self-contained unit called an "object" in which the data is hidden from the user and only the method interface is visible.
    2. Inheritance: Ability of a class to extend the features of another class by obtaining all the public features of the other class while adding its own specialized features (Example: Great Dane inherits from Dog)
    3. Polymorphism: The ability to perform "late binding" by invoke methods of a subclass on behalf of its superclass. (Polymorphism includes other things and it difficult to explain.
    If a language does not include all three, it is called "object-based." Visual Basic 6 is object-based, because it allows you to define classes that encapsulate, but doesn't support an inheritance hierarchy nor polymorphism.

  • IChat - compatibility problems between v2.1 and v3.1

    Hi,
    I now have the new iMac Intel with iChat 3.1. I am trying to use it with a friend who has OS 10.3.9 with iChat 2.1.
    I can see and hear him, but he can only hear me.
    Is there a compatiliby problems between v2.1 and v.3.1 or it is just a configu problems?
    Thanks a lot for any information
    Bruno

    Most likely cause is that you haven't updated the ProApplication Support file. Check here:
    http://www.apple.com/support/downloads/proapplicationsupport31macosx104.html

  • Problem with BP. Assignment: Business partner person to user not unique

    I have a problem with a user. They have no BP assigned in PPOSA_BBP. We have found a BP in transaction BP.
    When we try the BBP_BP_OM_INTEGRATE the message BBP_UM_UI048 appear" Assignment: Business partner person to user not unique" .
    Any idea about how solve this??
    Best regards
    Jorge

    Hi
    Which SAP version are you using ?
    The user needs to be attached to the Org Plan. (PPOMA_BBP)
    Have you maintained the Contact person for this USer in the Org Plan. (PPOMA_BBP) ?
    Please check the consitency of this BP as well.
    Have you read the documenattion of the Transaction -> BBP_BP_OM_INTEGRATE ?
    If no, here it is..
    Transaction -> BBP_BP_OM_INTEGRATE
    Short text
    Object Synchronization and Repair
    Purpose
    This report enables you to run a consistency check for the integration of HR Master Data and Business Partner data. If not all data exists for the business partner, you can first synchronize data. When synchronization is run for organizational units, the basic data (name, description) and the address data is included; when synchronization is run for central persons, bank information is included in addition to the basic data and address data.
    Prerequisites
    To be able to run this report, integration between Organizational Management and SAP Business Partner must be active.
    Features
    This section contains information about the functions you can use to select and output data.
    Selection
    The following options enable you to restrict the selection of objects:
    Central Person
    In addition to selecting central persons created during integration between HR Master Data and Business Partner data, you can also select central persons who have been created locally. However, central persons created locally are not checked for consistency.
    Employee (object type P)
    This selection option is only available in HR systems. The corresponding central person is displayed together with the person. Both objects are kept consistent in the Basic Data, Address, and Bank Data columns.
    Positions
    Business Partners (Employee role)
    Users
    Organizational Unit(s)
    You can specify specific organizational units for the selection.
    Business Partner (Organizational Unit role)
    Note:
    The selection objects Position, Business Partner (Employee role), User, and Business Partner (Organizational Unit role) are only available if an implementation of BAdI HRALX_HRALXSYNC_BADI exists.
    Branch as of Organizational Unit
    This option enables you to select all objects in the structure for one or more organizational units. You can also restrict selection according to one of the following object types:
    Central Persons Only
    Employees Only
    Positions Only
    Business Partners Only (Employee role)
    Users Only
    Organizational Units Only
    Business Partners Only (Organizational Unit role)
    Include All Object Types
    Changes Since
    All organizational units and central persons for which changes have been made since the last time all objects were synchronized are read. When all objects have been synchronized successfully, a new change date is set.
    Note:
    If a selection has been made but the relevant input field remains blank, all objects of a particular object type are read from the database. This condition can lead to a long runtime, therefore, SAP recommends you also enter a restriction.
    Output
    The organizational units and central persons that have been found are displayed in a list that includes status data.
    To facilitate navigation, a hierarchical tree structure is displayed on the left-hand side of the object list. The branches are sorted according to the type of action that is to be executed.
    If an implementation of BAdI HRALX_HRALXSYNC_BADI exists, checks from this BAdI are executed in the External Checks branch.
    If you double-click on the folder icon in the navigation tree, all objects are displayed in the list.
    Note:
    Meaning of status display for data in the Basic Data, Address, and Bank Data columns:
    Icon Message Text Meaning
    Green traffic light Business partner does not need to be synchronized with HR object data All business partner data is consistent with HR object data.
    Yellow traffic light Business partner does need to be synchronized with HR object data Business partner exists. The business partner data is not consistent with the HR object data.
    Red traffic light Object data is new and must first be created for the business partner The business partner does not yet exist or the the business partner data is incomplete.
    No traffic light Object type does not include this type of data Check type is not relevant for this object.
    Activities
    To integrate business partners or to repair selected objects, you must select the relevant lines in the object list and choose Execute. Any errors that occur are displayed after synchronization.
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • Difference between Session Facade and Business Delegate design patterns

    Can someone tell me the differences between Session Facade and Business Delegate design patterns

    1. Session Facade decouples client code from Entity beans introducing session bean as a middle layer while Business Delegate decouples client code from EJB layer ( Session beans).
    2. SF reduces network overhead while BD reduces maintenance overhead.
    3. In SF any change in Session bean would make client code change.
    While in DB client is totally separate from Session bean because BD layer insulate client from Session beans(EJB layer).
    3. In only SF scenario, Client coder has to know about EJB programming but BD pattern no EJB specialization needed.
    4.SF emphasizes on separation of Verb, Noun scenario while BD emphasizes on separation of client(presentable) and EJB layer.
    Anybody pls suggest more differences ?

  • Difference between impelementation rules and business logc.

    Hi all,
    Please tell me what is the exact difference between implementation rules and business logic?And more importantly when and where they should be used?
    Thanks in advance.
    Regards,
    Jayant Gupta

    Hi vasu,
    from the point of view of possible transformation there are not differences.
    The great difference is the following:
    In Update Rules routines are defined for a single field for every key filed: for example you define the single routine for 0AMOUNT for every single Characteristic that define the key (0COSTCENTER - 0COSTELEMENT - ...). For every single DataField you can define a different routine also in terms of Key fields.
    In transfer roules every routine is for every field without any kind of relation to the other fields.
    Check also this doc:
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/dc43c445-0d01-0010-23a1-ca348ff5f975">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/dc43c445-0d01-0010-23a1-ca348ff5f975</a>
    Ciao.
    Riccardo.
    Message was edited by: Riccardo Venturini

  • Difference between Proxy pattern and Business Delegate pattern

    Hi All,
    Can any one please tell me what is the difference between Proxy pattern and Business Delegate pattern.
    Thanks in advance.
    Basak

    The books they were first reported in, and the expressed intent, I guess. Arguably, the Business Delegate pattern is a special case Proxy, with more specific details about what resource is being proxied

  • Difference between Guided Procedures and Business Workflow?

    Hi,
    I'm new to workflows, so this question could be easy or absurd.
    Is there a difference between Guided Procedures and Business Workflows? Or is this
    the same thing with two names?
    If it is different, when do I use which of them?
    Could both use UWL?
    Thanks a lot
    greetz
    chris

    Workflow is a technology used to support business processes. You can make workflows without thinking/doing business processes. When you do business processes you will always wind up using workflow technology. All business process execution tools should by principle use a workflow engine at least SAP ones do. Not sure about others like Oracle BPEL tools for example.
    SAP tools like GP and BPM/XI use either Netweaver Java or Abap workflow embedding the technical aspects of workflow design and runtime into the Netweaver stack simplifying the business user experience as it relates to designing and running business processes. But designing and running workflows using workflow tools directly still is very muc an IT challenge.

Maybe you are looking for