Need to do vendor determination in internet order

Hello All,
We have a requirement, while creating an internet order (crmd_order)when I add the product and the quantity the vendor should be determined for each product assigned at the item level after pressing enter.
We have maintained the vendors information in the ztable.
Is there ant way we can do that ? any BADI on which we can work upon
Regards
Sohit Gulati

Hi,
You can achieve this by implementing COM_PARTNER_BADI.
Create a partner determination procedure and add Vendor as a partner function. Assign it to the item category. Within the partner function Vendor, assign the access sequence BADI which you will implement in COM_PARTNER_BADI-->Method DETERMINATION_ADD_IN_3.
Maintain the relationship between material and vendor in COMMPR01. You will need to write the logic in COM_PARTNER_BADI accordingly.
So, whenever you create an order and enter a material the BADI is called and the vendor assigned in the relationship of the material will be picked up automatically.
Hope this helps.
Regards,
Chandrakant

Similar Messages

  • I have a MacBook Pro and I need to be able to access Internet Explorer in order to login to my work server (Microsoft server) and Online Business Banking system. How do I do it if Internet Explorer is not supported on Macs?

    I have a MacBook Pro and I need to be able to access Internet Explorer in order to login to my remote work server (Microsoft server) and Online Business Banking system (Bank of America Cash Pro). How do I do it if Internet Explorer is not supported on Macs?  Is there another option? Please help. 
    I also feel like such a moron as I am really new to Apple computers and don't even know what operating system I am using.  The below is what I have. Sorry to all that are well beyond me in the Mac world.  Have been a windows user for my whole life and haven't quite figured out where to find everything I need on my new laptop yet.  Thanks!
    With the following configuration:
    PROCESSOR     065-0154     2.7GHz Dual-core Intel Core i7
    MEMORY     065-0156     8GB 1333MHz DDR3 SDRAM - 2x4GB
    HARD DRIVE     065-0159     750GB Serial ATA Drive @ 5400
    OPTICAL DRIVE     065-0161     8x Double-Layer SuperDrive
    DVI Adapter     065-0162     None
    VGA Adapter     065-0164     None
    REMOTE     065-0166     None
    Apple Software - iWork     065-7672     No iWork preinstalled
    Apple Software - Final Cut Exp     065-7682     Final Cut Express preinstalled
    Apple Software - Aperture     065-0338     Aperture preinstalled
    Apple Software - Logic Express     065-7675     No Logic Express Preinstalled
    Apple Software - Filemaker     065-8307     No FileMaker Preinstalled
    Apple Software - MS Office     065-0278     MSO-HOME & BUSINESS EDITION
    KEYBOARD AND DOCUMENTATION     065-0172     Keyboard/Users Guide
    COUNTRY KIT     065-0175     Country Kit

    If you are New to Mac... you may also find these links of Value
    Mac 101
    http://www.apple.com/support/mac101/
    http://www.apple.com/support/switch101/     Switching from PC
    MBP Support
    http://www.apple.com/support/macbookpro
    Cheers,

  • Need to capture Vendor code & Service Order no during Goods Issue

    We have a typical req of tracking Goods issued to contractors to whom Service Orders ( Labour jobs ) is awarded. Even though contract is pure labour type , we intend to track materials issued against work orders.Std transaction of Goods issue to Purchase order can not be done here as materials are already lying in stocks but when issue to Contractor who is working in our premises , we need to track Goods issue against Work Order no in SAP as well as Vendor code , If these things get captured , we will customise the report.
    Umesh Bagul

    Hi,
    You can make Goods issue from MIGO with Movement Type-261.
    Capture the details as follows
    MIGO -> Goods Issue > Other > 261
    Maintain Work Order Number in Material Slip
    And the maintain Vendor code in Partner Details ,you can find this tab under Item detail field.Field name -Vendor Code
    THen there is no need to make seprate Z report.
    You can find all these details through MB51.
    Regards,
    Sandesh Sawant

  • Vendor Determination to PR thru componant tab of service order

    Hi All,
    I have maintain the vendor in notification partner list and then it get copy to service order partner tab after service order creation.
    Now when I create the Purchase req. from component tab, Vendor should get determined automatically from service order partner tab. Right now it gives me pop screen which includes list of all vendor for given material and plant.
    My requirement is vendor determination in PR thru component tab should always get determined from service order partner tab.
    Pl let me know if there is any note to be implemented.
    Thanks,
    Chetan

    Hi,
    You have to maintain source list in the transaction ME01 for this vendor as fixed vendor....
    Sudhakar

  • I Need interactive report to list the purchase orders details for a vendor

    I Need interactive report to list the purchase orders details for a vendor that has    interactive drill down options to give the detail of vendor from vendor master.

    Hi
    see this sample report
    this is Customer wise sales orders
    just make similar report just using LFA1, EKKO and EKPO tables instead of KNA1,VBAK,VBAP
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Regards
    Anji

  • PO-PDF need to sent vendor

    Hello SAP MM Sappers,
    Please let me know I want sent a PO PDF to vendor mail id.What are all the prerequestie / configuration settings I need to maintain so that I can first try / simulate the same in Q system and then implement in P system.
    Requesting the forum members to give your valuable detailed input so that it help my simulation at earliest.
    Cheers,
    Kumar.S
    Edited by: Csaba Szommer on Aug 22, 2011 12:58 PM

    Hi Kumar,
    Refer the detail explanation of Oss Note as explained below.
    SAP Note Number 191470 - Purchase order as an e-mail
    Note Language: English Version: 27 Validity: Valid from 23.06.2006
    Summary
    Symptom
    As of Release 4.5, the required program logic is implemented that allows
    you to send purchasing documents by e-mail. It is not possible for you to
    'downgrade' to lower releases.
    This note is classified as 'release-independent' to also make this
    information available to customers that use releases < Release 4.5.
    If you use a release < Release 4.5, read Note 357137.
    More Terms
    ME21, ME21N, ME22, ME22N, ME31, ME31L, ME32L, ME31K, ME32K, output
    determination
    Cause and Prerequisites
    Solution
    Basically there are two mail types: Internet mail (external mail) and
    SAPOffice mail.
    Mail is sent via the output determination in both cases.
    If you use the external mail, the message for the purchasing document is
    converted into a corresponding text file which is sent to the vendor via
    the Internet.
    SAPOffice mail is sent only within the R/3 System and has mainly the
    function of providing information.
    In particular, it is not possible to attach a message (form) for a
    purchasing document to a SAPOffice mail.
    When using external mail, the following basic settings are required:
    1. You must maintain an e-mail address in the address in the vendor
    master.
    2. The same applies to your own user master. You also have to specify an
    e-mail address there in order to identify the sender.
    o Note that it is not possible to change the e-mail address of the
    vendor via the SAP purchase order transaction (ME21N, ME22N, and so
    on).
    o You can only make a permanent change using the vendor master
    transactions XK02 or MK02.
    o You can use a temporary email address in Transaction ME21N.
    3. For the output type for default values, a communication strategy needs
    to be maintained in the Customizing that supports the e-mail. You can
    find the definition of the communication strategy in the Customizing
    via the following path: (SPRO -> IMG -> SAP Web Application Server ->
    Basic Services -> Message Control -> Define Communication Strategy).
    As a default, communication strategy CS01 is delivered. This already
    06.04.2007 Page 2 of 4
    SAP Note Number 191470 - Purchase order as an e-mail
    contains the necessary entry for the external communication. Bear in
    mind that without a suitable communication strategy it is not possible
    to communicate with a partner via Medium 5 (external sending).
    4. Use the standard SAP environment (program 'SAPFM06P', FORM routine
    'ENTRY_NEU' and form 'MEDRUCK') as the processing routines.
    5. In the condition records for the output type (for example, Transaction
    MN04), use medium '5' (External send).
    6. You can use Transaction SCOT to trigger the output manually. The
    prerequisite for a correct sending is that the node is set correctly.
    This is not described here, but it must have already been carried out.
    7. To be able to display, for example, the e-mail in Outlook, enter PDF
    as the format in the node.
    To use the SAPOffice mail, the following basic settings are required:
    1. For the output type for default values, a communication strategy needs
    to be maintained in the Customizing that supports the e-mail. You can
    branch to the maintenance of the communication strategy via the input
    help.
    2. Use the SAP standard environment (program "RSNASTSO" and FORM routine
    "SAPOFFICE_AUFRUF") as the processing routines.
    3. In the condition records for the output type (for example, Transaction
    MN04), use medium '7' (SAPOffice) and also partner role 'MP' (mail
    partner).
    Additional settings:
    Problem:
    How can you both change the mail title and text for the sending of a mail
    message and maintain a replacement parameter, for example a document
    number.
    Solution:
    1. The replacement routine is maintained in the Customizing for the
    output type in the detail screen on the 'General data' tab under
    'Replacement of text symbols' (for Release < 4.6B, this can be found
    on the 'Mail' tab page).
    Program: SAPMM06E
    FORM routine: TEXT_SYMBOL_REPLACE
    2. If you work with the new Enjoy Transaction ME21N, ME22N or ME23N,
    Notes 370522 and 420066 are required.
    3. Maintain mail title and text.
    o If you want to send a purchase order within an R/3 system using the
    SAP office, you can maintain both the mail title ('Re:') and also a
    mail text in the Customizing for the output type To do this, select
    the directory mail title and text for the corresponding message
    type.
    o If you want to send a purchase order as (external) mail, for
    example, to a vendor, you have to maintain the mail title in the
    06.04.2007 Page 3 of 4
    SAP Note Number 191470 - Purchase order as an e-mail
    condition record for the output type (for example in Transaction
    MN05) on the 'Communication method' tab page. Enter the mail title
    in the 'Text for cover page' field. You cannot maintain an
    additional mail text.
    o Note that the values from the mail title are used to create the
    description for the attachment.
    4. The replacement parameters must be enclosed by &. Example: You want to
    enter the title 'PO number 450000001'. For this you have to enter the
    following in the Document Title field (Message Customizing ->
    sub-option: Mail title and texts) 'PO number &EKKO-EBELN&'
    o Note that the replacement via TEXT_SYMBOL_REPLACE can
    only be executed as of Release 4.6B. If you also want to use the
    purchase order number in a release < Release 4.6B, refer to Note
    120474 - as an alternative, you have the option of implementing the
    text replacement functions by Remote Consulting, priced separately.
    Problem:
    You send a purchase order by e-mail and want to attach the document as a
    file type (for example, PDF).
    Solution:
    Solution:
    The file type is maintained in the corresponding node in SAPConnect
    (Transaction SCOT). If you have any further questions, contact your Basis
    administration.
    Attaching purchasing documents to e-mails is only possible for external
    (Internet) mails. This is not possible with SAPOffice mails.
    Problem:
    Although LET (print) for example is still set as the alternative to INT
    (e-mail) in the communication strategy, a program termination occurs
    because of a missing e-mail address.
    Solution:
    See Note 310234.
    Problem:
    When you send a mail message for a purchase order, a short dump occurs if
    the purchase order was created with reference to an outline agreement.
    Solution:
    See Note 502250.
    Header Data
    Release Status: Released for Customer
    Released on: 27.06.2006 00:32:09
    06.04.2007 Page 4 of 4
    SAP Note Number 191470 - Purchase order as an e-mail
    Priority: Recommendations/additional info
    Category: Consulting
    Main Component MM-PUR-GF-OC Message determination and printing
    The SAP Note is release-independent
    Related Notes
    Number Short Text
    502250 Update terminate when emailing PO linked to Outline Agreem.
    457497 FAQ: Message processing in purchasing
    432236 Error TD421 for external sending
    420066 No title when sending PO messages externally
    357137 External e-mails from message control
    323720 Communication types in communication strategy
    309685 Error with external sending
    190669 Sending lists via SAPconnect
    171698 SAPconnect: Formats, conversion, device type
    152474 Testing fax and e-mail
    Attributes
    Attribute Value
    Transaction codes HIER
    Transaction codes ME21
    Transaction codes ME22
    Transaction codes ME31
    Transaction codes ME31K
    Transaction codes ME31L
    Transaction codes ME32K
    Transaction codes ME32L
    Transaction codes MN04
    Transaction codes MN05
    Transaction codes SCOT
    Hope this may help you.

  • Batch determination in Subcontracting order

    Hi,
    Can any one of you explain me the steps for doing batch determination for subcontracting orders. i am facing the same issue, but i dont know what steps to follow.
    our scenario is:  we do a GR against a Sub contracted PO using 101 mvt type and when i am trying to post the document, it's asking me to enter the batch for few components which are maintained as vendor consigned stock and in batches.
    is it possible to automate the process? can any body explain how to setup the customization for batch determination?
    thanks in advance,
    Kanth

    Follow the below steps.
    01. For movement type 543 "O" assign your search procedure T code : OMCG
    02. Maintain conditions record or strategy record.
    A1) Normaly we use batch determination at delivery level, because at the time of order material may or may not be created.for this material should be configured with batch and batch determination should be checked in sales views of material.
    A2) Batch Determination during order Creation.
    For this you need to maintain a Classes d for you Material. Depending on the Manufacturing process you can define the characteristics for your material.
    Ex: Purity for Medicines,  Resistance for Electric Items.
    You need to create a class (You might have to create a new class type) which incorporates the characteristic.
    First Create the Characteristic Using Ct04 and then using Cl02 create the Class  including this characteristic.
    Then in your material master Classification View Enter this class.
    Then Create a Batch for the particular plant and Stor Loc using MSC1N.Give the value of the characteristics in this batch.
    Then go to SPRO ->Logistics General ->Batch Management and maintain the Condition Technique (Procedure, Strategy Types and assignment to sales docs etc).
    Then Create the Batch Determination Record using VCH1.

  • Delivering plant's maintenance and determination on sales order

    Hi
    We would need to maintain delivering plant on vendor level for sales order but as this is not possible we might want to maintain it on article master data. Our biggest problem si the time perspective. It should be possible to maintain the plant so that it has a validity period. An article's delivering plant might hence change in the future and the sales order items that have a delivery time after this date should get the new plant. We have a huge amount of articles and a huge amount of sales orders so manual maintenance of each sales order item is out of question.
    Any suggestions for soving this? Amount of articles and sales order item is so big that manual maintenance is not possible. Sales order items are also created far to the future.
    Thanks and br
    Seija

    Welcome to SDN forum.
    Well, the delivering plant is proposed from the the ship-to party customer master.
    Provided the ship-to party is different from the sold-to party.
    So, if you have same partner numbers to ship-to party & sold-to party then preference will go to sold-to party.
    Say,
    Case1
    Sales Partner
    Customer Number
    Delivering Plant
    maintain in respective customer master
    SP - Sold-to Party
    ABC123
    ZY02
    SH - Ship-to Party
    ABC123
    ZY01
    In above case, the delivering plant ZY02 will be from sold to party.
    Case2
    Sales Partner
    Customer Number
    Delivering Plant
    maintain in respective customer master
    SP - Sold-to Party
    ABC123
    ZY02
    SH - Ship-to Party
    ABC321
    ZY01
    In above case, the delivering plant ZY01 will be from ship-to party.
    Regards
    JP
    Here I have assumed that delivering plant determination is happening on based on customer master

  • Free Goods not getting Determined at the Order Level

    Dear All,
    I have activated free goods settings and also maintained free goods master record for exclusive free goods.However when I am entering the main line item the second line item in the sales order which should contain the free qty is not coming,please advice what needs to be done.
    Kind Regards
    Atul

    Hi Jelena,
    Thanks for your post with this I could find out what was happening.The following is the analysis once I switched on the free goods determination at the order level and below was the system response.
    Diagnosis
         There are certain business transactions where it is not possible to
         determine free goods in the SAP standard system: reason 3
         Explanation of reasons
         1      Document category is not from sales order category (VBTYP <> 'C'
         2      Lower-level item
         3      Bill of material
         4      Product selection
         5      Configurable item
         6      Scheduling agreement/forecast delivery schedule
         7      Item with active ingredient management
         8      Item without schedule lines
    I had found that in my item category the structure scope was marked as A where it was exploding the single level bill of material.Once this configuration was turned blank which is no explosion the free goods were getting determined.
    Kind Regards
    Atul

  • Including down payment made to vendor in the internal order

    Hi all
    My requirement is like this.
    We use IM and IO(Capex orders) for procuring and capitalising assets. We are able to assign all the costs of procuring assets (both APC and incidental expenses to the internal order). We use purchase orders and assign the internal order while raising purchase order.
    Sometimes we do make Down payments(advances) without raising purchase orders. My question is how to include this down payment made in the internal order. We cannot assign any internal order while making the down payment. But, can we include this down payment made to vendor in the internal order(commitment) while making down payment or after that.
    FYI:I came to know that there is some functionality in Controlling (Project systems) where we can assign the down payment made to the internal order after making payment.But, i do not know how to do that.
    Pls somebody reply me.
    Thank you very much in advance.
    Regards,
    Vishnu
    VST-IT.
    Pls somebody answer my query.

    The functionality is available in Controlling. I dont know about PS.
    I need to know how to do it.
    Regards
    vishnu
    Pls anybody suggest me on this issue.

  • Several payments from one vendor into one payment order

    Hello,
    I would combine payments from one vendor into one payment order.
    I found in XK03 there is a tab in payment tab to set the voice individual payment but I cannot change it since is not an editable field.
    see image
    How can I change this?
    I need to do this change as a massive change for all vendors for a company code.
    Can you help me, please?
    Thank You

    Yes, What Harnish says is correct.
    Additional you can check in Vendor Master-Company Code Data-Payment Transactions Tab-Individual Payment
    Individual pmt should be un-ticked.
    Hope this will help you
    Regards,
    Deepak

  • Issues during Component Batch Determination for Process Orders

    Hi,
    I am encountering a strange issue during component batch determination of process order.
    1. During creation of process order, when I execute batch determination, systems does determination based on strategies we have set and when I click on Copy it gives an error
    "Log cannot be saved: Object/subobject not specified"
    Message no. BL201
    *Diagnosis
    Log save cancelled because at least one log contains no object or subobject.
    Object and subobject are needed to classify application logs because there are several log types. Only a few logs are managed in main memory at runtime, so this classification is not needed.
    If the logs are to be saved in the database, object/subobject must be specified for later retrieval.
    Procedure for System Administration
    Object/sub object can be passed when a log is created (function module BAL_LOG_CREATE) and changed with BAL_LOG_CHANGE.
    The possible values for object and sub object must be configured in transaction SLG0.*
    If I save the order with CRTD status and come back again in change mode and do determination, It works fine.
    Again when the order is in REL status and do the determination, It gives the same error.
    This happens only for a specific plant, In other plants batch determination works in all scenarios.
    I checked for all plant related Config for batch determination and coudn't find any discrepancies.
    Please advise how to resolve this issue. Thanks in advance for your help
    Regards,
    Aheesh

    There Is no direct solution for your requirement just try this work around.
    While defining the batch determination search strategy for process order in COB1, there is one column Quantity proposal where you can attach the Routines (This is written in ABAB code )  make use of this, define New Routines with ABAB help to fulfill your requirement. Try this if found useful award full points.
    Regards,
    Ajay Nikte

  • BOM Explosion needed on Delivery for Intercompany Stock Transfer Order

    Good afternoon,
    I have been researching the SDN and web for a solution to my problem to no avail so far.
    The business problem I need to solve is the requirement for our STPO process to explode certain BOM's that are transfered from one company/plant to another company/plant in order to record batch/serial # component information by the delivering plant on the delivery and verification of the batch/serial # in the receiving plant during MIGO processing of the delivery. This is needed by our Service Mgmt department in order to track servicable items within the Finished Good (medical devices industry).
    It appears on the SDN that a BOM can not be exploded on a non-Subcontracting PO (which would be ideal for us), but barring this problem, we are trying to have the BOM explode in the Delivery created from the STPO via the VL10B transaction.
    The STPO generates a Delivery doc with type NLCC and item category NLC. I have maintained the material master for the BOM material to have an Item Category Group of ERLA, and I have modified Item Category Determination in configuration in Logistics Execution for deliveries to include ERLA, usage V, and NLC as default item category. But, the deliveries generated from the STPO still do not explode, like what normally happens if the delilvery of the BOM was created from a standard Order.
    The components for the BOM need to be displayed on the Delivery (if not the STPO), so the cleark can record the Batch/Serial #'s for each component. Then when the receiving plant posts the Goods Receipt for the delivery a user exit we have (based on movement type and material document code) builds a Service Mgmt table that is then processed to De-install the BOM and components from the former plant and install the BOM and components at the receiving plant (and then subsequently at the ultimate customer's location when a normal sale is made), generating a new Functional Location.
    Has anyone here had to do anything like this before? Would any of you have any ideas on how this BOM explosion might work on the PO or Delivery?
    Thanks in advance.
    Scott.

    No responses to this question.
    Subject dropped.

  • Automatic Batch Determination   in Production order

    Dear All,
    We are using automatic batch determination is based on FIFO (first Mfg first out) for components..After releasing the order.
    I have maintained Batch Class in all the materials which are used as a all material special Characteristic LOBM_HSDAT as a one of the class characteristic. as we want batch determination  on GR date for few material and for few material LOBM_VFDAT for self life material and its class.
    Then create Sort Rule CU70 mainatained the same LOBM_HSDAT in it. and one with LOBM_VFDAT.
    Then create Batch serch Strategy (USE T.Code COB1- search strategy CO01the respective sort rule and selection critoria.for All ROH HALB and Finish material.
    In Material Master of all component in MRP 2 view select value 3 (Automatic Batch Determination) for BATCH ENTRY. All ROH HALB and Finish material
    After mainting above all prerequisite I should able to do the Automatic Batch Determination as per my selection Rule.
    But Automatic Batch Determination  in Production order after release is not working.
    Please need your help.
    Regards,
    Manish
    Edited by: manish gurnule on Dec 30, 2008 5:26 AM

    Dear,
    Define the batch determination search strategy for process order in COB1 with sort rule in CU70.
    On the initial screen of your application choose Logistics>centrel function>batch management>Batch determination>For process order -->Batch search strategy --> Create.
    On the initial screen of your application choose Batch search strategy -->Create.
    Choose the strategy type, say choose co02
    Choose the key combination-
    Enter the required dat-->say plant ,production order type, product,valid from and component for which you want to have this
    Choose Selection criteria push button. Choose a sort sequence.
    If no values have been entered, enter the selection class and the characteristic values.
    Go back to the screen on which you create a batch search strategy.
    Choose Sort if required(it should be defined earlier(in CU70- here you are giving the charateristic name on which you want to sort)
    For component you need to use MBC1 with search stratgey as ME01 for your plant movement type and material and assign the sort rule and search procedure here.
    Check also in COR4, for the combination of plant and order type...you have selected search procedure-CO0001
    Batch management> Batch serach procedure allocation and check activation
    T.Code to be looked specifically OMCG , CORC
    Hope it will help you.
    Regards,
    Madhu

  • Return Purchase Order (MVT #161) Sales Area Determination on Purchase Order

    Hi,
    I am working on return purchase order (Purchase order with return check box ON at item level) and creating outbound delivery with VL10B and doing PGI to vendor.
    Can someone help to figure out how sales area (sales org/distribution channel/Division) gets determine on purchase order item level "Shipping" tab ?
    In other word, as shown below for return PO, I have sales area 1180/50/01. I want to determine different sales area.
    Thanks.
    Regards,
    Ravi.

    However, you can enhance the system to use multiple sales areas for return by using retail sales area. The below notes give more details:
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361…
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361…

Maybe you are looking for

  • There was a problem reading this document (135)

    I am running on Windows XP SP3 32 bit using reader 9.3.3 I have a PHP application which has been creating PDF documents successfully for several years, but now I am getting one particular document which I cannot read at all. All I see is the followin

  • BUG & WORKAROUND: iTunes 8 crashes on Windows Vista and Windows Server 2008

    With the UAC enabled, iTunes 8 will crash with the error below if the syncing device (i.e. iPod) is docked. If you "Run as Administrator" the error does not occur, but then you will run into random "Err = -5000" errors when downloading items (mostly

  • What do you mean by 'it wont be a classic' ?

    Thanks for your imput. Im changing over from a pc so please excuse my ignorance, but what do you mean when u say 'it wont be the classic' ? I think youre refering to the fact that I was asked which group I wanted to submit my question to and I chose

  • F110 Duplicated record on tables - no paymen document on Cheque

    Hi gurus,             Please help with the following problem: 1. I run f110 to make payments tru cheque, but when I print them I don't see the payment doucment number, then I check the payment proposal and I see a F110xxxxxxxx something document numb

  • Encoder Speed with NI 9215 module and cDAQ-9172

    I've a NI cDAQ-9172 with the NI9215 analog input module, and I want to estimate the speed with an optical encoder (OMRON E6A2-CW3C). My approach was, making a comparison with a point in the midle of the high of the signal, ie 4V, making this way