SALES INVOICE PLD

SAP Gurus,
In my Scenario at One of Our Warehouse there are two types of Invoices
1) TAX Invoice
2) Retail Invoice
We have hard coded 'TAX Invoice' and 'RETAIL Invoice' on two seprate PLD Layouts.
I have assigned PLD's  by default to BP as per requirement
But There are Several Customers who are taking Retail as well as as Tax Invoice.
can this problem been sorted out. I don't Want to create duplicate Customers for This.
Thanks,
Anirudh

Hi Anirudh,
This i have done through workaround.
Follow the steps accordingly & let me know.
1) Create One UDF in Marketing Documents Title
in Field Data Type Title Sal_Type
2) In Description Type Sales Invoice Type
3) Check on Valid Value for Field On Left Side Click New type Value as 1 and Description as TAX INVOICE
     Again Click on New & Type Value as 2 and description as RETAIL INVOICE
Update the UDF and Add it.
4)Now Open Your PLD which is hard coded Click on SAVE AS Print Layout Designer and save it with some other name. e.g. Invoice
5) Now open newly saved Invoice go to field which is hard coded.
6) Change the Source Type of Field in Content Tab to DATABASE
7) In Table Select OINV from drop down list.
8) In The Column Selct Your UDF Which is Sales Invoice Type
9) Save this PLD and set as by default to one of Your BP
10) Now open invoice for particular BP and in UDF Side Select the Invoice Type as required from drop down and update the invoice.
Now Check the PLD Format it will pick the values from UDF.
But your users have to select Invoice type in UDF.
Hope This Help.
Thanks,
Regards,
Sudhir Sharma

Similar Messages

  • Chapter ID's in Sales Invoice PLD

    hello friends,
    I want to display the excise chapter id of the items which i sell alongside the items in my sales invoice. But I am unable to understand how and from which table will i get those chapter id's. If somebody has handled this before, kindly share the knowledge.

    Kapil!
    It does'nt mean tht some tables are hidden. when u create a DB field in a particular area it'll capture the all tables related to any of the field lying in it. so, we have to Hold the ALT key in order to select the tabled other than the existing related table.
    n reg the ECC num of BP, thro this way i hav'nt achieved it. for bcoz to bring all the tax details is easy directly from invoice table but this ecc num upto my observation it is not taken to the invoice table. So ur way is better now retrieving ECC via an UDF.
    Regards,
    Dhana.

  • Tax Combinatiom. Tax rate, tax Amount in the PLD of sales Invoice

    Hello guys,
    This i seached in previous forum and got partial result
    Plz help me ragrding this
    for my query plz scroll down
    To accomplish this, you will have to create a new repetitive area (Repetitive Area1)and create the following 7 hidden fields in this new Repetitive Area1:
    Field_1 > Type = Text > Value = 1 {VAT. For BED, value = -90} (you can find this value from OSTT table, numerator field)
    Field_2 > Type = DB > Table = Sales Tax Authorities; Column = Numerator
    Field_3 > Type = Formula > Value = Field_1==Field_2 (from step 1 & 2)
    Field_4 > Type = DB > Table = AR Invoice Tax Amt Per Doc; Column = Tax Rate {this is required to display the tax rate in the document footer. For Eg. 4% for VAT@4%. If you just want to display the tax amount, do not create this field} - Link this to Field_3
    Field_5 > Type = DB > Table = AR Invoice Tax Amt Per Doc; Column = Tax Amount - Link this to Field_3
    Field_6 > Type = Formula > Value = Field_3*Field_4
    Field_7 > Type = Formula > Value = Field_3*Field_5
    Now in Repetitive Area Footer1 (i.e. the footer of the new repetitive area), create the following fields (visible):
    To display the Tax Rate: Field_8 > Type = Formula > Value = ColSum(Field_6)
    To display the Tax Amount: Field_9 > Type = Formula > Value = ColSum(Field_7)
    NOTE: You cannot display the tax name with this method. So to do that, you will have to create a Text field with the tax name in the repetitive area footer1, link it to Field_8 and then next to it, create Field_8 & Field_9 to display the relevant values
    I did exaclty the same way and i am getting result too
    But it is working for only 1 item , for 2nd the result is getting added up 4 times
    ex : for item1 10000 base value
    excise at 8% = 800
    when i select 2nd item total value becomes suppose 20,000
    excise at 8% becomes =3200
    which sholud be 1600
    Plz suggest
    i am in serious trouble

    Hi Manish,
    you have to mke the formula using the ostt and inv4 for invoice pld. table .
    Every taxcode has a unique nota fiscal id .Use that in ur PLD .
    Ex:
    First insert a repetitive area.
    Suppose Hcess id is 70 in ostt.
    1. Make a text field in repetive area and give 70 to it .
    2. make a db field and fetch nota id from ostt.
    3. make a formula field and Compare text field and db field .
    4. link the text field and db field with formula field .
    5. make a db field and fetch taxamount from inv4.
    6. link this filed also to formula field
    7 . make a new formula field and multiple the amount field and previous formula field .
    8. make a new formula field in repetitive area footer and do copulmn sum of last formula field which have the result of multiplication. This is what we have done. Hope it helps.
    Thanks,
    Joseph

  • Sales Order Number in A/R Invoice PLD

    Dear All,
                 I copy a Sales Order to a Delivery Challan, i Copy This Delivery Challan to a A/ R Invoice.
                 I Need the Document number and their posting dates of both sales order and delivery documnet base number onto the A/R Invoice PLD.
                 I AM able to achieve the delivery number and date of Delivery documnet can anyone advice how to retireve the base sales order number on A/ R Invoice PLD

    Hi Aslam,
    Check this thread,
    Re: SO delivery date on A/R invoice
    OR
    Try to Create Query PLD. or Stored Procedure
    Regards,
    Madhan.

  • Sales order Number in Outgoing Excise Invoice PLD

    Hi Expert
    How Can I display Sales Order No in Outgoing Excise Invoice PLD?
    Regards
    Shekhawat

    Shekhawat,
    As Gardon say you requires UDF and one FMS on that so for that make one UDF and assign FMS Query as below on that FMS.
    after that SO num will move automatically document by document.
    SELECT $[ORDR.DocNum] AS 'DocNum'
    if your problem solved then close the thread.
    Regards,
    Bhavank

  • Sales order number on the AR Invoice PLD

    I know I've seen a formatted search that enters the sales order number in a UDF so I can use it in the AR invoice PLD?  Could someone direct me in the right direction of give me the query to do this?
    Thanks, Jeff

    Hi,
    Do this,
    Create One UDF Header Level on A/R Invoice and Put FMS (or) Type direct SO No. (USER)
    Try this FMS in UDF, Exactly Sales Order No. Will Come.
    SELECT Distinct(T0.DocNum )
    FROM ORDR T0 INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN ODLN T2 ON T2.DocEntry = T1.TrgetEntry
    INNER JOIN DLN1 T3 on T3.DocEntry = T2.Docentry
    INNER JOIN OINV T4 ON T4.DocEntry = T3.TrgetEntry
    INNER JOIN INV1 T5 ON T5.DocEntry = T4.DocEntry
    Where T0.DocNum = (Select $[$38.44.0] )
    OR
    T2.DocNum = (Select $[$38.44.0] )
    Finally Put Remarks in Command Field. This is mendatory because you should give to use of Auto Refresh to UDF
    ->> Auto Refresh Remarks.
    Put the Remarks in Command Field and Click Tap Button(TAP button is Auto Refresh) and will come*
    the Sales Order Number in UDF
    Else
    You can put this Query in Remarks Field and Shift + F2, Sales Order No. will Come Exactly.
    Regards,
    Madhan.

  • Sales Order Posting Date on Invoice PLD

    Hello,
       I am trying to post a Sales Order Posting Date to our Invoice PLD.  It is not native information to the Invoice PLD so I will probably need to create a query which I can then place into a UDF on the Invoice.
    Any out there have a solution?
    Thanks.
    Edited by: Arellano Mario on Jul 8, 2009 1:16 AM

    Hi
    Sorry , for keeping messing up :
    38.45.0 is referring to Invoice row level base key
    logic is saying  Delivery number is equal to invoice row level base key
    If you look at the link and Gagan answer ,your problem should have been solved .
    Please close this thread if your problem is solved .
    Thann you
    Bishal
    Definitely need a coffee to start my day
    Edited by: BIshal Adhikari on Jul 9, 2009 6:44 AM
    Edited by: BIshal Adhikari on Jul 9, 2009 6:44 AM

  • Sales Invoice Print

    Hi,
    We are into retail showroom. In the sales invoice printed, we need the incoming payment details, or A/R Credit memo adjusted against if any.
    Any solution?
    T&R
    Iyerchandra

    hello
    do one thing open ur pld for sales invoice and take one database field in the start of report and select the database field and give table name  as oinv in properties field and select column name as comments then save the pld now u can see A/R invoice Remarks.
    regards
    jenny

  • Sort option in Repetitive Area on AR Invoice PLD is disabled / greyed out

    Hi Experts,
    I have an issue whereby in my PLD the sort option under Print Layout Design Manager -> Repetitive Area -> Sort is greyed out / disabled in the AR Invoice PLD. Does anyone know why this might be? I've not seen this before and I can't find any notes relating to specifically to this issue in an AR Invoice PLD.
    2007A PL06 Hot Fix 01.
    Many thanks for any help,
    Caroline

    Hello Khushwant,
    In SAP when your business Process is Sales Order --> Delivery --> AR Invoice
    SAP would print the Batch Numbers along with the Delivery document.
    But your Business Process is Sales Order --> AR Invoice
    SAP would print the Batch Numbers along with the Invoice document.
    Whichever document releaves inventory, SAP will Open the Batch selection screen when adding that document and the Batch Report will be printed on a seperate sheet along with that document.
    The functionality change in SBO 2007, is that the Batch number print on the Delivery / Invoice document itself instead of on a seperate Page as in 2005.
    Could you please explain your Business Process in relation to what I have mentioned earlier.
    Printing the Batch Number as part of the Invoice document itself in SBO 2005 is going to be a tough task.
    Let me know if where and how you want to print this information.
    Regards
    Suda

  • Regarding A/R Invoice PLD

    Hi,
    I have a PLD of Sales Invoice. In that  I want to show the sales order no. and date. But when I call the base ref the no is coming ,but the items r getting repeated. Again if I call Sales Order No. of ORDR it is showing wrong results. How to go for it.
    thanx in advance
    regards priya

    Dear Priya,
    There are two ways, firs is suggest by gordon is true, Create UDF, set FMS and easyly take the no and date of order.
    Second is, you have to use condition on PLD, for no u dont need all ref no of all items, take ref no of first item by using condition.
    Regards,
    Chintesh Soni

  • Sales Order no is not displayed in Sales Invoice

    Hi Experts,
                     I  want Sales Order No to be displayed in Sales Invoice of PLD. How could be done? Please guide me.

    Hi Shailesh......
    Please do this...........
    Create a UDF in SO and apply the below FMS in this created UDF.
    Select $[ORDR.U_UDF.0]
    This will copy the SO no. in this UDF and when you copy this SO to Delivery or next document this SO in UDF will also flow in Invoice and from there you an get it into PLD......
    Regards,
    Rahul

  • Tax Bifurcation in A\R Invoice PLD

    Hi All,
    I am trying to bifurcate the Tax Amount in A\R Invoice PLD. My Client is  using the  Tax Code VATSAT in which VAT is 4% and SAT is .5%   i want to display the tax amount seperatly in Invoice PLD.
    Thanks In Advance,
    Pankaj Sharma.

    Hi,
    In SAP you have Table OSTT. In this table all the tax codes are stored. For each Tax code, there will be related Nota Fiscal Id and Numerator.
    In PLD, Add repetitive area and in Repetitive area
    1. Create 1 text field and enter the number (Nota Fiscal Tax ID or Numerator)
    Note : If you are calculating excise duty or service tax or Vat then you will be entering Nota fiscal Tax ID else you will be entering Numerator Number in the Text field you have created.
    Let's Assume Field_001 (ex. Field_001 --> -90 or 6)
    2. Create 1 database field, in that link the "Sales Tax Authorities Type" table and "Nota Fiscal Tax ID" or "Numerator"
    let's assume Field_002
    3. Create one Formula Field, In that Check whether the two fields are equal.
    let's assume Field_003 contains formula (ie., Field_001==Field_002)
    4. Create one Database field, In that link "A/R - tax Amount per Document" table and "Tax Amount" Column.
    let's assume Field_004
    5. Create one Formula Field, in that multiply two fields
    let's assume Field_005 = Field_003 * Field_004.
    6. Then in Repetitive area Footer, Create one formula field, and in that Sum that result.
    Let's assume Filed_006 = COLSUM("Field_005")
    Do the above said process to retrieve seperate tax amount values.
    To print Tax rate :
    In repetitive area footer, create one database field, and now choose A/R Invoice or corresponding table and Tax Rate column.
    Let's Assume, that in repetitive area footer Field_101 has the above database table link.
    Now, as per my previous reply Create one Text Field and enter "VAT" and then next to text field create Formula Field and Choose the Field_101 in the Formula column.
    In End Of Report
    Create Text fields seperately for BED, Cess, HSC, VAT, Excise Duty, Frieght, etc., And corresponding Formula fields which refers the values which you have calculated in Repetitive area footer (ie like Filed_006, you will have seperate calculated values in repetitive area footer fields). Select corresponding values to these formula fields and in Text field (Properties --> General --> Link To field, Link the formula field number which is corresponding to the Text field)
    I hope this could help you

  • A/R Invoice PLD - Expiry Date, Mfg Date, Batch No.

    Hi,
    We are using SAP 2007A.
    We have customized the Print Layout. for the Delivery and A/R Invoice documents.  In both docs, we have used system variables for batch, exp date & mfg date.
    When we create an invoice directly (i.e. without a base document), then print it, we are able to get the batch, exp and mfg date perfectly.
    However, when we create the Invoice from the base document i.e. Delivery, and then try to print it, we are unable to print the batch, exp & mfg. When we print the Delivery, it prints the batch, exp & mfg just fine.
    We need to be able to create a/r invoice from delivery & print the batch, exp & mfg on the Invoice.
    Please advise.
    Thanks.

    Hi Afzal,
    Gordon is very much right,
    Atually PLD is very basic tool , one time its ilnk with only one marketing document either delivery, invoice or sales order etc.
    when someone prints invoice , PLD related to invoice will ativate so data fron Delivery is no where in any case as when u copy the invoice from delivery the  concern data is copied fron delivery (odln,dln1.....)tables to oinv,inv1....... tables from which pld took the  data , so u can use UDF and apply formateed search on invoice to fill the batch no or all other field u want , u an also take help of sdk as on making of invoice from delivery the specified data should copied.
    You an use crystal report and geet all data as u want .
    rgds,
    Premraj

  • Customer payment report against sales invoice

    Dear Experts.
    My client has requirement to track customer payment against sales invoice. Actually client sometimes do partial payment also. I know we can get from bsid(open item) & bsad(cleared item) table. I unable to find actual required data.
    regards
    sanjay verma

    Dear Sanjay,
    Apart form the FBL5N,  Please check the below path for more standard reports which helps you to fulfill your requirement.  Hope its helpful.
    In SAP Easy Access screen
    Regards,
    Inthiyaz

  • A/R Invoice PLD

    Hi Everyone,
    On the A/R Invoice PLD I created, I am showing both the Item No. and the Customer/Vendor Catalog No.  I selected both fields from teh A/R Invoice - Rows table.  However, on one of my invoices teh Customer/Vendor Catalog No. is not coming through for certain items.  There are 12 items on the invoice and three of them do not have the vendor catalog number.  I verified there is a catalog number setup in Business Partner Catalog Numbers. 
    Does anybody know why it might not be coming through for some items?  Like I mentioned, there are BP catalog numbers set up for the item numbers in question, so I'm at a loss.
    Any help is appreciated.
    Thank you,
    Amanda

    Amanda,
    Since you say this is happening on only one of your invoices, you would need to explore more on the specific items and see if the same behaviour is repeated with other BP's?
    If the PLD works for most Invoices then there could be nothing really wrong with the template.
    Yes, Press the Alt key and click on the Table selection drop down.   If you are trying this on a field which is already set to a table it might not work. 
    So, please change the field to a Free Text....then change it back to a Database Field and then Hold the Alt Key and click the drop down
    Suda

Maybe you are looking for