Cashdesk in  AHO_ BPP_EN_DE parts cash sales & returns

Dear experts,
I am trying to run this BP scenario for parts cash sales and returns , there SAP mentioned about cash sales order from DBM Cashdesk transaction. I found that i am not able to go to screen which is said in BP after clicking shift+f7 or  "cash sales " from DBM cash desk.
I ma surprise to see that there is no config mentioned about this process in Bp config guide also not in DBM basic settings not in HELP.SAP.COM
is there anyone who is succeed in running this scenario from DBM cashdesk , please help in config
regards,
Kaustubh

problem is solved

Similar Messages

  • DBM: Price Package for Parts cash sales order (1000)

    Hi All,
    We have a scenario in which OTC sales for parts are required to give 'buy 1 get 1 free'  for some part. This could have been possible by defining a price package to have 2 items included and price maintained for 1 part at header. But SAP DBM order type 1000 does not allow price package to be selected.  Parts order allows only parts packages (where we cannot maintain price at header).
    Is there any way to acheive this ?
    NB: Service Workshop (2000) Order type allows this, but then it needs to go thru workshop cycle of release, GM, TECO..
    Thanks in advance.
    Regards,
    Sagar Khapekar.

    Hello Sagar,
    Have you tried to create a new package type which is like a price package and limit only P002 as its item categories (change as needed) and try using it in parts orders.
    Make sure that you do not use LV Main type and not all ORG details in the new package type.
    Hope this works.
    Best regards,
    Harsha

  • Cash Sales other other scenario with user exits

    Hello Experts,
    I am trying to learn more examples of Cash Sales , Returns order processing scenarios especially where user exit is used to enhance the functionality.
    Kindly provide a simple example to illustrate why and how which user exit is used and what kind of functionality is added in the exit .
    I wish you all a good day!
    regards
    John

    Hi,
    Any sales order processing is same and userexits will use when standard SAP is not supported the client requirment.
    Cash sales do not have credit management & delivery will create once order is saved.
    We did some changes in userexit for return orders where storage location need to determine when order type is RE and mainatin the storegae loctaion on some Z tables.
    Hope this will help you

  • How to track Return in cash sale

    Hi,
    i am doing cash sale process & the account determination in Billing is cash account.(BV - billing doc type)
    But if we customer return the material with ref. to cash sale how di I track that process.because there is no copy control in Between BV(cash billing type) -
    to -
    Re(return order type)
    If i make my own copy control then when I create the billing for return how should I post the te reverse entery in acconts.
    help me
    Thanks & Regards
    Sunil

    why seprate.. not required... use same pricing procedure... and assign same a/c/ keys... ERL and ERS..
    reward if it helps..
    Ramki

  • User Exits for Invoice creation ,cancellation and sales return

    Hi Gurus,
    Pl help me it's very urgent.
    I did not find any user exit invoice creation so i wrote the following code in include program
    MV60AF0B_BELEG_SICHERN.
    This code is to update the Z*table while saving invoice ,cancellation and sales return.
    The code modification is like below
          FORM BELEG_SICHERN                                            *
          Buchen Fakturabelege                                          *
    FORM BELEG_SICHERN.
      READ TABLE XVBRK INDEX 1.
      IF SY-SUBRC NE 0.
        CALL FUNCTION 'DEQUEUE_ALL'.
        MESSAGE S032.
        EXIT.
      ENDIF.
      IF SAMH_MOD = ON.
        EXPORT XKOMFK TO MEMORY ID 'SDBILLDL'.
      ENDIF.
      DATA: CALC_TYPE.
      IF REBATE_DETERMINED = 'Y'.
        CALC_TYPE = 'A'.
      ELSE.
        CALC_TYPE = 'I'.
      ENDIF.
    *{   INSERT         RD1K903017                                        1
    Work Area*********************
    data : wa_xvbrk type VBRKVB.
    data : wa_xvbrp type vbrpvb.
    data : wa_zmigo type zmigo.
    data : wa_vbrp type vbrp.
    Internal table Creation*******
    DATA:  BEGIN OF tab_XVBRP OCCURS 100.
             INCLUDE STRUCTURE VBRPVB.
    DATA:  END OF tab_XVBRP.
    data : begin of tab_vbeln occurs 10,
           vbeln type vbrk-vbeln,
           knumv type vbrk-knumv,
           end of tab_vbeln.
    data : tab_zmigo type table of zmigo.
    data : tab_vbrp type table of vbrp.
    *****Data declaration*************
    data : v_no_of_inv type i.
    data : v_vbeln_no(10) type n.
    data : v_last_inv_no(10) type n.
    data : v_first_inv_no(10) type c.
    data : v_tot_qty type i.
    data : v_frbnr type mkpf-frbnr.
    *******Ranges*********************
    ranges : r_vbeln for vbrk-vbeln.
    *****Populating IT****************
    tab_xvbrp[] = xvbrp[].
    describe table xvbrk lines v_no_of_inv.
    *}   INSERT
      CALL FUNCTION 'RV_INVOICE_DOCUMENT_ADD'
           EXPORTING
                VBSK_I           = VBSK
                WITH_POSTING     = 'A'
                PREISFINDUNGSART = CALC_TYPE
           IMPORTING
                VBSK_E           = VBSK
           TABLES
                XKOMFK           = XKOMFK
                XTHEAD           = XTHEAD
                XVBFS            = XVBFS
                XVBSS            = XVBSS
                XVBRK            = XVBRK
                XVBRP            = XVBRP
                XVBPA            = XVBPA
                XKOMV            = XKOMV.
    *{   INSERT         RD1K903017                                        2
    data : v_count type i,v_fkimg type i .
    data : v_no_of_records(10) type n.
    wa_xvbrk = xvbrk.
    ********Selecting the last rec no from ZMIGO
          select max( sr_no ) from zmigo into v_no_of_records.
    *****If Distribution channel is not ZB*********
    if  wa_xvbrk-vtweg ne 'ZB' and ( wa_xvbrk-fkart = 'ZRIN' or wa_xvbrk-fkart = 'ZRTE' ).
    if v_no_of_inv = 1.              " Process only when there is one invoice
    loop at tab_xvbrp into wa_xvbrp  where (           matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
    v_fkimg = wa_xvbrp-fkimg .
    v_fkimg = v_fkimg / 1000.
                do v_fkimg times.
                  v_no_of_records = v_no_of_records + 1.
                  wa_zmigo-sr_no = v_no_of_records.
                  wa_zmigo-po_no = wa_xvbrk-vbeln.
                  wa_zmigo-item_no  = wa_xvbrp-posnr.
                 wa_zmigo-mblnr  = wa_xmkpf-mblnr.
                  wa_zmigo-doc_type = wa_xvbrk-fkart.
                  wa_zmigo-posting_date = wa_xvbrk-fkdat.
                  wa_zmigo-created_on = sy-datum.
                  wa_zmigo-created_time = sy-uzeit.
                 wa_zmigo-bill_lno = v_frbnr.
                  wa_zmigo-material = wa_xvbrp-matnr.
                 wa_zmigo-inv_no = wa_xvbrk-vbeln.
                 wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                  wa_zmigo-plant = wa_xvbrp-werks.
                  wa_zmigo-inv_date = wa_xvbrk-fkdat.
                  wa_zmigo-customer = wa_xvbrk-kunag.
                  wa_zmigo-unit = 1.
                  wa_zmigo-mtype = '601'.
                  insert into zmigo values wa_zmigo.
                enddo.
                clear : wa_zmigo.
    endloop.
    clear : v_count,v_fkimg,wa_zmigo.
    refresh tab_zmigo[].
    clear v_no_of_inv.
    else.                              "When there are Split Invoices
    v_last_inv_no = wa_xvbrk-vbeln.
    v_vbeln_no = v_last_inv_no - v_no_of_inv + 1.
    v_first_inv_no = v_vbeln_no.
    sort tab_xvbrp by vbeln.
    loop at tab_xvbrp into wa_xvbrp  where (           matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
    v_fkimg = wa_xvbrp-fkimg .
    v_fkimg = v_fkimg / 1000.
                do v_fkimg times.
                  v_no_of_records = v_no_of_records + 1.
                  wa_zmigo-sr_no = v_no_of_records.
                  wa_zmigo-po_no = v_vbeln_no.                      "wa_vbrp-vbeln.
                  wa_zmigo-item_no  = wa_xvbrp-posnr.
                 wa_zmigo-mblnr  = wa_xmkpf-mblnr.
                  wa_zmigo-doc_type = wa_xvbrk-fkart.
                  wa_zmigo-posting_date = wa_xvbrk-fkdat.
                  wa_zmigo-created_on = sy-datum.
                  wa_zmigo-created_time = sy-uzeit.
                 wa_zmigo-bill_lno = v_frbnr.
                  wa_zmigo-material = wa_xvbrp-matnr.
                 wa_zmigo-inv_no = v_vbeln_no.
                 wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                  wa_zmigo-plant = wa_xvbrp-werks.
                  wa_zmigo-inv_date = wa_xvbrk-fkdat.
                  wa_zmigo-customer = wa_xvbrk-kunag.
                  wa_zmigo-unit = 1.
                  wa_zmigo-mtype = '601'.
                  insert into zmigo values wa_zmigo.
                enddo.
                clear : wa_zmigo.
    at end of vbeln.
    v_vbeln_no = v_vbeln_no + 1.
    endat.
    clear : v_count,v_fkimg,wa_zmigo.
    refresh tab_zmigo[].
    endloop.
    endif.                             "End of first 2nd IF.
    clear : v_no_of_inv, v_vbeln_no.
    endif.
    ****************Sales return************************************
    if  wa_xvbrk-fkart = 'ZRRE' and wa_xvbrk-vtweg ne 'ZB'.
    loop at tab_xvbrp into wa_xvbrp where (            matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
             v_fkimg = wa_xvbrp-fkimg.
             v_fkimg = v_fkimg / 1000.
             v_tot_qty = v_tot_qty + v_fkimg.
              do v_fkimg times.
                v_no_of_records = v_no_of_records + 1.
                wa_zmigo-sr_no = v_no_of_records.
                wa_zmigo-po_no = wa_xvbrk-vbeln.
                wa_zmigo-item_no  = wa_xvbrp-posnr.
                wa_zmigo-doc_type = wa_xvbrk-fkart.
                wa_zmigo-posting_date = wa_xvbrk-fkdat.
                wa_zmigo-created_on = sy-datum.
                wa_zmigo-created_time = sy-uzeit.
                wa_zmigo-material = wa_xvbrp-matnr.
               wa_zmigo-inv_no = wa_xvbrk-vbeln.
               wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                wa_zmigo-plant = wa_xvbrp-werks.
                wa_zmigo-inv_date = wa_xvbrk-fkdat.
                wa_zmigo-customer = wa_xvbrk-kunag.
                wa_zmigo-unit = 1.
                wa_zmigo-mtype = '651'.
                condense wa_xvbrk-xblnr.
                wa_zmigo-reference = wa_xvbrk-xblnr.
    ********Bill of lading no**
               select single bill_lno from zmigo_final into v_frbnr where inv_no = wa_xvbrk-xblnr and material = wa_xvbrp-matnr.
               if sy-subrc eq 0.
               wa_zmigo-bill_lno = v_frbnr.
               endif.
                insert into zmigo values wa_zmigo.
              enddo.
              clear : wa_zmigo,wa_xvbrp , v_fkimg, v_frbnr.
    endloop.
    endif.
    *******Invoice Cancellation*****************************
    if  wa_xvbrk-fkart = 'ZRS1' and wa_xvbrk-vtweg ne 'ZB'.
    delete tab_xvbrp[] where shkzg eq 'X'.
    loop at tab_xvbrp into wa_xvbrp where (            matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
             v_fkimg = wa_xvbrp-fkimg.
             v_fkimg = v_fkimg / 1000.
             v_tot_qty = v_tot_qty + v_fkimg.
              do v_fkimg times.
                v_no_of_records = v_no_of_records + 1.
                wa_zmigo-sr_no = v_no_of_records.
                wa_zmigo-po_no = wa_xvbrk-vbeln.
                wa_zmigo-item_no  = wa_xvbrp-posnr.
                wa_zmigo-doc_type = wa_xvbrk-fkart.
                wa_zmigo-posting_date = wa_xvbrk-fkdat.
                wa_zmigo-created_on = sy-datum.
                wa_zmigo-created_time = sy-uzeit.
                wa_zmigo-material = wa_xvbrp-matnr.
               wa_zmigo-inv_no = wa_xvbrk-vbeln.
               wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                wa_zmigo-plant = wa_xvbrp-werks.
                wa_zmigo-inv_date = wa_xvbrk-fkdat.
                wa_zmigo-customer = wa_xvbrk-kunag.
                wa_zmigo-unit = 1.
                condense wa_xvbrk-zuonr.
                wa_zmigo-reference = wa_xvbrk-zuonr.
                wa_zmigo-mtype = '602'.
    ********Bill of lading no**
               select single bill_lno from zmigo_final into v_frbnr where inv_no = wa_xvbrk-xblnr and material = wa_xvbrp-matnr.
               if sy-subrc eq 0.
               wa_zmigo-bill_lno = v_frbnr.
               endif.
                insert into zmigo values wa_zmigo.
              enddo.
              clear : wa_zmigo,wa_xvbrp , v_fkimg.
    endloop.
    endif.
    clear : v_no_of_records.
    *}   INSERT
      CALL FUNCTION 'STACK_RESET'.
      R185D-DATALOSS = SPACE.
      FOLGEAUFRUF102 = SPACE.
      PERFORM SETPAR_INIT.
    *{   INSERT         RD1K903017                                        3
    *}   INSERT
      LEAVE.
    ENDFORM.
    This program is working fine for single user but in production where no of people are creating the invoices from different places the data is not getting updated in table ZMIGO.
    sometime populating with wrong data , partial data and sometimes no updation at all.
    I have used the table locking system enqueue and dequeue FM's before n after updation but still the same
    thing is happening.
    What could be the reason.
    Looking for help very urgent any other alternate option.

    Hi,
    Go thru these..
    Enhancement
    SDVFX009 Billing doc. processing KIDONO (payment reference numbe
    SDVFX010 User exit item table for the customer lines
    SDVFX011 Userexit for the komkcv- and kompcv-structures
    V05I0001 User exits for billing index
    V05N0001 User Exits for Printing Billing Docs. using POR Procedu
    V60A0001 Customer functions in the billing document
    V60P0001 Data provision for additional fields for display in lis
    V61A0001 Customer enhancement: Pricing
    SDVFX001 User exit header line in delivery to accounting
    SDVFX002 User exit for A/R line (transfer to accounting)
    SDVFX003 User exit: Cash clearing (transfer to accounting)
    SDVFX004 User exit: G/L line (transfer to accounting)
    SDVFX008 User exit: Processing of transfer structures SD-FI
    SDVFX007 User exit: Billing plan during transfer to Accounting
    SDVFX006 User exit: Tax line (transfer to accounting)
    SDVFX005 User exit: Reserves (transfer to accounting)
    Business Add-in
    SD_CIN_LV60AU02 BADI for billing
    If it is helpful rewards points
    Regards
    Pratap.M

  • POS Sales Return

    HI
    i am Technical Consultant(ABAP,XI) and need few clarifications regarding the following scenario
    Our client has SAP  and his main business is retails stores
    *Business Process is For the returned goods by the customer at store a credit memo is raised in the third party system
    for this credit memo what would be appropriate  document to be created in sap ?what would be Tcode for creating it ?
    To which module does this scenario belong ?*
    Note:
    Third Party provides the material no ,total quantity returned,and the value of the total material
    remember we do not have any sales order,delivery doc,as it is between store and customer
    Please Provide your valuable suggestions
    Regards
    Bhasker

    Hi,
    You have a printfile for IS-Retail (SAP Retail), release 46B, and in page 1478 it tells:
    "POS Interface - Inbound: Sales/Returns (Store)
    Use
    This business process allows you to use the POS interface to process sales or returns which
    have taken place via POS systems in stores.
    Merchandise in stores is normally sold via electronic cash registers (POS systems). These POS
    systems are often integrated into store retailing systems, too. Sales have to be communicated to
    the integrated functions of SAP Retail (for example, Inventory Management, Replenishment
    Planning, Financial Accounting, the Information System) so that the necessary information can
    be updated in the system.
    In SAP Retail a return is a negative sale.
    Empties are regarded as articles in their own right in SAP Retail. Therefore, the sale or return of
    empties is a normal sale or return.
    As part of VMI, sales data for u201Cpure customersu201D can also be processed in POS inbound. It is
    settled in Replenishment-based Inventory Management and stored in the Information
    System."
    I hope this helps you
    Regards,
    Eduardo

  • Sales Returns for Excisable Finished Stock

    Dear All,
    I have read a post below with regards to sales returns for finished stock which updates RG1 register, as I understand RG1 register is a quantity register, and the movement types define the sales returns qty wise, However I have the following queries
    If I send 10 qty of material to my customer the same is captured through my normal sales scenario where I create an outgoing excise invoice, however if the customer sends 3qtys back then I create Return Sales Order, Return Inbound Delivery and a Credit Memo, however from an excise point of view I need to use the t-code J1IH as suggested in the below post and click on additional excise and give the required details. However at the bottom there is a radio button tab RG23 A and RG23 C where in the system by default it is selected as RG23A.
    My question is I will input an outgoing excise invoice where I need to give partial credit for the part qtys which the customer has returned and if  I do click on RG23A tab( Since there is Radio Button) does it have any impact on the register RG23A value wise, as per my understanding RG23A is used from a purchase point of view for raw materials and RG23C is for purchase finished product and why is there no Radio Button indicating RG1 and it does have any impact on other register as well.
    Customer Returns for Excisable Finished materials RG1 registers update
    Kind Regards
    Atul Keshav
    Edited by: Gojolly99 on Jul 10, 2011 8:21 AM
    Edited by: Gojolly99 on Jul 10, 2011 8:38 AM

    Dear Siddhartha,
    This functionality was available in standard it self, Chose order type RE, Configure Delivery (PGR) and billing documents for the order type. It will reversal automatically the excise and sales etc..
    In sales, customer will get debit and sales will get credit, so once you can take return this will get reverse including excise, sales and cst  / vat.
    if it is use ful reward me
    Reg
    Eswar

  • Report linking  Delivery , Receipts , Purchase Return & Sales Return Entry

    We have Service Contract for Supplying Inventory to Our Indirect Customer.
    For Example:We have signed service contract with  IBM whose customer is Bank of India, now once Bank of India logs any complaint call to IBM for faulty part, IBM ask us to supply new part from our inventory to Bank of India and collect faulty part from Bank of  India, after inward of faulty part from bank of India we then send same faulty part to IBM against which IBM send us the new part hence the cycle gets completed and our inventory regain its level after four transaction.
    Each of Inventory in this transaction is managed serially
    To cater to this business scenario, we prepared Delivery Transaction against Bank of India(Bank of India is defined as customer)(For Serial no abcd1234) and prepared  sales return entry of faulty from Bank of India (For serial no pqrs6789), then prepared goods return entry (For Serial no pqrs6789) against IBM (IBM is defined as vendor) and in last prepared GRPO entry for inward of Inventory from IBM.
    In this scenario any transaction can be initiated first.
    Across all this transaction one No (RMA no  a UDF) is common same for all transaction
    So to have complete tracking of this we want to linked all this transaction i.e for one RMA no report should show all transaction linked in single row including serial no of item.
    Satish

    Hi
    Pls find the below query which i have used
    {select * from (select 'GRN' as doc_type,a.docdate,a.docnum,a.u_rmano,a.numatcard,a.cardcode,a.cardname,a.docstatus,c.itemcode,c.itemname,
    c.whscode,b.quantity,status,case when c.direction=0 then 'Inward' when c.direction=1 then 'Outward' end as direction ,d.intrserial,d.suppSerial,d.Batchid
    from opdn a inner join pdn1 b on a.docentry=b.docentry
    inner join (select * from sri1 where basetype=20) c
    on a.docnum=c.basenum and b.itemcode=c.itemcode
    inner join (select * from osri where basetype=20) d
    on a.docnum=d.basenum and b.itemcode=d.itemcode
    where not a.u_rmano is null) grn
    left outer join
    (select 'DC' as doc_type,a.docdate,a.docnum,a.u_rmano,a.numatcard,a.cardcode,a.cardname,a.docstatus,c.itemcode,c.itemname,
    c.whscode,b.quantity,status,case when c.direction=0 then 'Inward' when c.direction=1 then 'Outward' end as direction ,d.intrserial,d.suppSerial,d.Batchid
    from odln a inner join dln1 b on a.docentry=b.docentry
    inner join (select * from sri1 where basetype=15) c
    on a.docnum=c.basenum and b.itemcode=c.itemcode
    inner join (select * from osri where basetype=20 or basetype=58 or basetype=16 or basetype=67 or basetype=15 ) d
    on c.sysSerial=d.sysSerial and c.itemcode=d.itemcode
    where not a.u_rmano is null) dc
    on grn.u_rmano=dc.u_rmano
    left outer join
    (select 'SR' as doc_type,a.docdate,a.docnum,a.u_rmano,a.numatcard,a.cardcode,a.cardname,a.docstatus,c.itemcode,c.itemname,
    c.whscode,b.quantity as  srqty,status,case when c.direction=0 then 'Inward' when c.direction=1 then 'Outward' end as direction ,d.intrserial,d.suppSerial,d.Batchid,1 as [quantity]
    from ordn a inner join rdn1 b on a.docentry=b.docentry
    inner join (select * from sri1 where basetype=16) c
    on a.docnum=c.basenum and b.itemcode=c.itemcode
    inner join (select * from osri where basetype=20 or basetype=58 or basetype=16 or basetype=67 or basetype=15 ) d
    on c.sysSerial=d.sysSerial and c.itemcode=d.itemcode
    where not a.u_rmano is null
    ) sr
    on grn.u_rmano=sr.u_rmano
    left outer join
    (select 'PR' as doc_type,a.docdate,a.docnum,a.u_rmano,a.numatcard,a.cardcode,a.cardname,a.docstatus,c.itemcode,c.itemname,
    c.whscode,b.quantity as prQty,status,case when c.direction=0 then 'Inward' when c.direction=1 then 'Outward' end as direction ,d.intrserial,d.suppSerial,d.Batchid,1 as [quantity]
    from orpd a inner join rpd1 b on a.docentry=b.docentry
    inner join (select * from sri1 where basetype=21) c
    on a.docnum=c.basenum and b.itemcode=c.itemcode
    inner join (select * from osri where basetype=20 or basetype=58 or basetype=16 or basetype=67 or basetype=15 ) d
    on c.sysSerial=d.sysSerial and c.itemcode=d.itemcode
    where not a.u_rmano is null) pr
    on grn.u_rmano=pr.u_rmano}

  • Cash sales in DBM with a cash account

    Dear Experts,
    My client requires that in case of cash sales in DBM, the amount gets posted to a cash account instead of customer account. This process is akin to "Cash Sales" in SAP "Sales and Distribution". It is managed in SD with the billing type BV and by setting up cash account determination.
    In order to achieve this in DBM, we have done following in customizing.
    Copy a new order type from 1000 - Parts order and assign bill type BV instead of F2.  We have maintained cash account determination in SD customizing and ensured that the required cash account is posted when a bill with type BV is treggered by DBM Billing Create event.
    With this the process appears to be going well. On creating the invoice for new order type, the cash account is posted instead of customer account. And on cancellation of invoice the accounting entries are reversed. Also, the users dont have to settle the cash in 'DBM cash desk' as the amount is posted directly to cash account instead of customer account.
    I request members to share their experience/opinion on following points,
    1) Will there be any unforeseen impact on the other DBM functions because of this new set up ?
    2) Has anyone already used such setup and what has been the experience ?
    Thanks and Regards,
    Dhairyasheel

    HI Dhairyasheel,
    This is a client specific requirement and so no such process was delivered by SAP.
    The way you have handled it almost the same way I would ahve done had I been asked to do so.
    To answer your first point - as long as your account postings are happening fine (both forward and reversals), then I dont think there should be any issues.
    As this new, pl do keep this thread updated if possible.
    Thank you.
    Best regards,
    Harsha

  • Sales return with warranty and without!

    Hi,
    I have a scenario like sales return,
    2 cases, with warranty and without warranty
    I need your guidance on controls,
    1st case with warranty,
    Stock has been taken in to the plant with respect to sale return order.
    I generate service order SM01 (Non revenue generated)
    Maintain operations and material
    goods issue and operation confirmation
    technical completion.
    Now I run DP90 for resource related billing. And need to control that service order cost does not go to billing document. But I don't want to bill the customer.
    Please correct me, I only settle my service order and leave it. How should I go about it. Please help me.
    2nd case, when there is no warranty,
    I create a service order SM02 (revenue posting allowed)
    Maintain operations and material
    Then run DP80 to generate quotation and confirm quotation.
    goods issue and operation confirmation
    technical completion.
    Run DP90 for billing the customer.
    Could you please suggest me if I need to make any changes to this. If so, which part of it (SPRO) i need to configure.
    And as per my understanding if service contract exist then it will help to determine fixed price in with out warranty case.

    Hi,
    Yes I could able to run DP90 though I don't declare the order as revenue based. Infact the if refurbishement order (SM03) has to trigger automatically from sales order RA. Infact if it is revenue based we canot even generate it from sale order.
    You can even refer to this following link which states that cycle.
    [http://help.sap.com/saphelp_46c/helpdata/en/e6/4a8df09e0311d189b70000e829fbbd/frameset.htm]
    I have only doubt during this process billing is based on DIP profile. But how does pricing procedure is coming in to picture. And how and where to link Pricing procedure. Please guide me. And from one of my collegue came to know that accounting Indicator can be used to get discount condition in pricing procedure so, that when we run for Warranty cycle we can bring that condition to get 100% discount through KBM1 condition type.
    Regards,
    N,Nagaraju

  • Cash Sales - Acc.Seq - Acct Key error

    Hi!
    I'm doing the Cash Acct Detmn, where the acc.seq. is having only to table 004 & 009. I reqd a Acctkey table in that acc.seq. So, used table 005 which has Sal Org and acct key. But when activating the fields, the Acct key is showing error as the field is not getting determined. A red square error is coming.
    Why I'm determing this is, I want to post Invoice for Cash Sales Order.
    Suggest me why I'm geting that error and also how to do a complete cycle of Cash Sales. mainly the Billing part where I'm getting error because of acct.key EVV.
    Regards

    hi Sreesa,
    cash sales is order related billing whereas RO is delivery related.
    cash sales is not relevant for availability check as u will be picking the goods whereas RO is relevant for availability check.
    cash sales is also not relevant for credit management whereas RO is relevant credit management.
    cash sales uses RD03 as output which immediately prints the invoice whereas RO uses standard output RD00.
    cash sales has one time customer account group where as RO normally doesn't.
    for cash sales order type is BV or CS and for RO it is RO
    cash sales triggers petty cash a/c where as in RO customers account is debited.
    delivery and settlement will be done immediately in cash sales where as in RO only delivery will be done immediatrly
    Regds,
    Rupali

  • Sales Return Scenario

    Hi,
    I have a query on the follwoing sales return scenario.
    A manufacturer has  two plants viz: a manufacturing plant and a sales depot which are located in two different states which will typically relate to two sales organisations . A sale has been done to a customer from the manufacturing plant. The customer wants to return some material due to damages/defect but can only send the material to the depot location since it is nearer to him. since the sale is from manufacturing plant how do we execute the returns process. Please note there are Excise and tax implications.
    Appreciate some suggestion  on this

    Hi sir,
    In this scenario I understand that under the same company with different Exicise and tax camponents, you have a plant and a depot in different states fine.
    You can take returns at depot as required by the customer, maintain proper pricing for stock trancefer from depot to plant taking Excise and tax part in to account., and try it out.
    Regards
    DSR

  • Anybody worked on the Sales Returns process - Consumer products

    Hi,
    I am looking for some information / guidance on customizing on the Sales Returns enhacement package of the Consumer product industry under ECC 6.0
    Apart from the SAP Help link which I have already gone through, does anyone have any kind of documentation available around.
    Thanks in advance.
    Vijay

    This functionality is part of SAP Enhancement packages for ECC. It was earlier part of the IS-BEV solution and the documentation pertaining to the same hasn't changed.

  • Sales return delivery process wtih Excise

    Dear experts,
    This is chandra. Plz explain the process of Sales delivery return process with excise part how to reverse, that means where the excise details reverse in delivery or billing level after billing what is process. which register it will updated. Plz guide me.
    Thanks and regards
    Chandra

    Dear Chandra
    For updation of excise related sales returns, run T.Code J1IH and do the following:-
    Customer Credit
    Choose the Additional excise  input the original excise invoice reference, document year, company code, plant and excise group and execute. There input manually what value you need to give credit and save.
    Cenvat Debit
    Choose Other Adjustment  and here also, maintain the datas whatever you input as above and save.
    thanks
    G. Lakshmipathi

  • Excise duty adjustment in case of customer sales return

    Hi Frnds,
    While my customer return the finished goods I am making sales return order ,done the PGR & make the credit note.
    Now I want to adjust the excise duty through J1IH
    In j1ih which option I have to choose <other adjustemnet> or <add. excise>
    In Add. Excise tab.  the Gl account detremine are :
    C   0013113920     115.00               CENVAT clearing
    D   0024822000     5.00               CENVAT Input SECess
    D   0024820000     100.00               CENVAT Input BED
    D   0024821000     10.00               CENVAT Input ECess
    Whereas In case of Other adjustment tab GL account determine are
    C  0024822000     5.00               CENVAT Input SECess
    C  0024820000     100.00               CENVAT Input BED
    C  0024821000     10.00               CENVAT Input ECess
    D  0013113920     115.00               CENVAT clearing
    Please suggest me which option is correct.......Other adj or Add excise tab.
    In my opinion it should be Add. Excise where Clearing account is credited.
    Please Give me the solution & logic.
    Regards
    Sunil

    Please help me

Maybe you are looking for

  • Setting up through aim mail

    I am having trouble setting up my mail account. I already have an online eMail adress at aim.com. what would I fill in when I want to set it up?

  • Single Podcast Episode Not Showing up in iTunes

    The second episode of the ExactTarget Developer Podast is not showing up. This was originally related to a bad link which was subsequently fixed. Any idea of what is happening or how it can be fixed? Podcast: ExactTarget Developer Podcast Feed: http:

  • Bing loads in new Tabs

    Previously I had an issue with the Bing website loading every time I opened Firefox, even though my homepage was Google. I was able to fix that by changing the Target Line. However, it still loads Bing when I open new tabs. I've checked Add-Ons and E

  • Can this page be made all in Dreamweaver?

    http://www.mammothmountain.com/MyMammoth/?section=weather I like the collapsing panels, and especially the folder-like tabs under the "WEATHER" section. Are these tabbed folders ("Extended Forecast", "Resources", "Road Conditions") collapsible Spry p

  • ITunes erased my contacts/calendar, how can I revert to pre-sync?

    Hello all, My Powerbook's hard drive recently took a dump on me, which was upsetting enough as I had many useful papers on there, but fortunately I did backups of my pics/music library. I sent my computer off to Apple for repair--under Applecare fort