Delivery Header Text Table

Hi
Can any one advice how to extract the Delivery Order Header Text?. Any specific table.
I used the Read_text function module through se37, but not sucessfull.
can any advice step by step in detail.
Thanks
RG

Check whether text determination procedure and access sequence is proper. The functional module read_text is generally used for printing the text on the form. The table for text is
STXH: Texts: Header
STXL: Texts: Line
And text object is VBBK
Hope this will help you
Thanks
Krushna

Similar Messages

  • Delivery Header text table and feild

    Hi all,
    Can any one guide me where delivery header text is saving i check table STXH ( STXD SAPscript text file header) and field TDID but while i am checking in table i am not getting any text data either based on text or any other combination
    can any one guide me which table its saves .. so
    Thanks
    Rajesh

    Hi,
    It stores in STXH and STXL tables only.
    Which particular header text do you want to find?
    In the delivery; go to the particular header text in edit mode and double click on it to open the text editor.
    The from the menu options Go to-->Header.
    You will get the required information such as
    Text Name
    Language
    Text ID
    Text Object
    Use the same in STXH and STXL table.
    Note that you have to specify the complete delivery number with the initial zeros.
    Regards,
    Ankur Parab

  • Outbound Delivery - Header (Text field - Table Name)

    Hi All,
    In outbound delivery header - Texts tab i notice that we can maintain some texts. May i know which table i should refer to read the text entered.
    I can read the text type key from the table TTXTD, but i need to read the actual text entered by the user.
    Hope my question is clear, await your inputs.
    Regards,
    Vivek

    HI,
    SAP has already provided a various functions for read the text element. So you no need to get the value from table directly!
    There is some example
    CALL FUNCTION 'READ_TEXT'
           EXPORTING
              CLIENT           = SY-MANDT
              ID               = T_TEXT_ID
              LANGUAGE     = 'E'
              NAME          = T_UNIQUE_ID
              OBJECT          = T_TXTOBJ
         IMPORTING
              HEADER          = HTEXT
         TABLES
              LINES          = T_READ_LINE
         EXCEPTIONS
              ID               = 1
              LANGUAGE                    = 2
              NAME                            = 3
              NOT_FOUND                      = 4
              OBJECT                         = 5
              REFERENCE_CHECK     = 6
              WRONG_ACCESS_TO_ARCHIVE = 7
              OTHERS                  = 8.
    Let me explains as below parameters.
    T_TEXT_ID - Text id: example - '08000123', also is the document no.
    T_UNIQUE_ID - Text unique ID: example - 'ZD01'
    T_TXTOBJ - Text Object: example - VBBK
    That information can find it on relevant of document. In your case, you can fount it on the below path:
    VF01n/VF02n > GoTo -> Header -> Text -> detail (is the push small button, then it will go to the next screen) -> Goto -> Header.
    Return Value tales - THEXT and Table Line - T_Read_line
    You must declare this variable before,
    DATA: BEGIN OF HTEXT OCCURS 50.
            INCLUDE STRUCTURE THEAD.
    DATA  END OF HTEXT.
    DATA: BEGIN OF T_READ_LINE OCCURS 50.
            INCLUDE STRUCTURE TLINE.
    DATA: END OF T_READ_LINE.
    READ TABLE T_READ_LINE INDEX 1. "read the line value
    I hope this can help, so remembers reward the points

  • Sales Header Text copy to Delivery Header Text

    Hello,
    We want to copy sales order header text to delivery header text.
    We already did the configuration VOTXN in DEV client and it is working.
    When transported to QA client, we're not able to copy sales order header text to delivery header text.  It is still saying Access Sequence missing.  Checked the configuration in QA, and the access sequence is there attached to the Text Field.
    What else could have been missing?

    Hello,
    Have you created Sales order Header Text by using transaction SO10.
    if Yes,then Run the program 'RSTXTRAN' and attach the Text object to your TR.
    Then Transport this Text to Quality.
    There will be 2 workbench request and 2 Cutomising request.
    Please take care of Sequence in order to move it to QAS(As per Condition Technique Determination)
    Revert if not resolved.
    Regards
    Amit

  • Billing Header Text Table

    Hi,
    Please advise the billing header Text Table & Field.
    Regards,

    Whether header text is maintained or not can be found from STXH table. If text is maintained then READ_TEXT function module has to be used to fetch the actual text.
    Regards,
    GSL.

  • Configuration path for Inbound delivery header text".

    Hi,
    I want separate text type for Inbound delivery, in transaction code VL31N.
    Can any body suggest on "Configuration path for Inbound delivery header text".
    Thanks & Regards
    Sudhansu

    Hi,
    Use Transaction VOTXN.
    *Select the radio button next to Delivery. and select Text types.
    *Go to new entries and create your own text ID after creating text ID go back to the previous screen and select change button.
    Create access sequence.
    select the access sequence you have created and double click ACCESS SEQUENCE FOR TEXT ID folder and Enter sequence number, Text object  and teh text ID you have created.
    Double click text procedure
    Select the text procedure which you are using for teh Delivery document type and double click TEXT ID IN TEXT PROCEDURE Folder.
    Assign the sequenec number TEXT ID and teh ACCESS sequence.
    Afer all teh above configuration steps the you can see the text ID in header text of billing document.
    To retrive teh contents of teh TEXT ID use Fuction module READ_TEXT with TEXT ID, LANG, NAME and TEXT OBJECT as input parameters.
    Note: The contents of the text ID will be in multiple lines of 70 characters each.
    Regards,
    Arun.S

  • Delivery Header Text in SAP Query SQ01

    Hi Friends,
    My requirement is that I need to display the Header Text contents in Outbound delivery in a Query report using SQ01.
    As far as I know, we can pull only table fields in SQ01.
    Is it possible to include Text contents in SAP Query? Can we develop or enhance it?
    Regards,
    AK

    You can add structure and code in a dataset using SQ02, then it will be available to use in SQ01, but a long text can consist of many lines, and so you may require to truncate the text - read [SAP Query|http://help.sap.com/saphelp_NW70EHP1core/helpdata/en/d2/cb3efb455611d189710000e8322d00/frameset.htm] documentation
    - [Creating Additional Structures|http://help.sap.com/saphelp_NW70EHP1core/helpdata/en/d9/9958d4c50a11d396f80000e82de14a/frameset.htm]
    - [Further Code|http://help.sap.com/saphelp_NW70EHP1core/helpdata/en/d2/cb4504455611d189710000e8322d00/frameset.htm] (I suggest record processing or after the query get the table with the text id)
    So create a structure with some text fields, and fill it for every record read in futher code part.
    Regards,
    Raymond

  • Delivery header text Y104

    here i am doing smart form .in one of field it has been mensioned to take that value as
    from header text y 104
    what does it mean
    i know hoe to take text using read_text but what does it mean by
    from header text y 104

    Hi Ravi
    Proceed as below:
    For reading any texts in SAP we can use FM: <b>READ_TEXT</b>.
    Required parameters will be: <b>Name, ID, Object and Language.</b>
    To retreive these details,
    1. Goto the document texts in change mode.
    2. Double click on the text area
    3. An Editor screen will be opened.
    4. Via Editor screen, use menupath: Goto-> Header
    5. In the next popup screen, we will find the ID, Object, Language and convention for Name.
    6. Use these details for FM: READ_TEXT to capture the same.
    Your code should be something like below:
    DATA: VBELN TYPE VBELN,
          IT_TLINE TYPE TABLE OF TLINE,
          WA_TLINE TYPE TLINE.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
        ID                            = 'Y104'
        LANGUAGE                      = SY-LANGU
        NAME                          = VBELN  " <--- Delivery Number
        OBJECT                        = 'VBBK'
      TABLES
        LINES                         = IT_TLINE
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       NOT_FOUND                     = 4
       OBJECT                        = 5
       REFERENCE_CHECK               = 6
       WRONG_ACCESS_TO_ARCHIVE       = 7
       OTHERS                        = 8.
    And for your second part of the question, header text y104 means the one you can see via menupath: Goto->Header->Texts
    Hope this info gives you some idea of retreiving the details. Once retreived use the same to pass to the FORM and printing.
    Kind Regards
    Eswar

  • Get an outbund delivery header text

    Hello,
    I have the need to get one of the header texts of the outbound delivery to save it in other table too. I'm using the READ_TEXT function in the userexit USEREXIT_SAVE_DOCUMENT, but the function don't return anything because the texts are not saved yet in the corresponding table. This is due to the USEREXIT_SAVE_DOCUMENT is executed before the COMMIT of the outbound delivery.
    Is there any way to achieve this without to modify the standard code?
    Thank.
    Carlos Barragán.

    I coded this in USEREXIT_SAVE_DOCUMENT_PREPARE.
    DATA:  ENTREGA(70) TYPE c,
           v_texto(40) TYPE c,
           Xline like tline occurs 0 with header line,
          lv_lines TYPE n.
         ENTREGA = 'XXXXXXXXXX'.
         call function 'READ_TEXT'
          Exporting
            id                            = 'Z700'
            language                      = SY-LANGU
            NAME                          = ENTREGA
            object                        = 'VBBK'
          tables
            lines                         = XLINE
          EXCEPTIONS
            not_found = 4.
    DESCRIBE TABLE xline LINES lv_lines.
    IF lv_lines > 0.
       READ TABLE XLINE INDEX 1.
       v_texto = XLINE-TDLINE.
    ENDIF.

  • BAPI for adding text in the delivery Header Text Tab?

    Dear All,
    We are using the SAP standard BAPI to create the delivery Document by inputing sales order number.
    The issue is that the customer is maintaining the Truck number in the delivery Header Level Text Tab, now he wants that he will give the sales order number and truck number as inputs the BAPI as to create the Delivery document and the truck number should appear in the Deliver header level text tab ("Truck No" text object maintained)
    Please suggest asap.
    Regards,
    Javal;

    Dear Javali,
    Have you tried the function module 'CREATE_TEXT' ?
    Check and revert back.
    Thanks & Regards,
    Hegal

  • How to define Column Header text table control

    Hi All,
    I have to create a function in which user will pass Field Name, Field Description.
    I have to show that field description in Table Control Columns as Text for columns.
    Like if a user pass Material , PLant etc, then first column header text will be Material and so on and in rows it will show the data.
    One more thing, is it possible to define the technical attributes like length based on field passed through function.
    Please help me to find out the solution.
    Thanks
    Piyush Mathur

    Hi Piyush,
    here are the some components of the screen . you can change tehm at run time in your code.
    components: name,input,output,required,length,active,invisible,intensified,group1,group2...etc.
    at ruin time you modify these attributes..
    your requirement is to change the name attribute.
    regards,
    sateesh

  • Header text table

    hi,
    I had to prepare report but not able to find the details .
    Header text of billing document like truck no , gr no . in which table we can found
    plz do help me .
    thanks for earlier reply.

    Hi Suresh,
    You can find the assosciated text table for any table by going to :
    <b>SE11->Goto->Text table</b>
    In this case, if you know the table for truck no and gr no, you can find the corresponding text tables in the above mentioned way,
    Hope this helps.
    Regards
    Anil Madhavan

  • Copy delivery header text to shipment header text

    Hi All,
    Please let me know the user/customer exit to copy the header text of delivery to shipment while creation(VT01N) or deletion(VT02N) of shipment for deliveries.
    Please provide the code samples or procedure, if you have any.
    Thanks in advance and points will be rewarded
    -Venkat

    Hi
    Use these User exit and write the code for the same in one perform of its include this is having the delivery details and capture the same into your shipping
    EXIT_SAPLV56F_010
    regards
    Shiva

  • Need infor on PO Header text table

    Hi.
    List the table name in which Purchase order Header text will stored.
    Cheers
    Umakanth

    Hi
    It will be stored in STXH and STXL.
    Just for future reference with regards to getting text id's etc.
    eg: PO texts.
    --> Go into the PO.
    --> Go to the text tab (item or header - depends what u want).
    --> Double click into the required text.
    --> Click the "GO TO" menu option.
    --> click Header.
    and all the info you need is there.
    You need to use function module READ_TEXT. Since lenght of text is variable it is stored in binary format and cannot be read via a table viewer.
    Go to SE37 enter READ_TEXT and execute (F8)
    Enter ID : F01 or F02 or F03 subject to whether they are Header Text, Payment Mode or Payment Terms
    Text Object: EKKO
    Name : PO Number
    Execute, Hope it helps
    regards
    Srinivas

  • PR header Text table

    Dear Expert
    In which table i can see the PR header text, I tried in STXH,STXL,T165k,T166K, i am not getting, please let me know anyone?
    Regards
    TG
    I

    Hi,
    In SE37, enter this FM: READ_TEXT, then test and then give this following details,
    ID:B01
    LANGUAGE:EN
    *NAME: 0010000071 *(enter the PR number with full length 10 digits)
    OBJECT: EBANH
    Then execute you will get the text entered in the Header text tab of PR
    Regards
    GK.

Maybe you are looking for

  • Disable Nvidia Card Using Bumblebee

    Hi, I had Nvidia Optimus disabled through BIOS but it seems their is a neat way to disable Nvidia NVS 4200 in Arch using Bumblebee which is very helpful as I am still setting up my Arch system and use windows and nvidia card. Nvidia card adds another

  • Hide a  type of file System wide not just the extension*

    Is it Possible & if So  Howto hide a type of file System wide not just the extension* Am trying to HIDE the Associated file for Photo Processing software in Finder, its a Specific file to the Program & holds the Raw data text Processed Info . Would m

  • Swear word on unknown changes and why can i no longer access a program i paid for????

    my photoshop elements THAT I PAID FOR is no longer available on my computer!!!!!!!  who stole it?  where did it go?  why should i buy another one?  and how come i cannot find a way to contact adobe???????????????  i am really pissed!  i feel totaly m

  • Going completely computer-free -- how to backup photos?

    My sister-in-law, who is not very fluent when it comes to computers and technology, will be going "computer free" soon and buy an iPad mini. (She will get rid of her clunk old Windows machine.) She only does simple email, Skype, and downloads photos

  • Fonts used for dreamweaver program not working

    Hi I had installed fonts on my computer using font book and since then, I can not load Dreamweaver!  I turned off and deleted most of the fonts and dreamweaver will now load, however the font used for the system - Example - on the preferences screen