Please guide for mapping the scenario in mm

Dear All
We are having implementation at Steel trading unit.
Scenario for material master is as follows.
They procure different brands of steel say Kamdhenu, Essel etc (aprox 100 brands are there). In this there are different types say carbon steel, MN steel etc upto 100 types. Then for each type there are different compositions say 50 compositions for each type. Then for each compositions there are different sizes say aprox 500 sizes. So in this case its not possible to have material master for each combination, because it will lead to lakhs of material master.
So we proposed them to have variant configuration. In this case mat master wil lbe created in combination of brand & type of steel. So aprox (100*100) = 10000 mat master will be created. And we will create characteristics for Compositions and sizes.
So when PO will be created they will enter mat master based on combination of brand & type. And composition and size willbe selected from variant. my 1st question is, is there any other way doing this?
Again at the time of PO creation he knows only brand and type. So they make open PO for say aprox 100000kg.
Then they ask vendor to supply 10000 kg of 3rd composition and 7th size.
In the same PO then they ask for 20000 kg of5th compo & 8th size no. Now they are using another system so they send this declaration to vendor by separate sheet and vendor acts accordingly. But how to map this in sap?
Regards.
Thanks
Edited by: sapsarang on Sep 29, 2010 10:58 AM
Edited by: sapsarang on Sep 29, 2010 11:21 AM
Edited by: sapsarang on Sep 29, 2010 11:46 AM
Edited by: sapsarang on Sep 29, 2010 11:59 AM
Edited by: sapsarang on Sep 29, 2010 12:33 PM

Hi,
Go for AFS , i am also new to this but AFS provides such solution.
Example..Shirt created with one material code then diffrent size and color , price maintained under same code no required for
other code.

Similar Messages

  • HT3777 I have a Window 7 HP laptop. I want to install Snow Leopard on an external hard drive as the memory space on my laptop is very less. I have the original snow leopard disc and I think it's a retail version . Please guide me through the installation.

    I have a Window 7 HP laptop. I want to install Snow Leopard on an external hard drive as the memory space on my laptop is very less. I have the original snow leopard disc and I think it's a retail version . Please guide me through the installation in details. Can you also please let me know about this boot camp.

    You cannot. From a legal standpoint, the license agreement for OS X mandates that you run OS X only on Apple hardware. HP is not (yet) owned by Apple.
    From a technical standpoint, your HP laptop doesn't use EFI, but rather an early predecessor called a BIOS. Apple is the only vendor of consumer computer hardware that uses EFI; other vendors reserve EFI for use in servers.
    Secondly, Apple's operating systems support a rather limited number of configurations of video hardware and mainboard chipsets directly since they need only support those systems that they manufacture. You cannot use Windows software or drivers on OS X, so prior to installation, you would need to write your own hardware drivers for your laptop, create an OS X drive image on a Mac, and then modify that image with your drivers before putting it in the HP.
    It will be simpler (and legal), to simply purchase a used Mac. Apple's online store has refurbished MacBook Airs starting at $850 and Mac Minis for $700. If you go to e-bay or craigslist, you'll find used Macs for considerably less.

  • Portal Content Guide for understanding the MDM Configuration.

    hi friends,
    I need Portal Content Guide for understanding the MDM Configuration pdf file..
    please send that file in pdf format
    thanks
    ramu

    Hi,
    You can access the below link.
    [http://help.sap.com/saphelp_mdm550/helpdata/en/45/c87d0243e56f75e10000000a1553f6/frameset.htm]
    Regards,
    Jitesh Talreja

  • The step-by-step guide for installing the Oracle Database and Oracle9iAS Portal

    All,
    I made a step-by-step guide for installing the Oracle 8.1.7 database and Oracle9iAS 1.0.2.1 (HTTP Only) install on a 'clean' Windows 2000 machine. The guide has a screen shot of every single step that I went through to get an installation of the database and Oracle9iAS Portal to work.
    Because I left my email in the guide, everyone will be sending me email with questions about their particular install. [What I really wanted was some positive feedback email to show to my manager... hint hint.] As I do not want to troubleshoot everyone's install by email, I started this thread.
    Let's start the step-by-step install guide discussion here.
    As a start, here is what I did NOT want to do with the guide: I did not want to 'redo' the current Oracle9iAS installation guide. So I did not put any conditions in the guide. This is just what I had to do to take a clean Windows2000 machine (no Oracle software on it) and get it to work. If I keep on adding conditions, eventually I will end up with the installation document.
    Also, in the next version (for the Oracle9iAS 1.0.2.2) I will probably start over again from scratch as we are planning on addressing some of the issues with the install.
    Another thing I plan to do is put the following direct links in:
    Oracle9iAS Portal: Troubleshooting Guide
    Oracle9iAS Portal: Diagnostics Tool
    Oracle9iAS Portal: FAQ
    Have a look at the above, as they will answer probably all of your questions... But if not post away!
    Thanks,
    Rich

    We do have installed a Lotus Notes LDAP. Unfortunately, the documentation is company internal in German.
    The steps, in general, where:
    1) Create physical connection (obviously, you did that)
    2) Deploy the XML Descriptor for the LDAP under "UM Configuration => Data Sources"
    We used a derivate of the Sun One LDAP Profile.
    3) Match the assignement LDAP Group --> EP Role --> EP User via EP user management
    4. The user, in our case, is always created in the LDAP first (from a different LDA administration group) and is then visible in the Portal)
    I know, this is very generic, but the "magic" is in the XML profile and I haven't seen any documentation about it yet.

  • Please guide me on the issue of private key

    Hi All
    I am working on application that requires to do encryption and decryption using public and public key. I need some guidance on how to implement this functionality. The only requirement is to have public key and private key in two different files. For public key i can get it from .cer certificate file but i do not have much idea of what feature in java is provided to read private key from file. The file is definately not the keystore file. Please guide me as to in what format the private key should be so that my java program could read it and do decryption.
    Another thing is that the private and public key file will be provided by the client. I do not have any control on creating them. I will be given a location where i could find public and private key and passphrase for private key.
    Basically i do not have any clue on what class or technique to use to read those
    Thanks and Regards
    Pankaj Tiwari

    This is how i create the private and the public key files (Not the certificate file) :
    KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA");
    kpg.initialize(2048); // 2048 is the keysize.
    KeyPair kp = kpg.generateKeyPair();
    PublicKey publicKey = kp.getPublic();
    PrivateKey privateKey = kp.getPrivate();
    // Serialize to a file
    ObjectOutput outPK = new ObjectOutputStream(new FileOutputStream("C:/Temp/PrivateKey.ser"));
    outPK.writeObject(privateKey);
    outPK.close();
    This is how i verify the signature of a file :
    File fileKey = new File("C:/Temp/KeyPair/publicKey.ser");
    ObjectInputStream inPK = new ObjectInputStream(new FileInputStream(fileKey));
    PublicKey publicKey = (PublicKey) inPK.readObject();
    inPK.close();
    // C:/Temp/myfile.zip.sign is the file that was generated when i signed my file C:/Temp/myfile.zip
    String algorithm = "SHA1withRSA";
    String myFile = "C:/Temp/myfile.zip";
    File fileSign = new File("C:/Temp/myfile.zip.sign");
    ObjectInputStream inSign = new ObjectInputStream(new FileInputStream(fileSign));
    byte[] signature = (byte[]) inSign.readObject();
    inSign.close();
    Signature verif = Signature.getInstance(algorithm);
    verif.initVerify(pubKey);
    FileInputStream in = new FileInputStream(myFile);
    int chVerif = 0;
    while ((chVerif = in.read()) != -1) {
    verif.update((byte)chVerif);
    if (verif.verify(signature))
    System.out.println("OK");
    else
    System.out.println("Error");

  • Can anybody please guide to take the course of SEM

    HI
    Can anybody guide me to take the course of SEM. I have been working as a BW Consultant for the last 4+ yrs, out of which I have been with BI  for 1.5 yrs. Can I go for SEM now. Is it suit for me as a BW CONSULTANT. Some guys saying it is purely for FICO Consultant.
    Please guide me to take my career forward. Please guide me.
    sai

    Greetings Sai,
    SAP Strategic Enterprise Management (SEM) refers to a number of capabilities within the Enterprise Resource Planning (ERP) software and would not be covered in a single course.
    You may want to look at the different courses offered for NetWeaver Business Intelligence if you are looking to grow your understanding of BI and BW. There are a number of course that could be very helpful for you.
    If you are more interested in the Strategic part of SEM, there is a new product called SSM, SAP Strategy Management, which is not part of SEM, it is a separate application. You can learn more about SSM and the SAP solutions for performance management by visiting the CPM page on the BPX site:
    https://www.sdn.sap.com/irj/sdn/bpx-cpm
    While SAP does offer a number of eLearning courses that can be taken online, many of these courses will be instructor-led in a classroom environment.
    Not knowing where you call home, please visit your COUNTRY SITE from the SAP.COM website. Under SERVICES, click on EDUCATION and find the courses offered in your area.
    Hope this helps!
    Regards,
    Bob

  • Please guide for 11G : OCP pl/sql  OR  OCA sql, pl/sql ,  admin-1

    Respected members
    For better job prospects point of view which path should I choose for Oracle 11G Certification ?
    OCA sql , OCA pl/sql , OCA admin -1
    OR
    OCA sql , OCA pl/sql , OCP - advanced pl/sql
    Please guide.
    Regards
    Nilesh

    naveenDBA wrote:
    sir,
    I want to write OCA please tell me which one to prepare eigther 10g OCA or 11g OCA.
    Which one is better help me sir.which books i have to prepare for OCA.
    thanks sir in advance
    XXXXXXXXXXXXXXXXx
    [email protected]
    If you do not realise you have posted off topic for this thread then you should probably reconsider becoming a DBA.
    And by publishing your email address you risk receiving unauthorised learning material.
    Please become familiar with [www.oracle.com/education/certification]
    and [http://blogs.oracle.com/certification/2009/05/the_route_you_choose.html]
    If you cannot work whats on there out for yourself then you would be useless as a DBA.

  • Process Industry- How to map the Scenario?

    Dear Gurus,
    The is a Process Industry, Chemical Manufacturing Unit, which does the following sequence of Operation to get the Semi finished material.
    1) Acid, TC, and Catalyst are 3 Raw materials
    2) Acid, TC and catalyst after being put into reactors, they Undergo 2 Phases. Crude and Distillation
    At crude phase, Crude is Produced. But they dont want to do confirmation of crude.
    At Distillation stage, Main Fraction(MF), a semi-finsihed material is Produced
    But at the distillation Phase, 2 more, Products are produced in conjugation to MF.
    These 2 Products are Lower Fraction(LF) and Residue.
    When these LF and Residue are produced, they again put into reactor and some qty of TC is added to achieve MF which again produces some portion of LF and Residue. And these cycle goes on.
    They keep these process continuing. 
    In short: MF is derived in 2 ways
    Acid+TC+ Catalyst=MF
    LF+Residue+TC=MF
    Please help me in mapping below Points comprehensively.( They want one Order Type for 2 phases.)
    1) How BOM will be made of LF and residue if I treat them as Co-Product??? Or some other technique in SAP can map it?
    2) What is the Step by step Costing configuration of Co-Products. I searched lot but unable to find the proper settlement rule of Co-Products.
    Thanks
    Shailesh Mishra

    Dear Rahul,
    As I understand that Co-Products cannot be subjected to movt type 261 and same i have tested in system. So, concept of Co-Product is not applicable here either with Recursive BOM application.
    The solution which we have found here is that Client will make one of BOM of Acid+TC+ Catalyst
    which will give MF. The concept of Reverse Calculation will be applied. Daily product of LF and Residue will be extrapolated at the Month end. And the LF and residue Quantity will be tracked not from system. Only during month end, LF and Residue Physical Inventory will be taken and it will be treated as Raw materials So, in the Running Process Order 262 will be done of So-called LF and residue. Stock Up(+)
    And same Qty of LF and residue will be subjected to 261(Stock Down-) in the next month New Order in form of Raw material.
    So cycle of 261 and 262 of LF and residue in form of Raw materials will be Perpetual and settlement of orders will also be sacrosanct.
    Best regards
    Shailesh

  • Please guide for Installation.

    Please can you help me -- i am going for fresh installation of mysap ERP2005 in airline(kingfishar)PRD,DEV,QLA servers,how i start the installtion mean i have to choose ERP2005-ABAPetc or netweaver-ABAP-etc or it is neccesary to generate the key from solution manager or if it is possible can you send me step -by step installation for ERP(airline)

    Hi Ragu,
    You can accomplish this by doing a system copy.
    For more details check SAP service marketplace. There are standard system copy guides available.
    Cheers....,
    Raghu

  • Guide for configuring the Claims module for India Payroll

    Hi all,
    I am configuring the Claims module for India Payroll.
    Can anyone please help me with a step by step guide.
    Currently I have maitained a few types of claims under spro->Payroll->India Payroll -> ESS->Advance Claims->Reimbursement Types->Maintain Attributes of Reimbursement Types.
    But when I try to submit any claim request from portal, its giving the error "Employee number not maintained for : 00005007".
    It would be helful if anyone can provide help regarding activating the claims workflow (WS18900023) as well.
    Thanks in advance,
    Sattam.

    Hi Praveen,
    Thanks a lot for ur reply. I have done those configurations, still I will check again.
    I have identified another error. When I try to add a start event to the worlfow WS18900023, and activate it.....its giving the error "BUS1009 cannot be executed" .
    Is this the cause of malfunction? If yes how to solve it?
    Pls Help
    Sattam.

  • Please guide to improve the performance of XML column reading query.

    Hi Experts,
    The below query is taking 45 seconds to return 170 records.
    Due to selecting XMLTYPE column in query.
    select *
    from RANGE where WSNO = 3
    order by PREFERENCE desc;
    The total number of records in the table is 1060.
    Even it's a very small table why it's taking 45 seconds.
    Can anybody please help me on how to get the output in 2 to 3 seconds.
    I want all the columns from the table.
    The problem only with REST column XMLTYPE.
    If I am not selecting this column I am getting output in 1 to 2 seconds.
    I am posting the execution plan and DDL for table and index.
    PLAN_TABLE_OUTPUT
    Plan hash value: 3593186720
    | SNO  | Operation                    | EMPNAME                   | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |                        |    31 | 23281 |    21   (5)| 00:00:01 |
    |   1 |  SORT ORDER BY               |                        |    31 | 23281 |    21   (5)| 00:00:01 |
    |   2 |   TABLE ACCESS BY INDEX ROWID | RANGE                 |    31 | 23281 |    20   (0)| 00:00:01 |
    |*  3 |    INDEX RANGE SCAN          | INDX_WSNO              |    31 |       |     1   (0)| 00:00:01 |
    Predicate Information (SNOentified by operation SNO):
       3 - access("WSNO"=3)
    CREATE TABLE RANGE
      SNO                              NUMBER,
      BUSNO                            NUMBER,
      EMPNAME                          NVARCHAR2(64),
      PREFERENCE                       NUMBER,
      TSNO                             NUMBER,
      MEMBER                          CHAR(1 CHAR) ,
      EQU                             CHAR(1 CHAR) ,
      REMAIL                          CHAR(1 CHAR) ,
      SSR                             CHAR(1 CHAR) ,
      SUB                             CHAR(1 CHAR) ,
      SPN                             CHAR(1 CHAR) ,
      SEMPNAME                        NVARCHAR2(128),
      FVL                             NUMBER(32),
      TVL                             NUMBER(32),
      ISD                             CHAR(1 CHAR),
      CHANGED                         NVARCHAR2(64),
      CDATE                           TIMESTAMP(6) ,
      UDBY                            NVARCHAR2(64),
      UDATE                           TIMESTAMP(6),
      LSTU                            CLOB,
      WSNO                            NUMBER,
      ASTN                            CHAR(1 CHAR),
      ASTNPL                          CHAR(1 CHAR),
      AVAF                            CHAR(1 CHAR),
      REST                            SYS.XMLTYPE
    TABLESPACE USERS
    PCTUSED    0
    PCTFREE    10
    INITRANS   11
    MAXTRANS   255
    STORAGE    (
                INITIAL          64K
                NEXT             1M
                MINEXTENTS       1
                MAXEXTENTS       UNLIMITED
                PCTINCREASE      0
                BUFFER_POOL      DEFAULT
    XMLTYPE REST STORE AS CLOB
          ( TABLESPACE  USERS
            ENABLE      STORAGE IN ROW
            CHUNK       8192
            PCTVERSION  10
            NOCACHE
            INDEX       (
              TABLESPACE USERS
              STORAGE    (
                          INITIAL          64K
                          NEXT             1
                          MINEXTENTS       1
                          MAXEXTENTS       UNLIMITED
                          PCTINCREASE      0
                          BUFFER_POOL      DEFAULT
            STORAGE    (
                        INITIAL          64K
                        NEXT             1M
                        MINEXTENTS       1
                        MAXEXTENTS       UNLIMITED
                        PCTINCREASE      0
                        BUFFER_POOL      DEFAULT
      LOB (LSTU) STORE AS
          ( TABLESPACE  USERS
            ENABLE      STORAGE IN ROW
            CHUNK       8192
            RETENTION
            NOCACHE
            INDEX       (
              TABLESPACE USERS
              STORAGE    (
                          INITIAL          64K
                          NEXT             1
                          MINEXTENTS       1
                          MAXEXTENTS       UNLIMITED
                          PCTINCREASE      0
                          BUFFER_POOL      DEFAULT
            STORAGE    (
                        INITIAL          64K
                        NEXT             1M
                        MINEXTENTS       1
                        MAXEXTENTS       UNLIMITED
                        PCTINCREASE      0
                        BUFFER_POOL      DEFAULT
    NOCACHE
    NOPARALLEL
    MONITORING;
    CREATE INDEX INDX_WSNO ON RANGE(WSNO);
    CREATE UNIQUE INDEX RULE_EMPNAME ON RANGE(BUSNO, EMPNAME);
    Please help me how to improve the performance of this query.
    Thanks.

    Can you try something like this and check if its faster? (this is just my guess as I dont have your data )
    SELECT SNO,
           BUSNO,
           EMPNAME,
           PREFERENCE,
           TSNO,
           MEMBER,
           EQU,
           REMAIL,
           SSR,
           SUB,
           SPN,
           SEMPNAME,
           FVL,
           TVL,
           ISD,
           CHANGED,
           CDATE,
           UDBY,
           UDATE,
           LSTU,
           WSNO,
           ASTN,
           ASTNPL,
           AVAF,
           xmltype.getclobval (rest) rest
      FROM RANGE
    WHERE wsno = 3
    order by PREFERENCE desc;
    Cheers,
    Manik.

  • Please guide me to the least expensive camcorder that will upload to iMovie

    Please help. I'm lost. I have a MacBook Pro with iMovie. I'm going on a fishing trip and want the least expensive camcorder I can find which will allow me to upload the movies to my Mac and edit them with iMovie.
    Thanks for specific suggestions!!!!

    I know a friend of mine bought a small memory card camcorder. I'm not sure what she payed but it was pretty cheap (low $100s). I think she bought it on ebay so I would check there. Here is a list of the recommended / supported camcorders (according to apple)
    http://support.apple.com/kb/HT1014
    In light of this I believe that almost any memory card camcorder would work (memory chips are pretty standard and there is always the option of a card reader).
    I hope this helps,
    -Hooked

  • Please guide me to the Best audio streaming service/software provider

    Hi everybody
    Thank you for your tme. I intend to host a website that streams audio sermons and I have gone through www.byoaudio.com, a flash-based one with a monthly subscription model wherein the files will be hosted on their site, the code for which will be embedded in my site. But I don't want to go for a monthly fee nor to host on their server.
    The second one is the software "audiopro" from www.clipstreamaudio.com which is an encoder using java run time environment which will adjust and serve the stream based on the users internet speed and the good ends there. Their support is TERRIBLE with no responses to my 3 mails and a call to their 1-800 number.
    I will be deeply obliged if anyone can guide me to a reliable streaming service or software provider. My preference is for the encoder software provider like the java based clipstream. Any guidance will be appreciated.

    Hello,
    your post is completely off-topic. These forums are for development issues, not application providers.
    Michael

  • Please guide for right career Move.

    Hi All,
    Please tell me which one is better for an ABAPer between BI-netweaver and SRM-Functional(SRM Techno functional) salarywise.
    Are ther enough project for BI and SRM ini market?
    I have around 2 years of ABAP experience.
    Thanks.

    Hi Sandy.
    SDN is not a right place for Career counselling forum.
    I think you did not read the rules of Posting a thread.
    Hope you take things positively.
    I would like to suggest, My opinion.
    BI - Netweaver is very a Good career.
    Good Luck & Regards.
    Harsh Dave

  • ODI built in for checking the scenario status in case of re-run

    I have a package like this.
    scenario1 ----(ok)-----> scenario2 ----(ok)-----> scenario3
    When i run the package for the first time, assume that the scenario1 is executed successfully and scenario2 has failed.
    I correct the error in scenario2 and run the package again. I dont want the scenario1 to be executed as it has already been executed successfully. The execution should start from scenario2.
    Is there any Built in tool in ODI to achieve this.
    Thanks
    Pardha

    There is no default mechanism for doing this. I could be done by using your own run control mechanism, logging the execution etc and running with variables.

Maybe you are looking for