No delivery type for returns processing assigned to item 00010

Dear all,
I want to create a Return Purchasing Order.
I have got an error: No delivery type for returns processing assigned to item 00010
Please help to to find out problem. What do i have to check?

Hi,
Regarding the error ME392, please check the customizing under
the IMG path:
Materials Management
-> Purchasing
   -> Purchase Order
      -> Returns Order
         -> Store Return
Here, for the supplying plant in your Cross-company-code return, you
need to set up a delivery type.
In order to know the supplying plant, please, open the vendor master
data (XK03).
Select the 'Purchasing data' section.
Once you are in the screen SAPMF02K 310 follow the menu path 'Extras' ->
'Add.purchasing data'.
Here you will see the Plant that is linked to your vendor.
So, now, for this Plant, under the IMG path mentioned before,
set a a delivery type for the store return (NCR - Ret.StTranspOrd CC
can be used, for example).
Best Regards,
Arminda Jack

Similar Messages

  • Choose the Inbound delivery type for STO process

    Hey guys,
    I am struggling with this process.
    For STO process we are going to use SPED output type to create the Inbound delivery automatically after O/B delivery PGI.
    The thing is I do not want the I/B Delivery type to be EL. Cause we are using HUM. I want it to be HID.
    I can't find where in config I can't set up the system to choose HID rather than EL.
    Does anyone have an idea?
    Cheers Guys

    Hi,
    Thanks for your answer. But  what you are describing is more for PO (external purchase) not STO.
    What I want is to control the I/B delivery type that get created after PGI of the O/B delivery via the output type SPED (special function).
    Cheers
    Julien

  • Create 2 different delivery types for one sales order

    Hi,
    When sales agent is placing sales order at customer site, customer declares as well products or returned packages he would like to return. our business need is to combine all items (return products,  return packages and ordered items) into one sales order.
    However, we would like to split the sales order into 2 different delivery types. Sales order customizing dictates only one default delivery type per order.
    We can set up split criteria via copy control according to item category, but how can we intervene during creation of deliveries and set up a rule to determine different delivery type then default for return items ?
    Thanks,
    Assaf tzur

    Dear Assaf,
    Through copy control settings you can create two delivery types for single sales order but you have to select the delivery type manually while creating delivery.
    If you want automatic process then you need go for some Zdevelopment with the help of ABAPer.
    I hope this will help you,
    Regard,
    Murali.

  • 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.

  • Implementing a custom process type for a process chain

    I have created a custom process type for a process chain that allows a user to send back a failure or error status when calling an ABAP program.  I copied the class that is used from the existing ABAP process type as a template. 
    The process type works fine, I just cannot find out how to recreate the documentation for my custom type using free text. When you maintain the process type there is a field for the documentation object, but I can't find where in SAP to implement this.
    I have tried looking at the document maintenance using SE61 and looking into the class documentation from SE24 with no success.  The only detail that is provided in the SAP help portal is:
    "If necessary, assign a documentation type and a docu. object to the process type. The docu object can be called up via F1 in the process chain maintenance overview tree. "
    Does anyone out there have any experience with this that can push me in the right direction?
    Thanks,
    Eddie

    You can create and maintain system documentation from transaction SE61. This is how you would create documentation for a process type or if you wanted to create a book. <a href="http://help.sap.com/saphelp_nw04/helpdata/en/a4/d47df949e111d189730000e8322d00/frameset.htm">more info</a>
    Here are the steps to make your documentation similar to that used for the ABAP process type:
    From transaction SE61:
    -Create a document of type TX (either from scratch or by copying RSPC_ABAP which is used for the SAP-delivered ABAP process type)
    -Make any changes you need. I suggest downloading the document in ITF format and make the changes in a basic text editor and then uploading your changed document. It's a little easier to tell what is going on that way.
    Now on to transaction RSPC.
    Once you save your changes, go to RSPC and select on any chain you have to get into the "plan and check views of process chain maintenance." Then just go to Settings -> Maintain Process Types.
    From here you can select your process type, select TX from the document type dropdown, and then enter the name of your document in the docu. object field.
    Hope that helps.

  • Different delivery type for inbound delivery

    Hi,
    Somebody knows if it is possible to assign diferent delivery types for inbound delivery from differents document type of PO?
    for example, delivery type EL for "NB" PO and delivery type "ZEL" for UB (Stock Transp. Order). 
    thanks
    RZ

    Dear,
    Check: Different inbound delivery types from PO conf control keys
    Regards,
    Syed Hussain.

  • T-SQL and CLR types for return value do not match

    Hi I am trying to create a CLR function to call a webservice, the CLR function return data type is double, whether I try
    to create this as a table valued funcion or a scalar to return a distance travelled value I am receiving the error below. I've tried changing data types around in the CLR side and the SQL side but keep receiving the same error message, any help would be appreciated,
    Thank you,
    [Microsoft.SqlServer.Server.SqlFunction(Name = "DistanceCalc")]
    public static Double DistanceCalc(Double SrcLat, Double SrcLong,
    Double DestLat, Double DestLong)
    MileageWS ws = new MileageWS();
    ws.Url = "http://test.isp.ca/Distance.asmx";
    int intUom = 0; // 0 = Mile, 1 = KM
    RouteType RouteMethod = RouteType.Practical;
    Requester RequestedFrom = Requester.LinkRoute;
    Double distance;
    distance = ws.GetDistanceInfoForLonLat(SrcLat, SrcLong, DestLat, DestLong, intUom, RouteMethod, RequestedFrom);
    return distance;
    CREATE FUNCTION DistanceCalc
    @SrcLat as float, @SrcLong as float,
    @DestLat as float, @DestLong as float
    RETURNS TABLE (Distance float)
    External NAME CLRfunctions.RIFunctions.DistanceCalc
    GO
    Error received when try to Create function ...
    1, Level 16, State 2, Procedure pcMiler, Line 6
    CREATE FUNCTION for "pcMiler" failed because T-SQL and CLR types for return value do not match.

    You defined at table-valued CLR function, but I think you meant to define a scalar CLR function. That might be the cause of the error.
    RETURNS TABLE (Distance float)
    should be
    RETURNS (Distance float)

  • Event Used For Return Processing Through Transaction Code-FP09

    Hi Experts,
    I am facing the following problem in FP09:- After creating a return lot, when i provide return reason code for returning payments, event 1073 is not getting triggered.
    So, can you please provide the event that will be used for return processing after supplying the reason code for return.
    Else, could you please tell me the event which will be triggered by transaction FP09... so that i will catch return reason code in its parameter.
    Regards,
    Sumit

    Hi Experts,
    Thanks for your valuable replies .
    But my exact requirement is like:- i need to first check the flag for "Inform Accounting Clerk" in SPRO configuration :customizing (financial accounting)-> contract account receivables and payable -> business transactions -> returns -> configure reason codes.
    Field for this flag check is V_TFK045E-BSNTE for the Reason Code-02 , now there is dependency mentioned in SAP like "You can only use this option if event 1073 has a function module defined".
    After attaching my Z-function module in FQEVENTS , when i run transaction FP09, it doesn't stop at the set breakpoint of my function module, so what i suppose is that may be event 1073 is not the suited event or transaction FP09 is not the required transaction.
    please help me in this regard.
    Regards,
    Sumit

  • How to Restrict Single Delivery Date for PO with Multiple Line Items

    Dear Experts,
    How to Restrict Single Delivery Date for PO with Multiple Line Items.
    System needs to through Error Message if User Inputs Different Delivery Dates for PO with Multiple Line Items in ME21N Tcode.
    Can we achive this by Some Enhancement in SAP or Not ???
    If so how to do it.
    Any Inputs is highly appreciated.
    Thanks and Regards,
    Selvakumar. M

    Hi Selvakumar,
    we can resrict the PO to have a single delivery date in all the line items by means of giving a error message or overwiting the delivery date keyed/determined in the line item.
    You can use the BADI -> ME_PROCESS_PO_CUST. In which you need to implement the method PROCESS_SCHEDULE.
    (for technical aid - This method will be called for each and every PO line item, From the imporing parameter im_schedule we can get all the details of current PO line, even we can change the data in the current PO line. )
    Regards,
    Madhu.

  • Delivery type for consignement

    while doing the cross company code basis consignment process
    i am getting en error that *for supplying plant 4m01 and document type NB no delivery type assigned *
    where as i have already done the following settings
    1> vendor master and customer master already defined
    2> in set up sto i have defined document type NB- supplying plant 4m01 ---delivery type --NLCC

    Hi Mr.Rahul
    Wht are setting u have done is correct ,
    After that u have to do the Assign that document type with plant..
    in MM- purchasing - PO- Set up fot STO- Assign Document Type, One-Step Procedure, Underdelivery Tole
    Please check the above assignment.
    i hope u have assigned the supplying plant, plant and dcoument type.
    Thanks
    sap-mm

  • Movement Type in Return Process...

    Hi...
    Can anybody reply me waht movement type is used in Sales Return Process?
    Shriniwas

    Hi,
    The Movement Type for a Returns process depends on company scenario like whether they would like to post goods to Returns stock or always to QI stock etc and then after approval post it to UNrestricted stock for use.
    If scenario is to post it to returns stock and after approval post it to unrestricted stock then moment type in schedule line is 651 (to post to returns) and then using movement type 453 post it to unrestrcited stock.
    Reward points if helped to understand the concept.
    Regards

  • Different Valuation types for one process oder

    Hi,
    We have a requirement like valuation type in the process order should not get copied from the confirmation and the valuation type should be dynamic and different for each confirmation of the process order. Can any one tell me whether there are any costom setting for this scenario.
    If there are no custom settings Can we do core modifications to the program to clear the value of valuation type in the process order. If we clear valuation type manually will there be any effects to any of the programs based on the valuation type.
    What is the purpose of valutaiton type . Please specify any documens that i can refer for valuation type field in process order.
    Thanks,
    NN.

    Hi,
    The valuation type assigned to the material & not to the order.
    The valuation types are used to idetify how the material was processed.
    As Some stocks of a material can be procured externally. Others are
    produced internally. Using the valuation type  , you can assign your
    "bought-out" stocks and your "made-in" stocks to different accounts and
    valuate the "bought-out" stocks at different prices to the "made-in"
    stocks. Such stocks can be subject to different price controls.
    regards,
    K.Subhash

  • Problem of movement type in return process

    Hello all,
    I have the problem below:
    I create a sales document for Return (VA01) with document type RZ  Item category REN schedule line category DN, when I save my document, the system automatically create an outbound delivery with delivery type LR and movement type Z02.
    I want to know how do I manage my customizing to change this default movement type from Z02 to 651.
    You have to know that movement type of DN schedule line category in customizing (VOV6) is 561.
    Please can you help me about this issue:
    Med KSANTINI

    Hi,
    Generally , The Movement type from the SCHEDULE LINES will be copied into the Delivery document
    If u want the movement type 651 in the Return delivery document, you have to mantain the 651 in the DN schedule lines,
    In standard  DN will have 651 movement type,
    regards,
    santosh

  • Control delivery type for mvt type 313

    Hi
    Regarding SLOC to SLOC transfer postings, I have a couple of questions:
    Using movement type 313 (unr. use stock SLOC to SLOC) in our SAP system automatically creates a delivery in the background. Where can I configure what delivery type I would like to use for this purpose? Also, is there any settings I can do for ATP checks for this? I believe this is standard SAP functionality so a IMG menu path would be very much appreciated.
    Brgds,
    Lars

    Thanks.
    However, I am not sure that helped me very much.
    What we would like to do is to achieve a scenario where we move stock that is in QI and Blocked stock, in a similar way as with movement type 313. I am not even sure that is possible to do with a delivery? We use the deliery generated from movement type 313 to send with IDOC to one of our 3PL warehouses, managed by another company.
    When I look at it, I can find movement type 325 to move Blocked stock from one SLOC to another, but is it possible to do with a delivery (generated in the background)?
    Brgds,
    Lars

  • Copy control for Return Process

    HI every one,
    I am Doing the Return Cycle Process but i am not sure how to maintain the Copy Control because i am new to return process
    Billing Type : ZF2, Item category :ZTAN,Return Order : ZRE, Item category : ZREN, Billing Type  : ZG2 (Credit Note)
    give me how to maintain the Copy Control in VTFA,VTLA,VTFL
    Guideme
    Regards,
    Anu
    Edited by: Anuradha_SD on Sep 14, 2011 12:50 PM

    HI
    Let us talk about the Copy control VTAF
    I maintained the Copy Control Order Type ZRE,
    Target SalesDocTyp ZRE                    Source Bill. Type ZF2
                       Sales Return - JICPL                     Invoice - JICPL
    DataT 052 Billing doc.header        Copying requirements 021 Billing header
    DataT 103 Bill.bus.header data            Copy item number (TICK)
    DataT 003 Bill.header partner
    Target SalesDocTyp ZRE                    Source Bill. Type  ZF2
                       Sales Return - JICPL                      Invoice - JICPL
    ItemCat Proposal   G2N                    Item Category      ZREN
                       Request                                   Return Items -JICPL
                                        Copying requirements 303 Always an item
    DataT 153 Item from bill.doc.
                                                               Pos./neg. quantity
    DataT 104 Bill.bus.item data                               Pricing type         D
    DataT 004 Bill.item partner         X Update document flow
    bl.pl 0                                                    Campaign Deter.
    Target SalesDocTyp ZRE                   Source Bill. Type  ZF2
                       Sales Return - JICPL                     Invoice - JICPL
    SchdLneCatProposal DN                    Sched.Line Cat.    CP
                       Return - JICPL                           MRP -JICPL
                                        Copying requirements 303 Always an item
    DataT 002 Partner item
    Like that i maintained but at the time of Return order with reference to Billing Document its not working means
    if i take Second time Same billing Document Number system is showing same qty because i have already refered previously
    why system is showing same qty why it is not reduced
    guide me
    Regards
    Anu

Maybe you are looking for

  • Regarding alv

    hi experts, i have naver used alv in my report programming..can u plz suggest me how could i start using alv in my reports..can u give me some related examples..can u send me some reports related to alv..i would b thankful if u send 3-4 reports. rega

  • How do you retrieve your numbers back from icloud if they disappear off your phone?

    My mom has an iPhone and it has deleted her contacts twice now. We need to know how to get her contacts back from icloud onto her phone.

  • Reading only certain files from Movies folder?

    Hello all, I have an external hard drive connected to my Time Capsule that is loaded with a bunch of VIDEO_TS folders of all my DVDs, and I have that drive aliased in my "Movies" folder on my MacBook Pro, so when I open Front Row, it points to my ext

  • Order Qty Confirmation Issue

    I am facing an Issue  as below and hence seek your views For a Sales order, the confirmation of schedule lines is as below: AS it is visible, the Qty of 3 pc was scheduled to be confirmed later. The confirmation is 3 units short even though the order

  • Where is the correct redemption # on back of box for Adobe Photoshop elements 11 and Adobe  Premiere

    I entered the number where it says scan to activate and it is too long.  All of the other numbers on the box are invalid. What do I do.  I purchased this at Staples. Message was edited by: barbiedollstars999