Process after return invoice from customer

Dear gurus,
Would anyone help me on this issue below?
I created customer orders for one customer in three spesific times. One of these orders is service(no PGI) others are with PGI. Now our client send us one return invoice which includes both service order and material order.
Can anyone tell me step by step for the next process?
What must I do?

Hi,
Material orders :
Create a return order based on original invoice for the material orders, than create a return delivery and do the PGR.
After that create a credit memo wrt return order or return delivery as per your current  settings.
Service Order
Create a credit memo directly with reference to original invoice for services or create a return order for services and with reff to order create a credit note .
HOpe this will help you !!!!
Regards,
Krishna O

Similar Messages

  • I ordered a iPod touch , and it says I need an invoice. Shipment requires commercial invoice from customer or seller ?

    I ordered a iPod touch , and it says I need an invoice. Shipment requires commercial invoice from customer or seller ?

    Ordered from whom?
    In " and it says I need an invoice" what is "it"
    Are you specifying special shipping?

  • Vendor Consignment - Returned material from customer directly to consignmen

    Hi,
    I'm working with a consignment vendor process. I'd like to know how should I manage the return from my costumer. I'd like to move this returned material directly to my vendor consignment.
    Is it possible? How can I do it? How affects it to the consignment settlement?
    Points will be given
    Thanks in advance

    Hi Roger,
    We have 2 type of consignment process in SAP.
    1. Vendor consignment (MM process) & 2. Consignment with customer.(SD process)
    If the Customer is returning the item (or consignment item). ... it will be process as normal process...like goods receipt in to inspection ... if it is ok... then again we can move to Consignment ( with customer)...in seperate transaction.
    Hope this is clear.
    REgards
    Anand

  • Return Delivery from Customer

    We are receving the delivery from customer and we are using return sales order and inbound delivery.
    Which movement type we should use to get the part back from customer.
    457:-to stock in quality inspection stock
    or
    655:-Quality inspection stock
    and what movement type I should use to move part from there to block or scarp ?
    Thanks

    Hi,
    Depending on how Customizing for Sales is configured (the movement type is configured in the step Define Schedule Line Category), the delivery is posted to the following stock:
    Blocked stock returns (non-valuated, not unrestricted-use) (movement type 651)
    Unrestricted-use stock (movement type 653)
    Quality inspection stock (movement type 655)
    Blocked stock (movement type 657)
    So if you want to take it into blcked stock then use movement type 657.
    please go through following link as well. it will help you.
    http://help.sap.com/saphelp_470/helpdata/en/a5/63360a43a211d189410000e829fbbd/frameset.htm
    Hope it will help u.
    Deepak

  • Order status is coming "Being Processed" after return delivery

    Helloo Experts,
    We have a current situation here, Where order type (OR) with item cat (TAN) creates SO then delievry (LF) happened and PGI..
    Due to some reasons the order needs to be void.Then the SO has been changed (VA02) by adding item cat YREN with same quantity, then delivery (LF) ,PGR and billing (F2).
    Now after final billing the order status coming as "Being processed" instead of "Closed" at the document flow.
    Does SAP standard practice supports this process flow OR it should be Return order (RE),Delivery (LR) and return of credit (RE)  to make the Order status  "Completed".
    Is there any other ways to make these order's status changed from "Being Processed" to "Completed"
    Waiting for some valuable inputs.
    Thanks
    SM

    Then the SO has been changed (VA02) by adding item cat YREN
        with same quantity, then delivery (LF) ,PGR and billing (F2).
    This process is wrong.  You have to create a new return sale order with reference to the parent billing document.  If billing has not been generated, then you have to reverse the delivery via VL09.
    G. Lakshmipathi

  • Post processing after system copy from standalone to cluster enviornment

    Hi,
    I have done a system copy(Backup restore method) from a standalone quality BW (QBW) system to cluster environment (TBW).
    The steps I have followed as follows.
    . setup the machines in the cluster environment  ( Windows 2003 EE server,sql 2005 SP3)
    . Backup the current database in the source system
    . Given a different SID (TBW) during the System copy installation .its a dual stack installation.
    . Restore the database in the target system and select the back up restore method during the system copy database installation step.
    .The installation completed successfully and i m having some doubts regarding the post processing steps after this .
    We want to retain the same client in the target system ,for this i need to rename the  logical name .Kindly assist me for changing the logical name for the extraction of BW delta process from extraction server to BW system and also the other steps I have to follow after system copy.
    Thanks
    Arun Padikkal

    Hi Arun,
    You should probably post this question in a basis forum.
    Cheers,
    Diego

  • Regarding return message from custom transaction

    Hello all,
              i have a scenario where i am calling a custom transaction and trying to get return messages, but i am not getting any return message instead i am getting error message in that transaction even if i am using mode 'N' in my call.
            Do my custom transaction need to follow some methodology which will return error message, as messages are returned when standard call transaction is made.
    Thanks
    raju N

    hello abi,
            i am getting a empty message table, thing is that from the custom transaction they are calling other standard transaction and getting error message. if any error occurs they are using 'message id'  syntax and displaying and if any error occurs internally in that transaction they are using 'message e001'. this kind of error messages are returned to my call transaction but the other one is not getting populated.
    Thanks,
    raju N
    Message was edited by:
            krishnam Raju N

  • Return results from custom dialog box not visibly updating field value

    I have a form with custom dialog boxes (execDialog) for data entry. The dialog box is being called from the Entry event successfully. I also have it called from the Click event. So, here's what I get:
    1. On entering the field, I get the dialog box pop up, I select a value, it visibly changes the field raw value and leaves focus in the field.
    2. If I exit the field and re-enter, it also works as in point 1 (as expected)
    3. If, while focus is already in the field, I click in the field, I get the dialog box, as expected, but after selecting a value from the dialog, the field raw value DOES NOT VISIBLY change until I exit the field! It's kind of like the click event is working in conjunction with the Exit event. This is totally counter-intuitive for a production form that is being designed for the general populace.
    Anyone had any experience with this?
    Cheers,
    Marty.

    Thom Parker answered this here: http://forums.adobe.com/message/2614570#2614570
    Answer copied below:
    "The problem is that when the focus is on the text box
    it's in edit mode. It's only displaying the value interactively entered by
    the user, or as a consequence of the change event.  What you need to do is
    force the focus off of the text box in code.  You can do a little trick
    where you bounce it to a tiny transparent field, which then bounds the focus
    back so it doesn't look like the focus changed."
    What I ended up doing was calling up the dialog box, then using setfocus with no parameters to remove focus from the field, as follows:
    this.rawValue = this.dialogBoxFunction(this.rawValue); // passing current value so dialog box defaults to that value
    xfa.host.setFocus();
    Cheers,
    Marty.

  • IsUserInRole() - return boolean from custom tag?

    Hello
    Im writing some custom tags extending TagSupport. At the moment my tags just create some collection and put it in the page scope for the jsp to access. (see example below)
    I have a tag however that I would like to return a boolean for. This is specifically for checking isUserInRole();
    I cant quite get my head around the idea of manipulating the page body or not and how this impacts writing the custom tags. If I want to return some value directly from my tag ie. a boolean value from isUserInRole(); is this manipulating the page body?
    Is TagSupport the correct class to extend if I want to return a boolean value from my tag call.
    Id appreciate any advice.
    Thanks
    Jon
    public class refSuppliersTag extends TagSupport {
    public int doStartTag() throws JspException {
    try {
    HashMap supplierMap = new HashMap();
    supplierMap = (HashMap) referenceData.getSuppliers();
    pageContext.setAttribute("suppliers", supplierMap);
    } catch (Exception e) {
    throw new JspException(e.toString());
    return EVAL_PAGE;
    ------------------------------------------

    this is one way of designing your tag:
    In JSTL
    <my:login var="isAdminRole" role="admin"/>
    <!-- test for it -->
    <c:if test="${isAdminRole}">
    yeah, you are admin user!
    </c:if>
    In Java
    boolean isLoggedin = login();
    session.setAttribute(var,isLoggedin);
    // where "var" is a String tag attribute!
    //...put the "boolean" result in "var", which is a session's parameter, request's parameter or whatever!
    by Avatar Ng
    [blog http://avatar21.superihost.com/ ]
    Message was edited by:
    Avatar_Ng

  • What is the correct process to return errors from an Event Handler

    I have a pre-Create and pre-Modify Event Handlers. If the event handler detects an error, I want to throw an exception back to terminate the create user or modify user event. I also want to display a meaningful error message on the OIM UI. In my pre-modify event handler I am throwing the following exception when an error is detected:
    throw new EventFailedException(processId, null, "User ID not available", "", "MODIFY", null);
    However, the OIM UI is not displaying the message "User ID not available" as I want it to. Instead it is displaying the following error message:
    An error occurred. The corresponding error code is IAM-0080062
    Does anyone know where that error code is coming from? My event handler is not doing that. Also, does anyone know where I can find any documentation on the proper use of the EventFailedException? What do the parameters mean? How do I get a meaningful error message to display on the OIM UI?
    Thank you for any help here.
    -Dave

    Please try to cancel the PO 1st and then Cancel Sales order...
    Refer following note id
    How to Cancel a Drop Ship Order Line (Doc ID 393688.1)
    Thanks

  • DAC processes the return status from Informatica incorrectly

    Hi,
    My Env Info is as below:
    DAC: Build AN 10.1.3.4.1.patch.20110427.0538, Build date: April 27 2011
    Informatica:*9.0.1 HotFix 2 (On OS windows 2003*)
    Now, I am running the Siebel CRM-Loyalt execution Plan in DAC, but enccounter the below issue:
    1)Some task start before its immediate predecessors finished
    for example, <SIL_LoyMemberDimension> depends on <SDE_SBL_LoyMemberDimension> , the <SIL_LoyMemberDimension> starts before <SDE_SBL_LoyMemberDimension> successfully finished.
    when checking the log, found that:
    the time <SIL_LoyMemberDimension> started is just the start time workflow <SDE_SBL_LoyMemberDimension> start its first session in Informatica, and also, in the execution's detail info view, DAC marked the start time workflow <SDE_SBL_LoyMemberDimension> start its first session as the task's finished time.
    This issue leads to many failures in building target table.
    2)The task status in execution for informatica task is usually incorrect
    when some session failed in a workflow, the workflow is failed too, but the DAC's execution will marked the task as successfully completed, which is incorrect and will lead to some future un-predictable issue
    Anyone can help?
    Thanks
    Leon

    I would suggest go for a new patch p13551596_101341_Generic this is latest (i guess)
    If this doesn't help let me know will look into this issue.
    If it is helpful, please mark as correct or helpful

  • Final Cut Pro - Long Install Process after clicking "buy" from Trial

    I just clicked "Buy" on my FCP X trial version and now it has been installing for quite a long time.
    Why does it do that? I have the most recent version of the trial version.
    Or is the trial version a different software package that will be overwritten by the purchase?
    I just want to avoid having suddenly two FCP X installations on my computer.

    Thanks, Ian.
    I really had two Final Cut Pro installations of 10.1.3 on my hard drive, each 3.38 GB.
    One was the trial, one the real thing.
    When I clicked the symbol in the dock, the trial opened up and told me it was expired. So I dragged the symbol out, deleted the trial, and dragged the symbol of the real thing into the dock, and now it works.

  • Return sales stock from customer

    Dear All
    for Return goods from customer,after posting the return delivery and goods recipet (the stock is posting in to movement type 651)  and not available in the unrestricted use stock, then how to make these stock to use as unrestricted use and saleable to other customers.
    Please give the soluation for this problem, its top urgent.
    Thanks in advance.

    Hi,
    When Cuistomer Return Stocks are processed by default it goes to "Returns Blocked Stock" Not valauated for Movement type 651,
    You can trasnfer post it to Unrestrcited using Mvmt Type 453
    If you want directly into unrestrcited then use 653
    Regards

  • Return from customer movement type

    Hello,
    We use in our system 653 mov.type when we return goods from customer.
    Usually we create the return order with reference to the original customer order and the original customer order is MTO (make to order) . When posting the 653 mov.type the system take the cost of the material (VPRS) from moving average price of unrestricted stock.
    My question is : in cases that my return customer order is with reference to original customer order, is it possible to configure a movement type (or other way) that the system will take the cost from the original customer order and not from the cost in unrestricted stock and in advance it will affect the moving average price ??
    I will try to explain by an example:
    I have in stock 10 pieces each for 5 $,
    My return order has 4 pieces that has cost of 8 $ in the original customer order.
    The system behavior today after returning the stock with 653 mov type:
    I have 14 pieces with cost of 5 $ - no change in moving average price and VPRS cost for profitability analysis  is 5 $
    The desirable behavior according to my expectations:
    I will have 14 pieces with cost of (50+32)/14=5.8 u2013 the moving average will change according to cost in original customer order 8 $ and VPRS cost for profitability analysis is 8$.
    I hope I made my self clear enough
    Regards
    Idit

    Hello Kishore,
    Thanks for your answer.
    I can understand the idea that MAP changes only in case of Purchase of material not at time of sales returns.
    But I want to give you a case that causes problems in our view:
    Most of my sale cases are MTO, that means that I buy for order and therefore my MAP will not be affect.
    Example: my MAP 3 $ I buy to order for 5 $ and when I will do GR it will not affect the MAP (101E)
    When I will return the goods (653) I want that the cost from vendor (5$) will affect the MAP because this was the real cost from my vendor but when I return the stock I return it to unrestricted stock.
    I have cases that I transfer sales order stock to unrestricted stock and the MAP is change according to cost of sales order (411E/412E) u2013 it's the same in my logic - the MAP change according to the real cost from vendor.
    I will be happy to have your response.
    Kind Regards
    Idit

  • Trasnfer AR Invoices from one customer to other customer....

    Hello,
    Oracle Apps EBS - 11.5.10
    How do we trasfer invoices from customer to customer and how to handle GL entries in this situation if GL period is closed.
    I read customer merge is the solutions for this. Is this correct?, is there any other approach to achieve this?
    Please advise...
    Thanks,
    Sridhar

    This cannot be done. You have have a movement to bring it back to normal stock and then another movement to take it from normal to consignment stock for the other customer customer. See Movement Type 403 and 404.
    Think of it as having been sold to a customer. Even when a customer wants to return unused stock, you do not ask them to send it to another customer.
    Cheers
    Jayshree

Maybe you are looking for