Send me the Invoice related Layout Functional requirement spections

Dear SAP Experts
Please send me the Invoice related functional specs for
Invoice domestic
Invoice export
VAT Invoice
Proforma Invoice
Picking List
Packing List
Please kindly send to my mail ID ; [email protected]
dont forget to send guys, i will make it as a confidention, because right now i am working for layout developement for one of top FMCG Company
thanks & regards
Janardhan

http://www.erpgenie.com/abap/tables_sd.htm

Similar Messages

  • Can anyone send me the link related COPA Cubes and Reports

    I guess if you want links on help.sap.com you can search and find the same too!!
    Hi,
    can anyone send me the COPA Standard cubes and Reprots list and
    can anyone send the link where we get the above objects ...
    Regards,
    Suman
    Edited by: Arun Varadarajan on Feb 11, 2009 12:58 PM

    Hi.......
    Go to RSA1 >> Business content >> Click on Object Types >> There click on Infocube >> Expand the node >> Click on Select Objects.............there search for the Term COPA...........u will get all the standard COPA infocubes.......
    Check this.......
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/910aa7a7-0b01-0010-97a5-f28be23697d3
    http://help.sap.com/saphelp_nw70/helpdata/EN/a4/1be541f321c717e10000000a155106/frameset.htm
    Regards,
    Debjani....

  • Use SQL function to get the original order number using the invoice number

    Hi All,
    wondering is someone can help me with this challenge I am having?  Often I need to return the original order numbers that created the resulting invoce.  This is a relatively simple seriese of joins in a query but I am wanting to simplify it using a SQL function that can be referenced each time easily from with in the SELECT statement.  the code i currently have is:
    Use SQL function to get the original order number using the invoice number
    CREATE FUNCTION dbo.fnOrdersThatMakeInvoice(@InvNum int)
    RETURNS nvarchar(200)
    AS
    BEGIN
    DECLARE @OrderList nvarchar(200)
    SET @OrderList = ''
    SELECT @OrderList = @OrderList + (cast(T6.DocNum AS nvarchar(10)) + ' ')
    FROM  OINV AS T1 INNER JOIN
          INV1 AS T2 ON T1.DocEntry = T2.DocEntry INNER JOIN
          DLN1 AS T4 ON T2.BaseEntry = T4.DocEntry AND T2.BaseLine = T4.LineNum INNER JOIN
          RDR1 AS T5 ON T4.BaseEntry = T5.DocEntry AND T4.BaseLine = T5.LineNum INNER JOIN
          ORDR AS T6 ON T5.DocEntry = T6.DocEntry
    WHERE T1.DocNum = @InvNum
    RETURN @OrderList 
    END
    it is run by the following query:
    Select T1.DocNum, dbo.fnOrdersThatMakeInvoice(T1.DocNum)
    From OINV T1
    Where T1.DocNum = 'your invoice number here'
    The issue is that this returns the order number for all of the lines in the invoice.  Only want to see the summary of the order numbers.  ie if 3 orders were used to make a 20 line inovice I only want to see the 3 order numbers retuned in the field.
    If this was a simple reporting SELECT query I would use SELECT DISTINCT.  But I can't do that.
    Any ideas?
    Thanks,
    Mike

    Thanks Gordon,
    I am trying to get away from the massive table access list everytime I write a query where I need to access the original order number of the invoice.  However, I have managed to solve my own problem with a GROUP BY statement!
    Others may be interested so, the code is this:
    CREATE FUNCTION dbo.fnOrdersThatMakeInvoice(@InvNum int)
    RETURNS nvarchar(200)
    AS
    BEGIN
    DECLARE @OrderList nvarchar(200)
    SET @OrderList = ''
    SELECT @OrderList = @OrderList + (cast(T6.DocNum AS nvarchar(10)) + ' ')
    FROM  OINV AS T1 INNER JOIN
          INV1 AS T2 ON T1.DocEntry = T2.DocEntry INNER JOIN
          DLN1 AS T4 ON T2.BaseEntry = T4.DocEntry AND T2.BaseLine = T4.LineNum INNER JOIN
          RDR1 AS T5 ON T4.BaseEntry = T5.DocEntry AND T4.BaseLine = T5.LineNum INNER JOIN
          ORDR AS T6 ON T5.DocEntry = T6.DocEntry
    WHERE T1.DocNum = @InvNum
    GROUP BY T6.DocNum
    RETURN @OrderList 
    END
    and to call it use this:
    Select T1.DocNum, dbo.fnOrdersThatMakeInvoice(T1.DocNum)
    From OINV T1
    Where T1.DocNum = 'your invoice number'

  • Updating service order status in CRM from R3 after the invoice is created

    Hi all ;
    I need to update the user status of an service order in CRM when the invoice related to it in R3 is created, so I have already know  the service order no .
    How can i achieve this by sending BDOC from R3 to CRM? Which BDOC should i use?and is it enough to fill only status data in BDOC?
    Thanks.

    Hi sushant,
    When the R/3 Order status is set to 'Completed' then the system status for order in CRM system is automatically changed to 'Completed'.
    So firstly check whether the User status ('Completed')in SAP CRM has the Business transaction event set to 'FINI'. So when the system status is set to 'Completed' the user status will also change to 'Completed.'
    Secondly even check what are the statuses of item in the Orders.
    regards,
    Anubhav

  • Please send me the exit name to add my code for AUTLF check box for VA02

    Hi All,
    My requirement is as follows,
    1) The scope of this enhancement is required only for transaction VA02 - Change Sales Order, order-type maintained in table TVARV
    2) In the program, if User tries to uncheck the checkbox – Complete delivery (VBAK-AUTLF), program to check if there are subsequent deliveries for stock reservation (Delivery type ZRES) are existing or not.  If the deliveries are existing, an appropriate error message should be displayed and user should be restricted from performing this activity.
    So please tell me where to insert my code? according to my requirement and also please send me the user exit or function module exit
    Thanx in advance,
    santhosh.

    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/ab038.htm
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html
    Rewards if useful.........
    Minal

  • Batch job creation for sending email if the invoice is aged

    Positive confirmation: Send system notification to the requestor if:
    a) An invoice is received and GR is not yet posted in the ECC system.
    b) An 'aged' invoice and GR is not yet posted in the ECC system.
    This requirement is for USA only. i.e., we have only one company code which is 8960.
    Identifiers of the invoice are
    Company Code = u20188960u2019
    Invoice Document Type = u2018R9u2019
    Use table EKBE for relationship between Invoice, Goods Receipt and Purchase Order.
    The field EKPO-BEDNR contains the Shopping Cart Number
    Implementation Strategy
    1. To send email if the invoice is aged.
    Create a program that will run as a job. This job will frequently check for invoices related to SRM Shopping Carts received from E2OPEN. If an invoice is aged and there is no Goods Receipt posted through confirmation from SRM, then an email will go out from ECC system to the requestor. Using the Shopping Cart number on PO, find the requestor information (email ID) from SRM through an RFC call. This job will run once in a day and should have a parameter in the program for the age of the Invoice.
    Both the emails should contain a link (To be taken from SRM system, to be supplied) to log into SRM system. The email will also contain the Shopping Cart number and the Description of the item, and a message to Confirm this, including age of the invoice if aged.
    Please let me know how to create the batch job.
    Regards,
    Venkat
    Edited by: VenkatG on Sep 1, 2009 3:14 PM

    Do not pass the COMMIT_WORK flag... Leave it blank. Any transaction for the data integrity, one should never use COMMIT WORK related statements. Normally SAP transactions will have the COMMIT WORK at the end of transaction which is enough for any thing that is added part of the customer exits...
    Hope this helps.
    Regards
    Anjaiah

  • Using the PCH in the PD related requirement

    Dear Freinds,
               I would like to know how we should code (standards to be used) when we use
    logical database PCH and get objec event. Because in the PNP logical database when
    we are using we will use get pernr and macros's like rp-provide-from last etc . But
    in PD i dont have idea which macro (if any are there) we have to use , because
    basicially my requirement is if i enter the object type as S and  object id i want to
    get all the jobs' org units with the relation ship given to me can i use the function modules RH_READ_INFTY_1001 in my flow .
    because till now i havent used the logical databased pch, so if any body please give me a some code to me it would be great help for me in building the logic.
    Regards
    latha.

    Hello manoj,
    Could please send me the PCH sample code to my email id [email protected]
    Thanks a lot in advance.
    Regards,
    Archana.

  • Required Layout Functional Specifications

    HI every bady
    This is Janardhan ,SAP SD Functional Consultant, working for one of the top FMCG company as a SD consultant,
    IN this Project we have to develop Layouts for different areas like, packing list, Picking List, Invoice, proforma, Delivery note and Stages connections. and so........
    if you have any idea on the above mentioned layouts documents in terms of <b>Functional requirements specifications</b> , please sent it to my mail id

    Closed

  • AnyStandard functionality in F110 to filter the invoices for certain amount

    Hi All,
    I have a requirement like  - We need to process the batch payment based on the Value of the Invoices accounted in system.
    Any single/consolidation of  invoices for value exceeding Rs 50000/- needs to be processed through separate batches under T Code F110
    Vis-à-vis any single invoices whose value is less than Rs 50000/- also needs to be processed through a separate batch. The system should list out all the transaction based on the Value of the Invoices covering Rs 50000/- under T Code F 110
    Do we have any standard functionality where in we can restrict the invoices till certain amount.
    Kindly help
    Regards,
    Mercy

    Dear,
    You can only chose 'free selection' tab in F110 for a single value by 'field name'. To do that you must change yours invoices in FBL1N or FBL5N. Run one of these reports for your open items dispalay and sort by amount. Block in mass all open items with amount exceded and go to F110. This is a tip to have your desired result. I hope it helps.
    Regards

  • Failure sending mail: the specified string is not in the form required for an e-mail address.mail will not be resent. Email Notification Component Properties works fine.

    I know there are a few other questions like this but I can't seem to find how it's relating to my issue.  I am getting the familar failure sending mail: the specified string is not in the form required for an e-mail address.mail will not be resent.
    in the reports feature of sccm. 
    I just picked a sample report Compliance 4.  I right clicked hit create subscription and input my email into the TO: field.  When it runs i get the above error.  I checked the email notifcation under configure site components and was able
    to successfully send a test message from there but I dont get why it doesnt work on the subscription.  
    Any Ideas?

    The log is pretty big so im not sure where I can upload it.  I think it would be too big to paste here but I have copied what I think you are looking for in the log and will paste it here.  Let me know some place I can send you the full log file
    or if you want a different log.
    schedule!WindowsService_37!a04!12/07/2014-00:02:03:: i INFO: Handling Event TimedSubscription with data 2946db38-5a07-4fb1-ad06-d7714e25b1ba.
    library!WindowsService_37!a04!12/07/2014-00:02:03:: i INFO: Schedule 534ad96b-a680-4630-a865-9f99e1087e3f executed at 12/07/2014 00:02:03.
    schedule!WindowsService_37!a04!12/07/2014-00:02:03:: i INFO: Creating Time based subscription notification for subscription: 2946db38-5a07-4fb1-ad06-d7714e25b1ba
    library!WindowsService_37!a04!12/07/2014-00:02:03:: i INFO: Schedule 534ad96b-a680-4630-a865-9f99e1087e3f execution completed at 12/07/2014 00:02:03.
    library!WindowsService_37!a04!12/07/2014-00:02:06:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    notification!WindowsService_37!a04!12/07/2014-00:02:06:: i INFO: Handling subscription 2946db38-5a07-4fb1-ad06-d7714e25b1ba to report Compliance 4 - Updates by vendor month year, owner: LEGISLATURE\mrykhoe, delivery extension: Report Server Email.
    emailextension!WindowsService_37!a04!12/07/2014-00:02:06:: e ERROR: Error sending email. Exception: System.FormatException: The specified string is not in the form required for an e-mail address.
       at System.Net.Mime.MailBnfHelper.ReadMailAddress(String data, Int32& offset, String& displayName)
       at System.Net.Mail.MailAddress.ParseValue(String address)
       at System.Net.Mail.MailAddress..ctor(String address, String displayName, Encoding displayNameEncoding)
       at Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification notification)
       at Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification notification)
    notification!WindowsService_37!a04!12/07/2014-00:02:06:: i INFO: Notification f06f40a4-32f3-4fa6-8077-89083cc7a2a2 completed.  Success: True, Status: Failure sending mail: The specified string is not in the form required for an e-mail address.Mail will
    not be resent., DeliveryExtension: Report Server Email, Report: Compliance 4 - Updates by vendor month year, Attempt 0

  • How to send the invoice doc. through the email to multiple recepients ?

    Hi Experts,
    I have a requirement to send the invoice document to multiple recepients through the email. 
    Do I need to repeat all the FMs "OPEN_FORM, START_FORM, WRITE_FORM, END_FORM and CLOSE_FORM' in the loop.  Otherwise it is fine if we loop the FMs OPEN_FORM and CLOSE_FORM only ?  Please confirm.
    Thanks,
    Sreenivas.

    Hello.
    U need to loop any FM'S try to get the spool number and convert it to PDF.
    Retrieve the multiple receipients whom u want to send and collect all these in a table then call the mail trigeering FM.
    This is the easy way u can do.
    Still u have doubts plz revert.
    Tnx,
    Arun.

  • How can I get Apple to send the invoice of one of my orders?

    I ordered a MacBook Air 13 at apple store online but I haven't get the invoice of the product. How can I ask apple to send it to me?
    Thank you,
    Luiza

    Thank you for your response, Dominic. I'm in Brazil now and unfortunately I'm not able to call the 1-800 number. There is another problem, I can't solve this by viewing my order online, as I haven't inserted my apple ID to the order ...it doesn't allow me to print the invoice or do anything else about it...
    Do you know if there's any online support that I can contact?
    Thank you again!

  • I changed laptops and went from Vista to Windows 8. It requires icloud. I did icloud setup but it will not allow me access and wants to give me a new password. That is OK but it will not send me the promised password

    I changed laptops and went from Vista to Windows 8. It requires icloud. I did icloud setup but it will not allow me access and wants to give me a new password. That is OK but it will not send me the promised password even though itunes recognizes my password

    This has been posted for almost 2 weeks and not one reply. Thanks a bunch! As a newbie to OOo and Mozilla, I am not impressed with responsiveness to support needs with either. So, the future of my new experiment with going non-Microsoft remains an open question.
    Oddly enough, the problem mysteriously went away. I have followed the same routine and changed no settings. Suddenly all of the downloaded spreadsheets were no longer read-only. So I consider the matter resolved.

  • [svn] 4634: First part of glue code for allowing Halo components to use the new Text Layout Framework , in order to get functionality such as bidirectional text.

    Revision: 4634
    Author:   [email protected]
    Date:     2009-01-22 17:38:56 -0800 (Thu, 22 Jan 2009)
    Log Message:
    First part of glue code for allowing Halo components to use the new Text Layout Framework, in order to get functionality such as bidirectional text.
    Background:
    TLF is making this possible by implementing a TLFTextField class. It is a Sprite that uses TLF to implement the same properties and methods as the legacy TextField class in the Player. Thanks to the createInFontContext() bottleneck method in UIComponent, it can be used by a properly-written Halo component (such as those in Flex 3) without any modifications to the component.
    Note: Text should render similarly -- but is unlikely to render identically -- when a component uses TLFTextField vs. TextField. The width and height may be different, affecting layout; text could wrap differently; etc. This is a fact-of-life based on the fact that TLF/FTE and TextField are completely different text engines.
    Whether a Halo component uses TLF or not to render text will be determined in Flex 4 by a new style, textFieldClass. (Gumbo components always use TLF.)
    TLFTextField is currently only partially implemented. It does not yet support scrolling, selection, editing, multiple formats, or htmlText. Therefore it can only be used for simple display text, such as a Button label.
    Details:
    The TextStyles.as bucket 'o text styles now includes a non-inheriting textFieldClass style. It can be set to either mx.core.UITextField or mx.core.UITLFTextField. These are the Flex framework's wrapper classes around the lower-level classes flash.text.TextField (in the Player) and its TLF-based workalike, flashx.textLayout.controls.TLFTextField.
    The global selector in defaults.css currently sets it to mx.core.UITextField using a ClassReference directive. For the time being, all Halo components will continue to use the "real" TextField.
    The new UITLFTextField is a copy of UITextField, except that it extends TLFTextField instead of TextField. This class has been added to FrameworkClasses.as because no classes in framework.swc have a dependency on it. It will get soft-linked into applcations via the textFieldClass style.
    The TLFTextField class currently lives in a fourth TLF SWC, textLayout_textField.swc. This SWC has been added to various build scripts. The external-library-path for building framework.swc now includes all four TLF SWCs, because UITLFTextField can't be compiled and linked without them. However, since they are external they aren't linked into framework.swc.
    Properly-written Halo UIComponents access their text fields only through the IUITextField interface, and they create text fields like this:
    textField = IUITextField(createInFontContext(UITextField));
    (The reason for using createInFontContext() is to support embedded fonts that are embedded in a different SWF.)
    The createInFontContext() method of UIComponent has been modified to use the textFieldClass style to determine whether to create a UITextField or a UITLFTextField.
    With these changes, you can now write code like
    to get two Buttons, the first of which uses UITextField (because this is the value of textFieldClass in the global selector) and the second of which uses UITLFTextField. They look very similar, which is good!
    Currently, both Buttons are being measured by using an offscreen TextField. A subsequent checkin will make components rendering using UITLFTextField measure themselves using an offscreen TLFTextField so that measurement and rendering are consistent.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Deepa
    Modified Paths:
        flex/sdk/trunk/asdoc/build.xml
        flex/sdk/trunk/build.xml
        flex/sdk/trunk/frameworks/projects/framework/build.xml
        flex/sdk/trunk/frameworks/projects/framework/defaults.css
        flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/metadata/TextStyles.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UITLFTextField.as

    Many of your points are totally legitimate.
    This one, however, is not:
    …To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help"…
    The design and management of the forums for more than five years have driven literally dozens of the most valuable contributors and "regulars" away from the forums—permanently.
    The only conclusion a prudent, reasonable person can draw from this state of affairs is that Adobe consciously and deliberately want to kill these forums by attrition—without a the PR hit they would otherwise take if they suddenly just shut them down.

  • Hi  When i create the downpayment process in the invoice i get amount as value but my requirement is in percentage even after i select the percentage basis milestone billing please help what can be done

    Hi  When i create the downpayment process in the invoice i get amount as value but my requirement is in percentage even after i select the percentage basis milestone billing please help what can be done

    downpayment percentage , so if i want 50 percent of order value to be paid  and when i go to faz type the invoice is created for 0 value that 50 percent of the amount is not getting calculated , where as when i enter in order same as 50 percent in amount it gets calculated in invoice, any help ?

Maybe you are looking for

  • How to capture the event on changing focus from a JTextField?

    Hi All, I have got a problem... I want to do something (say some sort of validations/calculations) when I change the focus by pressing tab from a JTextField. But I am not able to do that. I tried with DocumentListener (jtf01.getDocument().addDocument

  • Virtual directory mapping in weblogic platform 7.0

    Hi. I noticed in WebLogic Platform 7.0 there is a entry for WEB-INF/weblogic.xml that defines a virtual directory. Example: <!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 7.0//EN" "http://www.bea.com/servers/wls700/dtd/w

  • Inaccurate Fader levels

    I remember reading about this on some forum somewhere.... The fact that the fader levels jump several number values instead of in perfect sequencial order. For example, wanting to go to -11db, the fader will only go either -10.9 or -11.2. Even if I t

  • Can't use mouse/keyboard/trackpad when waking iMac from sleep mode

    Basically as the title says. When I wake my iMac from sleep mode I am unable to use my keyboard/trackpad/mouse during the login window. Once the screen goes black by itself, after a minute or so I can then log in properly. Yes the keyboard/mouse/trac

  • Running Safari or Firefox = Eternal suspend/crash

    I have posted this question in the iMac section with really no progress, I have determined that it is solely related to Safari and the internet, so I thought I would post it here.  Without fail while running Safari and loading on scrolling the spinni