Field settings for MIGO without Purchase order - Mvt type -501

Dear Guruz,
in my present situation when i do MIGO with mvt type 101 i have to give delivary note as required entity.  But now i have a requirement where i have to create MIGO without purc doc  i.e mvt type 501.Also i ahve to provide the delivary note in the same.But when i am trying, it i see that The delivary note field is not present in the header part of migo(GR-others). field name: LFSNR. actually my requirement is i have to do the migo with a delivary note that is made mandatory for mvt type 501 also. I tried spro settings but could'nt find any solutions. Do i have to go out of SAP standard or is there any way that  i am unable to come up with as per standards?
pl discuss

Dear Krishna,
In the 501 movement type there is a field available at the header level called as the recipient. Make the field mandatory for the 501 movement type with the following settings:
SPRO - > Materials Management - Inventory Management and Physical Inventory- Goods Receipt -Define Screen Layout
In this the screen layout can be changed under the general data. Make the recipient field mandatory. In this field the delivery challan can be maintained.
In case the client want to change the name of this field from the recipient to "Delivery note" ask your abaper, The functionality is possible in SAP.
hope it solves the problem

Similar Messages

  • IR of WITHOUT PO (WITH MVT TYPE 501)

    HELLO EXPERTS,
    when I go for GR without PO with movement type 501, i dint find any delivery note field in MIGO SCREEN.
    so can anybody help me how to get it.
    If it is not possible than how to do MIRO (invoice verification), with any reference document, like delivery note,vendor or something else.
    because my project is in GO-LIVE phase, there is some GR WITHOUT PO.
    so if I don't have any reference document, my data entry will get doubled (GR,than IR)
    SO can anybody suggest me , if there is some other way..so that while i m going for IR data is not required,i e. there is some reference document from which I can copy my data.( like PO BASED IR )
    kindly help me out.
    regards..
    Raghu

    Hi
    You can upload the initial balance of inventory (GRed but not Invoiced) in MM and let FI upload initial vendor balances (to be paid to vendors - open invoices). There after FI can match these two  (intial upload accounts). Or else do GR with mvt type 501 and then post FI invoice - debiting consumption account and crediting vendor account. But result is same as explained above.
    Thanks

  • How to setup a release strategy for store generated purchase order

    Hi there,
    Does anybody know how to setup a release strategy for store/plant generated purchase order? I have a request from our client, but I never cross this before. Please help and let me know the step with every single detail.
    Greatly thank for your help.
    Kind Regards,
    2tea

    Please go thru the below Release Procedure and check whether you have maintained all the settings properly.
    PO RELEASE STRATEGY
    The release code is a two-character ID allowing a person to release (clear, or approve) a requisition or an external purchasing document. The release codes is basically controlled via a system of authorizations (authorization object M_EINK_FRG).
    Use SE12, structure CEKKO to check all the fields available for controlling the Purchase Order.
    e.g. If the total value for the Purchase Order exceeds 10,000, release strategy 01 is assigned to the Purchase Order. There is only one characteristic created in this example. For controlling the Purchase Order type, create characteristic for CEKKO-BSTYP and the value NB.
    CT04 - Create Characteristic e.g. NETVALUE
    Click Additional data Table name CEKKO Field name GNETW and press enter
    (for currency dependent field, you are prompt to enter the currency which the system then converts the currency of the Purchasing document into this currency)
    In the Basic data (X refers to tick),
    X Mutliple values
    X Interval values
    In the Value data, in the Char. value column, type >10000 and press enter
    Save your data
    CL02 - Class
    Class - Create REL_PUR
    Class type - 032
    Click Create
    Description - Release Procedure for Purchase Order
    In the Same Classification section, click Check with error
    In the Char. (characteristic) tab, type NETVALUE to assign your characteristics to the class
    OMGS - Define Release Procedure for Purchase Order Type
    Release Group - New entries
    Rel.group Rel. Object Class Description
    02 REL_PUR Rel. Strategy for PO
    Release codes - New entries
    Grp Code
    02 01
    Release indicators
    Release indicators Release Description
    0 Blocked
    1 X Release
    Release Strategy
    Release group 02
    Rel.strategy 01
    Release codes 01
    Release status 01
    Classification Choose your check values
    OMGSCK - Check Release Strategies
    (make sure there are no error messages)
    Once the Purchase Order is not release, buyers will not be able to print the Purchase Order.
    Goods Receipts will be shown with Message no. ME 390 - Purchasing document XXXXXXX not yet released.
    In 4.6c, Purchase Order with Release Strategy have a tabs at the end of the Header. This allowed the buyers to check the release status of the Purchase Order.
    The person with the release authorization have to use ME28 to release the Purchase Order.
    Regards,
    Ashok

  • BAPI needed  for  Goods Receipt Purchase Order(Transaction : MIGO)

    Hi all,
    We have a requirement where in we need to post the documents throuh BAPI for Goods receipt Purchase order(Transaction: MIGO).
    Any inputs on this..is highly appreciable...
    thanks in advance...
    regards..
    prathima.

    Hi,
    use 'BAPI_GOODSMVT_CREATE'
    Check this sample.
    code
    REPORT ZRICH_0001 .
    Structures for BAPI
    DATA: GM_HEADER TYPE BAPI2017_GM_HEAD_01.
    DATA: GM_CODE TYPE BAPI2017_GM_CODE.
    DATA: GM_HEADRET TYPE BAPI2017_GM_HEAD_RET.
    DATA: GM_ITEM TYPE TABLE OF
    BAPI2017_GM_ITEM_CREATE WITH HEADER LINE.
    DATA: GM_RETURN TYPE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    DATA: GM_RETMTD TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    CLEAR: GM_RETURN, GM_RETMTD. REFRESH GM_RETURN.
    Setup BAPI header data.
    GM_HEADER-PSTNG_DATE = SY-DATUM.
    GM_HEADER-DOC_DATE = SY-DATUM.
    GM_CODE-GM_CODE = '04'. " MB1A
    Write 971 movement to table
    CLEAR GM_ITEM.
    MOVE '412' TO GM_ITEM-MOVE_TYPE .
    MOVE 'Q' TO GM_ITEM-SPEC_STOCK.
    MOVE '3800533484' TO GM_ITEM-MATERIAL.
    MOVE '1' TO GM_ITEM-ENTRY_QNT.
    *MOVE 'PC' TO GM_ITEM-ENTRY_UOM.
    MOVE '1060' TO GM_ITEM-PLANT.
    MOVE '0007' TO GM_ITEM-STGE_LOC.
    *MOVE '0901' TO GM_ITEM-MOVE_REAS.
    MOVE 'P203601001' TO GM_ITEM-WBS_ELEM.
    MOVE 'P203601001' TO GM_ITEM-VAL_WBS_ELEM.
    APPEND GM_ITEM.
    Call goods movement BAPI
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
    GOODSMVT_HEADER = GM_HEADER
    GOODSMVT_CODE = GM_CODE
    IMPORTING
    GOODSMVT_HEADRET = GM_HEADRET
    MATERIALDOCUMENT = GM_RETMTD
    TABLES
    GOODSMVT_ITEM = GM_ITEM
    RETURN = GM_RETURN.
    IF NOT GM_RETMTD IS INITIAL.
    COMMIT WORK AND WAIT.
    CALL FUNCTION 'DEQUEUE_ALL'.
    ELSE.
    COMMIT WORK AND WAIT.
    CALL FUNCTION 'DEQUEUE_ALL'.
    ENDIF.
    WRITE:/ GM_RETMTD.
    LOOP AT GM_RETURN.
    WRITE:/ GM_RETURN.
    ENDLOOP.
    [/code]
    Also check the Bapis
    BAPI_PO_CREATE --> To create Purchase Order
    BAPI_PO_CHANGE --> To change Purchase Order
    BAPI_PO_GETDETAIL --> Todisplay Purchase Order
    Regards,
    Raj.

  • Capture Excise Invoice w.r .t  Without Purchase order

    HI
    When i try to post J1IEX i.e Capture Excise Invoice w.r .t  Without Purchase order i am getting the following error message :
    Balance in transaction currency
    Message no. F5702
    Diagnosis
    A balance has occurred in transaction currency 'INR' with the following details:
    Exchange rate '00', amount '            1.000-' and currency key 'INR'.
    The data in the transaction currency were transferred from the calling application.
    System Response
    Your data cannot be processed in FI.
    Procedure
    The error is probably in the calling application
    Please help me to solve this issue
    Thanks & Regards,
    Mani

    Hi,
    check in cin-basic settings- co code settings , there will be a check box "Rounding duty on procurement" , pls tick mark this and check it..
    otherwise check in debit / credit  selection for EWPO trans type . as per blw in - Logistics General  Tax on Goods Movements  India  Account Determination  Specify Excise Accounts per Excise Transaction
    EWPO           Credit     CENVAT clearing account
    EWPO           Debit     RG 23 AED account
    EWPO           Debit     RG 23 BED account
    EWPO           Debit     RG 23 ECS Account
    EWPO           Debit     RG 23 NCCD account
    EWPO           Debit     RG 23 SED account and ECS and SE CESS
    Edited by: Jayakumar Raju A.S on Aug 19, 2009 6:36 PM

  • Goods Recipt without Purchase Order

    Hi Experts,
    Can any one Explain me the Process of Goods recipt without Purchase order.
    1) What document type i need to select ?
    2) Does i need to process MIRO for these ?
    3) If it is a Usual material which i previously procuring throgh purchase order, How it reflect in Stock ?
    4) Where can i find the difference of the Material which has purchased through Purchase Order and without Purchase Order ?
    5) Does it affect usual stock ?
    6) How to follow Vendor Returns for this ?
    Plz Plz Give ur Valuable inputs on this.
    Best Regards
    Javeed

    1) What document type i need to select ?
    You don't need a document type, just use Tcode MIGO, then select mouvement Type 501
    2) Does i need to process MIRO for these ?
    No, there is no FI document.
    3) If it is a Usual material which i previously procuring throgh purchase order, How it reflect in Stock ?
    If your material valuation is "V" : overage price.  your stock will be devaluated: Total value of stock will be inchanged, whereas the qty will increase, So the material net price will decrease
    4) Where can i find the difference of the Material which has purchased through Purchase Order and without Purchase Order ?
    You can lanayse goods mouvement through Tcode MB51, Also you can Tcode MR51 for analyzing.
    5) Does it affect usual stock ?
    Yes, if you don't use Split valuation, your stock will be homogeneous.  So if you wish to keep separately the free goods you have to use split valuation
    6) How to follow Vendor Returns for this ?
    Use MIGO, mouvement Type 502

  • Can anyone give me user exit name for create/update purchase order partners

    Hello guys
      Can anyone gives me user exit name for create/update purchase order partners?
      Requirement is to insert/update partner when SC flag is checked while creating/updating purchase order (ME22N / ME21N)  by using user exit.

    hi,
    check these exits.
    Transaction Code - ME21N                    Create Purchase Order
    Enhancement/ Business Add-in            Description
    Enhancement
    MEQUERY1                                Enhancement to Document Overview ME21N/ME51N
    MEVME001                                WE default quantity calc. and over/ underdelivery tolerance
    MM06E001                                User exits for EDI inbound and outbound purchasing documents
    MM06E003                                Number range and document number
    MM06E004                                Control import data screens in purchase order
    MM06E005                                Customer fields in purchasing document
    MM06E007                                Change document for requisitions upon conversion into PO
    MM06E008                                Monitoring of contr. target value in case of release orders
    MM06E009                                Relevant texts for "Texts exist" indicator
    MM06E010                                Field selection for vendor address
    MMAL0001                                ALE source list distribution: Outbound processing
    MMAL0002                                ALE source list distribution: Inbound processing
    MMAL0003                                ALE purcasing info record distribution: Outbound processing
    MMAL0004                                ALE purchasing info record distribution: Inbound processing
    MMDA0001                                Default delivery addresses
    MMFAB001                                User exit for generation of release order
    MRFLB001                                Control Items for Contract Release Order
    MELAB001                                Gen. forecast delivery schedules: Transfer schedule implem.
    AMPL0001                                User subscreen for additional data on AMPL
    LMEDR001                                Enhancements to print program
    LMELA002                                Adopt batch no. from shipping notification when posting a GR
    LMELA010                                Inbound shipping notification: Transfer item data from IDOC
    LMEQR001                                User exit for source determination
    LMEXF001                                Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001                                Customer-Specific Source Determination in Retail
    M06B0001                                Role determination for purchase requisition release
    M06B0002                                Changes to comm. structure for purchase requisition release
    MEFLD004                                Determine earliest delivery date f. check w. GR (only PO)
    MEETA001                                Define schedule line type (backlog, immed. req., preview)
    ME590001                                Grouping of requsitions for PO split in ME59
    M06E0005                                Role determination for release of purchasing documents
    M06E0004                                Changes to communication structure for release purch. doc.
    M06B0005                                Changes to comm. structure for overall release of requisn.
    M06B0004                                Number range and document number
    M06B0003                                Number range and document number

  • How to create a Inbound delivery type for a special  purchase order type

    Hi,
    I try to create a special Inbound delivery type for a special purchase order type (a transfer purchase order).
    In SD module, I can créate a special outbound delivery and precise the sale order type, but I don't manage to do it for a Inbound delivery type.
    Do you know if i can do it without specifiq?
    Regards,
    Roselyne

    Hi Roselyne,
    What you experienced is standard system behavior. Inbound delivery type is uniquely assigned to confirmation control key. You can only specify confirmation control key on item level in PO. The assignment of Delivery type can be seen in the following table:
    T163D
    IBTYP EBTYP LFART  RETDLV
    1        AB                      X
    2        LA        EL           X
    3        GW       EG
    The field T163D-IBTYP is checked in different programms. For example in programm RM06ENAB (TA: ME92F). If you insist to customize the determination of delivery type by PO type, I strongly suggest you discuss with the Application consultants before making the modifications to ensure it won't impact other areas.

  • Vendor Returns Without Purchase Order

    Hi Experts,
    Is Vendor Returns doing Without Purchase Order and without doing any reversal of material document  possible or not, please provide the details.
    Regards,
    Vivek.N.V

    Hi,
    It is not possible to do the vendor return without any document reference. You have to do the vendor return with reference of purchase order (161 Mvt.type), material document reference (122 Mvt.type) ,Reference to Delivery note (122 Mvt.type).
    1) If the Purchase Order / GR is known then one can use Return delivery (122 Mtype).
    There are two options
    A) Return delivery Without SD Delivery
    B) Return delivery With SD Delivery
    2) In case purchase Order / GR is not traceable then one can send material back using "RETURN Purchase Order " Functionality (161 Mtype)
    Again there are two ways
    A) Purchase Return with Delivery
    B) Purhcase Return Without Delivery.
    Although as per my knowledge it meets all business requirements , but just wondering if there is another Process also available in SAP to return material back to Supplier.(May be for some specific business Cases).
    Edited by: venkatesh kumar on May 8, 2010 11:12 AM

  • Who is using SRM Invoice without Purchase Order?

    Hello,
    I want to implement SRM Invoice without Purchase Order as a method for our employees to enter their own non-purchase order invoices into SRM instead of having Accounts Payable enter them into R/3.  The invoices would then go through financial approval workflow before posting in R/3 and being eligible for the next appropriate cheque run.
    This will be a change to our corporate policy and I would like to connect with other companies who are allowing employees to enter their own invoices to find out whatever information or suggestions they can pass along to me.
    Few facts:
    We are running SRM 5.0 Classic with R/3 ERP 2005.
    The invoices are for $3,000 or less.
    We have Head Office plus many remote locations.
    We would still send the invoices to Accounts Payable for retention.
    Thank you,
    Corinne Taylor

    Hi Taylor,
    We can enter the Invoice with out purchase Order also. But you need Invoice management system in SRM.
    The Below document may help you and guide you further how to achieve.
    Technical Description and Configuration Information
    Purpose
    The Business Package for Invoicing Clerk provides the possibility to use the Invoice Management System in the Portal. The Invoice Management System (IMS) allows you to process incoming invoices
    (with and without purchase order) on the basis of exceptions. 
    Prerequisites
    This document is intended to guide an administrator through the steps required to install and configure the Business Package for Invoicing Clerk. Previous knowledge of SAP architecture and systems, as well as a fundamental knowledge of the Internet and associated technologies are prerequisites.
    To use the Business Package for Invoicing Clerk, the SAP SRM Server 5.5 must be installed in one of following ways in SAP ERP 2005:
    ·        SAP SRM Server as an add-on to SAP ECC Server (product instance SAP ERP 2005 – SAP ECC) to run Supplier Relationship Management (SRM) in one client of the ERP system.
    ·        SAP SRM Server as a separate component to SAP ECC Server.
    It is essential that you familiarize yourself with the contents of the corresponding Master Guide before starting to install the Business Package! All relevant system prerequisites are listed in the Master Guides.
    You can find these guides for mySAP ERP and mySAP SRM on the SAP Service Marketplace at service.sap.com/instguides ®Installation & Upgrade Guides ® mySAP Business Suite Solutions:
    ●      mySAP ERP ® mySAP ERP 2005 ® Planning
    ●      mySAP SRM ® Using SRM Server 5.5
    For more information on configuration, see SAP Solution Manager ® mySAP ERP 2005  ® Roles for the SAP NetWeaver Portal  ®Invoicing Clerk. See also, mySAP SRM configuration information in SAP Solution Manager: Configuration ® mySAP SRM 5.0 ® Basic Settings for mySAP SRM.
    See SAP Note 731386, Import of business packages with SAP NetWeaver. This note describes how to import business package EPA files into the SAP EP and how to install business package SCA files using the Software Deployment Manager.
    Integration
    The Business Package for Invoicing Clerk provides intranet/Internet access to several integrated backend systems. These include:
    ·        SAP SRM Server 5.5
    ·        SAP ECC 6.0
    ·        SAP Business Information Warehouse (BW) 7.0 (BI Content 7.2)
    Prior to beginning your installation, you should establish which components are
    required in your system landscape.
    Architecture
    The architecture of the business package is represented in the figure below:
    Landscape: Business Package for Invoicing Clerk
    Process Flow
    Roles, Worksets, Pages and iViews
    The following objects are available:
    Role Invoicing Clerk
    com.sap.pct.erp.invclerk.invoiceclerk
    Workset: Invoicing
    com.sap.pct.erp.invclerk.invoicing
    Invoice iView
    com.sap.pct.erp.invclerk.create_invoice
    Credit Memo iView
    com.sap.pct.erp.invclerk.create_creditmemo
    Subsequent Credit iView
    com.sap.pct.erp.invclerk.create_subcredit
    Subsequent Debit iView
    com.sap.pct.erp.invclerk.create_subdebit
    Invoice/Credit Memo iView
    com.sap.pct.erp.invclerk.search_invmemo
    Invoice Management iView
    com.sap.pct.erp.invclerk.bbp_inv_main
    Invoice Post Processing iView
    com.sap.pct.erp.invclerk.invpostpro
    Related services iView
    com.sap.portal.navigation.worksetmap.RelatedServices
    Document Overview iView
    com.sap.pct.erp.invclerk.doc_overview
    Document Quick Access iView
    com.sap.pct.erp.invclerk.doc_qaccess
    Excessive Invoice Document iView
    com.sap.pct.erp.invclerk.invoice_report
    Workset: Reports Overview
    com.sap.pct.erp.invclerk.reporting
    Reports Overview
    com.sap.pct.erp.invclerk.reports
    Workset: Service Map
    com.sap.pct.erp.invclerk.service_map
    Service Map iView
    com.sap.pct.erp.common.servicemap
    Thanks & Best Regards
    Girisha M S

  • Receipt material without purchase order

    Dear ALL,
    We want to create material receipt not without purchase order and try it by movement type 501 and its created. but problem is if material moving average is 0 then system post material without any account entry.  now i want system restrict to user if value is 0 for posting.
    Regards,
    Mukesh

    Hi.
    Use the following logic in the system.
    At the time of the creation of the material document pass the material number in the MBEW table with the entries as :
    Material
    Valuation area = equal to the plant number
    check the material price = moving average or standard price.
    in case both the material prices are  0 then display the error message in the MIGO screen. It will stop posting the 501 movement type.
    I hope this helps

  • Goods receipt through Inbound delivery for Sub-Contracting Purchase order

    Hi
    I am trying to do goods receipt for the inbound delivery /shipping notification created for a sub -contracting Purchase order. The Finished product and the component part are batch managed, When I try to perform PGR in VL32N , I am getting a blank screen as error message and Goods receipt is not getting triggered . I checked for OSS note and found 645119 close to my issue but not an exact match . We are in ECC 6.0 with EHP 4. Can some one clarify whether it is possible to post GR through inbound delivery for a Subcon Purchase order .
    Thanks in advance for your immediate response.
    with regards,
    Joseph Anand B

    Hi, The issue may be due to this - the component is batch managed but the batch data is blank in the component list of the Purchase Order Item. Or a batch is maintained in the PO item component list but the stock for the same batch is not available with Vendor, i.e. stock with some other batch may be available.
    In a receipt for Sub-cont PO, 101 happens for FG and 543 happens for component. But there is no option to provide the component details in a delivery. So in standard system, when 101 happens via a delivery, 543 will be posted in the background. So any error in posting 543 will result in a blank screen without any error message.
    You can fix this by maintaining correct batch in the PO component list.
    But there is another issue - you cannot do 'cancel posting' and 'return delivery' for this receipt. Only you can reverse the inbound delivery and you should know that the  recevied stock shouldn't have been processed to do reversal of inbound delivery.

  • Making RFQ mandatory for creation of purchase order

    Hi,
    I need to set up the following:
    1. For specific purchase order document types, RFQ should be mandatory i.e. it should not be possible to create purchase order before RFQ is created.
    2. Purchase orders can be created only if RFQ is approved.  How can i set up the release strategy in RFQ?
    Thanks in anticipation of your reply.

    Hello Sameet,
    1. You can use default parameter EVO to make the RFQ manadatory for purchase order. In the parameter you need to flag mark "reference to reference document " indiactor on Fast processing tab and assign this parameter to the user profile.
    2. For setting up RFQ approval process, please follow the steps:
    You must perform the following steps:
    1.  Create characteristics and classes
            For more on this topic, see Edit Characteristics and Edit Classes.
    Note
    If you wish to link your release procedure to workflow, you must perform steps 2 and 3. You make these settings in Customizing for Business Workflow (Basis -> Business Management).
    Otherwise, continue with step 4.
    2.  Define organizational plan
            For more on this topic, see Edit Organizational Plan.
    3.  Assign standard tasks and activate event-receiver linkage.
            For more on this topic, see Perform Task- Specific Customizing.
    4.  Set up release procedure for RFQs
        a)  Create release group
        b)  Create release code
        c)  Create release indicator
        d)  Create release strategy
    Hope this helps
    Regards
    Arif Mansuri

  • Don't want a Goods Receipt PO without Purchase Order

    Hello Experts,
    I am looking for a solution that Goods Receipt PO must be restricted as no Goods should be received without Purchase Order.
    Is it possible ?
    Help Required ....
    Thanks & Best Regards,

    Hi
    This restriction is possible only by the 'SBO_SP_TransactionNotification' Stored procedure.
    You can learn more about this stored procedure from the following link:
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e991e2b9-0901-0010-0395-ef5268b00aaf]
    The following is the code which restricts GRPO created without PO
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    go
    ALTER proc [dbo].[SBO_SP_TransactionNotification]
    @object_type nvarchar(25),     -- SBO Object Type
    @transaction_type nchar(1),   -- [A]dd, <u>pdate, [D]elete, [C]ancel, C[L]ose
    @num_of_cols_in_key int,
    @list_of_key_cols_tab_del nvarchar(255),
    @list_of_cols_val_tab_del nvarchar(255)
    AS
    begin
    -- Return values
    declare @error  int    -- Result (0 for no error)
    declare @error_message nvarchar (200)   -- Error string to be displayed
    select @error = 0
    select @error_message = N'Ok'
    IF (@object_type='20')
    BEGIN
    /* Purchase Delivery Note (Goods Receipt PO)*/
    if (@transaction_type='A')
    BEGIN
    IF (SELECT max(ISNULL(T0.BaseEntry,-1))  FROM PDN1 T0 WHERE T0.DocEntry = @list_of_cols_val_tab_del) != -1
    BEGIN
      set @error = 0
      set @error_message = N'Ok'
    END
    ELSE
    BEGIN
        set @error_message='Goods Receipt PO cannot be created directly. Copy from PO'
        set @error=1 
    END
    END
    END
    -- Select the return values
    select @error, @error_message
    end

  • Material Return from 542 movement type without purchase order

    HI Expert
    I have a problem regaring material return from vendor through 542 mov type against purchase order.
    when i transfer material to vendor with mov type 541. and after grv if we return material from vendor against purchase order.
    system doesnot allow to return material against purchase order. it allows mov type 542 for returning material from venodr without pruchase order.
    Suppose we have 10 quality for a component to transfer vendor we take grv and issue 5 qty through 543 move type automatically. if we want to take return 5 remaining qty from vendor against purchase order .
    system doesnot allow to return component from vendor against purchase order.
    but allow  to return component from vendor without purchase order.
    vendor stocks becomes less but purchase order still open for open quantity.
    how we could control vendor's returing material with the reference of purchase order after grv.
    with regards
    sanjay agrawal

    HI,
    Are you creating return Po for subcontracting vendor with item category L.?
    we used movement type 541 to send material to vendor ,now you want movement type 542 in system means take back from vendor?
    I don't think so it will make work and make any sense
    why you are not adjust your component with subcontracting adjustment in sap mm
    check following link
    [http://help.sap.com/saphelp_470/helpdata/en/4d/2b908943ad11d189410000e829fbbd/content.htm]
    Regards
    Kailas Ugale

Maybe you are looking for

  • Not set configure retention policy to recovery window of 7 days

    HI all, if parameter "" configure retention policy to recovery window of 7 days "" is not set then i am taking weekly and inreamental cumulative backup any effect of backup i think in this case delete obsolete is not working. currently parameter set

  • Some DCs are not available locally - NWDS error while importing Track confg

    Hi, We have configured NWDI in our landscape. As per the requirement of the developers, we have created a new product and software component (SC) in SLD, as they don't want to use any standard components. The same has been synced with CMS using updat

  • Iweb drop down forms

    I am new to iweb, but longtime mac user. I have a little trouble having our webmaster update our bakery's site. I was wondering if iweb can fulfill this need for me to update and if a drop down form (which is incredible useful to brides) can be achie

  • I have a hung up app that will not update or delete that drains the battery. How do you fix this?

    I chose to update a app. It says waiting under the apps icon but will not update. I click on it to pause the update but it still drains the battery. I try to delete the app but it won't let me. What can I do?

  • XFi, Vistax64, CMSS in Media Cen

    Hi All, I have an XFi Extreme Gamer, with 7. Creative Speakers. I am running Vista x64 Ultimate. When I test speakers in sound settings I get sound from all speakers. My problem is I have set CMSS to upmix, but in Media Centre playing 5. DVD's (or St