Corresponding Business Object in CRM as like BUS2032 in ECC

Hi,
In ECC system I am able to work with BUS2032 business object-> Create for sales order creatrion where I am able to link my custom task. But now I want to create sales order in CRM system. That is done through CRMD_ORDER but is there any business object like bus2032 in CRM system where I can link my task as like ECC or can you give me any idea where I can link my task which will be executed after sales order creation in CRM?
Thanks
Biplab

Every One Order you create in CRM have a Transaction Type .  The Transaction Type config ( SPRO -> CRM -> Transactions -> Basic Settings -> Transaction Type ) will tell you which Transaction Categoty/Business Objects it is assigned to under   ' Assignment of Business Transaction Categories' .
Also after creating the Transactional Document , check the Table Entry in CRMD_ORDERADM_H , where OBJECT_ID = Transaction Number ,   OBJECT_TYPE should tell you the Business Object

Similar Messages

  • Business Objects in CRM 2007

    What are the main business objects in CRM 2007 and how does this module interact with other SAP modules?

    Hi,
    then you can use an application called "OpenDocument". Each document on your BusinessObjects Enterprise system can be called with OpenDocument. If you go to help.sap.com in the BusinessObjects area and look for BusinessObjects Enterprise as product you will find more details
    ingo

  • Product business object in crm

    i am new in bapi
    how to identify the product bapis in sap crm

    Goto SE80 , and check in Package : COM_PRODUCT.
    Here you can get all the Function Modules and BAPI`s related to Products.

  • Add extra Business Objects to model CRM 2007: Web Client Records

    Hello,
    Could anyone tell me how I can add more Reference Objects in Case Management?
    I copied the model CRM 2007: Web Client Records and added a new node (with for example Business Object Service Order) just like product and installations (which are visible under the reference objects)
    I created a new element type under SCMG_SP_CASE_RECORD --> Z_CRM_SPS_CASE_RECORD and in the customizing we attached the model to the case type under Case Management --> Extended Customizing --> Process Actions --> Assign Action Profile to Case Type.
    Still the new Business Object in the model isn't visible under Case Management in de WebUI.
    Could anyone tell me if I'm missing something or is there a config guide available how to add more business objects?
    Looking forward to your replies.
    Kind regards,
    Joost Christenhusz

    Eddie,
    Are you familiar with Access Control Engine (ACE)?
    Go through this -> http://help.sap.com/saphelp_crm50/helpdata/en/04/0177f9bb67ac4cafb84bb4d4c1d8fc/content.htm.
    and https://websmp205.sap-ag.de/~sapdownload/011000358700002121742006E.
    Authorizations in CRM are controlled through ACE.
    Hope this helps.
    Amar.

  • Business objects in HR

    hai experts....
    is any business objects in HR module like MM (bus2012,2010...)and SD (bus2032...)etc...
    please give me with the infotypes....
    thanks and regards ,
    velu.....

    Hi,
    Find the following HR Related workflows / some fo them are in  ESS/MSS ,
    Personnel Data Change 30300008 (Bank) 01000015 (Address)
    Name and Marital Status Change 1200170
    New Hire 17900011
    Re Hire 17900011 to be customized
    Pay Change 20000003
    Special Payment WS50000041
    Domestic Transfer WS50000031
    International Transfer WS50000031 to be customized
    Seperation WS50000041 to be customized
    Position Change WS50000041 to be customized
    Leave Request 12300111
    For ESS follow the link for Help,
    http://help.sap.com/saphelp_erp2005/helpdata/en/f6/263359f8c14ef98384ae7a2becd156/frameset.htm
    Reward for useful answers!
    Richard A

  • DQE - Business Object Attributes not shown

    Hi,
    can anybody please help me in solving the following problem.
    I want to implement drag & relate for my EP 6 (sp13). I connected a sap crm system an imported some business objects from there (DRSPFLI and DRCARR).
    When I now want to check the relations with the relations editor. The autocomplete function doesn't work and even if I want to edit the relation manually I have the problem that no attributes of the selected business objects are shown for selection.
    Something seems to fail at the importing process of my business objects. (Hint: I can see the crm system in the metadata loader)
    Has anyone a idea how to fix this problem?
    thanx a lot
    Christoph Hofmann

    Hi,
    unfortunately this didn't solve it.
    The confusing is, that I see the System in the loaded DQE window at the metadata loader, but the corresponding business objects of this system appear without any parameters.
    I have no idea what else to do!
    christoph

  • Attachment list for business objects is not visible

    Dear all
    I have connected an external server to SAP.
    Created repository and created Doc types (say for ex : ZFIINV,  ZMM DRW) and created entries using tcode OAC3
    now i have assigned my doc type to corresponding Business Objects (BKPF for accounting doc,BUS2105 for purchase requisition ,MKPF for MM related docs)
    now i have created entries for my scanned docs in table TOA01.
    i can search an display these docs which are already placed  there in my content server. but i can not see these documents links entries in the attachment list of corresponding Business objects entries.
    for example in BO : BKPF  attachment list i cant see al the link entries .
    please suggest whether any BO is not published or R/3 application connection to the generic object service is not done?
    thanks sandeep

    Hi Sandeep,
    I am not totallt getting your point but can suggest following points:
    1. Check whether these object are displaying in DIR's as object links.
    2. If it is there then it shoud be displayed in document data of those objects.
    3. Check that documents are properly checked-in.
    Hope this may help.
    Regards,
    Ravindra

  • Is it mandatory to use Business object for data transfer and work flow?

    <font size="3">
    <pre>
    In our enterprise projects we deal with some screens where we add or update some data and again
    we retrieve that data and display to user in various ways like displaying on screen as
    a report or viewing in excel etc.. Most of the times, though we identify the business objects
    based on the nouns in requirements document, really while implementing there will not be any
    business logic in the objects. Almost all the objects which we identfy as business objects
    may have methods like add, delete, update and retrieve methods. Still in these cases, is it required to
    have business objects or can we use transfer object to send the data for saving and retriving or any other
    pattern/guideline is there for dealing such cases?
    I really appreciate your comments on this topic.
    Also I apologize ahead of time if my explanation is not clear to you.
    </pre>
    </font>
    <p>
    Thanks in advance.
    <p>
    Regards,
    <p>
    Rizwan.

    In my opinion, DAO pattern would be suitable for you. Generally the DAO (Data Access Object) will have the CRUD (create, read, update, delete) methods to retrieve data from data-source (e.g. database). Based on the data it will create the DTOs (Data Transfer Objects) and pass them to the caller. It will also receive the DTOs from the caller and save it the data-source. Thus in your case you can
    - remove the CRUD methods from the Business Objects (BO) and make them pure DTOs and use them with DAOs (If you are using JDBC codes inside your application and you don't have much of validation or processing logic in your BOs).
    http://www.corej2eepatterns.com/Patterns2ndEd/DataAccessObject.htm
    OR
    - use BOs in combination in DAOs (if using the database connection from a pool and BOs are having complicated processing logic).
    http://www.corej2eepatterns.com/Patterns2ndEd/BusinessObject.htm

  • What is Business Object!?

    Hi everybody,
    I'm newby in all of this, i mean SAP, i do some things in PI, but now i need to work with Business Objects, and i really don't have idea. I was looking for information about it but i didn't find something that explain what is business objects in technical way, like development, what do i need to develop?
    What is the first thing that i need to install?
    where can i find it (application, executable) to download?
    Is a Web Server or Application Server, necessary?
    I tried to find all the technical aspects (like BO theory) and the architecture for BO, but nothing clear yet. I only found funtional foundations, like the propose of the BO and the characteristics, but not how does it work!!.
    Could anybody help me please?
    Thanks,
    Vicman

    Hi,
    Learning BO would be a very smooth, I can assure you a pleasant run; if you are a BI consultant, I advise you to first install BO Edge which is free on SAP site at "Free Trials"
    http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    and start with the below link to get hold of the user guides and start familiarising with first the universe and then the Desktop Intelligence/Web Intelligence.
    http://help.sap.com/businessobject/product_guides/
    I am very sure if you pick the universe first and jump on desktop Intelligence, you will be able to learn it fairly fast.
    All the Best.

  • Integrating Business Object Attributes and Database attribute

    Newbie using Oracle BPM 11g
    I am trying the following:
    1)Display two process fields from Business Objects (say firstname, last name) and one field which is a dropdown (say branchcode) from database using ADF UI.
    2)Initiator enters the firstname,lastname and then selects a branchcode from the drop down and submits the form.
    3)A Reviewer has to view these three fields selected by the Initiator.
    My question is how do we enable the reviewer to see the branchcode selected by the Initiator(as it is list of values from database and not from a business object)
    Sudip

    Hi,
    unfortunately this didn't solve it.
    The confusing is, that I see the System in the loaded DQE window at the metadata loader, but the corresponding business objects of this system appear without any parameters.
    I have no idea what else to do!
    christoph

  • Help with replication of Contract Accouunt as Business Agreement in CRM.

    I am Replicating ISU business objects in CRM.
    I have already sucuessfully replicated teh BP. Now I am working on replicating Contract Account as Business Agreement.
    I tried to follow the Set up and Load guide for replication of the same, however, could not follow it properly as steops did not seem very clear.
    - I have assigned internal number range to ISU contract accounts and identical number range to CRM business agreements as external.
    - I have also checked the tables COM_BUPA_CALL_FU,CRMC_BUT_CALL_FU,TFKFBS, CRMC_BUAG_ACTV
    for the entries recommended in the setup and load guide. All is ok.
    - I have also setup teh publication of object BUAG_MAIN.
    -THERE ARE NO ENTRIES IN THE TABLE TFK_BUAG_REF.(I am niot sure if this is how it is suppose to be)
    The Contract account is still not replicating in CRM as Business Agreement.
    CAN ANYONE PLEASE PLEASE GUIDE ME AS TO WHAT I AM MISSING AND WHAT I SHOULD BE DOING NEXT?
    I will be very grateful for any help or clue.
    Regards,
    Nasreen

    Hi,
    Please do the configuration at the below place.
    Your problem will be solved.
    IMG>Financial Accounting>Contract Account>Integration>Customer Relationship Management>Business Agreement>Determine Template for Contract Account Replication.
    Warm regards,
    Rahul

  • Relationships between Business Objects

    Hi,
    Does anyone know where to look to find the relationships between various business objects? If you look at most ES descriptions, there is usually a reference to a business object. I'd like to find somewhere where I could see the entire network of relationships.
    Thanks
    Dick

    hi,
    IMHO there is no straight-forward relationship between business objects. business objects are independent entities offering some operations to manipulate them. if some business object wraps('has') some other business objects, it is nevertheless supposed to be manipulated by some operations(services), which refer to the aggregate object only. otherwise you you would loose loose coupling.
    business object share a certain context though, common domains where they are required. in SAP this is reflected through ES bundles, e.g. <a href="https://wiki.sdn.sap.com/wiki/display/ESpackages/CourseApprovalProcesses">this</a>. In such an ES bundle description you find a  <a href="https://wiki.sdn.sap.com/wiki/display/ESpackages/CourseApprovalProcessesBusinessObjects">link</a> affected by the use cases which are to be handled within this ES bundle.
    my point of view,
    anton

  • Business Object Data Services (BODI) without SAP MDM?

    Hi,
    From an architectural point of view; do you always have to use SAP MDM when you want to use the  Business Object Data Services (e.g. for data validity checks when creating customers)?
    Or can you use  Business Object Data Services in combination with SAP ECC without MDM?
    Best regards,
    Marius

    All Depends on your business needs.
    1) As in if you want to use most effective cleansing (BODS contains inbult infor for Adderess cleansing) along with  some data governance(Validation, assignments,MDM Workflow) I would say fo with BO-MDM Integration.
    2) Here I am not sure via BODS - ECC you can handle ongoing maintainance , it is supreb for first time data load.
        so it is better if you use ECC-BO-MDM ---> BI/ECC for smooth transition through out landscape.
    3) Here also try to check the data structure compactiblity between BODS and ECC as per their version, it can also create a big impact.
    Hope these points can clear many doubts
    Rgds
    Deep

  • Object Link to CRM business object in Trex search result list

    Hello Everyone,
    has anybody sucessfully configured the functionality "Object Link Properties" which is described in the Document <a href="http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000647974&_SCENARIO=01100035870000000112&_OBJECT=011000358700005796662005E">Configuring the Business Package for SAP CRM 5.0 SP01 (EN)</a> on Page 169? I'm not the Knowledge Management specialist and would get some help on this topic. Has anybody detailed steps how to configure this?
    It shounds interresting as the result would be that when the User does a full text search for Attached Documents he will also get a link to the original CRM business object like Activity, Account or Opportunity.
    Regards
    Gregor

    Hi Gregor,
    Thanks for your reply.
    using windows explorer mechanism i can see the folders that i created in the CRM config.
    Now in Portals KM i did the following steps:
    a) Created an HTTP Data Source : with URL = the URL that the service crm_prt_km_dav generates.
    http://abrusux156h.pch.chem.corp.local:8086/sap/crm/crm_prt_km_dav
    b)Created a memory cache
    c)Created a WebDAV respository manager with the following details:
    Description :WebDAV
    Prefix : /PRD  (PRD is the BO Hierarchy name that i have set in the CRM config)
    System ID : T86 (Sames as what was set in HTTP Data Source)
    Repository Service : svc_acl
    ACL Manager cache : ca_cm
    Security manager : ACLSecurityManager
    Memory Cache :webDAV(same as what i had set in step b)
    I restarted the portal server. and then tried doing the test by going to
    Content Admin ->KM Content ->root
    But i dont see the /PRD folder out there.
    Any clues on that???
    Thanks,
    Anand

  • Business Object XI 3.1 Integration with Siebel CRM 8.1.1.1

    Hi Experts,
    We are planning to Integrate Business Objects XI 3.1 with Siebel CRM 8.1.1.1.
    Our requirement would be creating BO Universes on top of Siebel CRM Business Layer (Business Components) and expose these Universe for Ad-hoc reporting using Web Intelligence at InfoView portal. In addition we would like to leverage Siebel CRM Authentication and authorizations (positions) as well with Integration Kit.
    Found some of docs on BO with Siebel integration using crystal designer. But not on creation of Universe and then WebI Reports.
    And also found that Siebel Web Desktop for Ad-hoc reporting within Siebel portal. Not sure how it is similar to BO Web Intelligence reporting.
    Can any one please guide us the different possible options to achieve this requirement.
    Regards,
    Ravi Kumar Garre
    Edited by: Ravi Kumar Garre on Jan 27, 2010 5:56 PM
    Edited by: Ravi Kumar Garre on Jan 27, 2010 6:03 PM

    Hi Paul,
    I've left SAP on March 31th, 2011, so my information may not be 100% accurate.
    As far as I know, in Business Objects Suite XI4.0, there will no longer be Siebel Integration kit.
    Instead, Siebel related integration features are moved back into core products such as Crystal Reports and BOE.
    This means, you no longer need to have an installer for Siebel integration kit, when you installed Crystal Reports, it will bring you to Siebel connectivity after you install Crystal Reports. So does BOE.
    The similar approach applies to other integration kits as well such as SAP, PeopleSoft, JD Edwards, Oracle EBS.
    In Crystal Reports and BOE XI4.0, the Siebel integration feature remains with some improvements (check the product document for detail when you get XI4.0 BOBJ suite.)
    For Webi/Universe accessing Siebel request, I have no further update since then.
    You may want to go through your sales representitive/support channel to raise enhancement request/new feature request officially and get feedback.
    Hope this helps.
    Thanks and Regards
    Carlos Chen

Maybe you are looking for