Mapping between products in a BOM and var. config. characteristic attribute

Hi,
probably this is a "beginner's" question but we would need to know which tables are used to link products in a BOM material and the according VC characteristic attributes.
We have the following scenario:
- The user enters a configurable material in a sales quotation and starts the configuration. When saving the quotation the BOM explosion will be triggered.
--> Question: Is this based on a 1-1 relationship or based on complicated determination rules and/or dependencies?
What we would like to know is the other way round - from the product to the characteristic attribute.
Thanks a lot for any hint!
Regards,
Wolfhard

Closed as of now a we found a link between BOM item position and selection dependency.

Similar Messages

  • Mapping between Sales Order-Schedule-Line and Delivery-item

    Hi together,
    I want to extend the Datasource 2LIS_12_VCITM (Delivery-number, -item, Order-number,-item is available) by Sales Order Schedule Line.
    Could not find any ERP table (VBEP and LIPS allow a mapping only on item level) for the mapping between Sales Order Schedule Line and Delivery item yet. The use of the extractor 2LIS_12_VCSCL for the extention (e.g. infoset) afterwards is no option.
    Thanks for your help in advance!!
    Assign full points!!
    Sven

    Hi Reddy,
    thanks for your answer.
    I know that I have to add this field.. but the problem is, how to fill this field. I don't know how to map the delivery-item with the schedule line-item.

  • Mapping between the info cube fields and fields in the data source in sap r

    In Bi7.0 in which database did the mapping between the Infocube objects and the datasource object will be store Here i have used the r3 system

    Hi,
    Chk table RSOSFIELDMAP.
    Regards,
    Gunjan.

  • Planning for  product using multiple bom and multiple recipe involving SOP

    Hi friends,
    The problem. Currently we have maintained single BOM and single recipe (The BOM and Recipe used for MRP) for long term planning run. The FMCG sector of Client requested to have multiple BOMs and multiple recipes in the long term planning run. I.e. The planning is done quarterly and they wanted to use different BOMs and Different recipes for each quarter. But since the existing system has configured to use a single BOM and a single recipe we have a problem to use the long term planning run with the current setups.The problem we have is in this ‘001’ planning scenario.
    appreciate if you can help me how to accommodate multiple BOMs and recepis in the long term planning run.
    thanks and regards
    om

    HI Mr. Ready,
    We create PIR though a submit Job and in this case how to mention the production version while creating PIRs . Also if I am creating PIR through MD61 how to record the version.
    Please advice.
    Thanks and Regards,
    Om

  • Mapping Between Business Partners and Customers in CRM and ERP

    Hi,
    I wanted to know how are the business Partners and Customers replicated from ERP to CRM systems and Vice Versa. I would also want to know how can i check this mapping in the tables.
    eg: Get a customer or BP from the ERP system, how do i find it in CRM system.
    Regards,
    Rishav

    Hi Rishav,
    Here is how it works.
    The table for customers in ERP is KNA1 and the field for customer number is KUNNR.
    In CRM the table CRMM_BUT_CUSTNO contains the mapping between customer number in ERP and the BP GUID
    in CRM. The table BUT000 in CRM contains the mapping between BP GUID in CRM and the BP Number
    Apart from that the table CRMV_BUPA_CUSTNO contains the mapping between Business Partner Number and Customer.
    Hope this clarifiies your doubt.
    Best Regards,
    Shourav.

  • Production order creating without BOM and Routing

    create the production orders without bom and routing
    they confirm the order
    they want to stop confirmation if production without bom and routing
    is it possible to set error or warning message
    my first doubt is how can we confirm the order without bom and routing
    i think it can be solved by production order type
    please reply

    Hi,
    You can make it mandatory by following ways :
    Go to OPPQ -> Select your plant-> Go to BOM / Routing Selection in that you need to maintain BOM Sel ID & Routing Sel ID which is having selection ID with usage 1 Production which will make it mandatory to create BOM & ROuting with usage 1 & need to be selected while creation & saving Production ORder.
    Also, you can maintain another config. for making routing mandatory at Order type level :
    Go to OPL8 -> Select Plant & Order type-> Routing Selection
    Maintain 5     Routing/ref. op. set mandatory (manual selection)
    or          6     Routing mandatory (automatic selection)
    This setting will ensure without routing your order will not be saved.
    Hope this helps.
    Regards,
    Tejas

  • Hibernate mapping between JGeometry & SDO_Geometry

    Has anyone figured out how to create a hibernate mapping file for mapping between oracle.spatial.geometry.JGeometry and SDO_Geometry type? Haven't been able to figure out how to do it with UserTypes
    for instance I'd like to create a simple class like the following:
    import oracle.spatial.geometry.JGeometry;
    public class Building {
    private Long id;
    private String label;
    private JGeometry shape;
    public Building() {}
    with a corresponding hibernate mapping file that would contain something like:
    <hibernate-mapping>
    <class name="Building" table="BUILDING">
    <id name="id" column="ID" type="long">
    <generator class="native"/>
    </id>
         <property name="label" type="string" length="100"/>
         <property name="shape" type="JGeometry"/>
    </class>
    </hibernate-mapping>
    that would create a create SQL like:
    CREATE TABLE Buildings (
         id NUMBER PRIMARY Key,
         label VARCHAR(100),
         shape SDO_GEOMETRY)
         storage (initial 1m);

    Hi,
    We're specifying the custom type mapping using the OracleCustomTypeMappingAttribute and not in any configuration.
    The problem is occurring only on our test server and it has worked fine in the past.
    Strangely, our application works fine for a few hours and then the problem starts to occur.
    Once it happens, the problem stays until we re-start the web site or IIS.
    It's since we've done a completely fresh install of Oracle and .NET on the server so it's something to do with that I suspect.
    I can't seem to find any differences between the test server and our development machines however.
    I've tried to enable tracing but the trace file grew to over 1.5 gig within 30 mins so it would be impossible to let it run for hours.
    Even if we did have enough space, the file would be too big to analyse using any tools I know of.
    Any other suggestions would be welcomed.

  • Explicity mapping between ActionScript and Java objects for the BlazeDS Messaging Service

    The BlazeDS documentation shows how to explicitly map between ActionScript and Java objects. For example, this works fine for RPC services, e.g.
    import flash.utils.IExternalizable;
    import flash.utils.IDataInput;
    import flash.utils.IDataOutput;
    [Bindable]
    [RemoteClass(alias="javaclass.User")]
    public class User implements IExternalizable {
            public var id : String;
            public var secret : String;
            public function User() {
            public function readExternal(input : IDataInput) : void {
                    id = input.readObject() as String;
            public function writeExternal(output : IDataOutput) : void {
                    output.writeObject(id);
    and
    import java.io.Externalizable;
    import java.io.IOException;
    import java.io.ObjectInput;
    import java.io.ObjectOutput;
    import java.util.HashSet;
    import java.util.Iterator;
    import java.util.Set;
    public class User implements Externalizable {
        protected String id;
        protected String secret;
        public String getId() {
            return id;
        public void setId(String id) {
            this.id = id;
        public String getSecret() {
            return secret;
        public void setSecret(String secret) {
            this.secret = secret;
        public void readExternal(ObjectInput in) throws IOException,
                    ClassNotFoundException {
            id = (String) in.readObject();
        public void writeExternal(ObjectOutput out) throws IOException {
            out.writeObject(id);
    If I called an RPC service that returns a User, the secret is not sent over the wire.  Is it also possible to do this for the messaging service? That is, if I create a custom messaging adapter and use the function below, can I also prevent secret from being sent?
    MessageBroker messageBroker = MessageBroker.getMessageBroker(null);
    AsyncMessage message = new AsyncMessage();
    message.setDestination("MyMessagingService");
    message.setClientId(UUIDUtils.createUUID());
    message.setMessageId(UUIDUtils.createUUID());
    User user = new User();
    user.setId("id");
    user.setSecret("secret");
    message.setBody(user);
    messageBroker.routeMessageToService(message, null);

    Hi Martin. The way that AMF serialization/deserialization works for BlazeDS is the same regardless of which service is being used, so yes that code will work for messaging as well. On the server, the serialization/deserialization of messages happens at the endpoint. For an incoming message for example, the endpoint deserializes the message and then hands it off to the MessageBroker which decides which service/destination to deliver the message to.
    That was a good question. Thanks for asking it. Lots of people are used to doing custom serialization/deserialization with the RPC services (RemoteObject/RemotingService) but I'm not sure everyone realizes they can do this for messaging as well.
    -Alex

  • Source System Mapping between BW Dev and Prod system

    Hi,
    I have a DB Connect Source System in BW Dev system called DBSRCDEV which points to one of our Oracle Dev DB.
    In Production, the DB Connect Source System is called DBSRCPROD and it points to the corresponding Oracle Prod DB.
    In Development, I created a data source on this Source System (DBSRCDEV) and I tried to transport it to Production. But it failed with error saying that DBSRCDEV does not exist.
    Where and how can I maintain or configure the mapping between DBSRCDEV and DBSRCPROD Source System so that I can transport my data source to Production?
    Please help.
    Thanks,
    CH

    Hi,
    usually you need to maintain the setting for the change of the logical system name (source system) in each target system of a transport. So in your prod system goto rsa1->tools->change logical system names...
    After maintaining that table, try to import your request again.
    regards
    Siggi

  • Production BOM and Engineering BOM

    Dear Gurus ,
                          I want to know difference between Eng BOM and Prod BOM . We have standard multilevel engineering BOM but if I use that BOM for routing assignment I can only see 1 st level components . Can I put all components in single level so that I can assign them in FG routing and pick list will have all the components ?
    We are thinking of considering all assy as phantom so that there would be only one prod order for FG .
    Neal

    Hi,
    The engineering BOM is as designed material BOM. It may include all the part upto the level of nuts & Bolts & also the engineering drawings. But in Production BOM you may not include the engg drawings & the C class material like nut & bolt, which may be planned on Reorder point planning.
    I hope the answer is clear.
    Regards,
    Prashant

  • How to map many finished product in one bom

    Sir,
    i hav one raw material sheet in which i will cut number of finished products.how i map in bom.all finished product has cut in differnt quantity.

    Hi
    Actually this is purely based on the client reqmt.
    If they need to maintian the diff bom for all the product . you should need to maintained. even though you use same raw material for all the  products.with diff qty and if they need to calculate the costing inoccur for the each product
    or
    you can use as co -porduct as forum member told.

  • Difference between production version and routing

    hello pp experts,
                            why do we create production version, and what's the difference between production version and routing?

    Dear sarfaraz lodhi ,
    Production version is a combination of BOM & Routing in the case of Discrete Manufacturing and it's a
    combination of BOM & Rotuing/Rate Routing in the case of Repetitive Manufacturing.
    Created either through MM02 by selecting MRP4 view or else through C223
    A production version determines the various production techniques that can be used to produce a material.
    It defines the following information:
    ·        Alternative BOM for a BOM explosion
    ·        Task list type, task list group, and group counter for assignment to task lists
    ·        Lot-size restrictions and period of validity
    A material can have one or more production versions.
    Routing contains the set of operation that's required for producing a product either a HALB - Semi-
    Finished product or else a FERT - Finished Product.
    The T code for creating Routing is CA01.
    Regards
    Mangalraj.S
    Edited by: Mangalraj.S on Sep 24, 2008 10:27 AM

  • Role mapping between Portal and Back end systems

    I am new to SAP EP.
    I just want to know how the mapping between portal and back end system happens.
    Scenario : There is a role in ECC system...say FI India. Now there is a request by the FI team that they want to access this role from Portal. In this case, please tell me how the security team will do it. Because I guess, it has to be done by the security team.

    Hi,
    Usually the role from backend is uploaded to portal then it will be seen as Group and we need to assign our portal roles to this group. Please refer [this|http://help.sap.com/saphelp_nw73/helpdata/en/d6/7859ec80df46738e23ccb4f4c8c502/content.htm].
    Regards,
    Samir

  • Password Field not mapped between Request and Provisioning Form

    Hi to all. I'm working with OIM 11g. I've faced a strange issue. I'm not sure I'm working properly, so let me explain you my case. In my installation I've got the SSH connector, which is correctly connected with the physical resources. I've loaded the resource dataset ProvisionResourceSSH User bundled with the connector. Consider now that the user "goofy", with "ALL USERS" role, tries to make a request Provision Resource SSH User (Request Based provisioning). He fills in all the field in the appropriate manner, but when OIM triggers "Create User" provisioning task, after the required approval process, the password field is always blank (although goofy filled it in!!!).
    I've thought: "ok, it seems a role trouble". And effectively, if goofy has got also the role "REQUEST ADMINISTRATORS", the provisioning form shows the password field correctly valued (as goofy stated in his request).
    Note that all the fields are correctly mapped between request dataset and the provisioning form (I'm using the original dataset and the original provisioning form installed by the connector). So all other fields filled by goofy on the request form (request based provisioning) are correctly passed to the provisioning form. All the fields, except for the password.
    Am I wrong in something? How Could I make possible to pass the data filled on the request for the password field to the provisioning form even if the requester has not the role "REQUEST ADMINISTRATORS"?
    Thank you in advance for the help.

    This sure seems goofy! ;-) ... can you try making the ALL Users have all the permissions on the Resource Object and the Process Form and test it out? Also try from the backend at the database and see if the table has NULL for the password field? ... What's the type of password field in the dataset and the process form? Encrypted/Secret at both ends or mis match? Try making them plain text both the places as well.
    -Bikash

  • Production Order for a material without BOM and Routing

    Is it possible to create a production order for a given material without routing and BOM, I know we can
    create a production order for a material without a BOM (with a default routing) just wanted to check with
    the above criteria
    Thanks in Advance!!

    Members:
    Thank you for your valuable replies and time
    Santosh:
    Tried what you have mentioned, but system still picks up a default routing
    Kaushik:
    Maintained Default values in OPJG for the given order type, but system still picks up
    default routing
    Mangalraj:
    have no issue in creating a production order without a BOM, but I am trying to see
    is there a way where I can create a production order without a BOM and routing (not
    even default operation )
    Any suggestions on how to create a production order for a material without a BOM
    and routing (not even default one )

Maybe you are looking for

  • Can't we pass custom defined internal table in SMARTFORM Interface

    Hi,      I have a scenario, that my internal table from the program is is not dictionary type, but combination of some fields. Can't I directly pass this table to my smartform. Thank U 4 Ur time. Cheers, Sam

  • How to get First line item in Table control for BDC.

    Hi, I have a requirement while creating the return order from the reference Sales order for BOM. Once I compare the line items and delete the items not to be returned, I want to read the first line item which in fact is header, to make some changes.

  • How to make menu ring items visible through VNC ?

    I have an application that has a menu ring in it. I am compiling the app., distributing it to a remote system, and viewing it using VNC (3.3.7) . Everything works through VNC with the exception that I can't see the items on the Menu Ring when it is s

  • New email id for Mobileme

    Hi, I am trying to register my iphone4 to mobileme. It as for @me.com email id. I have apple id and don't know hoow to get that email id. Can any one help me to share the link where i can register and get that email id. Thanks

  • Result from measurement

    Where does Teststand put the result from the calling module ? I've written a number of steps in TS 3.1 using the LV7.1 prototype adapter. All my step valuations are 0 ! I assume when I create the "Specify a module step" I have to "wire" the resulting