Separate sales and return transaction for POSDM interface to ECC

Hi experts
We have a requirement to separate sales and return transaction movement types (251 and 252) for even the same articles.
Currently, we are using two-step process but the aggregation will combine both sales and return transactions together.
(For example, if i sell 2 article A and return 1 article A, the system will aggregate to selling only 1 article A with movement type 251.
But we want to have movement type 251 posting for 2 article A, and movement type 252 posting for 1 article A.)
Would you have any recommendation in terms of configuration?
Thanks a lot for that.
BR
Dom

Hi Rashi Gaur,
Yes, As already explained by Vikrant, You Can create a separate task group for sales and assign that to sales item type (2001) and Create separate task group for returns and assign that to return item type (2801). This can be performed in two-step agregation process. The sales records will be in and returns will be .
Thanks and Regards,
Ramesh D

Similar Messages

  • IS Retail - POS sales and return movement type issue

    Hi,
    We are facing issue whlile doing POS sales and return, when sales transaction data transfer to ECC from POS its create Idoc and material document.
    When I look the material document for sales its showing movment type 252 instead of 251, as same in return material document 251 instead of 252,
    When I look the cofiguration settings are perfect in SPRO.
    How to resolve this issue and what changes need to be done
    regards
    Satish

    Satish,
    Check following IMG settings;
    IMG - Sales and Distribution - POS interface - inbound - Aggregated Sales Control
    IMG - Sales and Distribution - POS interface - Inbound - Movement type-dependent control of sales as per receipt
    Bye - Muralidhara

  • POS sales and return movement type Issue

    Hi,
    We are facing issue whlile doing POS sales and return, when sales transaction data transfer to ECC from POS its create Idoc and material document.
    When I look the material document for sales its showing movment type 252 instead of 251, as same in return material document 251 instead of 252,
    When I look the cofiguration settings are perfect in SPRO.
    How to resolve this issue and what changes need to be done
    regards
    Satish

    Satish,
    are you sure that you applied the right logic regarding signs in the POS inbound?
    In WPUBON the Field E1WPU02-VORZMENGE must be negative so the POS inbound will consider this line item as sales and would put 251 als movement type if the sign is not minus it would put 252.
    With the WPUUMS it is the same.
    Are you using WPUBON01 or WPUUMS?
    Regards Carsten

  • HT2693 I'm trying to do a restore on a my IPhone 3Gs and I get and error code 1, here is my situation. I sold this phone on Ebay the person tried to jail break it then stated the phone was broke and returned it for a refund I lost my money and my phone! H

    I'm trying to do a restore on a my IPhone 3Gs and I get and error code 1. The iPhone "iPhone" could not be restored. An unknowen error occured (-1).
    Here is my situation. I sold this phone on eBay the person tried to jail break it then stated the phone was broke and returned it for a refund. I lost my money and my phone! How can I fix my phone?
    I get the error when trying to restore the firmware!
    Help Please!

    if I were you I would try to ask it in the iphone forum
    https://discussions.apple.com/community/iphone/iphone_hardware
    this is the appletv forum where people may not know much about iphones

  • Branch operation and return operation for routing in alternative sequence

    Hi all experts.
    I would like to ask which table and field store the value of branch operation and return operation for routing in the alternative sequence. I can only find them in structure (PLFLD-VORNR1 and PLFLD-VORNR2) but I want the table field of them. Would anyone please suggest a solution? Thank you.

    Hi,
    look in table AFFL, here the BKNT1 and BKNT2 refer to those vornr1 and vornr2 of the operation. For example in user-exit ZXCO1U01 you will find the values (BKNT1/2) in the sequence table, and when, for example, filling the LOIPRO01-Idoc, you can use the found VORNR for the E1AFFLL-segment.
    See coding for example on determining VORNR1/2 (sequence_table/operation_table as in user exit EXIT_SAPLCOBT_001):
    SORT operation_table BY vornr.
      LOOP AT sequence_table INTO l_sequence.
        MOVE-CORRESPONDING l_sequence TO l_affl.
    * Read the operation table to determine the vornr1 and vornr2
    *via the value of field BKNT1/2
        IF NOT l_sequence-bknt1 IS INITIAL.
          READ TABLE operation_table INTO l_operation
          WITH KEY aufpl = l_sequence-aufpl
                   aplzl = l_sequence-bknt1.
          IF sy-subrc = 0.
            l_affl-vornr1 = l_operation-vornr.
          ENDIF.
        ENDIF.
        IF NOT l_sequence-bknt2 IS INITIAL.
          READ TABLE operation_table INTO l_operation
          WITH KEY aufpl = l_sequence-aufpl
                   aplzl = l_sequence-bknt2.
          IF sy-subrc = 0.
            l_affl-vornr2 = l_operation-vornr.
          ENDIF.
        ENDIF.
    Cheers,
    S.

  • Help required in running SPAU and SPDD transactions for post upgrade

    Hi All,
    We are doing a system upgrade to EHP1.
    We need help in SPAU and SPDD runs and why are they required in upgrade activity.
    Kindly respond.
    Thanks in advance
    Regards
    Rashmi

    Hi Rashmi,
    SPDD and SPAU are modification adjustments that you need to adjust after upgrade. This is a situation where the upgrade has to enhance some structures and elements that was available in previous version (probably 3.x). The system can not determine whether to overwrite the structures or to retain the old version. If the structures are custom structures, the system might overwrite any enhancements that you have done. In this kind of situations, the system puts any such structures and elements that it can not make a decision into these 2 lists. SPDD is for dictionary objects and SPAU is for configurations. You have to fix all the issues that are produced in these transactions. You need to first fix the ones in SPDD list and then the SPAU list. Once you drill down in those lists, it asks you to take actions like "change it", "keep the old version" or "ignore the changes" (I think these are the options). You need to chosse these options based on your analysis and turn all the yellow and red ones into green. Hope this gives you some idea.
    Thanks and Regards
    Subray Hegde

  • Total sales and returns

    Can you help, I  need a query for itemcode, description, sum(quantity) that is all items sold (inv1)  minus any of the same items returned (rin1)on a credit note, within a certain date range.  Would like to use the same query for deliveries and returns. (dln1 and rdn1). Thanks

    The easy query will be like this one:
    Select T0.ItemCode, T0.Dscription, SUM(T0.Quantity) AS Quantity From dbo.INV1 T0
    Inner JOIN dbo.OINV T1 ON T1.DocEntry = T0.DocEntry
    Where T0.Quantity > 0 AND T1.DocDate BETWEEN '[%0]' AND '[%1]'
    Group By T0.ItemCode, T0.Dscription
    Union All
    Select T0.ItemCode, T0.Dscription, -SUM(T0.Quantity) AS Quantity From dbo.RIN1 T0
    Inner JOIN dbo.ORIN T1 ON T1.DocEntry = T0.DocEntry
    Where T0.Quantity > 0 AND T1.DocDate BETWEEN '[%0]' AND '[%1]'
    Group By T0.ItemCode, T0.Dscription
    Order By T0.ItemCode
    Thanks,
    Gordon

  • I have four devices on one Apple ID, i have separate emails and phone numbers for each device but when I tried to add one to my iPod, it said that the email was already in use.

    I have four devices on one Apple ID, i have seperate emails and phone numbers for each device but when I tried to add one to my iPod, it said that the email was already in use.  I have tried many things and the only guess I have is that either someone else has this email as their iMessage but is fake or it wasn't taken off my old iPod when I reset it.  Any ideas on what to do?

    Thanks but that doesn't give me the information I need.  I am putting an email on my ipod for people to contact me for iMessage and FaceTime but when I put the email in, it gives me an error saying that the email cannot be veirified because it is already in use.  My Apple ID can be varified, just not the email that they will contact me with.

  • How can I share the same music but separate calendars and address book for 2 users on the same computer?

    Can anyone help to answer if I can share the same music account on itunes but still maintain separate calendars and address books on the same computer?

    Make sure each user has their own computer login.
    Copy the entire /Music/iTunes/ folder to /Users/Shared.
    Hold Option and launch iTunes.
    Select Choose library and select /Users/Shared/iTunes/ folder.
    Quit iTunes and log into other user.
    Hold Option and launch iTunes.
    Select Choose library and select /Users/Shared/iTunes/ folder.
    That is all you need to do.
    Any changes in iTunes by one will be seen by all others (since you are using the same library).
    All users will have their own Contacts & Calendars and all other info.
    If you are using Fast User switching, you must quit iTunes before switching users if others wish to use iTunes.

  • What is credit and debit memo? cancelled and returned transactions...

    Hello Experts,
    Can you please explain what does the terms above mean? Thank you guys and
    take care!

    hi...
    A transaction that reduces Amounts Receivable from a customer is a credit memo. For eg. The customer could return damaged goods. A debit memo is a transaction that reduces Amounts Payable to a vendor because; you send damaged goods back to your vendor.
    Credit memo request is a sales document used in complaints processing to request a credit memo for a customer. If the price calculated for the customer is too high, for example, because the wrong scale prices were used or a discount was forgotten, you can create a credit memo request. The credit memo request is blocked for further processing so that it can be checked. If the request is approved, you can remove the block. The system uses the credit memo request to create a credit memo.
    3. Debit memo request is a sales document used in complaints processing to request a debit memo for a customer. If the prices calculated for the customer were too low, for example, calculated with the wrong scaled prices, you can create a debit memo request. The debit memo request can be blocked so that it can be checked. When it has been approved, you can remove the block. It is like a standard order. The system uses the debit memo request to create a debit memo.
    As mentioned above, creating a credit or debit memo request enables you to create credit or debit memos based on a complaint. For this first create a sales document with the order type for a credit or debit memo request. You can create the debit or credit memo requests in the following ways:
    Accont receivables and account paybales are in FI Module - suppose you order some material and you cancelled the order - meanwhile company charges money from ur credit card ,now customer has to get money ,this time account receivable and account payable will come in pictures ...
    <b>Reward points if useful</b>
    Regards
    Ashu

  • Different valuation way in sales and returns of goods

    Hi all,
    we experience some problems in using, at the same time, the scenario of third-party order processing for sales to the customer and the standard flow to manage the return flow.
    As standard the goods entry (movement type 653, special stock E) of a delivery created by a sales order of type RE (return document) is valued at moving price.
    We need to valuate the movement 653 at the same value of VPRS condition in the RE order, as we have a lot of materials with a moving price that is changing in a wrong way.
    Regards,
    Antonino Musciumarra

    This is my wsdl
    <?xml version="1.0" encoding="UTF-8"?><wsdl:definitions name="testprojectMS" targetNamespace="http://abcd.org/testprojectMS" xmlns:oldtns1="http://www.xyz.net" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://abcd.org/testprojectMS" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:mrm1="http://abcd.org/testprojectMS">
    <wsdl:types>
    <xsd:schema targetNamespace="http://abcd.org/testprojectMS" xmlns:mrm="http://abcd.org/testprojectMS">
    <xsd:import namespace="http://www.xyz.net" schemaLocation="testproject.xsd"/>
    </xsd:schema>
    </wsdl:types>
    <wsdl:message name="testproject_in">
    <wsdl:part element="oldtns1:testprojectIn" name="testprojectIn"/>
    </wsdl:message>
    <wsdl:message name="testproject_out">
    <wsdl:part element="oldtns1:testprojectOut" name="testprojectOut"/>
    </wsdl:message>
    <wsdl:portType name="testprojectMSPortType">
    <wsdl:operation name="testproject">
    <wsdl:input message="tns:testproject_in" name="testproject_Input"/>
    <wsdl:output message="mrm1:testproject_out" name="testproject_Output"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="testprojectMSSOAP_HTTP_Binding" type="tns:testprojectMSPortType">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="testproject">
    <soap:operation soapAction=""/>
    <wsdl:input name="testproject_Input">
    <soap:body parts="testprojectIn" use="literal"/>
    </wsdl:input>
    <wsdl:output name="testproject_Output">
    <soap:body parts="testprojectOut" use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="testprojectService">
    <wsdl:port binding="tns:testprojectMSSOAP_HTTP_Binding" name="testprojectPort">
    <soap:address location="http://myhost/testprojectService"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    Please let me know where it went wromg

  • My photoshop elements serial number is not working on my new mac. I had windows before and returned it for a mac but can't get my serial number to work

    my photoshop elements and Lightroom serial numbers won't work for my new mac. I bought these softwares via download on my windows laptop but returned that laptop because the quality was not great. I decided to buy a mac and now can't use my serial numbers to download the software.

    You might try here:
    (click on the Chat now button)
    Activation & Deactivation Help
    Whatever you do, don't post your serial here.
    Your entering the 24 digit serial for photoshop elements 12 starting with 1057-xxxx-xxxx-xxxx-xxxx-xxxx
    I agree with bearcatnat in that i don't know what adobe expects us to do about serials on the forums, since were just users such as yourself and don't work for adobe.

  • Separate audio and  video inputs for Quicktime Broadcast?

    I want to produce some real time streaming via Quicktime Broadcast. My audio will be coming from a Mackie mixer with firewire interface, the video will be coming from my video switcher which has a firewire output. Will I be able to combine the audio and video firewire feeds in the computer (or software), or must I combine the audio and video into one firewire feed before it hits the computer?
    Thanks!
    Rob Cook

    I just did my first feed Monday night. I used a video mixer and Mackie board myself. I feed the audio and video(component) into my DSR-20 VCR, which I also use for a tape backup recording. This then feeds the QT Broadcaster. I don't think you can feed anything but a firewire machine or iPhoto camera into Broadcaster. Might work with an USB camera/vcr???
    I feed H.264 video, at 320x240 with mono 16 bit audio. Hint... don't do disolves, as they increase the frame rate. simple cuts-only seems to be the best. We also fed keynote slideshow into switcher... carefull there, as it produces saturated colors that will effect the signal... the switcher will think the super saturated video is sync and glitch the video. red is the worst, of course. Next week I am going to use a little proc amp to drop the chroma a bit.
    G5   Mac OS X (10.4.8)   Dual 2.5, PPC, 2.5 Gig Ram

  • Business process_CO2 cylinder sales and returns

    We have recently installed SAP Business One and as part of our operations we will be selling CO2 cylinders.  Intially the customer will buy a full CO2 cylinder. He will later return the empty CO2 cylinder (which will have a different stock item) and we will give him another full bottle but charge him for the refill.
    I would like to ask if there is a module on SAP that manages such a process or elso if someone who runs a similer process can provide me with some insight
    Thanks and kind regards,
    Paul

    Hello Paul
    You can try using Empties Management functionality,  I am not sure if SAP Business One provides for it or not.
    In your case the  empty cylinder will be a tied or untied empty and a CO2 cylinder with gas inside will be a full product.
    Untied Empties
    Untied empties are empties that are not filled or packed with material. If material is removed from reusable packaging, the reusable packaging is left as untied empties
    Tied Empties
    Tied empties are empties materials that only exist or are moved with a link to an empties-relevant material. In this context, the material flagged as tied empties assumes the packaging function.
    From pricing point of view, you always price the gas (material) but the first time you sell you add a surcharge for the cylinder. After that you just sell the gas at its own price and if you want you can maintain accounts for ownership and stocks of the empty cylinders.
    Documentation link : http://help.sap.com/erp2005_ehp_04/helpdata/EN/19/ad1d3a81a1e572e10000000a11405a/frameset.htm
    Hope this helps.

  • Difference between LIKP-VBTYP 'Returns' and 'Returns delivery for order'

    Hi...I have tried researching this myself, but still can't seem to get a good answer.  In the LIKP table, there is a VBTYP of 'H' for returns and 'T' for returns on delivery order.  I am trying to understand the difference between the two...how could you have a return with it NOT being on a delivered order?  Is there something basic I am missing? Any and all help extremely apprecated.

    Hi,
    I fully agree with the input given by Mr G Lakshmipathi.
    VBTYP as field description implies, it just says about the SD document category , but applicable to all documents such as order(includes outling agreements, inquiry,quotation as well) , delivery , billing.
    These values are inbuilt. wrt: document behaviour we use this doc category.
    You can even observe, doc category: K & O -
    K = Credit memo request  which applicables only in VA01
    O = Credit memo  applicables only in VF01.
    if you try to execute the table LIKP ( from SE16) with VBTYP=H, you will not get any doc's
    I hope it adds info.
    Regards,
    Reazuddin MD

Maybe you are looking for

  • ABAP Proxy Exception

    Hello everybody i have this error in my sxmb_moni of xi for a abap proxy server receiver:   <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <!--  Inbound Message   --> - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="ht

  • How do I update my iPhone 3G firmware but not to the latest version?

    How do I update my iPhone 3G firmware but not to the latest version? I currently am running 3.1 but would like to update it to the 4.1 version (not the latest 4.3 version). How do I do this? I have already gone online and downloaded the 4.1 firmware

  • ClassNotFoundException while establish connection with mysql

    Hi friends, While registering the JDBC driver for MySQL by following statement, Class.forName("com.mysql.jdbc.Driver").newInstance(); It throws Runtime error as ClassNotFoundException for "com.mysql.jdbc.Driver" class. I've set the following environm

  • Company code and Account code does not exist in SKB1 while entering GL Tran

    I have created chart of accounts in the co code but getting error msg while posting entry in <Company Code>and<GL Account> transaction that entry does not exist in table SKB1. I have copied COA from existing SAP COA. I was able to find the solution f

  • Having trouble changing my email address used for discussions subscriptions

    The address for replies to threads I've started is an old address. I can access it, but it's a lot of trouble to do so. I've tried to change this address to another, more convenient one, but the change doesn't take. It's been a couple of hours since