VT03N Inncorrect Total Delviery Weight

Hi Guys,
              I have a issue with shipment creation ...
Data impacted: Total Delivery Weight in R/3
Business Impact: Unable to view actual weight of shipments
If you run VT11 for all shipments with some  cateria:
For all shipment which Tot WgCRP greater than 43 will has the issue.
i am unable to view actual weight of shipments....
I have small issue with shipment creation ...
i have created some shipments .. those were created succesfully ...
i am trying to run VT11 report for all shipments but shipments which are having WgCRP greater than 43 will has the issue . i am unable to view actual weight of shipments...
finally i did some changes i have created shipment individually it is working fine ...
but in production still it is having the issue .. might be users are creating bulk shipments in a single shot ..
only some shipments still not able view actual weight of shipments.
it they created individually it is working fine.. for bulk cases it is not working ..
Please analyse and give me your valuable suggesion ...
thanks
Vijay Kumar Reddy

Hi Prashanth,
Thanks for reply,
As suggested you, same think I used the logic and solved the problem.
VTTP-TKUNM (Shipment Number)
VTTP-VBELN (Pickup all delivery number)
LIPS-VBELN (Give all delivery Number)
LIPS-NTGEW (net weight) or LIPS-BRGEW (gross weight) sum up of all the quantities for the field.
Regards,
Devendra

Similar Messages

  • Total ink weight for fabrics or suggested color profile.

    My client's approved their project and I now have some tradeshow pop-up panels to "convert to CMYK" that will be printed on [some stretchy unknown] fabric. I was wondering if anyone knows the total ink weight for the [stretchy] textiles used for tradeshows or if there is a suggested color profile to use during conversion (or if the real printers actually want this... I had seen that some textile printers actually prefer LAB). In the past I took a guess and used Web Offset Coated and it came out "okay" on Tyvek where something was printed locally, but these are a "stretchy fabric," so I'm guessing something like Web Offset Uncoated? I know the inkjet printers are capable of outputting a lot of ink and do not want the fabric to run or visually bleed though, also I wasn't sure if the tradeshow fabrics are printed with the typical oversized inkjet printers at all.
    The "print vendor" (middleman) told me emphatically CMYK conversion was a must, but seemed confused by the question of suggested color profile for converting and could not provide an answer. Unfortunately they're in a deal with my client and the producer of the booth so I'm stuck with them. Also they have not provide the contact info for the producer of the booth. I'd rather not use uncoated because I know there will be a significant loss of vibrance in the printing. So I come to the plethora of knowledge here at Adobe.

    Okay so I received more feedback from my client. When they were pitched it sounds like the vendor is going to print with Dye Sub. I'm thinking the middleman might not know what he's talking about (since they couldn't tell me which CMYK) so to be safe I'm going to provide the files in RGB (Adobe 1998) AND CMYK (U.S. Web Offset Coated SWOP). That way they can pick and choose. I got U.S. Web Offset Coated as a suggestion off a search for CMYK conversion and Dye Sub on large format printers. Hope this helps someone.
    Spelling was edited by: Chris Patterson

  • Condition record for a header discount condition - Total gross weight

    As you know, we can not assign an access sequence for a header condition. How can I create a condition record for a header discount condition which takes into consideration the total gross weight of the items of a sales document?
    Thanks in advance for the answers....

    In the pricing procedure (t.code V/08), assign routine 12 in the Alternative formula for condition base value column for the condition type.
    Regards,

  • Grand Total Issue - Weighted Sum

    Here's the Issue
    3 Columns
    Hours Worked, Pay Amount, and Pay Rate
    20 10 $.50
    Pay Rate is a calculated column from "Hours Worked" and "Pay Amount"
    I'm trying to add the grand total to my work sheet for "Pay Rate"
    Discoverer simply adds all of the "Pay Rate" values.
    I would like the Pay Rate grand total to be "Pay Amount Grand Total" / "Hours Worked Grand Total"
    Is this even possible?

    If you're using 10g, take a look at your aggregation options (tools/aggregation). Since Pay Rate is a calculated column, there should be an option that forces it to do a calculation on the totals (rather than a total of the calculation). If you're on an older version, you may need to look into the aggregation-related registry settings/preferences. Also make sure you're doing a sum (not a cell sum).
    That behavior seems to change from version to version but if you search on MetaLink you should find some version-specific help.

  • Grand Total of weighted average in OBISE10g

    Hi,
    I need a basic help in OBISE1(10.1.3.2.1)10g aggregation.
    I have a report which shows 5 cols col1,col2,col3 (as an amount section) col4,col5 (as % column). col 4 and col 5 are derived by using some cacluation based on col1 and col2..
    upto here no issues and all columns are getting populated properly...
    i have a Total column at the bottom of the report where the columns get added up.. Now sum(col1),sum(col2),sum(col3) is being displayed which is correct and as expected.. but for total% of col4 and col5 what I expected value is to recalculate their formula using the values available in total aggregation column for col1 and col2.. but I am unable to do it..
    values are not as expected...also the number of columns are getting reduced after applying grand total to whole report.
    please provide me a solution for the same......
    Edited by: 925085 on Apr 3, 2012 12:00 AM

    Hi,
    I need a basic help in OBISE1(10.1.3.2.1)10g aggregation.
    I have a report which shows 5 cols col1,col2,col3 (as an amount section) col4,col5 (as % column). col 4 and col 5 are derived by using some cacluation based on col1 and col2..
    upto here no issues and all columns are getting populated properly...
    i have a Total column at the bottom of the report where the columns get added up.. Now sum(col1),sum(col2),sum(col3) is being displayed which is correct and as expected.. but for total% of col4 and col5 what I expected value is to recalculate their formula using the values available in total aggregation column for col1 and col2.. but I am unable to do it..
    values are not as expected...also the number of columns are getting reduced after applying grand total to whole report.
    please provide me a solution for the same......
    Edited by: 925085 on Apr 3, 2012 12:00 AM

  • Sales Order Total Weight

    Hi All,
    Can any one help me in this requirement like i want to get the Total Gross weight and volume of a Sales order how to get this
    for that i use this like i have taken all the weights and volumes for that line items of a particular sales order and need to add those weights for that what to dooo??
    and which is better to use like collect and Sum
    and is there any way to do this requirement
    Thanks
    Surendra

    Use COLLECT on the columns VBAP-BRGEW, VBAP-VOLUM.
    type : begin of ty_summ,
            vbeln type vbeln,
            brgew type vbap-brgew,
            volum type vbap-volum,
           end of ty_summ.
    data : it_summ type standard table of ty_summ.
           wa_summ type ty_summ
    loop at it_vbap into wa_vbap.
    move wa_vbap-vbeln to wa_summ-vbeln.
    move wa_vbap-brgew to wa_summ-brgew.
    move wa_vbap-volum to wa_summ-volum.
    collect wa_summ into it_summ.
    endloop.
    loop at it_summ into wa_summ.
    write :/ wa_summ-vbeln,
              wa_summ-brgew,
              wa_summ-volum.
    endloop.
    Regards
    Vinod
    Edited by: Vinod Kumar on Apr 14, 2010 2:05 PM

  • Total weight of the packed item at the delivery

    There is packing in delivery at our case and I have to have the total packed weight of the material. This means that the total weight of the material and the packing materail of the item. From which table I can have the total gross weight?

    Hi,
    Did you try with VEKP and VEPO?
    Regards

  • Standard report - Gross Weight sum by Purchase Order document

    Hello,
    Is there a standard SAP report that will give me the total Gross Weight for a Purchase Order?
    I can find this information by going to SE16 - table EKPO - and doing a sum of Gross Weight (field BRGEW).  However, I'm looking for a standard report that will give me this information as the user does not have SE16 access.
    Any help would be greatly appreciated.

    Thank you for the information, however, I cannot specify a specific Purchasing Document in that transaction, nor does the transaction tell me what specific PO the weight is tied to.

  • Gross weight and net weight of line item in a delivery

    Hi what exactly the meaning of gross weight and netweight of delivery line item?
    Where can i see these 2 fields in the transaction?How weight differs to the quantity for a particular delivery item?
    Thanks in advane
    Mahesh

    Hi,
    <b>Gross Weight</b>
    The system can use the <b>gross weight</b> at a later stage, depending on what kind of capacity check you run, to check storage bin capacity for warehouse management purposes.
    The system calculates the gross weight of each item by multiplying the delivery quantity by the gross weight per unit that comes from the sales order. If there is no related sales order, the system uses the gross weight from the material master record. You can change the gross weight manually in the delivery document.
    <b>Net weight</b>
    The total net weight of all items in the delivery.
    Use
    The system calculates the net weight of each item by multiplying the delivery quantity by the net weight per unit that comes from the sales order. If there is no related sales order, the system uses the net weight from the material master record.
    Please reward if helpful.
    Thanks & Regards
    Sadhu Kishore

  • Catch weight support

    Hi experts,
    Our customer sells Cases (CS), each CS with its specific weight (Lb). Each CS has a unique ID, bar coded. They receive an order for N Cases, select the cases to ship and bill by Lbs. How would you manage it? Do we need an add-on solution?.
    What we have done:
    1. Define each case as a differeny batch, with Qty equals its specific weight in Lbs.
    2. Define an average conversion factor, let's say 10 Lbs per Case.
    3. Once the order for 5 CS (50 Lbs in theory) is converted to a Delivery document, 5 different batches (CS) are selected.
    4. The total weight for the 5 CS selected (let's say between 46 and 55 Lbs) differs from the expected quantity of the order (50 Lbs), so it doesn't let you add the Delivery document  without going back to the main delivery and "changing manually" the actual quantity to be delivered in Lbs.
    How would you solve it?
    Thanks for prompt answer,
    Andres

    Hi Castri,
    As Below -
    In SO record the cases to be delivered in a UDF. CORRECT. OK
    A formatted search can multiply this by a factor and convert this into SO qty in kgs. IT GETS THE THEORETICAL QUANTITY (WEIGHT).
    Yes Let SO be in theoretical weight
    Let the SO qty and Delivery qty be recored in kgs (Inventory UOM). Billing shall also be in kgs. CORRECT, BUT HOW DO YOU KNOW HOW MUCH IT IS GOING TO BE BEFORE SELECTING THE CASES?. In SBO, the Delivery can be made for a qty (kgs) which is greater or less than the SO Qty (kgs). Make Delivery for the Actual Qty Modify the "Cases" or "Packs" UDF value to the Actual number of cases being delivered. As i understand this should conform to the No of cases Ordered.
    In SAP, at Delivery the delivered batches (cases) are selected and the delivery qty is recorded in kgs. BEFORE YOU START SELECTING YOU HAVE TO MODIFY THE TOTAL QUANTIY (WEIGHT), OF THE CASES, WHICH IS IMPRACTICAL (CANCEL SELECTION, MODIFY TOTAL WEIGHT AND BACK TO SELECT THE CASES AGAIN). SAP is just matching the SO KGS with the DELIVERY KGS and even then there is no restriction that it has to be exactly the same unless this is a validation addded by you at this site. Note if you want to record the case-wise weight (weight of each case being delivered) this can also be recorded in "Packages" screen. From Delivery screen Open the Menu item Goto -> Packaging. Please try here and you can create a Case/ Pack master and then record case-wise weight here. The Delivered KGS will get carried forward to the AR Invoice and you can Invoice the Customer accordingly.
    SO and Delivery PLDs can reflect the SO and cases Delivered cases as well. is that as needed. CORRECT.
    Please let me know your comments.
    Regards

  • How to advise non-prepress professionals on ink weight reduction

    I am putting together a document that has a lot of advertising artwork which is being created by semi-professionals/non-professionals. The printing requires a total ink weight/ink limit of 280%. Despite supplying very detailed instructions on how to achieve this with the supplied artwork, it is beyond the expertise of many of the artwork creators. In the past, they have objected to using (and paying for) a third party advertising artwork delivery service which could amend ink weight issues. It seems my options are to 1. send the files back until they are correct, or 2. amend them myself, which leaves me open to potential issues if for any reason the artwork doesn't print as expected. Are there any other options that anyone could suggest? Thanks in advance.

    If you accept tagged RGB, then it moves the burden away from the creator completely. If your creators are not experienced, having them work in CMYK seems unnecessary.

  • Total is being doubled

    hi experts,
                  i have a script output in which i have a total field..if i see preview total is coming properly but when i go back to take print out the total is doubling ..what shall i do ..
    from script i am calling a subroutiune .in which i am totaling the weight of the line items .
    the pblm i found is the qty field which i use for toaling is .
    tot =  tot + weight.
    now the tot remains uncleared while taking print after seeing preview.
    so the tot value is doubling in my print out .
    this keeps on taling till i get out of the tcode .
    when i put the tcode again and take print out .it is coming properly .
    what may be the reason???
    i am using perform statement for calling subroutine using
    changing and using statement
    'ragrds,
    mani

    thank u for all ur efforts.
    if i need to use
    case sy-ucomm
    when 'back'.
    clear : tmeng.
    endcase.
    where shall i include this ???
    my problem is here only ..inside the code ....this tmeng i am moving to tot.
    this is the flow.
    getting gmeng from script .
    --------------this excutes two times
    tmeng = tmeng + gmeng.
    tot = tmeng.
    sending tot to script.
    mani

  • In this report i have marked one line..if this width 30,i need to multiply by a number 0.3 and if the width =30,it multiplies by 0.37...how to use this logic here..??? anyone can help??

    In this report i have marked one line..if this width < 30,i need to multiply by a number 0.3 and if the width >=30,it multiplies by 0.37...how to use this logic here..??? anyone can help??
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @SCCode nvarchar(30)
    select @FromDate = min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]'
    select @ToDate = max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]'
    --Rcpt from PRDN (Condition checked for Return component exclusion also)
    SELECT T2.U_STKNO as 'PRN No', T2.PostDate as Date,
    T2.DocNum AS 'WorkOrderNo',
    b.DocNum as 'Issue Doc No',
    ISNULL(d.DocNum,'') as 'Receipt Doc No',
    b.U_IssPSCName as 'SubContractor Name',
    T2.ItemCode as 'FG Item Code',
    T3.ItemName as 'FG Item Name',
    T2.PlannedQty as 'FG Planned Qty',
    T2.U_OD as 'OD',
    T2.U_ID as 'ID',
    T2.U_OD/25.4 as 'Inches',
    (T2.U_OD-T2.U_ID)/2 as 'Width',
    0 as 'FG Pending Qty',
    0 as 'FG Receipt Qty',
    '' as 'Issue Item Code',
    '' as 'Issue Item Name',
    Sum(ISNULL(a.Quantity,0)) as 'Total Issue Quantity',
    0 as 'Issue Item - Return Quantity',
    '' as 'Return Doc No',
    SUM(ISNULL(a.U_IssPTotWeight,0)) as 'Total Issue Weight',
    SUM(ISNULL(c.U_Quantity,0)) as 'Total Receipt Weight'
    from OWOR T2 inner join WOR1 T4 on T2.DocEntry = T4.DocEntry
    INNER JOIN OITM T1 ON T1.ItemCode = T4.ItemCode inner join OITM T3 on T3.ItemCode = T2.ItemCode
    LEFT join IGE1 a on T2.DocNum = a.BaseRef Inner JOIN OIGE b on a.DocEntry = b.DocEntry and T4.ItemCode not in (a.ItemCode)
    LEFT JOIN IGN1 c ON c.BaseRef = T2.DocNum and T2.ItemCode = c.ItemCode INNER JOIN OIGN d on c.DocEntry = d.DocEntry
    WHERE b.Series in('101','20') and T2.PostDate >= @FromDate and T2.PostDate <= @ToDate and b.U_IssPSCName = '[%2]'
    GROUP BY T2.U_STKNO, T2.PostDate, T2.DocNum, b.DocNum, d.DocNum, b.U_IssPSCName,T2.ItemCode,T3.ItemName,T2.PlannedQty,T2.U_OD,T2.U_ID, T2.U_OD/25.4,(T2.U_OD-T2.U_ID)/2
    UNION ALL
    SELECT T2.U_STKNO as 'PRN No', T2.PostDate as Date,
    T2.DocNum AS 'WorkOrderNo',
    b.DocNum as 'Issue Doc No',
    ISNULL(d.DocNum,'') as 'Receipt Doc No',
    b.U_IssPSCName as 'SubContractor Name',
    T2.ItemCode as 'Item Code',
    T3.ItemName as 'Item Name',
    T2.PlannedQty as 'Planned Qty',
    T2.U_OD as 'OD',
    T2.U_ID as 'ID',
    T2.U_OD/25.4 as 'Inches',
    (T2.U_OD-T2.U_ID)/2 as 'Width',
    (Select (T2.PlannedQty - (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum and a1.ItemCode in (b1.itemcode) where b1.DocNum = t2.DocNum))) as 'Pending Qty',
    (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum and a1.ItemCode in (b1.itemcode) where b1.DocNum = t2.DocNum) as 'Receipt Qty',
    a.ItemCode as 'Issued Item Code',
    a.Dscription as 'Issued Item Name',
    Sum(ISNULL(a.Quantity,0)) as 'Total Issue Quantity',
    (Select (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum inner join WOR1 b2 on b1.DocEntry = b2.DocEntry where b1.DocNum = t2.DocNum and a1.ItemCode in (b2.itemcode))) as 'Issue Item - Return Quantity',
    (ISNULL((Select (Select a2.DocNum from OIGN a2 where a2.DocEntry = a1.DocEntry) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum inner join WOR1 b2 on b1.DocEntry = b2.DocEntry where b1.DocNum = t2.DocNum and a1.ItemCode in (b2.itemcode)),'')) as 'Return Doc No',
    SUM(ISNULL(a.U_IssPTotWeight,0)) as 'Total Issue Weight',
    SUM(ISNULL(c.U_Quantity,0)) as 'Total Receipt Weight'
    from OWOR T2 inner join WOR1 T4 on T2.DocEntry = T4.DocEntry
    INNER JOIN OITM T1 ON T1.ItemCode = T4.ItemCode inner join OITM T3 on T3.ItemCode = T2.ItemCode
    LEFT join IGE1 a on T2.DocNum = a.BaseRef Inner JOIN OIGE b on a.DocEntry = b.DocEntry and T4.ItemCode in (a.ItemCode)
    LEFT JOIN IGN1 c ON c.BaseRef = T2.DocNum and T2.ItemCode = c.ItemCode LEFT JOIN OIGN d on c.DocEntry = d.DocEntry 
    WHERE b.Series in('101','20') and T2.PostDate >= @FromDate and T2.PostDate <= @ToDate and b.U_IssPSCName = '[%2]'
    GROUP BY T2.U_STKNO, T2.PostDate, T2.DocNum, b.DocNum, d.DocNum, b.U_IssPSCName,T2.ItemCode,T3.ItemName,T2.PlannedQty,T2.U_OD,T2.U_ID,T2.U_OD/25.4,(T2.U_OD-T2.U_ID)/2,a.ItemCode,a.Dscription    order by T2.DocNum desc

    Hi,
    Try this:
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @SCCode nvarchar(30)
    select @FromDate = min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]'
    select @ToDate = max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]'
    --Rcpt from PRDN (Condition checked for Return component exclusion also)
    SELECT T2.U_STKNO as 'PRN No', T2.PostDate as Date,
    T2.DocNum AS 'WorkOrderNo',
    b.DocNum as 'Issue Doc No',
    ISNULL(d.DocNum,'') as 'Receipt Doc No',
    b.U_IssPSCName as 'SubContractor Name',
    T2.ItemCode as 'FG Item Code',T3.ItemName as 'FG Item Name',T2.PlannedQty as 'FG Planned Qty',T2.U_OD as 'OD',T2.U_ID as 'ID',T2.U_OD/25.4 as 'Inches',(T2.U_OD-T2.U_ID)/2 as 'Width',case when ((T2.U_OD-T2.U_ID)/2) <30 then ((T2.U_OD-T2.U_ID)/2) *0.3 end, 0 as 'FG Pending Qty',0 as 'FG Receipt Qty','' as 'Issue Item Code','' as 'Issue Item Name',Sum(ISNULL(a.Quantity,0)) as 'Total Issue Quantity',0 as 'Issue Item - Return Quantity','' as 'Return Doc No',SUM(ISNULL(a.U_IssPTotWeight,0)) as 'Total Issue Weight',SUM(ISNULL(c.U_Quantity,0)) as 'Total Receipt Weight'from OWOR T2 inner join WOR1 T4 on T2.DocEntry = T4.DocEntryINNER JOIN OITM T1 ON T1.ItemCode = T4.ItemCode inner join OITM T3 on T3.ItemCode = T2.ItemCodeLEFT join IGE1 a on T2.DocNum = a.BaseRef Inner JOIN OIGE b on a.DocEntry = b.DocEntry and T4.ItemCode not in (a.ItemCode)LEFT JOIN IGN1 c ON c.BaseRef = T2.DocNum and T2.ItemCode = c.ItemCode INNER JOIN OIGN d on c.DocEntry = d.DocEntryWHERE b.Series in('101','20') and T2.PostDate >= @FromDate and T2.PostDate <= @ToDate and b.U_IssPSCName = '[%2]'GROUP BY T2.U_STKNO, T2.PostDate, T2.DocNum, b.DocNum, d.DocNum, b.U_IssPSCName,T2.ItemCode,T3.ItemName,T2.PlannedQty,T2.U_OD,T2.U_ID, T2.U_OD/25.4,(T2.U_OD-T2.U_ID)/2UNION ALL SELECT T2.U_STKNO as 'PRN No', T2.PostDate as Date,T2.DocNum AS 'WorkOrderNo',
    b.DocNum as 'Issue Doc No',
    ISNULL(d.DocNum,'') as 'Receipt Doc No',
    b.U_IssPSCName as 'SubContractor Name',
    T2.ItemCode as 'Item Code',T3.ItemName as 'Item Name',T2.PlannedQty as 'Planned Qty',T2.U_OD as 'OD',T2.U_ID as 'ID',T2.U_OD/25.4 as 'Inches',(T2.U_OD-T2.U_ID)/2 as 'Width',case when ((T2.U_OD-T2.U_ID)/2) >=30 then ((T2.U_OD-T2.U_ID)/2) *0.37 end, (Select (T2.PlannedQty - (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum and a1.ItemCode in (b1.itemcode) where b1.DocNum = t2.DocNum))) as 'Pending Qty',(Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum and a1.ItemCode in (b1.itemcode) where b1.DocNum = t2.DocNum) as 'Receipt Qty',
    a.ItemCode as 'Issued Item Code',
    a.Dscription as 'Issued Item Name',
    Sum(ISNULL(a.Quantity,0)) as 'Total Issue Quantity',
    (Select (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum inner join WOR1 b2 on b1.DocEntry = b2.DocEntry
    where b1.DocNum = t2.DocNum and a1.ItemCode in (b2.itemcode))) as 'Issue Item - Return Quantity',
    (ISNULL((Select (Select a2.DocNum from OIGN a2 where a2.DocEntry = a1.DocEntry) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum inner join WOR1 b2 on b1.DocEntry = b2.DocEntry where b1.DocNum = t2.DocNum and a1.ItemCode in (b2.itemcode)),'')) as 'Return Doc No',
    SUM(ISNULL(a.U_IssPTotWeight,0)) as 'Total Issue Weight',
    SUM(ISNULL(c.U_Quantity,0)) as 'Total Receipt Weight'
    from OWOR T2 inner join WOR1 T4 on T2.DocEntry = T4.DocEntry
    INNER JOIN OITM T1 ON T1.ItemCode = T4.ItemCode inner join OITM T3 on T3.ItemCode = T2.ItemCode
    LEFT join IGE1 a on T2.DocNum = a.BaseRef Inner JOIN OIGE b on a.DocEntry = b.DocEntry and T4.ItemCode in (a.ItemCode)
    LEFT JOIN IGN1 c ON c.BaseRef = T2.DocNum and T2.ItemCode = c.ItemCode LEFT JOIN OIGN d on c.DocEntry = d.DocEntry
    WHERE b.Series in('101','20') and T2.PostDate >= @FromDate and T2.PostDate <= @ToDate and b.U_IssPSCName = '[%2]'
    GROUP BY T2.U_STKNO, T2.PostDate, T2.DocNum, b.DocNum, d.DocNum, b.U_IssPSCName,T2.ItemCode,T3.ItemName,
    T2.PlannedQty,T2.U_OD,
    T2.U_ID,T2.U_OD/25.4,(T2.U_OD-T2.U_ID)/2,a.ItemCode,a.Dscription  
    order by T2.DocNum desc
    Thanks & Regards,
    Nagarajan

  • Sales order item contion value not coming correcctly

    Hi Friends,
    I created new condition type-YES7, taken sale basis as D
    Cond. class           A Discount or surcharge                 
    Calculat.type          B   Fixed amount                                                
    Cond.category       5 Customer reserve 5                                          
    Plus/minus              A Positi
    Scale basis            D Gross weight scale
    Manual entries       C Manual entry has priority
    Selected below indicators as well
    group conditon
    item conditon
    delete
    I have created condition scales as below
    scale qty                                 Rate
    0,001     KG     5,00    EUROS
    10,000          10,00
    20,000          20,00
    30,000          30,00
    40,000          40,00
    50,000          50,00
    as per my requirement, based on gross weight of each line item, condition record should pick from scales .
    But here,It is cumulating the total gross weight of all line items and showing total gross weight scale value(conditon record value) for each line item of sales order.
    so please let me know how to rectify this issues.
    Thanks in advane.
    Regards,
    Ramkrishna

    Just remove the Group condition and then try .Please refer the  logic behind the Group condition
    Group condition
    Indicates whether the system calculates the basis for the scale value from more than one item in the document.
    Use
    For a group condition to be effective, the items must belong to a group. You can freely define the group to meet the needs of your own organization. The items can, for example, all belong to the same material group.
    Example
    A sales order contains two items. Both items belong to the material group 01.
    Material     Quantity     Material group
    A     150     01
    B     100     01
    The group condition indicator is set in the definition of the condition type for material group discounts. The condition record for material group 01 includes the following pricing scale:
    Scale quantity     Discount
    from      1 pc     -1%
    from      200 pc     -2%
    Neither item alone qualifies for the 2% discount but sytem will apply the 2% as 100 + 150 > 200 .
    However, when the items are combined as part of a group condition, the combined quantity creates a basis of 250 pieces.
    This basis then exceeds the scale value of 200 pieces, which is necessary to qualify for the higher discount.
    Hope it should work after that ...
    Br
    Gaurav

  • Add pricing condition within order created with reference to SPA

    Hi,
    I have a requirement wherein I need to add a $50 fine to order if the total order weight is below 75 kg.
    Problem I am facing is with orders created with reference to SPA wherin pricing is not calculated but copied from SPA.
    Please help me in solving this issue.
    Also, Please let me know the pricing userexit / BADI for CRM wherein this can be coded.
    Regards,
    Willban
    Edited by: willban_sap on Jul 21, 2010 11:43 AM

    Hi Willban,
    wonder wether you could use any weight dependent (net or gross) group condition with a scale. Delow 75 kg across all grouped items you would charge 50 $ and starting at 75 kg you would charge 0 $. As the scale base should get adjusted with the copy / create with reference step, I see no need for custom code.
    Best Regards,
    Michael

Maybe you are looking for

  • Integer array reverse

          * arrayReverse method       * intArray = {1,2,3,4,5,6,7,8,9,10}, this method is supposed to       * reverse the values (e.g. 10,9,8,7,6,5,4,3,2,1..)       public void arrayReverse()                 for (int index = 0; index < 4; index++)       

  • BEA WebLogic JRockit(TM) 1.4.2_03  SDK Dump on linux

    ===== BEGIN DUMP ============================================================= JRockit context dump produced after 0 days, 00:36:09 on Mon May 31 11:31:15 2004 If you see this dump, please send it, along with as much information as you can on your sy

  • The pre-order of BO3

    i have pre-orderd BO3 and sony have send me a confermation masseg ok but weher is the BETA CODE and wehen they are gonna send me ? P.S : i have pre order it yasterday بالعربي انا امس شريت بلاك اوبس ٣ طلب مسبق لكن ارسلولي سوني بس رساله التاكيد حق الطل

  • USB Mic Distortion

    I recently bought a Samson G-Track USB microphone, to go with my new Macbook (running Leopard), but seem to get intermittent audio distortion when I record. I have been checking the record levels on the mic and garageband and it's not clipping. If an

  • How to add drop down list in toolbar?

    Hi SAP CRM Experts, After save the personalization of the view, there will be a drop down list appeared in the toolbar in the view, the drop value contain the personalization you just saved and the standard one. Could someone let me know how to enhan