Maintaining Product relationships in accessories section in product master

Hi all,
We have a requirement  to add the maintenance product in the u201CAccessories section in the Relationships tabu201D of the CRM product master data.
Kindly let me know the standard FM/BAPIu2019s or programs can be used to add the relationship between two products.
Please note we need the FM/BAPI only to do this.
With Regards,
Sujitha.S

Hi Addy,
These releationships can be maintained directly in Web UI too. If you have tabs like Accessories under Relationships in Products, then in Web UI too u will see an Assignment Block by name Accessories. If you dont, then pick it from personalisation. If its not in Personalisation then you will have to pick it from Page Configuration.
But those relationships can be maintained directly in Web UI too but u wont see any Relationships AB in products in Web UI.
Let me know in case you still have doubts.
CHeers,
MG

Similar Messages

  • Re:product Relationships

    Hi Experts,
    any one can pls suggest me how to maintain the relationship between two products and business partners.
    For Example,Vechicle,loan and business partner.i was created vechicle as "Material category" and loan as a"Finance category" and business partner.how did we maintain relationship between these.
    pls suggest me step by step configuration..........
    its vert urgent......
    Thanks,
    venkat

    Hi venkat,
    You can maintain product relationships under relationships.
    You can mainatain relationship with business partner as customer in the relationships of the product( finance/material category) under product maintanance ( Txcode: COMMPR01)
    But I would like to understand what exactly you would like to achieve using the relationships between BP and products.
    Regards,
    Madhu

  • Opportunity Product-Revenue related information section

    Hi,
    We are going to use the 'Product Revenue' related information section on the Opportunity for Products & Services. Hence, we want to rename this section to 'Products & Services' instead of 'Product Revenue'. I tried to change the name of the Object Type Revenue, but that is not possible using the 'Rename Object Type' function. Does anyone know whether it is possible to change the name and how to do it.
    Thanks.
    Kind regards,
    Niels Rekers

    Hi,
    Thanks for the quick response.
    Is it known when it will be possible? Is that with R16 and when will that Release be released?
    Kind regards,
    Niels Rekers

  • FM or BAPI or Table for Product Relationship

    Hi All,
    Please help me with finding the product relationship using a FM, BAPI or direct tables.
    I have a product id and I can find Product GUID from COMM_PRODUCT.
    Kindly help!
    Thanks & Regards,
    Dev

    Hi,
    Are you referring to Product -Set type Relationship , then below database tables will be helpful.
    1. Determine PRODUCT_GUID from table COMM_PRODUCT using product id .
    2. Determine FRGTYPE_GUID from table COMC_SETTYPE using FRGTYPE_ID which stores Set type Id.
    3. Then determine FRAGMENT_GUID from Table COMM_PR_FRG_REL using product guid fetched from step 1 and frgtype_guid from step 2.
    For each set type Id there will be a database table created with same name . So all the attributes for a particular product which has that set type assigned can be fetched from this table .
                                       So the FRAGMENT_GUID fetched in step 3 can be used to read the Set type attributes assigned to that product from the database table created with the set type Id . 
    Also for all FMs related to a particular set type are available in table COMC_SETTYPE.
    Regards,
    Nithish

  • The relationship betweeb  BusinessObjects and relevent Production, CR?

    Hello Buddies,
    I read some document related to BOE and other products, such as CR, Xcelsius, BusinessObjects Server, Voyage, and Web/Desktop Intellignece. However, I am still confusing the relationships between BO and other Products.
    Are the follows correct?
    1) BOE is designed for the large company. It already includes the CR, Xcelsius, Web Integllience, and Voyage ...
    2) BusinessObject Edge is for the small scale company, it can be integrated with CR, Xcelsuis, Web Integllience and voyage.
    What I should install if I want to study the BO as a BI conultnat (I can get the trial version)? What is the study route to master the BO in a short period?  And which part is more close to the BI?
    Thanks

    Hi Jonas,
    A relatively simple explanation is that the BO enterprise is one single product and other products are CR, Xcelsius, Voyager, BODI etc which are tightly integrated with BO Enterprise..
    BO Enterprise encapsulate Destop Intelligence, Designer, WebIntelligence and some others.
    I would recommend you to first install BO Edge which is free on SAP site at "Free Trials" and start with the below link to get hold of the user guides and start familiarizing 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.
    The part closest to BI is BO Data Integrator which is a ETL tool.
    Best Wishes,
    Pratik

  • Drawback of 'Maintain Bidirectional Relationship'

    I recently came to this understanding which changes the way we are trying to use TopLink. I thought I'd share it in an attempt to spare others some of the difficulties we've had, and also to elicit any further clarifications or corrections as necessary.
    When you relate two domain objects with TopLink, the Mapping Workbench provides you with the option to Maintain Bidirectional Relationship. What this means is that, for example, if you have two classes Parent and Child, each with a relationship to each other, then all you have to do is call aParent.setChild(aChild) and you will also be able to retrieve the Parent object from the Child with a call to aChild.getParent(), even though you never explicitly called the Child object's setParent(Parent) method. TopLink updates the 'other end' of the relationship for you.
    This sounds like a wonderful feature. However, it does have its drawbacks. Let's say that the Child has another Parent, we'll call them ParentOne and ParentTwo. Together, these Parents make up the Child's logical primary key, and so you've mapped these attributes of the Child in TopLink as its primary key attributes. You've also told TopLink to Maintain Birdirectional Relationships between ParentOne.children and Child.parentOne and between ParentTwo.children and Child.parentTwo. Now you've got a particular Child, aChild, owned by Parent instances aParentOne and aParentTwo. You want the Child to be deleted, so you remove it from both of its Parent collections. When you do this, TopLink also removes the references to the Parent objects from aChild, and now you've just altered aChild's primary key. If you selected this Child from the database, TopLink no longer recognizes your instance as the one you selected, and now you're going to have a really hard time deleting it. When you commit your UnitOfWork, you are likely to see an exception that says 'cannot insert null' into one of the LPK fields, or even an OptimisticLockException, as now TopLink is thoroughly confused about what the heck you're doing.
    The moral is: Don't use Maintain Bidirectional Relationship on attributes that are part of a class' mapped primary key. And don't set that attribute to null if you want TopLink to continue to recognize the object. In the example above, something like the following would be appropriate:
    Child>>
    public void orphan(UnitOfWork uow) {
         boolean exists = uow.doesObjectExist(this);
         getParentOne().removeChild(this);
         getParentTwo().removeChild(this);
         if ( exists ) {
              uow.deleteObject(this);
         } else {
              uow.unregisterObject(this);
    }Yes, you need to explicitly delete or unregister the object, even if you marked it as Privately Owned by its Parents. The fact that I'm doing the existence check before removing the Child from its Parents is just an extra precaution to make sure I do the test before I do anything that might change the LPK. Although this is probably useless, since, if I do modify the PK, TopLink won't be able to find the object again anyway.

    I agree with John's conclusions and will be requesting enhancements to the mapping tools and documentation surrounding b-directional relationships involved in PKs.
    One thing I do want to make clear is the original intention of bi-directional relationship support. This was added initially to support EJB 2 relationships. It was also added to the core product for use in some POJO frameworks. It has its uses and does simplify model development but has its trade-offs in addition to what John has posted. It requires indirection in both relationships and the relationship maintenance is only managed when in the context of a TopLink session the objects are read from.
    I typically avoid using bi-directional relationship maintenance as the alternative solution of managing the relationships in the model are very straight forward. The result is typically better performing. Additionally, having a POJO model that is not dependent on the persistence manager allows this same model to be used in other contexts such as detachment through serialization.
    Also, EJB 3 does not currently have bi-directional relationship management within the specification.
    Doug

  • Creating a production order for a semi finished product

    Hi
    I am having a multi level bom scenario over here.
    one of the bom components of the header material is a semi finished product.
    I am using the planing stratagy 40 for that material.
    in standard sap when i create a production order for  header material. the requirement gets transerd to all the components. if the components are not available then only  a requirement is placed. when i run MRP that requirement gets converted in to a planned order. which converts in to a purchase req or a production order,
    well for my semi finished product. its a Work in process item. there wont be any stock for that item in the storage location any time.
    what my requirement is. when i create a production order for my finished product it should automatically create a production order for the semi finished product.
    is this possible with some configuration settings.

    Dear Deepu,
    for ur requirement u need to maintain MRP type PD for FERT material and also for ur HALB.
    If u run  MRP  only, it will create planned order for FERT and for all its dependent requirement(for PD).
    If u create order manually for FERT material then it will not create order for HALB material, u need to create manualy for this also.
    sree

  • How do I go about getting the product serial number to register my product as well as install my product.  I bought it with a product box.  On the software disc sleeve, there is a series of numbers pasted at the bottom of the sleeves but this is not valid

    How do I go about getting the product serial number to register my product as well as install my product.  I bought it with a product box.  On the software disc sleeve, there is a series of numbers pasted at the bottom of the sleeves but this is not valid.  When I tried to type this in for registration, it does register as this numbers also contain letters in it.  Apparently the registration boxes accept numbers only.  What do I do with a useless product for which I have paid good money for it?????

    This is the simple solution which was offered to me when I tried to get the serial code on line.
    The box and disc sleeve do not contain a series with 24 numbers which I presume is the product code to install.
    I tried to redeem the registration code by following what they recommended, but inevitably it gets to the page that showed the registration boxes that need 24 serial numbers and I got stuck again.
    This product is so different what my previous experiences of other software products where I just enter the serial number straight from the disc sleeve and then I got registered and go on to use the software.
    I is really frustrating, spending the last two hours trying to get my product going....

  • How can I install CS5 on a new/replacement laptop? I paid full price in 2011 and have the key (and it shows up in my Adobe account under products), but it was a downloaded product and I can't find a download of that version online and my key doesn't work

    How can I install CS5 on a new/replacement laptop? I paid full price in 2011 and have the key (and it shows up in my Adobe account under products), but it was a downloaded product and I can't find a download of that version online and my key doesn't work in CC.

    Your key cannot work in CC, it's newer version, and would require a new purchase.
    Downlaod CS5 here.
    Download CS5 products

  • Bapi or FM or tabel or any standard transaction code for Production order linking to get child production orders based on parent production order

    Dear Guru's,
    we have a requirement i.e. user can convert planned orders in to production orders (CO41) based on those production orders we can get Route card( Z Smart form)  presently we are using manual input for that Route card. recently we got requirement for this i.e. make to automatic generation of route card for this requirement we need to get the list of child's production orders based on parent production order
    so as per my requirement i need to get all child part numbers production orders based on parent production order number and quantity i tried in MD4C and CO46 but those transactions codes are picking multiple lines also so for this requirement please give your valuable suggestions
    Regards,
    Venkat 

    Dear Friends,
    Thanks for your reply,
    My business process is MTS purely strategy 10, for route card all components with production orders we can give input as like bellow these production orders are converted from planned orders,between few components are don't have production orders those are F-30 materials,because of this reason i need link for production order to child components orders
    01
    IND1
    IND1
    A1CE2003520103-005
    55685815
    02
    IND1
    IND1
    A1CE2003520103-010
    55685814
    03
    IND1
    IND1
    A1CE2003520103-015
    55685813
    04
    IND1
    IND1
    A1CE2003520103-020
    55685812
    05
    IND1
    IND1
    A1CE2003520103-025
    55685811
    06
    IND1
    IND1
    A1CE2003520103-030
    07
    IND1
    IND1
    A1CE2003520103-035
    55685810

  • Switcover production to DR and DR to production in SAP server

    Dear All,
    How I switch over production to DR and DR to production in SAP server R3 server?
    thanks
    manas

    Hello Manas,
    Are the PRD and DR in a cluster?
    If the DR has a different hostname you may need to check the following notes:
    [757692 Changing the hostname for J2EE Engine 6.40/7.0 installation|http://service.sap.com/sap/support/notes/757692]
    [8307 Changing host name on R/3 host: What do you do?|http://service.sap.com/sap/support/notes/8307]
    Regards,
    Eduardo Rezende

  • Adobe CS5  Production Premium vs. Adobe CS4 Production Premium

    Hello:
    I am currently a worker at a production studio and we are thinking about upgrading our system Adobe CS3 Production Premium to either Adobe CS4 Production Premium or Adobe CS5  Production Premium.  Our company was at NAB convention in Las Vegas this year and were convinced that Adobe CS5 Production Premium was the way to go.  However we come to find (after purchace) that Adobe CS5 Production Premium only runs on (and correct me if Im wrong) 64 bit.  Now stuck with a system we cant use on our vista 32 bit I was wondering what are the beneifits between the two and if CS5 is really that great is it worth while to upgrade my computer systems.  I am sure I am not the only one to have run into this problem.  Any input or advice would be great.
    Sincerely,
    Really Confused

    Look HERE for a quick summary of the new features in After Effects. I can personally attest to the power of the new rotobrush. If you do that kind of work, it will save you a ton of time. Rendering times are considerably faster and being able to RAM preview a 30 or 40 second clip all the way through at full res is finally a reality.
    Look HERE for a summary of the new features in Premiere Pro. The major improvement here, in my opinion, is the ability to preview a multi-layer timeline with several effects in real time at full res without rendering.
    I can't tell you if it's worth it to you to upgrade or not. All I can say is that I'm really happy with it, so far.

  • Maintaining Bidirectional Relationships

    Hi,
    Does someone know exactly what "Maintaining Bidirectional Relationships" means.
    I'm french and I still have some difficulties to understand properly some stuff.
    Then I'd like to understand what it is about.
    Thanks

    Vladislav,
    Bi-directional relationships are ones where two relationships in the model 1:1 or 1:M share the same FK relationship in the database.
    EXAMPLE: An Employee may have a collection of PhoneNumbers and each of those PhoneNumbers has a reference back to its Employee.
    By default developers must write their domain classes so that both sides of the relationship must be set when changing a relationship of this nature.
    When using Bi-directional relationships you would only have to modify one side and the other side would be modified automatically. In the example you would only add a PhoneNumber to an Employee's 1:M collection and the 1:1 back-reference would be automatically set.
    NOTE: Indirection is required on both directions and TransaprentIndirection is required on the 1:M.
    Doug

  • Number group not maintained for CO code AM01 section IEQMGND --??

    Hi All,
    While i am doing T.code J1INCHLN the following error is coming
    Number group not maintained for CO code AM01 section IEQMGND and business place 194C
    Message no. 8I704
    were to give Number group for my WHT??
    Good day!!
    Regards,

    hi
    maintain the entry in SM30 for J_1IEWTNUMGR_1
    same as u maintained in remittance challan number group
    This hidden transaction in ECC 6
    for eg
    Company Code :  Section Code : WHT Code: Number Group
    N001                      N001              194J         01
    Thanks
    SAPUSER5

  • Number group not maintained for CO code OIAL section IBT194CMUM and busines

    Hi
    while executing J1INCHLN following error is coming
    "Number group not maintained for CO code OIAL section IBT194CMUM and business place 194C"
    can any one explain.  i have maintained all number range groups and intervelss

    Hello
       Go to SM30 and check the below table whether number range information maintained or not.
    if not maintain then maintain and transport from here.
    J_1IEWTNUM            INTERNAL NO RANGE FOR CHALLANS- EWT INDIA
    J_1IEWTNUMGR     Number Groups For Internal Challan Numbers- EWT India.
    J_1IEWTNUMGR_1     Number Groups For Internal Challan Numbers-EWT India:SECCO
    J_1IEWTNUMGR_N     Number Groups For Internal Challan Numbers-EWT India:SECCO
    Still problem continues revert back,
    Regards,
    Sankar
    Edited by: durga sankar on Feb 9, 2009 11:35 AM

Maybe you are looking for

  • Sender rewriting rule not working

    Hi, I am unable to make may sender rewriting rules working. The recipient rewriting rules works ok. I want to change the reply address that shows up in the destination email. For example, if i am sending from [email protected] (via Oracle webmail)i w

  • Where do I find the Sync Music when I am ready to add music on to my ipod

    Hello I cannot seem to find where to click the Sync Music when I am ready to add my music on to my ipod. Thanks

  • Xcontrol Cursor (XY Graph) with cursor release

    I try to build a Xcontrol who give the values of a cursor.  The only data I send to the Xcontrol is the reference of a XY Graph.  It is working fine when using the boolean left  and right (see drawing).  When I try to to utilize the "cursor release e

  • Business Object JAVA SDK

    Could you please provide the link from where i download this Business Objects JAVA SDK? Regards, Jitendra Jain 9979960798

  • Photoshop/Premiere Elements 11 Freeze When Getting Media

    Hello Everyone, Whenever I start Elements Organiser, there is an on-screen message that there are files ready to import and that the Organiser will now import these files into the Catalog. Then a "Getting Media" box displays and, at some point, say 5