Carry text from billing document to the accounting document items

Hi,
We have a requirement where we want to post text to the line items in the accounting document generated from a billing document. Can someone help please!! Can this text be created from the billing document itself??
Thanks!
Regards,
Angad

It says OTX3 does not exist. We are on R/3 4.7.
Edit: Is t.code VOTXN what you are talking about?
Regards,
Angad
Edited by: Angad Nagpal on May 28, 2009 11:40 AM

Similar Messages

  • Transfer document header text from billing document to FI document

    Dear all,
    Where do I specify that the document header text out of the billing document should be transferred to the corresponding FI document?
    Currently, the FI document header text (BKPF-BKTXT) remeans blank after transfer from billing document. We need this field to be filled in, but I haven't found how to have this filled in.
    In copy control from sales doc to billing doc, there is the possibility to transfer the Reference number & Assignment, but nothing about document header texts.
    Some say that it would only be possible via coding, but anybody has any idea if it might be possible via standard SAP?
    Many thanks!
    Best regards

    Hi,
    We also had a bit same requirement, which is to copy the billing header text to FI item text (BSEG-SGTXT). The solution we took is to use FI Substitution (t-code GGB1), so that every time a FI document created from SD... the substitution reads the billing header text and put it in the FI item text. I think the same method could be used for FI header text (BKPF-BKTXT). Below is the solution for your reference.
    Prerequisite:
    Document Type = 'RV' AND Reference <> '' AND
    ( Transaction code = 'VF01' OR Transaction code = 'VF02' OR
    Transaction code = 'VF03' )
    Substitution:
    Using exit which coding is as below.
    *&      Form  u900
          Copy Billing Header Text to SGTXT
         -->P_SGTXT    FI Item Text
    FORM u900 USING p_sgtxt TYPE bseg-sgtxt.
      DATA: lv_name TYPE thead-tdname,
            lt_line TYPE STANDARD TABLE OF tline,
            lw_line TYPE tline.
      lv_name = bkpf-xblnr.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          id                      = 'Z001'
          language                = sy-langu
          name                    = lv_name
          object                  = 'VBBK'
        TABLES
          lines                   = lt_line[]
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
      IF sy-subrc EQ 0.
        READ TABLE lt_line
          INTO lw_line
          INDEX 1.
      In Billing Header Text, the sign '&' (ampersand) is automatically
      added some characters so it becomes '<(>&<)>'.
      The logic below is to fix that issue.
        REPLACE ALL OCCURRENCES OF '<(>' IN lw_line-tdline WITH space.
        REPLACE ALL OCCURRENCES OF '<)>' IN lw_line-tdline WITH space.
        p_sgtxt = lw_line-tdline.
      ENDIF.
    ENDFORM.
    Regards,
    Teddy Kurniawan

  • Copying header text from Billing document to Accounting document

    Hi
    I have created a new text id in billing document using VOTXN, is it possbile to copy the header text maintained here to an accounting document field -> doc header text or any other text field when the billing document will get posted to accounting.
    Please guide.
    Thanks,
    Vaishnavi

    Hi,
    with a substitution (GGB1) for FI document header (BKPF-BKTXT) it can be possible. A user exit is required in the substitution to read the SD table.
    Regards,
    Joosz

  • Texts from Billing on smartforms

    Get text from billing document to add on smartform.
    From the bolling document i need to get two header texts:
    Booking Number and Conatiner number and display it in smartform .
    Can anyone let me know how to read those texts to display them in Smartforms.
    In the Header structure (Global Interface ) for billing document , I cant find the text for it .
    Please let me know how to do this ?
    Thanks

    Hi
    Create a text node and choose INCLUDE TEXT as type in General Attribute tab.
    Here you can insert the keys if text as variable in order to explode the text automatically:
    Text Name         &V_TEXT_NAME&
    Text Object       &V_TEXT_OBJECT&
    Text ID           &V_TEXT_ID&
    Language          &V_TEXT_LANGUAGE&
    Max

  • How to find the GL Account for a Billing Document Item?

    Hi All,
       For a specific Billing Document Item, how to fetch the corresponding GL Account No.?
       I tried the below approach.
       Using the Billing Document Number, I fetched the corresponding Accounting Document No. then I tried to match the item of billing document with the item of Accounting Document by comparing the amount and then fetch the GL Account from table BSEG. When I compared the line items of both the documents, the no. of line items in the Accounting Document is more compared to the no. of line items in the Billing Document. I tried to match the items using Amount, but what if more than one item has the same amount but different GL Account No.?

    Hi,
    i would agree with what 'Rajasekhar Dinavahi' said.
    quote,
    <b>Hi
    If you open the billing document in VF03, click on 'Accounting' , select the accounting document, click on 'Administrat. data' tab.
    Here you will find the Reference Document and Reference item no.
    Regards,
    Raj
    </b>
    unquote
    The reference Doc will be XBLNR .
    Regards,
    Shehryar

  • How to get Accounting document number from billing document number

    Hi,
    How to get Accounting document number from billing document number i.e. from VBAK- VBELN.
    Cheta Pant

    Hi,
    VBAK is the Sale Order header table, Billing document table is VBRK.
    Sales tables (VBAK,VBAP,VBRP,VBRK) do not store accounting document numbers.
    You do other way around. Just go to SE16 and enter the Billing document number in field Billing document VBELN in BSEG or BSID or BSAD table and execute, you will find the accounting document number.
    If you just want collect this information once then you can use table BSEG, but if you think to develope a report then use table BSID and BSAD.
    Regards,
    Chintan Joshi

  • Zero BED value when posted J1IIN excise invoice from billing document

    Hi Guys,
    I created VA01, VL01N and VF01. Bed value is showing in VF03 but when I created J1IIN from billing document, BED value is zero. I checked several places like below
    a) Logistics-General > Tax on Goods Movements > India > Account Determination > Specify Excise Accounts per Excise Transaction. Here ensure that for DLFC, necessary Account names are maintained.
    b) Similarly, in the next tab, Specify G/L Accounts per Excise Transaction, ensure that for that Excise Group, relevant G/L Accounts are assigned
    c) Finally, in Business Transaction tab, select Outgoing Excise Invoices where you need to ensure that you have assigned billing type to delivery type and also the default Excise Groups and Series Groups are maintained.
    I couldn't figure it out where the problem is. Please help me where to check and what should be done for this?
    Thanks,
    Manohar.

    I maintained excise defaults for TAXINN, I am maintaining A/R BED % which is coming in billing document but not in J1IIN. When I click on simulate it is giving a popup box saying 'No defaults could be proposed for Excise utilization' and click on continue then it is giving another message saying 'Excise modvat accounts not defined for GRPO transaction and E2 excise group'. Please help me what is it?
    Thanks,
    Manohar.

  • My phone and computer are mixing up my mom and sisters contacts. whenever i text my sister it sends it to her and my mom or vice versa. whenever i get a tex from my sister it says that i have gotten a text from my mom on the notifications. How do i fix it

    My phone and computer are mixing up my mom and sisters contacts. Whenever i text my sister it sends it to her and my mom or vice versa. Whenever i get a text from my sister it says that i have gotten a text from my mom on the notifications. How do i fix it?

    The SIM card included with an iPhone 4S that is activated with Verizon is not used to access Verizon's network. The SIM card is used when roaming internationally - to be used with a GSM carrier in another country at Verizon's international roaming rates - with a GSM carrier in a country that Verizon has a roaming agreement with.
    An iPhone activated with Verizon can be activated with another Verizon account and line/number at a Verizon store, or this can be done over the air. When I was a Verizon subscriber many moons ago, any CDMA phone I had activated with Verizon would be done over the air without having to visit a Verizon store.
    Regarding your MBP, you can perform an erase and install with the OS X install package that shipped with the Mac when new. This way it will be like opening the Mac for the first time for her. She will get the setup assistant to set up the computer with her name, address, and email address, etc. along with capturing a photo of her if she wants. After she goes through the brief setup assitant, you can run Software Update to get OS X and all includes apps up to date. She can then authorize the MBP with her iTunes account with iTunes. The iPhone can the be restored with iTunes as a new iPhone.

  • Text in Billing document should determine into output

    Dear Friends,
    Help me to determine billing document item text into printout as a line item description.
    My Scenario is:
    Generally in printout item description is determined.But i need to determine the billing item text as a item description.
    Thanks in advance,
    Regards,
    Ravi

    Hi Ravi
    If you want the billing item text as item description then you have to take your ABAP team help and ask your ABAP team  to include the logic that billing item text has to come as  item description As these changes can be done in the Smartforms.
    Also  give NAST, STXFTXT tables which may help your ABAP team
    Regards
    Srinath

  • HOW CAN I IMPORT TEXT FROM MICROSOFT WORD TO THE WEB PAGE?

    HOW CAN I IMPORT TEXT FROM MICROSOFT WORD TO THE WEB PAGE?

    Another method is tosave your Word document as an a web page.  Then open the htm file, copy the text and paste into an HTML snippet on your web page.  Resize to show all the document and publish. It will retain the style, font and alignment of the original Word document.
    OT

  • COPA document created from billing document, cost components are twice

    Hi Experts,
    Ref Subject line : COPA document created from billing document, cost components are twice.
    I have checked the following :
    1.  Cost Estimate of a material
    2.  Production Confirmation of the Order
    When comparing both of the above, they are same, without variance.
    Now when a COPA document is created, we observe the Cost Component Split in Sales Order to be exactly TWICE as compared to Cost Estimate of the material.
    May I please request help from you all. What must be the cause & where do i check / rectify.
    Regards,
    Hussein.

    Hi Hussein
    If you are seeing double in KE30 Report - May be you are updating both sales order and billing doc in COPA and hence you are seeing 2 line items.. But one of them will be record type A and the other one with F
    If the above is not the case and you are seeing double in the COPA document itself - Then See if you have mapped VPRS cond type in KE4I to the same value fields as Cost Comp Split
    Also, one strong possibility that you are using Batch Split in SD.. .... Which means your delivery document (VL03N) will have multiple batches of materials being delivered to the customer....
    a. In this case, your Item Category for main item (HPOS) and Sub Item (UPOS) has to be different and the Item catg for UPOS should not be relevant for billing / Costs... Note 77414 descirbes this situation and the settings to be done in SD Customizing
    b. You may need to apply note 352441 in your system
    Regards
    Ajay M
    Edited by: Ajay Maheshwari on Dec 1, 2010 5:36 PM

  • To know Customer from Billing Document number

    Hi,
    In VF03 IN we enter BILLING DOCUMENT NUMBER then we get detail of that. How can we find Customer(KUNNR from KNA1) from this BILLING DOCUMENT NUMBER. Please help me in this.
    Thanks in advance.

    Hi  Suresh..
    Table: VBFA (sales doc flow)
    From Billing Document No  find the Sales order no.
    Table VBAK - From sales order No find the Customer No.
    reward if Helpful.

  • I can't log in to pay my bill or view the account when I am traveling abroad

    I can't log in to pay my bill or view the account when I am traveling abroad

    Dear LasinaH_VZW,
    Yesterday, I spoke with Global Customer Support who re-registered me in the hope that this would solve the problem although they consulted the IT department who told that for security reasons you cannot log in to your account from abroad.
    Of course when I click on the link you provided, I can log in because I am in the States. When I am abroad, this would not work.
    I understand from Global Support yesterday that there are many other customers that are having the same difficulty as me so I would like to ask if you could forward this message to the IT Department to let them know that they need to find a more subtle way to protect users' accounts than simply excluding access from any other part of the world.
    Many thanks & best regards
    Julian Rawle

  • TS3274 How to remove an old iCloud account from my IPad.  The account (email) was on my dad's name and he resently change it and now i can't  reset or delete his iCloud account without his password.  Please advise on the procedure.  Thanks.

    How to remove an old iCloud account from my IPad.  The account (email) was on my dad's name and he resently change it and now i can't  reset or delete his iCloud account without his password.  Please advise on the procedure.  Thanks.

    If you are trying to activate an iPad or iPhone and it is asking for a previous owners Apple ID and password, you have encountered the Activation Lock. This is a security feature that prevents thieves from setting up and using a stolen or lost iPad or iPhone. You have no alternative. You must use the previous owner's password to get permission to use the device. If you cannot get the password your father put on the iPad you will never be able to activate the device and no one can help you do it.

  • Ordered an iPhone 6 Plus off contract with a credit card that has a different billing address than the account.  Does it matter and is the order going to be cancelled if it doesn't process the card correctly?

    Just don't want to find out Wednesday that my order was cancelled or delayed because the credit card has a different billing address than the account.  If they check the validity of the card at the time you pre-order I don't see it being a problem.

    Oh, should mention I ordered right at 3AM (EST) on the 12th and got a Confirmation email with a Deliver by: 9/19/14 but when you try the "Check Status page" it spits out "Expected Ship Date: Not available at this time."

Maybe you are looking for

  • Dbw0: terminating instance due to error 472

    Running RH linux 6.2, and EE 8.1.6.1. Am using MTS and have applied oracle's patch on the ora601 bug. HOwever I have come across a terminated instance with error 472 on two occasions. Both times I was running a soak test for first 15+ hrs and then 20

  • Email is not sent...

    Hello friends, This is my first post on this forum. I am new to ASP.Net. Given below is the code that runs without error. But the receiver does not get email. One more thing,  I am confused to see that there is no need to login into the mail a/c of s

  • Capture the filename with ODI

    Please find the query below. This has to be done exclusively in ODI only no shell scripts to get the file name. Input file name : abc_<timestamp>.txt. Now need to read the file and capture the filename. Read the file and move it to Archive or Error D

  • How to spilit

    Dear all,             can u please tell me how to spilit the document for in accounts payable and general ledger accounting?

  • Settings pictures of my 5d mark ii (raw .cr2) does not stay in Aperture 3.3

    Hello everybody, When I develop my photos on aperture. This one does not keep the camera settings. For example a black and white photo. My file : Raw CR2 Dear Thomas