Order by problum

Hi All
SELECT  p.prod_id,
        p.prod_name,
        sum(sd.TOTAL_QTY),
        s.curr,
        sd.price
from    sale_order_detail sd,
        sale_order s,
        product p,
        customer_master c,
        customer_detail cd
where   c.cust_id=cd.cust_id
        and c.cust_id=s.cust_id
        and s.id=sd.id
        and sd.prod_id=p.prod_id
        AND s.season_year = nvl('&season',S.SEASON_YEAR)
        AND s.show =NVL('&show',s.show)
        AND p.item_type=NVL('&item',p.item_type)
        AND cd.country=NVL('&UK',cd.country)
group by  p.prod_id,
          p.prod_name,
          s.curr,sd.price
order by  P.PROD_NAME,sum(sd.TOTAL_QTY) desc;
result of this query is
CA70022     AASHI COAT     14     GBP     20
CA70022     AASHI COAT     8     EURO     20
40071     ABITAL DRESS     35     EURO     108
40071     ABITAL DRESS     28     GBP     72
40071     ABITAL DRESS     3     USD     151
CA60025     ABIZ SHRUG     7     EURO     75
CA60025     ABIZ SHRUG     3     EURO     57
CA60025     ABIZ SHRUG     3     EURO     72
50017     ADJAC BAG     29     GBP     54
50017     ADJAC BAG     5     EURO     82
50017     ADJAC BAG     0     EURO     0
50017     ADJAC BAG     0     GBP     57
CA40486     ADYUT DRESS     12     EURO     109
CA40486     ADYUT DRESS     3     GBP     65
40383     AFRE DRESS     4     EURO     78
40383     AFRE DRESS     3     GBP     72
CA40546     AFRO DRESS     10     EURO     109
CA40546     AFRO DRESS     3     USD     156
50113     AIBNE BAG     2     EURO     98
80124     AIKON NECKLACE     2     GBP     22
CA40460     AILE DRESS     4     USD     135
50101     AITHNE BAG     4     EURO     95
40438     AJAAT DRESS     2     EURO     128
CA30100     AKIR TOP     17     EURO     63
40122     ALGO CROSS DRESS     19     EURO     93
40122     ALGO CROSS DRESS     3     EURO     98
60041     ALICE SHRUG     53     EURO     57
60041     ALICE SHRUG     24     GBP     57
60041     ALICE SHRUG     8     GBP     38here AASHI COAT has 22 pcs
and ABITAL DRESS has 68 pcs
and ABIZ SHRUG has 13 pcs
i want the result in desc order
68
22
13
Please guide
Thanks And Regards
vikas
Edited by: vikas singhal on Aug 3, 2010 3:32 PM
Edited by: vikas singhal on Aug 3, 2010 3:33 PM

here,
with testdata as
   select 'CA70022' prod_id,  'AASHI COAT'       prod_name, 14 tot_qty, 'GBP' curr, 20 price from dual union all
   select 'CA70022'        ,  'AASHI COAT'                , 8         , 'EURO'    , 20       from dual union all
   select '40071'          ,  'ABITAL DRESS'              , 35        , 'EURO'    , 108      from dual union all
   select '40071'          ,  'ABITAL DRESS'              , 28        , 'GBP'     , 72       from dual union all
   select '40071'          ,  'ABITAL DRESS'              , 3         , 'USD'     , 151      from dual union all
   select 'CA60025'        ,  'ABIZ SHRUG'                , 7         , 'EURO'    , 75       from dual union all
   select 'CA60025'        ,  'ABIZ SHRUG'                , 3         , 'EURO'    , 57       from dual union all
   select 'CA60025'        ,  'ABIZ SHRUG'                , 3         , 'EURO'    , 72       from dual union all
   select '50017'          ,  'ADJAC BAG'                 , 29        , 'GBP'     , 54       from dual union all
   select '50017'          ,  'ADJAC BAG'                 , 5         , 'EURO'    , 82       from dual union all
   select '50017'          ,  'ADJAC BAG'                 , 0         , 'EURO'    , 0        from dual union all
   select '50017'          ,  'ADJAC BAG'                 , 0         , 'GBP'     , 57       from dual union all
   select 'CA40486'        ,  'ADYUT DRESS'               , 12        , 'EURO'    , 109      from dual union all
   select 'CA40486'        ,  'ADYUT DRESS'               , 3         , 'GBP'     , 65       from dual union all
   select '40383'          ,  'AFRE DRESS'                , 4         , 'EURO'    , 78       from dual union all
   select '40383'          ,  'AFRE DRESS'                , 3         , 'GBP'     , 72       from dual union all
   select 'CA40546'        ,  'AFRO DRESS'                , 10        , 'EURO'    , 109      from dual union all
   select 'CA40546'        ,  'AFRO DRESS'                , 3         , 'USD'     , 156      from dual union all
   select '50113'          ,  'AIBNE BAG'                 , 2         , 'EURO'    , 98       from dual union all
   select '80124'          ,  'AIKON NECKLACE'            , 2         , 'GBP'     , 22       from dual union all
   select 'CA40460'        ,  'AILE DRESS'                , 4         , 'USD'     , 135      from dual union all
   select '50101'          ,  'AITHNE BAG'                , 4         , 'EURO'    , 95       from dual union all
   select '40438'          ,  'AJAAT DRESS'               , 2         , 'EURO'    , 128      from dual union all
   select 'CA30100'        ,  'AKIR TOP'                  , 17        , 'EURO'    , 63       from dual union all
   select '40122'          ,  'ALGO CROSS DRESS'          , 19        , 'EURO'    , 93       from dual union all
   select '40122'          ,  'ALGO CROSS DRESS'          ,  3        , 'EURO'    , 98       from dual union all
   select '60041'          ,  'ALICE SHRUG'               , 53        , 'EURO'    , 57       from dual union all
   select '60041'          ,  'ALICE SHRUG'               , 24        , 'GBP'     , 57       from dual union all
   select '60041'          ,  'ALICE SHRUG'               , 8         , 'GBP'     , 38       from dual
select prod_id,
       prod_name,
       sum(tot_qty) piececnt,
       sum(case when curr = 'GBP'
                then tot_qty * 0.90 * price
                else tot_qty * price
            end) tot_price
  from testdata
group by prod_id,
          prod_name
order by piececnt desc
;outputs:
PROD_ID PROD_NAME          PIECECNT  TOT_PRICE
60041   ALICE SHRUG              85     4525.8
40071   ABITAL DRESS             66     6047.4
50017   ADJAC BAG                34     1819.4
40122   ALGO CROSS DRESS         22       2061
CA70022 AASHI COAT               22        412
CA30100 AKIR TOP                 17       1071
CA40486 ADYUT DRESS              15     1483.5
CA60025 ABIZ SHRUG               13        912
CA40546 AFRO DRESS               13       1558
40383   AFRE DRESS                7      506.4
50101   AITHNE BAG                4        380
PROD_ID PROD_NAME          PIECECNT  TOT_PRICE
CA40460 AILE DRESS                4        540
50113   AIBNE BAG                 2        196
80124   AIKON NECKLACE            2       39.6
40438   AJAAT DRESS               2        256replace what is between the parenthesis in the WITH clause with your original select statement and you'll get the results above.
John.

Similar Messages

  • Not able to create sales order.

    Guru's,
    I unable to create the sales order.
    After entering sold to,material and qty and plant system is giving error Template material processing is deactivated
    Murali suggested to implement the note 1094540.
    But I am facing this problum in one box. remaining boxes working fine with out implementing the above note.
    Please let me know from configuration side we can do any settings .
    HIGHLY REWARDED
    THANKS IN ADVANCE.
    Its very urgent.

    Guru's,
    I unable to create the sales order.
    After entering sold to,material and qty and plant system is giving error Template material processing is deactivated
    Murali suggested to implement the note 1094540.
    But I am facing this problum in one box. remaining boxes working fine with out implementing the above note.
    Please let me know from configuration side we can do any settings .
    HIGHLY REWARDED
    THANKS IN ADVANCE.
    Its very urgent.

  • Problum in creating view

    Hi i want to create a view based on three table i am getting problum please guide me
    SQL> ed
    Wrote file afiedt.buf
    1 CREATE VIEW order_tracker1 AS
    2 SELECT
    3 s.id,
    4 s.party_name,
    5 s.comment1,
    6 s.del_date,
    7 s.order_date,
    8 sum(sd.total_qty),
    9 sd.discount_price,
    10 c.vip_cutomer,
    11 c.agent_name,
    12 c.shipped_from,
    13 c.payment_terms
    14 FROM sale_order s, sale_order_detail sd,customer_master c
    15 WHERE s.id=sd.id and
    16 s.cust_id=c.cust_id
    17 group by s.id,
    18 s.party_name,
    19 s.comment1,
    20 s.del_date,
    21* s.order_date
    SQL> /
    sd.discount_price,
    ERROR at line 9:
    ORA-00979: not a GROUP BY expression
    Thanks and Regards
    vikas
    Edited by: vikas singhal on May 26, 2009 11:27 PM

    Your script to create view should be like this
    SQL> CREATE VIEW order_tracker1 AS
    2 SELECT
    3 s.id,
    4 s.party_name,
    5 s.comment1,
    6 s.del_date,
    7 s.order_date,
    8 sum(sd.total_qty),
    9 sd.discount_price,
    10 c.vip_cutomer,
    11 c.agent_name,
    12 c.shipped_from,
    13 c.payment_terms
    14 FROM sale_order s, sale_order_detail sd,customer_master c
    15 WHERE s.id=sd.id and
    16 s.cust_id=c.cust_id
    17 group by s.id,
    18 s.party_name,
    19 s.comment1,
    20 s.del_date,
    21 s.order_date,
    22 sd.discount_price,
    23 c.vip_cutomer,
    24 c.agent_name,
    25 c.shipped_from,
    26 c.payment_terms
    27 ORDER by s.id,
    28 s.party_name,
    29 s.comment1,
    30 s.del_date,
    31 s.order_date,
    32 sd.price_total
    33 ;
    Try this.
    Arvind

  • Materiliezed View Replication Problum

    Hello,
    I am working on materiliezed view replication but i have an crucial issue. I have a refresh group wich contain many MVs some are Read only and some are updateble but all are in Fast refresh mode (logs are created on both replication and MV sites on these objects) and are refrentially intigrated to each other i.e thay have parent child relationship with each other as at replication site on base tables.
    When refresh group job runs to refresh these MVs i got the errors
    ORA-02292: integrity constraint (string.string) violated - child record found
    After that job status has changed to break,but in the same time all the panding transactions at the MVs sites are pushed to Replication site i e ( Base tables at replication site and MVs of these tables are syncronized).In order to change the status of job to Normal, i have to disable some constraints(not all) on the MVs and manually run the job .Atfer that job status will become Normal even i enable these constraints with validation.
    What will be the reason ? Are there some MVs trying to complete refresh instead of Fast or increment refresh in this refresh group?If yes how i can trace out MVs and solve this problum?
    Some other information ,
    Replication site running with 10gR2 Enterprize Edition.
    Materiliezed View site running with 10gR2 Standered Edition.
    Thanx.

    You can't control order of refresh of MV in refresh group. So if in master-detail relation FK with on delete restrict clause is defined then when master MV is refreshed and delete was performed, than this error is raised. Similar error is raised when detail MV is refreshed before master MV and insert is performed on detail a there is no master record.

  • Open Sales Orders Backlog Report

    Hi All: I have been asked to create Backlog reports for Open Sales Orders and the revenue amounts for the next 15days, one month, 2 months, 3 months 6 months etc etc. Does anyone know of a standard report that covers that and the business content and cues that go with it?
    Thanks in advance
    Bobby

    I haven't seen any standard content for it, with my client, we actually developed the open order report from Item extractor and status extractor. And compare the created on date to the system data to see how long it has been opened for and put it in different buckets.
    Hopes that help.
    thanks.
    Wond.

  • Open sale order aging report

    Need a report on open order aging.  The open order means not delivered or partially delivered. Further with days range since its open or not fully delievered i.e. > 15 days or 15-30 days and so on.
    The standard transactions Va05 and VL10c can provide the list but dont provide any aging info.
    Kindly help in this.
    thanks
    anu

    Dear Anu
    1. First in VA05 you can use Variants and get the report as desired by you,create one variant and use Filter along with greater then, less then (all are in selection option icon)
    This way you can create three variants.
    But limitation is dates has to be manually changed in variants each time.
    2. Try this Tcodes
    S_ALR_87014387 Display Document Flow
    S_ALR_87014392 Display Document Flow
    This reports will give you document flow run report with ticking checkbox for sales order,delivery and goods isse then after getting the list expand all (Shift+F12)
    you will get the quantities for sales order, and what is delivered and what is issued.
    3. As such if you want exactly the report you can take help of ABAP to create the ALV
    4. Report or create Queries in SQVI , or else create MCSI report
    Regards
    Jitesh

  • Necessary Fields For Creation of Service PO of Order Type Relaese Order.

    Dear Guru,
    I have encountered an issue which i am trying to resolve...
    My this requirment will seem little okward the way i am asking but i have no way...
    The issue is I have to create a Service PO of Order type Release order (RO) using BAPI Function Module .BAPI_PO_CREATE1.
    The service PO should be of multiple Item and services for particular line item should be multiple.
    When I am creating this using ME21 or ME21N i am facing no issue.
    But when i am using BAPI Function Module .BAPI_PO_CREATE1
    i am getting following errors ;; The error which i am getting as below                                                                               
    T ID                   NUM MESSAGE                                                                               
    E BAPI                001 No instance of object type PurchaseOrder has been created. External reference:
    E MEPO              000 Purchase order still contains faulty items                                    
    E SE                   029 Please maintain services or limits                                            
    E SE                   140 Service HIRING OF LCD: please specify unit of measure
    But I am failing to findout in which field services  or limits and unit of measurement have to maintain.
    What are the necessary fields have to pass in Bapi import parameter and the table i am unable to findout.
    Please show some way how to resolve this or give me some guideline to resolve this
    Dear Moderator request your kind intervane to move this qurry into correct forum if i have asked this in wrong forum
    Thanks and regards
    saifur rahaman

    Hi Saifur
    Can you please elaborate how did you resolve the issue we are also facing same problem when we are trying to create the PO for service items through SRM it is throwing same error while creating the PO in SAP.
    Email Id : [email protected]
    Thank you in advance!!
    Regards
    Deepika

  • How to restrict manual changing of free goods in sales order

    Hi ,
    Goodmorning ,
    We have some requirement : In sales order free goods quantity determination by system  should not be allowed to change manually , where can we do this ?
    Looking for your inputs
    Thanks and regards
    Venkat

    As per SAP Standard, when the main Item quantity is changed, the Free Goods are redetermined. In this case any manual changes to Free Goods Quantities are lost.
    But your requirement is for restricting the Chages of the Quantity of Free Goods Correct?
    I believe there is no SAP standard solution for this. You will have to apply a User Exit, which will check the Item category of each LIne item & if it is free goods (TANN) then changes are not permitted.
    Hope this helps.
    Thanks,
    Jignesh Mehta

  • Query help needed for Sales order panel user field query.

    I have a user defined form field on sales order row level called = U_DEPFEEAMT
    1, I would like this field to get the value from a field on this sales order row level multiplied by what is in point 2 below. The details of field in point 1 is :
    Form=139, item=38, pane=1, column=10002117, and row=1
    2. The contents in field 1 should be multiplied  by a value coming from another user field linked to OITM master item.
    The details of user field attached to OITM is :
    OITM.U_DepositFeeON
    Appreciate your help.
    Thank you.

    Try this one:
    SELECT T0.U_DepositFeeON*$[$38.10002117.number\]
    FROM dbo.OITM T0
    WHERE T0.ItemCode = $[$38.1.0\]
    Thanks,
    Gordon

  • Order Of Null and Not Null Values while table creation

    We have to create a table with 10 fields .5 of them are Null and Not Null. Now my question what should be the order of fileds??.Means Null Fields will come first or Not Null.

    The only reason I can think of having the NULL columns at the end is storage space.
    To conserve space, a null in a column only stores the column length (zero). Oracle
    does not store data for the null column. Also, for trailing null columns, Oracle does
    not even store the column length.

  • Fields not in Order ..?

    When I display data on the DSO or Cube  the fields are not in order as compared to once in extract checker - datasource.
    Why so?
    On what does the sequence depend?
    It makes Reconcilation really tough.

    I guess... Sequence of the Fields in DSo Contents display will depends on the Sequece of DSO Creation(IO Sequece while creating DSO).
    Nagesh Ganisetti.
    assign points it helps.

  • New Infinity Order - As it happens !!!

    I've just ordered Infinity (today) and I thought I'd track the order etc here for others to see 'live' what to expect:
    As a precursor, I've had BT ADSL for many years, and no end of problems with the Indian call centre, but great experience from the users and mods on this site - the mods are the reason I'm staying with BT instead of switching to TalkTalk...
    In Autumn last year my Infinity availability showed as available from end of Jan 2013 (and confirmed by email from Openreach), but in Winter this changed to an earliest date of End of March 2013 - not a problem, just have to wait. This weekend this changed to now available to order, so today I did just that.
    My current set-up is adsl2+ unlimited, with minimal phone + BTVision unlimited. I wanted Infinity 2, + minimal phone + BTVision with Youview box. I have 5 months to run on current contract.
    04/02/2013 - Called BT to upgrade. Approx 5 minutes on hold, but ok - everyone gets busy. Spoke to John who seemed very knowledgeable about his products and also very helpful. I was put on hold a couple of times for a couple of minutes, but eventually we agreed the following package, with prices as advertised:
    New contract:
    Phone - 12 months, prepaid so save £56.40.
    Broadband: Infinity 2 unlimited (including non-throttled P2P), estimate 59Mbps down / 20Mbps up.
    TV: TV Unlimited as we had before, but with new Youview box - free, but with £49 activation fee. (Not sure what he activation fee is for as I'm already on BTVision - advice happily received if this can be waived, but not a deal breaker if I have to pay it).
    Installation date agreed as pm (1pm to 6pm) on wed 20/02/2013.
    John could not confirm if my old BTV box and Youview box would work together, but confirmed that BT want to aim for multi-room so suspected that at some time this would stop working if it even started.
    John also confirmed that my new youview box should work fine with powerline adaptors in the same way as my current BTV box.
    First problem was that John can order everything except the Youview box - there is apparently a problem doing this for existing customers - John confirmed he'll call back within 1 or 2 days with the Youview order added on. I confirmed to him that this is necessary for me to complete my order - I won't accept the Infinity package with a 12 month contract then have to pay for a youview box.
    Cancellation terms stated as:
    I can cancel the broadband/TV service up to 17th Feb.
    7 days to cancel the prepaid phone line. After this I'm tied into the BT line for 12 months which implicitly means I can't change broadband suppliers because they normally require you take their phone line rental. This is the critical path, so if my free youview box doesn't appear on my order page before this then I need to cancel everything and then re-order the complete set.
    I'll let you know when/if John calls back and what the update is on the youview box and also the install date.
    Cheers,
    Alan.

    20/02/2013 - Sixth undate.
    Hopefully the last update. I was given the 1pm to 6pm slot and the Openreach engineer (Dave) called at approx 2pm, explained what he needed to do at the cabinet and that he'd be with me in 30 mins.
    Dave was the same engineer who fixed my line in October and also fitted the new faceplate ready for infinity at that time. He tested the line speed and then connected the new modem to my hub - and viola, 75.1/14.9 connection (wired test) against an estimated 59/19.
    I expect this to fluctuate as the line settles and also it may go down quite a bit but I'm extremely happy with this result.
    Anyone else in the PO15 postcode, cabinet 18 - I was no.2 Infinity connection so there's plenty of space left for now.
    So for everyone who is having problems - good things can happen using the advice on this forum. A few months ago I was so hacked off with BT I was going to leave. Now turned round to an extremely happy customer after a few months of good ADSL, flawless BTV (now Youview too) and an upgrade to Infinity with a new contract. All it took was a bit of patience to get my line fixed and get rid of all the noise.
    Cheers,
    Alan.

  • Payment by letter of Credit against Purchase order

    When we are purchasing from Foreign Vendors , we need to open a Letter
    of credit (LC) .
    Depending on the terms of Purchase order , Vendor will discount it /get
    payment from Bank on submitting LC and other necessary documents.
    Vendor's Bank, at appropriate Time will send the same to Customer's Bank
    How to mapped this scenario in SAP-MM and FI .
    Activities required to be updated against Purchase order :
    (1) Payment Terms : 100 % against LC on delivery
    (2) History should reflect LC opened - Date and Bank Name which
    Vendor has suggested, our company's Bank Name
    (3) LC discounted details
    (4) LC payment due date to our company Bank - as Procurement needs
    to inform to Finance for this.
    Any help will be highly appreciated.
    Thanks and Best Regards,

    When we are purchasing from Foreign Vendors , we need to open a Letter
    of credit (LC) .
    Depending on the terms of Purchase order , Vendor will discount it /get
    payment from Bank on submitting LC and other necessary documents.
    Vendor's Bank, at appropriate Time will send the same to Customer's Bank
    How to mapped this scenario in SAP-MM and FI .
    Activities required to be updated against Purchase order :
    (1) Payment Terms : 100 % against LC on delivery
    (2) History should reflect LC opened - Date and Bank Name which
    Vendor has suggested, our company's Bank Name
    (3) LC discounted details
    (4) LC payment due date to our company Bank - as Procurement needs
    to inform to Finance for this.
    Any help will be highly appreciated.
    Thanks and Best Regards,

  • Purchase order to payment

    my client requirement is status of the po till payment i want to generate a sap query any body pls guide me purchase order ->down payment ->goods reciept-> invoice verification -> vendor payment
    i want to generate this report vendor wise as well as the material and po
    pls give me indetails tables and fields
    advance thanks for kind reply

    hi,
    Seelct EKBE u2013 EBELN, LIFNR
    Where EKEB- BUKRS Eq (Company Code entered in the selection screen)
               EKBE u2013 BEDAT Eq (Purchasing Document Date entered in the selection screen)
    Select all EKBE u2013 EBELN  in to EKBE 
    Invoice and GRN Document Number: - 
             Select EKEB-BELNR, BUDAT, DMBTR, WRBTR, WAERS
                         Where  EKBE u2013 EBELN   Eq  EBELN Entered in the selection screen
                                     EKBE u2013 GJAHR Eq  GJAHR Entered in the selection screen
                                     EKBE u2013 BUDAT  Eq  BUDAT Entered in the selection screen
                           EKBE u2013 VGABE  Eq  1 (Goods Receipt) (in case of Invoice GRN)
                                     EKBE u2013 VGABE  Eq  2 (Invoice Receipt) (in case of Invoice MIRO)
             Eenter all EKBE u2013 BELNR into BKPF and select BKPF- BELENR, WAERS
                                    BKPF - BUKRS Eq  BUKRS Entered in the selection screen
                                    BKPF u2013 GJAHR Eq  EKBE - GJAHR
                                    BKPF u2013 BUDAT  Eq EKBE - BUDAT 
                                    BKPF u2013 AWKEY Eq  EKBE u2013 BELNR + GJAHR
             Eenter all BKPF u2013 BELNR into BSEG and select BSEG u2013 BELENR, DMBTR
                                   BSEG - BUKRS   Eq  BKPF - BUKRS 
                                   BSEG u2013 GJAHR  Eq  BKPF - GJAHR
                                   BSEG u2013 BUDAT  Eq  EKBE - BUDAT 
                                   BSEG- BELNR    Eq  BKPF u2013 BELNR
    For Payment Document  Select  BSEG u2013 AUGBL
                                     Where BSEG- BELNR    Eq  BKPF u2013 BELNR
                                                BSEG - BUKRS   Eq  BKPF - BUKRS 
                                                BSEG u2013 GJAHR  Eq  BKPF - GJAHR
                                                BSEG u2013 BUDAT  Eq  EKBE - BUDAT 
    Eenter all BSEG u2013 AUGBL into BSEG and select BSEG u2013 BELENR, DMBTR ,
    Where BSEG u2013 BELNR Eq BSEG - BSEG u2013 AUGBL
    For Advance Payment Document  Select  BKPF u2013 BELNR, WAERS and KURSF
                         Where BKPF - BUKRS Eq  BUKRS Entered in the selection screen
                                    BKPF u2013 GJAHR Eq  EKBE - GJAHR
                                    BKPF u2013 BUDAT Eq EKBE - BUDAT 
                                    BKPF u2013 TCODE Eq FBA7 and FBA6
    Enter all BKPF u2013 BELNR into BSEG and select BSEG u2013 BELENR, DMBTR ,
                                     Where BSEG- BELNR    Eq BKPF u2013 BELNR
                                                BSEG - BUKRS   Eq BKPF - BUKRS 
                                                BSEG u2013 GJAHR Eq  BKPF - GJAHR
    Reagrds,
    Rama Mohan

  • Vendor Downpayment Request  Payment Order

    Dear All
    We are processing most of our vendor payments through Automatic Payment Program which initially create the payment order and later once we upload the EBS system clears the vendor open item. All the vendor open items which are having payment order are locked and cannot be cleared without payment order. This is a control so that no duplicate payment can be made. But we recently found a flaw in SAP where although normal open items are blocked but in case if there is any payment order for downpayment request, we can still process the payment through F-48 meaning we can create the down payment for the DPR for which payment order exist so there is a chance of duplicate payment to vendor. Please advise if someone face the same issue and is there any solution to control it.
    Best Regards
    Farhan Qaiser

    Hi,
    F-47: Down Payment against PO
    regards,
    Sanju M S

Maybe you are looking for

  • Alchemy and EAX doesn't w

    Hi I'm trying to get EAX sound working in games using Vista, X-Fi Extreme Music and Creative Alchemy. I've installed alchemy and added the games in the console yet the EAX options in game are still greyed out. Any ideas? Thanks Flim

  • Retrieve URL from database and navigate through command button

    I am new to ADF and Jdeveloper. In our database we store the URLs to our help/FAQ webpage in a table. What I would like to do is retrieve this URL from the database and code a command button to navigate the user to this URL but I am not sure how to a

  • Disabling "FCP has reached end of tape"

    Hi, is it possible to manually control the capturing process without FCP detecting the end of a tape? I am capturing VHS tapes through a canopus advc300. Frequently, the capturing process would stop because FCP thinks its the end of the tape. Pretty

  • Ultra-interactive PDF

    Hey guys, I'm wondering if I can do this with Acrobat, or if I maybe need a different program for it.. What I'm trying to do is build a page, kind of like a digital pamphlet, showcasing several various products. Upon mousing-over each product (not cl

  • Will an Airport Express help?

    I just set up a wifi network in my new apartment. Time Warner gave us a modem with wifi (Arias) but it was weak so I installed my Airport Extreme and set up a new network. It is much faster. But I am still noticing some slowness in the MacMini in the