Invoice output - item list with qty but prices summarized @ item type

Hi SAP gurus
Below is my client requirement.This is for invoice of service contract.Consider the example below and p;s guide me how to follow the proceess by possibility?
Contract no :123
Material 1 (type A)- Qty -1 - Monthly Support fee - 100$
Material 2 (Type A)-Qty -3 - Monthly Support fee - 200$
Material 1 (type B)-Qty -1 - Monthly Support fee - 500$
Material 2 (Type B)-Qty -1 - Monthly Support fee - 600$
Material 2 (Type c)-Qty -3 - Monthly Support fee - 900$
Invoice should look like
Contract : 123
Material Type A
Material 1 - Qty 1
Material 2 - Qty 3
Total support fee = (200*3+100)-700$
Material Type B
Material 1 - Qty 1
Material 2 - Qty 1
Total support fee = 1100$
Material Type C
Material 2 - Qty 3
Total support fee = 2700$
Net price of the contract: =27001100700 = ]4800$
Appreciate quick respons.
Thanks
Banu

Hi Banu
First define 2 external material number for material 1 and material 2.
In material master assign external material group to material 1 (type a,b,c,....) and for material 2 (type a ,b,c...)
You can take help of your ABAPer in this issue.
Now give your requirement to your ABAPer such that program will combine materials based on external material group.
try and revert

Similar Messages

  • PO item received with qty but zero value

    Hi,
    I'm having a PO
    without material number,
    a/c assignment - M  
    Item has been received with qty and respectively value but when it returned (mov - 122) then only qty is appearing in PO history, No values.
    Is there is any specific reason?
    regards,

    Hello,
    Please note the description from the Overview for this SCN Space:
    Official SAP Help Portal Community. Find comments on SAP product documentation (such as SAP Application Help, also known as SAP Library), and read best practices shared by the community.
    Based on the above, I believe you posted your query into the incorrect SCN Space. Please use the Forum Finder for the New SCN document to find your product and post into that SCN Space.
    With best regards,
    Dominik
    SCN Moderator

  • Open items list with

    HI Experts,
                        want to open items list with customer id,fiscal year,posdting date,document date,currency reference,amount and Gl accounts..
    where i can find and download this..
    i tried through fbl5n but not worked..
    please anyone give me idea from where i can download thgis data into Excel sheet..
    Regards
    PT

    Hi Rau,
                      I tried from se38 but it saying no such reports..
    thansk for your reply.
    as i am not a functional guy..one request came i have to do this.
    Regards
    PT

  • I just installed mongolian cyrillic keyboard and it's working just fine with safari but i can't type on Word with it. please help me?

    i just installed mongolian cyrillic keyboard and it's working just fine with safari but i can't type on Word with it. please help me?

    PS Here is a source for a keyboard.  Try it if you have not done so already
    http://m10lmac.blogspot.com/2012/12/new-mongolian-keyboard-layout.html
    For questions about why Word doesn't do something, try
    http://answers.microsoft.com/en-us/mac/forum/macword

  • My apple keyboard pairs with iphone but letters don't type

    My apple keyboard pairs with iphone but letters don't type.  Brightness and sound work fine.  This is a new problem.  The two worked fine together for months.

    Simply try turning of your iphone, then restart.  See what happens. IT WORKED!

  • Invoice against contact canceled with VF11 but no output defination flowing

    Hello Experts,
    I have canceled on invoice against contract with VF11 but no output is flowing automatically, Kindly help me to do that.
    Thanks
    Rahul

    Hi,
    Means output type should come automatically while doing output issue.
    Actualy got the answer it was not defined while customizing.
    Thnaks
    Rahul

  • Report on Open Items along with Qty & Value for LA confirmed items

    Hi,
    I would like to know a report of Open POs(No Goods receipt made) but LA confirmed Items along with Values(Amount)
    i.e
    List of confirmed,unsent items along with Values for plant wise or vendor wise or PO Number wise.
    Regards,
    Vengat

    Hi,
    Any other inputs?
    Our client's requirement is to know how many (Both Qty & Value) of items for the input LA confirmed(ASN received) but no GR Made
    Regards,
    Vengat

  • Inventory list with moving average price

    Hi all,
                 How do I get the list of inventory stock using the valuation method as MOVING AVERAGE.
    Iam able to get the list using last purchase price, But how do I get it using Moving average Price.
    Thanks in advance.

    Moving average price for item might be different by each warehouse.  Inventory Valuation Report can be used to get the whole picture for any single item by moving average price.
    If you want to get more items, you can try this query to see:
    SELECT T0.ItemCode, T1.ItemName, T0.WhsCode, T0.OnHand, T0.AvgPrice, (T0.OnHand * T0.AvgPrice) AS 'Amount'
    FROM dbo.OITW T0 INNER JOIN dbo.OITM T1 ON T0.ItemCode = T1.ItemCode WHERE T0.OnHand > 0
    Thanks,
    Gordo

  • Select list with redirect and save the item to insert row

    On the Form, I want to select from the item (P105_ADMIN_DOMAIN_ID)
    and pop the result on the item (P105_ADMIN_NAME).
    P105_ADMIN_DOMAIN_ID define:
    Display as "select list with redirect"
    Alternate source used "Only when .."
    Source Type "Database Column"
    Source Value or express "ADMIN_DOMAIN_ID"
    P105_ADMIN_NAME define:
    Display as "Text Field"
    Altrenate source used "Only when .."
    Source Type "SQL Query"
    Source Value or express "select party
    from responsible_party
    where logonid
    = :P105_ADMIN_DOMAIN_ID"
    questions:
    1. item P105_ADMIN_DOMAIN_ID DROP DOWN LIST is limited to
    some threadhold, it did not list all the value from
    the LOV which is follow:
    select LOGONID d, LOGONID r
    from RESPONSIBLE_PARTY
    order by 1
    2. I want to insert a row after complete the form.
    But my item P105_ADMIN_NAME is defined
    Source Type "SQL Query" instead of the 'Database
    Column'
    How could I overcome these?
    Thanks so much for your help.

    1) what i meant was for you to test this ridiculously huge LOV outside of htmldb, but it occurred to me last night that you could, in fact, be hitting a limit of ours. after some poking around, i have confirmed that. select list items in htmldb are currently limited to 10,000 rows. this was initially done for performance reasons, but they're now opening up the restriction. if you really need to work with that many rows where the user is allowed to pick from a set of values, consider using a popup item type instead. it'd help your app performance as well (in my test cases, it stank to have to wait for my 10k select list rows to come down to my browser).
    2) sorry to not have been more clear about this, but when you set your item's "Source Type" back to "Database Column", you'd have to specify that column in the "Source or value expression" field. also, you can't put a sql query into that "Post Calculation Computation" field. as i said before, "you can take a look at the attribute-level help for that field to see implementation examples."
    3) stick with "Always..." for now if you're using our auto-dml process(es)
    regards,
    raj

  • How: can i get a specificated item from a list with more than 100.000 items

    Hi,
    i have a very large list and i got always an exception that the list has more than 5000 items and cant query!! But in the default list view i can see, order and filter all items. So how can i do this by c#?

    Hi,
    According to your description, my understanding is that you want to get a specific list item form a list which with more than 100000 items using C#.
    I suggest you can use CAML Query with some condition and set Row Limit to specify the number of items to return.
    Here is a detailed code demo for your reference:
    Client Object Model Access Large Lists/Overcome ListView Threshold while accessing large list
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Items Listed In Library, But Missing From iPod/Hard Drive of Computer

    I recently had my latest disaster with iTunes wiping out the content of my iPod. I hooked up the iPod to the computer to charge and to add on a few more items. When it updated, it started from scratch and updated some 1700 items or so directly from my computer hard drive into the iPod, as if they had never been on the iPod in the first place. Further, there are still something like 2000 more items that were on the iPod before this, but now are missing from its list. These items are songs that are no longer on my computer's hard drive. These items are still listed in the iTunes library, however.
    What do I do to get these items accessible again on the iPod itself? Whatever I have tried so far with updating does not do anything but have the iPod/iTunes deal with the items that are still on my hard drive of the computer. How can I get the full listing of 3700 items to play on the iPod again? Or do I have to start from scratch (this will be the third time I will have to do this if so) and reload all those hundreds of CDs back into the iPod manually?
    Thank you for any advice you may be able to provide!

    Were any of those exception edited with Photoshop or Photoshop Elements? If so and you can identify them, download the "Embed sRGB Profile" application from Toad's Cellar, unzip it and place on the desktop. Then take those files and drop onto the application. After the profile is embedded in the files try importing them again.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Make a list with the last 100 added items

    Anybody knows how to have a List that only store the last 100 added items? A kind of a que which always has 100 items.
    Thank you !
    ostense

    I am sure there is a simpler way to do what you are trying to do but ...
    public class LastList extends LinkedList {
        private final int maxSize;
        public LastList(int maxSize) {
            this.maxSize = maxSize;
        public void addFirst(Object o) {
            super.addFirst(o);
            trim();
        public void addLast(Object o) {
            super.addLast(o);
            trim();
        public boolean add(Object o) {
            boolean ret = super.add(o);
            trim();
            return ret;
        public boolean addAll(Collection c) {
            boolean ret = super.addAll(c);
            trim();
            return ret;
        public boolean addAll(int index, Collection c) {
            boolean ret = super.addAll(index, c);
            trim();
            return ret;
        public void add(int index, Object element) {
            super.add(index, element);
            trim();
        private void trim() {
            while(size() > maxSize)
                removeFirst();
    }

  • Items uploading (with g/l accounts by item level) through DTW

    Dear All,
    how to upload 1000 items with  400 warehouses with different item level g/l account determination for each item in warehouses through DTW.
    is it possible through DTW ,but not using copy express.if there any solution please suggest me.  
    thanks
    komanduri.

    Hi Komanduri.....
    Yes it is possible to transfer those details by DTW.
    What all you need to do is you have to fill template for OITM and OITW_ItemWareHouseInfo.
    Put Set GL Method o=in OITM template as on Item level and fill the necessary GL accounts in OITW_ItemWarehosueInfo Template.....
    Hope this will work for you.........
    Regards,
    Rahul

  • Closed base Document appears in the open item list

    Hi all,
    While we are fully copying a base document to a target document, the base document header and rows will be closed, but it will appear in the open item list report.
    So the customer has created a Sales Order -> Delivery -> A/R Invoice.
    The Sales Order document status gives 'Closed', but still appears in the Open Item list (Sales - AR --> Sales Reports --> Open Items List).
    The customer using: SBO2005A PL22
    Further i also have looked in the SAP Notes (Note 1083366) but i can't solved it.
    Thanks in advance.

    Chief,
    In open items list of sales order,
    *select reqd. sales order,net amount,tax & total amount open in
    sales order,
    also open delivery document & compare with it,
    there must be difference in tax total/total/they
    must have changed quantity,unit price,date,changed payment terms/tax codes which causes delivery created without reference to sales order.
    That's why sales order is open.
    You can manaully close sales order by Data-->Close.
    Jeyakanthan

  • PO transfer to backend with Qty = 0

    Hi,
    We have SRM3.0 backend ECC6.0
    Scenario is classic extended.
    We have a 2 items PO changed in SRM with Qty and Price to 0 (2 items marked with del_ind = X. Control is ok in SRM, but as soon as document is transferred to backend when saving the PO keeps in "transfer error". The message raised is : "Please enter an order quantity" (MEPO - 043). Does this mean Backend doesn't allow 0 qty but srm does?
    What do we need to do now?
    Best regards,
    Laurent.

    Hi Ramakrishna,
    Where is this indicator on SRM or in BACKEND?
    In SRM i have in item detail->statistics "no further invoice expected" blanked out. Do you mean this indicator? In r3 i can't see any indicator called like this.
    Regards,
    Laurent.

Maybe you are looking for

  • JAAS and HTTPSession

    It seems that every time i switch from jaas-secured to non-secured realms in my app the session is destroyed. Is this the right behavior? Is there a way to share sessions between the realms? Thanks!

  • Blackberry 8130 Rogers - some mail bounces back

    If someone sends an e-mail to me at my main address (shaw.ca) which is also forwarded to my Blackberry they receive a message back from the Blackberry account saying that the message could not be received. I did however in fact get the message on my

  • No NT logon prompt

    VPN Client 3.5.1 on Win2K laptop - dialing ISP's to access 3005. After making a successful connection to the concentrator, user is not prompted for NT logon. "Enable start before logon" is checked in the client Windows Logon Properties - "Allow Local

  • Not able to update to windows 10 phone from lumia 625

    hi team, I am trying to update to windows 10 phone on my Lumia 625. but It is giving me error message stating - server error a connection error prevented us from downloading programs for you. please check date/time of your device and its network conn

  • Max number of characters in a Disco Calculation

    Anyone know what the max number of characters in a Disco Calculation and any other limitations that exist Thanks