To create/change material determination records using VB11/VB12 transaction

To create/change material determination records using VB11/VB12 transactions, do you know any relevant FM's or BAPI's for these transactions instead BDC?
Thanks in advance.
regards,
vamshi

Thanks for the response. I wrote the BDC.
Have some problems in BDC for VB12.Uploading ten thousand records at a time.
Following problems exist.
Before updating i am reading existing data.
In   selection condition, if i give ten thousand records
i am getting dump.
(ii) In the change material determination third screen
     to delimit the date ( Valid on and Valid to) it does for header not at item level. No option to do at item level.
thanks,
vamshi

Similar Messages

  • How to create relationship between two records using MDM Java APIs

    Hi,
    I am trying to create relationship between two records using Java Apis. Please guide me in doing this.
    Regards,
    Niraj

    Hi Niraj,
    There is ModifyRelationshipsCommand:
    http://help.sap.com/javadocs/MDM/SP06/com/sap/mdm/data/commands/ModifyRelationshipsCommand.html
    Retrieve Relationship command:
    http://help.sap.com/javadocs/MDM/current/com/sap/mdm/schema/commands/GetRelationshipListCommand.html
    Also, please refer similar thread, MDM Java API and relationships.
    Hope it helps..
    Regards,
    Mandeep Saini

  • BAPI  for create/change purchase info record

    Hi All,
    Could any one suggest me the BAPI for the create/change purchase info record(ME11/ME12).
    Earliest can be appriciable.
    Regards
    Anil

    Hi,
         I did not get any bapi related to create/change purchase info. But i can give u list of purchase info . if u got revert back to me
    Reward if it is usefull..
    Bye.
    BAPI_INFORECORD_GETLIST

  • Create the user master records using the Enterprise Portal

    Hello gurus!!
    I'm configuring SRM 7.0 with EP.
    I'm configuring the organizational structure, and steps guide (pdf and Solution Manager ) are:
    1. Go to transaction SU01 and create an ABAP User. (SRMADMIN)
    2. Assign this user the administrator role /SAPSRM/ADMINISTRATOR
    3. As the administrator, creater the organizational plan
    4. Create the remaining organizational unit
    5. Using the Enterprise Portal application, Business Parter:Employee, create the user master records for the departmental managers.
    How I must create the user in Enterprise Portal? What user I have to use to log on in the Enterprise Portal application? Has the user to be integrated in the organzational structure??
    Thanks in advance!!!!
    Best regards.
    Maria.

    Hi,
    You can create users in WebDynpro application. You can also create users in USERS_GEN transaction.
    Regards,
    Masa

  • Fm to Change Material Info Record (Plant-Specific)

    Hi,
    Is there any fm to change plant specific material info records ??
    Moderator message: please do your own research before asking.
    Edited by: Thomas Zloch on Jan 14, 2011 12:50 PM

    Hi,
    Please check the following bapi
    BAPI_MATERIAL_MAINTAINDATA_RT
    Regards and best wishes.

  • Create table field (not record) using ADDT software

    Hi,
    I wondered if anyone can give me detailed help on how to create a table field on-the-fly instead of creating records, using ADDT software.
    For Example:
    I have two tables.
    One table holds language names and codes, ie Australia and AU for the shortened code.
    The other table holds country descriptions, but each table field is the shortened country code (in this case AU)
    So what I want to do, is when I add a new language in the admin (ie, France) then it will create france in table 1, and also create the table field FR in table 2.
    I am not up on programming, so if anyone can detail as much as possible, you will be saving my bacon here.
    Many thanks
    Mark

    Hi.
    Sounds like what you need is a "foreign key" in the detail table that points to the id of the country in the country table.
    ADDT is perfect for this even if the documetation (and this klunky forum) is now third class.
    I suggest that you read this http://help.adobe.com/en_US/Dreamweaver/9.0_ADDT/help.html?content=MXK3_052000_MX_K3_cont rol_panel.htm
    Make special note of Step 2, item 5, second bullet point.
    (Note item 4 demonstrates the point about pathetic documentation)
    This would be applicable to your Detail Table that needs to have its foreign key pointing to the id of the country table.
    For example, consider two tables with these fields:
    Countries:
    id_cou (the record ID)
    name_cou (the name of the country)
    isocode_cou (the ISO code for the country eg: AU for OZ)
    Details:
    id_det (the record ID)
    idcou_det (the foreign key which is the ID in the Countries table - so this is an interger field - not a text field)
    detailfield1_det (some detail info)
    detailfield2_det (some more detail info)
    etc
    etc
    So in the Dynamic LIst Wizard for the Details list you make sure that the foreign key points to the primary key of the Countries record.
    Now, here is the neat thing: When you get to creating the form for the Details table the foreign key gets displayed as a menu showing the actual names of the countries listed in the countries table.
    Experiment with that and see how you go.

  • How to create IT0128 subtype-02 record using HR_INFOTYPE_OPERATION

    Hi All,
    Can anyone suggest how to use HR_INFOTYPE_OPERATION to create/insert a record in IT0128 for an employee from an ABAP program.
    Some background:::
    Note that the field - "Short Title" which is mandatory in this Infotype. And it uses a Q-structure for its processing. Also it stores this field using a combination of text object, text id, language and text name.
             Text object = HRMESS
             Text id  =  HR_P
    Goto SE16 of an employee and check PA0128, you will notice above fields. The actual value is stored somewhere in system memory using a combination of above 4 fields.
    When i try using my program, it gives me an error "Make an entry in all required fields" (so not able to find how/what should i pass for field "Short Title").  Can anyone suggest how should i use HR_INFOTYPE_OPERATION to create an IT0128 record for subtype 02.
    Appreciate any help asap!!
    Best Regards,
    Abbasi Sadikot
    PS: Please dont post your reply if you dont have any idea of what this is.

    Hi
    HR_INFOTYPE_OPERATION -> calls -> HR_MAINTAIN_MASTERDATA -> this Func. Mod. then creates a batch and calls ->
    -> IF DIALOG_MODE EQ '0'.
    ->    CALL DIALOG 'HR_MAINTAIN_MASTER_DATA' USING BDCDATA MODE 'N'
    ->         EXPORTING
    the SY-SUBRC value after this should be zero. But it isn't. Can anybody suggest something. Or have any idea as what could be going wrong ??
    Here is my program by which i am trying to create IT0128 subtype-02:
    REPORT  ZABTWTEST                                 .
    data: it0128 like p0128 occurs 0 with header line.
    data: return like BAPIRETURN1.
    it0128-pernr = '20123001'.
    it0128-subty = '2'.
    it0128-begda = '20090101'.
    it0128-endda = '20090131'.
    it0128-SPRSL = 'EN'.
    it0128-OBJCT = 'HRMESS'.
    it0128-TXTID = 'HR_P'.
    it0128-OBNAM = '<internally assigned name>'.
    append it0128.
    CALL FUNCTION 'BAPI_EMPLOYEET_ENQUEUE'
      EXPORTING
        number              = '20123001'
        validitybegin       = '19000101'   .
    loop at it0128.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
      EXPORTING
        infty                  = '0128'
        number                 = '20123001'
        VALIDITYEND            = it0128-endda
        VALIDITYBEGIN          = it0128-begda
        record                 = it0128
        operation              = 'COP'
        TCLAS                  = 'A'
        NOCOMMIT               = 'X'
      IMPORTING
        RETURN                 = return   .
    endloop.
    CALL FUNCTION 'BAPI_EMPLOYEET_DEQUEUE'
      EXPORTING
        number              = '20123001'
        validitybegin       = '19000101'   .
    write return.   .
    Kindly correct me if i am wrong anywhere.
    Regards,
    Abbasi

  • Unable to create the sales team record using api AS_ACCESS_PUB.create sales

    Hi all,
    Please help with any sample code to create the sales team using AS_ACCESS_PUB.create sales team.
    When i am initialising,i am getting AS_SALES_MEMBER_PVT USing Fn error
    If i am not initialising,i am getting cannot read the value for profile option user_id;
    Regards,
    Raj

    Hi Ankitha,
    Your scenario is very vague.
    You have got the PO in the client 130 system and you wanted to created a SO in the same client 130 system.
    Usually we don't create a SO using the PO from the same system. Instead of using an IDOC concept, Call the BAPI BAPI_SALESORDER_CREATEFROMDAT1 or BAPI_SALESORDER_CREATEFROMDAT2.
    You can use any of the 2 BAPI's to create the sales order.
    Write a custom program to call the BAPI and assign that custom program as a driver program to your output type which is being triggered in the PO document, then as soon as that output type is triggered it creates the sales order for you.
    My sincere suggestion just counter check your requirement with the concerned persons as we don't generally create a sales order by referencing the po in the same system, but we create a po by referencing a so in the same system for Third party sales orders.
    Thanks,
    Mahesh.

  • Creating training material containing audio using FM8 (or 9 or 10)

    Using FM 8 on Windows 7, I can embed a .wav file in the FM doc & the .wav plays as expected when double-clicked. But When I Save As or print from FM to PDF (using Acrbat Pro 9), the .wav file doesn’t exist in the PDF.
    Is there some FM or Distiller setting I should be using to get the .wav file to work in the PDF? I notice that MicroType sells a “plugin” called TimeSavers Multimedia Assistant that says it enables such PDFing. Are there any other solutions? Upgrade to FM9? Or FM10? Simply inserting .wav files into the FM-generated PDF using Acrobat Pro ("Attach file as a Comment" command) is not feasible.
    Or are there other output formats besides PDF I should be considering (e.g. webinar software)?

    You might find more recommendations for other output formats for webinar use on this FrameMaker Integration forum section:
    http://forums.adobe.com/community/robohelp/robohelp_framemaker
    or on the HATT list, http://www.techwr-l.com/techwr-l-list
    As a general comment, the TimeSavers tools are very, very reliable and the support is excellent. They are essential for getting functional output due to many <sigh> of FM's longstanding <bigger sigh> ... "quirks".

  • VB11 Material Determination - How to substitute only when ATP fails?

    I created a material determination rule with VB11 (A is replaced by B).
    However, my intention was to has A replaced by B only when ATP fails in SO....
    Now I have A replaced every time....
    I tried to create two lines: A=>A, A=>B as alternative, but A is always replaced by A now...
    Did I miss anything?
    Thank you!

    Its possible to do this. Please do as below.
    Ex: xyz is the main item and abc is the substitution item which needs to be activated only when xyz qty is less)
    1. Under VB11 maintain the following records:
        For Reason : Z003 (ATP Check)
    Material Entered  is XYZ and Substitution Materials are XYZ and ABC.
        Basically Material XYZ substitutes XYZ and if the qty is less it substitutes ABC.
    2. Substitute Reason Settings are as under (SPRO):
    Reasn Z003
    Description Availability check
    Entry
    Warn
    AvCh dep. X
    Strategy
    Outcome B
    Category
    This will work wonderfully...
    Hope this helps...

  • Material determination with ATP-CHECK.

    I want use the material determ after the stock ATP-CHECK.
    the need detail is that:
    first the sales order item run the atp-check ,if the stock cannot supply all the requested quantity ,the shortage quantity will use the material-substitution,by the choose screen or automatic create the new item.otherwise,if the stock is enough to supply,not to run the funciton material determinaton.
    this is the all  my want,whether is it can be carry out and how to configure the sap setting.

    Hi Lee,
    The standard system supports this. While creating the material determination records in Tcode VB11., while entering the we give the material entered and in the column material you have to give this same material first and by clicking the ICON 'Alternate Materials' on the Application Tool Bar you can give the sequence in which the substitution take place.
    Hope this explains your query. If this is not clear please mail me to [email protected]
    Thanks,
    Ravi Sankar

  • How do I find who created a particular material master record?

    How can I find who created a material master record when it was created?  I've looked in the item changes log and all it shows is changes, not when the material was created.
    Thanks!

    Hi,
    You can use SE16 + MARA. Field ERSDA will show you the desired date.
    In MM03 there's an icon: white 'i', background blue. Please click on it.
    BR
    Csaba

  • How to create material to be use with serrial numbers

    hi all,
    i need to create a material to be use for serial number... thanks in advance..
    regards Joven

    HI,
    Refer [http://help.sap.com/saphelp_47x200/helpdata/en/3c/abc38a413911d1893d0000e8323c4f/frameset.htm]
    [http://www.sap123.com/showthread.php?t=65]
    You can use this component to identify and differentiate between individual items of material. This component therefore ideally supplements the material master record, which may contain all data for describing and managing a piece of material, but which does not enable you to differentiate between individual items of that material.
    You can use serial numbers when working with the following business procedures and objects
    Plant Maintenance
    Production orders
    Sales and Distribution
    Quality Management
    Inventory Management and Physical Inventory
    Repetitive manufacturing.
    Regards
    KK

  • BAPI to create Material master record

    Hi All,
    I need to create a new material master record using a reference Mterial number. Please let me know, if there is any BAPI to achieve this.

    Hi,
    Check these links .You will get your answer in detail.
    Re: How to use BAPI BAPI_MATERIAL_SAVEDATA
    Re: Mass creation of Material Master Records
    Hope it will help you.
    Regards:
    Alok

  • How to enter a material on SO without a Material Master Record?

    Hi guys,
    Pls help me 2 flowing problem:
    1. How to enter a material on SO without a Material Master Record? And all case need to enter a material on SO without a Material Master Record.
    2. How to use customer material number if there isn't Master Data
    Thanks

    Hi Friend,
    I dont think we can go with a sales order with a material without material master record.
    But there are some cases where in we can create a sales order by entering a material which does not have a material master.
    1. Through material determination
    You can create a material determination for a material (1234) which exists in sap by a material(XYZ) which does not; For example in VB11 you can create a material determination for a material 1234 ( exists in sap) through a material XYZ which does not exists in sap.
    While creating the sales order when you enter the material XYZ is not give any error and automatically determine the material 1234 which exists.
    2. Text material
    We can create a order/quote by directly entering a text in the material description and without entering the material. This the case for text material wherein text item category will be determined.
    Please let me know if this help you. Else kindly elaborate the scenario.  
    Abhishek

Maybe you are looking for