Different AP/AR Invoice Screen for Different Product

We have requirement that we want to capture
1. Different colums settings for different product.
2. Different UDF's for different product
We are not able to come up with common screen for AP/AR invoice for those product as it makes screen very complicated with many unnessary column for 1 product.
is it possible to have different screens for different products?

Hi Avinash,
You have go through the form settings for Raw level settings and UDF manage through create different category as per your product specification.
But As per SAP Standard not possible different form settings for different products in A/P and A/R forms.
for your requirement possible through SDK but thats not right way.
Thanks,
Srujal Patel

Similar Messages

  • Need Different Selection screen for different Queries in a Workbook

    Hi,
    I have created a workbook with Multiple tabs in BI 7.0.  Each Tab has different Queries and each query has different Selection screens (Variable Selections).
    When i open the workbook and refresh it, the selection screen is appearing only for one query.  All the queries are refreshed by this single selection screen, though each query has different Variable selections.  What i need is a seperate selection screen i.e seperate Variable selection appearing for each queries, when i refresh each one of them.
    Is it possible to do this?  If anybody has tried this, help me in solving this issue.  Thanks for ur time.
    Regards,
    Murali

    Murali,
    If you un-check the 'Display Duplicate Variables Only Once' this WILL solve your problem.
    When you Refresh, you should be presented with a single variable selection dialog box, but it should contain an area for each Query (DataProvider) that is embedded in the Workbook.
    This is the case if the queries are all on the same tab, or on different tabs.
    However, if you have multiple tabs each with a query on it, each query must have it's own DataProvider. If all queries are based on the same DataProvider, it will not work as the Workbook only 'sees' one Query for which it needs variable input.
    If you REALLY want multiple variable selection dialog boxes, then maybe the best way to do this is to have the queries in separate Workbooks.
    If you don't want the User to have to open 5 queries manually, you could use a Macro in each Workbook that runs on opening, to open the next Workbook in the sequence.
    I hope this makes sense!
    Regards
    Steve

  • Different icons on home screen for each email account?

    Good Morning,
    I have searched and searched to no avail for an answer to this (simple) question:
    Is there any way to have separate mail icons on your home screen for each of your mail accounts?
    I have my work/exchange email (knee-jerk response required) and my spam-laden personal account set up on my phone. Everytime my phone "dings" I have to go digging for which account it is. It would be very nice to see right on the home screen which account had mail rather than having them grouped into one cumulative icon.
    Note to developers: I'd be willing to pay for this.
    Thanks,
    Dominic

    No such option is available, but a good suggestion for Apple where this must likely originate from.
    http://www.apple.com/feedback/iphone.html

  • Having different ringtones and text alerts for different contacts

    Hi I've had Samsung phones for a while and have recently swapped to an iPhone.  Can you assign different ringtones and text alerts for contacts,  android have an app called ringolite - is there anything similar on App Store?? Many thanks

    You can make your own ringtones text tones from music read http://www.demogeek.com/2009/07/31/how-to-add-custom-ringtones-to-your-iphone/

  • Consolidated invoice needed for different shipment dated lines in a sales order

    My client's requirement is, they need a consolidated invoice for one order even though the lines are shipped in different dates.
    Suppose order A created with 2 diff line B and C.
    Both the lines are having different line types, sales persons and shipping warehouse.
    Line B shipped earlier and lince C shipped after few days.
    Requirement is to generate single invoice for both the line once all the lines are shipped.
    Could you please help with any solution except Invoice Hold and Fulfillment Set.

    Hi  All ,
    Thank you all for your quick respose . Let me give your more info for a better understanding of my requirement .  Basically here two prices are to be compared . List price which is based on sales org / distribution channel and material . The other is special price matained for sales org , customer and material . 
    In my system I have 2 different pricing reports ( T- code SAP1 )  , one is based on sales org , material - This I can use to find list price . I also have another customer based report and using this I can get the special price
    But user wants to see both these prices side by side in a single report . Is there a way these two reports can be combined ?
    Regards
    Raghav

  • Custom Infotype : Calling different screens for different subtypes

    Hi ,
    My custom infotype has 2 different subtypes. I want to assign these 2 subtypes with 2 different screens so that whenever a particular subtypes in used in PA20/PA30, the user gets the screen relevant to that subtype.
    I know some configuration is there but can't recall exactly what needs to be done.
    Any hints are greatly appreciated.
    Thanks a lot,
    Sandip.

    Hi Suresh, 
    thanks for the information. i tried doing that. i could hide the fields. but the problem is for both the subtypes the screen number(which i have to enter while using v_t588m) is the same. the field which i hide for subtype 1 should be available for subtype 2.
    for example consider fields a,b,c,d,e and f.
    For subtype 1 i should display a, b,c,d,f
    for subtype 2 i should display a,b,c,e.
    in the custom infotype i created i have all the fields  a,b,c,d,e and f.(currently all these fields appear for both the subtypes)
    in v_t588m i could hide the fields generally but could not do it separately for the subtypes.  hope you understood. thanks a lot Suresh.

  • Problem clearing applet's screen for different images

    I have an applet that displays several jpg-images.
    Images are photos of different sizes that are portrait
    and landscape.
    Problem is that the rest of a portrait image remains at
    the screen when a landscape image is dispayed and
    in the same way the rest of a landscape image remains
    at the screen when a portrait image is displayed.
    I thought update and repaint methods should do the
    work but something is wrong.
    Code that should do it is:
    private void runWork() {
       curFrame = 0;
       try {
            while(noStopRequested) {
         waitWhilePaused();
         curFrame = (curFrame + 1) % image.length;
         repaint();
         Thread.sleep(5000);
       } catch (InterruptedException e) {
             Thread.currentThread().interrupt();
    public void paint(Graphics g) {
        update(g);
    public void update(Graphics g) {
       g.drawImage(image[curFrame], 0, 0, this);
    }What am I doing wrong?
    Thanks in advance

    Yeah, I knew flickering would probably happen. I've never done double-buffering exactly in an applet, but I can give you an idea how it's done.private void runWork() {
       Image offScreen = createImage(appletWidth, appletHeight);
       Graphics offGraphics = offScreen.getGraphics();
       try {
          while (noStopRequested) {
             waitWhilePaused();
             curFrame = (curFrame + 1) % image.length;
             offScreen.clearRect(0, 0, appletWidth, appletHeight);
             offScreen.drawImage(image[curFrame], 0, 0, this);
             repaint();
       catch (...) {}Then in paint():public void paint(Graphics g) {
       g.drawImage(offScreen, 0, 0, this);
    public void update(Graphics g) {
       paint(g);
    }Might not be perfect, but it should give you an idea. Basically you want to draw the screen OFF the screen before drawing it to the screen. That way you don't clear the screen and draw the image. You do it all in one paint().
    Michael Bishop

  • Can I change my call picture to something different then the lock screen for numbers that don't have a photo assigned?

    Hi,
    I have Picture A set as my lock screen picture and certain people in my contacts have a picture assigned to them.  However, I would like to assign Picture B to all other callers as well as have numbers not in my contact list come up as Picture B.
    Is there a way to do this other than just assigning Picture B to ALL other contacts?  Because that still wouldn't work for numbers that call me/I call that are in my my contact list.
    Thanks,
    P

    It is very difficult to offer troubleshooting suggestions when the "os version" you are using is unknown as each os has their own troubleshooting solutions. 

  • Different department to be notified for different defect

    Dear gurus,
    I developed the process for inspection of static equipment, where RR and UD has to be done for the lot which is raleased after the releasing the order generated against the scheduling of the plan.
    During RR if the defects are identified then notification has to be created and the concern department has to be notified.
    I want to know where it is possible to create two or more  different notification for the defects recorded during RR for two or more characteristics.
    EX - I had seven characteristics in the lot for RR.
            I found one defect for 2nd characteritics which is to be notified to the production department.
            I found another defect for 5th characteristics which is to be notified to the other department and first founded defect   should not be highlighted to the other department.
    So system sholud generate two different notification for the same lot having different defect and different department to be notified during RR.
    Recently only one notification is forming having both the defects and only one department is being notified.
    If this can be done then how and what settings to be done for this?

    Menu path: Customizing > Quality Management > Quality Inspection > Inspection Lot Creation > Maintain Inspection Types
    Deselect the chech box "One notification per insp. lot" for the inspection type.
    Regards
    Luke

  • Different SC ship to address for different line items

    Hello Frnds,
    Please help... My question is,
    I have 10 line items in a PO to a one vendor. I would want my vendor to ship each line item to different SC vendors. Can i have SC vendor for for each line item with SC Vend ticked in PO?  Please advice...
    Regards,
    Kumara

    Thanks Jürgen L.. I dont have access to sand box to test it, i requested for access, might get it soon. I had this question while collecting requirements....I take your word and i will comunicate that its possible to my client. B/W... Have you tried doing this?

  • HT204053 2 ipads in home - 2 different Apple ID's needed for different content?

    If we have 2 I Pads in the house, do we need to have two different Apple ID's to keep content seperate on each device? Currently we have one Apple ID and some apps that I have put on my Ipod are appeariing on husband's IPad, I am getting an IPad so am wondering, do we need seperate ID's to prevent this problem.  If so, how do I create a new one?

    If you share an iCloud account with the same ID on multiple devices, any data you sync with the shared account such as contacts and calendars are merged, and all devices get the merged list.  To prevent this, you need to have different iCloud accounts with separate IDs (you can continue to share the same Apple ID for purchasing from the iTunes and app stores).
    To fix this decide which device(s) will be keeping the current iCloud account.  On the device(s) that will be changing accounts, if they have any photos in photo stream that are not in your camera roll or backed up somewhere else save these to the camera roll by opening the photo stream album in the thumbnail view, tapping Edit, then tap all the photos you want to save, tap Share and tap Save to Camera Roll. 
    Once this is done, on each device that is changing accounts go to Settings>iCloud, scroll to the bottom and tap Delete Account.  (This will only delete the account from this device, not from iCloud.  The device(s) that will be keeping the account will not be effected by this.)  When prompted about what to do with the iCloud data, be sure to select Keep On [iDevice].  Next, set up a new iCloud account using a different Apple ID (if you don't have one, tap Get a Free Apple ID at the bottom).  Then turn iCloud data syncing for contacts, etc. back to On, and when prompted about merging with iCloud, choose Merge.  This will upload the data to the new account.
    Finally, to un-merge the data in these accounts you will then have to go to icloud.com on your computer and sign into each iCloud account separately and manually delete the data you don't want (such as deleting the other person's contacts from your account, and vice versa).

  • Different chart of A/c for different company codes

    Hello ,
    As per my Knowledge we can have Multiple Chart of account for multiple company .   We have 5 company codes ,
    2 Company codes are Germany
    1  Company code in India
    1 Company code in US
    1 Company code in Brazil.
    1) shall i maintain only one chart of account for all the company codes, if i done like this what will be the advantage and disadvantage?
    2) If Suppose shall i use Different Chart of account specific to Country?
    3) If suppose i used for two country one chart of a/c and for another two country another chart of a/c.....(total two)
    which is the best solution? if you have any different idea let me know.
    Thanks
    sapman man

    Hi,
    Control area is having the authorization to allow the chart of account for a particular company code.
    The company codes are belonging to a particualr Controlling area, definitly they (Company code)are using the same chart of A/C is used by CA.
    defenitly CA (controlling area) has only one chart of A/C.  So if you need to maintain the company codes are belonging to different chart of A/Cs, you have to assign them different CAs which have their own chart of A/Cs.
    This is my understanding...
    regards,
    Sathes

  • How do I tell Adobe they've invoiced me for a product I don't want to buy?

    I thought I was download the free Adobe Reader for Mac and have ended up with an email in my inbox telling me to pay for it.  It says if I open the Reader I will see an invoice.  But when I try, nothing happens.
    Of course you can't reply to email address Adobe used to contact me.  I want the thing off my computer but if I just drag it into the trash, I want to be sure my details will also be removed from Adobe's files.
    This was the subject line:
    Reminder: Adobe Direct Download usage invoice for vip member. Payable by 24.08.2009
    This is who sent it:
    [email protected]
    Hopefully by just not paying the invoice I can't see (!) this will just go away.  But why do they make it so difficult to contact them?  And whatever happened to the free Reader?
    All advice much appreciated.

    gbtbag wrote:
     This was the subject line: 
    Reminder: Adobe Direct Download usage invoice for vip member. Payable by 24.08.200
    This is a typical spam subject line; it does not come from Adobe, but from software pirates.
    Do not download stuff from software pirates, as the stuff is
    illegal
    possibly malware infected
    plus they will steal and sell your credit card information
    Only download software from the original developers / manufacturers!

  • Delivery to multiple invoices for different BPs

    Hi,
    I have the following scenario:
    You add a delivery note for one customer. There are situations when should be three different invoices, but for other 3 different BPs as the customer who received the goods is not necessarily the one paying for them.
    I know there is a payment consolidation, but you can only include one father code.
    Any ideas?
    Thanks,
    Cristina

    Hi Cristina,
    it must be very difficult to keep track of who received what goods & who is meant to pay for them.
    If this group of BPs is definite, you could create a virtual 'master' consolidating BP & run a group account where you keep all the billing addresses in the one spot. The disadvantage is that you will not easily be able to pinpoint which of the 'child' BPs still owes for what invoice.
    You can also create invoices & payments for different BPs & then use internal reconciliation with multiple BPs. This may be more traceable option, but depends on manual actions & is therefore error prone.
    All the best,
    Kerstin

  • Print in different page for different material type in Sapscript

    Hi all
    How do I do the above matter?
    Currently I have a script that print all material according to some condition.
    My client request to have a different page of material list for different material type.
    Please advise
    az

    Hi,
    1) Sort the internal table by material type.
    call func 'OPEN_FORM'.
    loop at itab.
    at new mattype.
    if mattype = 'A'.
      call fun 'START_FORM'.
       exporting
        page   =    'PAGEA'.
    elseif mattype = 'B'.
      call fun 'START_FORM'.
       exporting
        page   =    'PAGEB'.
    endat.
    call func 'WRITE_FORM'.
    AT end of mattype.
    call function 'END_FORM'.
    endat.
    endloop.
    call function 'CLOSE_FORM'.
    Thanks,
    Nethaji.

Maybe you are looking for