Table for PO-header node text

Hi all,
In which table the po-header node text will gets saved.
Thanks in advance.
Thanks,
Asmitha.

Hi
No where you will find the entire Long text of this type
All texts will be stored with the Paramters like OBJECT,ID,NAME,LANG in STXH tables
You have to use READ_TEXT fun module to fetch this text by passing the above 4 parameters.
Double click on the text, from the Menu GOTO-> Header
will see the above 4 paramters
pass them to fetch this text
READ_TEXT
READ_TEXT provides a text for the application program in the specified work areas.
The function module reads the desired text from the text file, the text memory, or the archive. You must fully specify the text using OBJECT, NAME, ID, and LANGUAGE. An internal work area can hold only one text; therefore, generic specifications are not allowed with these options.
After successful reading, the system places header information and text lines into the work areas specified with HEADER and LINES.
If a reference text is used, SAPscript automatically processes the reference chain and provides the text lines found in the text at the end of the chain. If an error occurs, the system leaves the function module and triggers the exception REFERENCE_CHECK.
Function call:
CALL FUNCTION 'READ_TEXT'
EXPORTING CLIENT = SY-MANDT
OBJECT = ?...
NAME = ?...
ID = ?...
LANGUAGE = ?...
ARCHIVE_HANDLE = 0
IMPORTING HEADER =
TABLES LINES = ?...
EXCEPTIONS ID =
LANGUAGE =
NAME =
NOT_FOUND =
OBJECT =
REFERENCE_CHECK =
WRONG_ACCESS_TO_ARCHIVE =
Export parameters:
CLIENT
Specify the client under which the text is stored. If you omit this parameter, the system uses the current client as default.
Reference field: SY-MANDT
Default value: SY-MANDT
OBJECT
Enter the name of the text object to which the text is allocated. Table TTXOB contains the valid objects.
Reference field: THEAD-TDOBJECT
NAME
Enter the name of the text module. The name may be up to 70 characters long. Its internal structure depends on the text object used.
Reference field: THEAD-TDNAME
ID
Enter the text ID of the text module. Table TTXID contains the valid text IDs, depending on the text object.
Reference field: THEAD-TDID
LANGUAGE
Enter the language key of the text module. The system accepts only languages that are defined in table T002.
Reference field: THEAD-TDSPRAS
ARCHIVE_HANDLE
If you want to read the text from the archive, you must enter a handle here. The system uses it to access the archive. You can create the handle using the function module ACHIVE_OPEN_FOR_READ.
The value '0' indicates that you do not want to read the text from the archive.
Reference field: SY-TABIX
Default value: 0
Import parameters:
HEADER
If the system finds the desired text, it returns the text header in this parameter.
Structure: THEAD
Table parameters:
LINES
The table contains all text lines that belong to the text read.
Structure: TLINE
Exceptions:
ID
The text ID specified in the parameter ID does not exist in table TTXID. It must be defined there together with the object of the text module.
LANGUAGE
The parameter LANGUAGE contains a language key that does not exist in table T002.
NAME
The parameter NAME contains the name of a text module that does not correspond to the SAPscript conventions.
Possible errors:
The field contains only blanks.
The field contains the invalid characters ‘*’ or ‘,’.
OBJECT
The parameter OBJECT contains the name of a text object that does not exist in table TTXOB.
NOT_FOUND
The system did not find the specified text module.
REFERENCE_CHECK
The text module to be read has no text lines of its own but refers to the lines of another text module. This reference chain can include several levels. For the current text, the chain is interrupted, that is, one of the text modules referred to in the chain no longer exists.
WRONG_ACCESS_ TO_ARCHIVE
The exception WRONG_ACCESS_TO_ARCHIVE is triggered if an archive is accessed using an incorrect or non-existing archive handle or an incorrect mode (that is, read if the archive is open for writing or vice versa).
<b>Reward points for useful Answers</b>
Regards
Anji

Similar Messages

  • Tables for BOM Header and Components

    Dear Friends,
    Please let me know which tables provide a link between the header Material and corresponding Component Materials of a BOM?
    I have seen STKO and STPO but couldn't find such a link in them. STPO gives the component material but I couldn't get any link to Header material.
    Regards,
    Alok.

    Hello Alok,
    Table for BOM header             - STKO
    Table for BOM item                - STPO
    Table for material to BOM link - MAST
    Check if MARC table has a material in it and the same material is available in MAST also, it means that BOM has been created for that material..
    If Material is available in MARC and not available in MAST, it means BOM has not been created for that material.
    Reward Points, if useful.
    Regards,
    Nitin.

  • Table for Purchase Requisition Item Text

    I would like to know, what is the table which stores the item text in tab texts for Purchase Requisition?

    Hai,
    the table is STXH.
    CALL FUNCTION 'READ_TEXT'
          EXPORTING
      CLIENT                        = SY-MANDT
            ID                            = IT_STXH-TDID "ID
            LANGUAGE                      = IT_STXH-TDSPRAS " LANGUAGE
            NAME                          = IT_STXH-TDNAME
            OBJECT                        = IT_STXH-TDOBJECT
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
          TABLES
            LINES                         = L_LINES
    Regards,
    Venkat

  • DataBase Tables for fetching storage location text

    Hi All,
    May I know the database tables used for storing storage location text.
    Regards
    Nikhil
    Moderator message: please do some research before asking.
    Edited by: Thomas Zloch on Mar 14, 2011 9:22 AM

    Dear Jaques,
    Check in these tables,
    SER00                        General Header Table for Serial Number Management          
    SER01                        Document Header for Serial Numbers for Delivery            
    SER02                         Document Header for Serial Nos for Maint.Contract (SD Order)
    SER03                         Document Header for Serial Numbers for Goods Movements     
    SER04                          Document Header for Serial Numbers for Inspection Lot      
    SER05                          Document Header for Serial Numbers for PP Order            
    SER06                          Document Header for Serial Numbers for Handling Unit-Content
    SER07                          Document Header for Serial Numbers in Physical Inventory   
    EQBS                         Serial Number Stock Segment       
    EQKT                           Equipment Short Texts             
    EQSE                           Serial Number Records             
    EQST                           Equipment to BOM Link             
    EQUI                           Equipment master data             
    EQUK                           Quota File: Header                
    EQUP                           Quota File: Item                  
    EQUZ                           Equipment time segment            
    Regards
    Mangalraj.S

  • Nested table for PO Output (Item texts) - trying again.

    Hi experts
    I posted this question already, but the formatting disappeared, so trying again.
    I have created a PDF version of the Purchase Order output. Everything works well, except for the last step - a nested table where I want to display Item texts from the PO for every item.
    The steps I followed:
    1. In the Interface, I read the item texts, and placed them in an internal table, where the table has a field EBELP (item number) and a field for the text. So, for a PO with 5 items, where 2 items have texts, the table might look like this:
         00010    First line of text for item 10.
         00010    Second line of text for item 10.
         00040    Only line of text for item 40.
    2. In the context of the form, I put this table 'under' the existing 'ITEM' entry. In other words, for every item, the texts must be displayed. Obviously I then put in an entry under the WHERE CONDITIONS to say that EBELP = ITEM-EBELP, otherwise it would repeat every line of text for every item.
    The problem is that it does not behave quite as I expected. It currently prints:
    Item 10 information
             First line of text for item 10.
             Second line of text for item 10.
    Item 20 information
             Only line of text for item 40.
    Item 30 information
    Item 40 information
    Item 50 information
    Where it should print:
    Item 10 information
             First line of text for item 10.
             Second line of text for item 10.
    Item 20 information
    Item 30 information
    +Item 40 information+
             Only line of text for item 40.
    Item 50 information
    In other words, it simply 'breaks' on change of EBELP, and moves the text to the next line, as opposed to the correct line.
    I tried debugging, and it does appear to be doing things in the right order, but it is still doing the output incorrectly. I also searched the forums for similar problems, but I could not find a solution to the problem I am experiencing.
    I also put 'dummy' (empty) rows into the table - that fixes it, but then it messes with my layout and I get something like:
    Item 10 information
             First line of text for item 10.
             Second line of text for item 10.
    Item 20 information
    Item 30 information
    Item 40 information
             Only line of text for item 40.
    Item 50 information
    In the above, I don't want the gaps where the empty rows are.
    Please advise?
    Thanks and kind regards
    Casper

    Reposted without formatting...
    I have created a PDF version of the Purchase Order output. Everything works well, except for the last step - a nested table where I want to display Item texts from the PO for every item.
    The steps I followed:
    1. In the Interface, I read the item texts, and placed them in an internal table, where the table has a field EBELP (item number) and a field for the text. So, for a PO with 5 items, where 2 items have texts, the table might look like this:
         00010    First line of text for item 10.
         00010    Second line of text for item 10.
         00040    Only line of text for item 40.
    2. In the context of the form, I put this table 'under' the existing 'ITEM' entry. In other words, for every item, the texts must be displayed. Obviously I then put in an entry under the WHERE CONDITIONS to say that EBELP = ITEM-EBELP, otherwise it would repeat every line of text for every item.
    The problem is that it does not behave quite as I expected. It currently prints:
    Item 10 information
             First line of text for item 10.
             Second line of text for item 10.
    Item 20 information
             Only line of text for item 40.
    Item 30 information
    Item 40 information
    Item 50 information
    Where it should print:
    Item 10 information
             First line of text for item 10.
             Second line of text for item 10.
    Item 20 information
    Item 30 information
    Item 40 information
             Only line of text for item 40.
    Item 50 information
    In other words, it simply 'breaks' on change of EBELP, and moves the text to the next line, as opposed to the correct line.
    I tried debugging, and it does appear to be doing things in the right order, but it is still doing the output incorrectly. I also searched the forums for similar problems, but I could not find a solution to the problem I am experiencing.
    I also put 'dummy' (empty) rows into the table - that fixes it, but then it messes with my layout and I get something like:
    Item 10 information
             First line of text for item 10.
             Second line of text for item 10.
    Item 20 information
    Item 30 information
    Item 40 information
             Only line of text for item 40.
    Item 50 information
    In the above, I don't want the gaps where the empty rows are.
    Please advise?
    Thanks and kind regards
    Casper

  • Setup tables for invoices header data (2LIS_13_VDHDR)

    Hi experts,
    I am using 2LIS_13_VAHDR and 2LIS_13_VAITM to transfer data to SAP BW.  Through the t-code SBIW, I I run the job to fill setup tables with invoices data. the job is completed succefully. when I check the extractors in RSA3, the extractor 2LIS_13_VAHDR doesn't bring any data while 2LIS_13_VAITM bring a set of items !!
    I m wondering why I dont get invoices header data!
    Thank's a lot for your help.
    Abdess,

    Hi,
    Did you delete the old initialization request from BW and also delete old setup table.
    Because the issue is strange, If you are able to see entries in item then header should also fetch data.
    Repeat the steps again if you have time.
    Use T-Code LBWG to delete setup table.
    Delete MCXE13 entries in LBWQ.
    Use T-Code OLI9BW to fillup setup table for 2lis_13.
    Thanks,
    Shakthi Raj Natarajan.

  • Standard SAP Table for PO Header Text and PO Item Text

    Hi,
    I want to know the Standard SAP Table where the PO Header Text and the PO Item Text are stored.
    Thanks,
    RK

    PO texts are stored in tables STXH and STXL.
    TDOBJECT is EKKO for header texts and EKPO for item texts.
    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.

  • How do I position my layer/table for my header in the center and up top?

    I have designed a site before on my dreamweaver 4 site and
    decided to design a new one. I just tried to insert my header into
    the website and it worked fine. However, how to I align it directly
    in the center and all the way to the top so their is no space from
    the top of my site and header? My header is about 960 pixels wide
    and was hoping to have it centered when viewed with a few inches of
    background on each side. My last sight it just worked out when I
    did but not this time.
    Just so you know, I set a header layer down first, then put
    in a single row and column table, then inserted my Gif header.
    Header looks great but placement is wrong. Thanks

    Good grief - DW3? It's not there. You will have to do it in
    code view.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "dontsettle22" <[email protected]> wrote in
    message
    news:fm1p83$pql$[email protected]..
    > Darn it, this is what I was looking for, however, I am
    on dreamweaver 3.
    > I can't find an insert ....layout....div. Any other
    ideas where I find
    > div?

  • Table for PO header conditions and values

    Hi All
    My requirement is that I have to print all the PO header conditions and its values in PO.From which table I can get PO header conditions and its values.I know there is table KONH for header conditions but how do I fetch data from table KONH for header conditions and its values?? I mean what would be the input values or is there any other way for my requirement.
    Regards
    Satish Kumar

    Hi All
    In my system certain condidtions such as freight,packaging charges etc can be entered both at the item level and header level and my requirement is that I have to print all the header conditions present in the PO and are having value.
    From table KONV I get all the item conditions but my requirement is to print all PO header conditions iwth value???
    How do I achieve this??
    Pls help.
    Regards
    Satish Kumar

  • Table css column-header text color not working

    When setting
    -fx-text-fill: red;
    in a css table, it does not change the header to tex to red. Is there another value? .table-view .column-header {                                                                                                                                                                                                                                                                                                                   

    You have to override the following from the caspian.css:
    .table-view .column-header  {
        -fx-text-fill: -fx-selection-bar-text;
        /* TODO: for some reason, this doesn't scale. */
        -fx-font-size: 1.083333em; /* 13pt - 1 more than the default font */
        -fx-size: 25;
        -fx-border-style: solid;
        -fx-border-color:
              Inner border: we have different colours along the top, right, bottom and left.
              Refer to RT-12298 for the spec.
            derive(-fx-base, 80%)
            linear-gradient(to bottom, derive(-fx-base,80%) 20%, derive(-fx-base,-10%) 90%)
            derive(-fx-base, 10%)
            linear-gradient(to bottom, derive(-fx-base,80%) 20%, derive(-fx-base,-10%) 90%),
            /* Outer border: */
            transparent -fx-table-header-border-color -fx-table-header-border-color transparent;
        -fx-border-insets: 0 1 1 0, 0 0 0 0;
        -fx-border-width: 0.083333em, 0.083333em;
    .table-view .column-header-background {
        -fx-background-color: -fx-body-color;
        -fx-padding: 0;
    }

  • Tables for service PO   text

    Hi all.
    What are the tables for the Service PO text for the line items.
    one text is comming for each line item.
    can any body help me to solve this issue.
    Thanks in advance,
    regards,
    Eswar.

    Hi
    First tell me is it a LOng Text or Not? because I don't find any other texts for the PO's at item level? where exactly you see this terxt in PO? can you elaborate more?
    If it is a LONG text then have to use the READ_TEXT fun module
    for this you have to pass the 4 fields
    OBJECT  = EKPO
    ID = see the text after double clicking
    OBJECTNAME  = concatenation of PO number + Item Number
    LANG = EN
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Table for SAP NOTEs

    Hi friends!!
    May i know is there any table that gives any info about the NOTES .

    Hi deepika ,
    Pls see the following tables
    CWBNTVALID  Validity table for Notes
    CWBNTSTXT    Short text for a Note
    CWBNTMSG    SAP Notes Message Log
    CWBNTHEAD  Header table for OSS Notes in customer systems   
    CWBNTGATTR  Table for Any Note Attributes
    CWBNTDATA     Compressed data for OSS Notes
    CWBNTCI           Assignment of Note to correction instructions
    Regards
    Byju

  • Multiple tables in GUI_DOWNLOAD in same text file

    Hi,
    Can anybody tell me how to pass multiple internal tables for download in same text file. And also each table output should start with NEW LINE. Please help me in executing this functionality.
    Thanks,
    Amol

    I'm not sure that I understand correctly but :
    - if you mean that the first line before your table should be NEW LINE, then before Appending your new internal table (itab2) into the consolidated one (itab), you could just do something like :
    itab-text = 'NEW LINE'.
    append itab.
    And then
    append itab2 into itab.
    - if you mean that the first line of your new table should begin you NEW LINE then it could be something like that :
    read table itab2 index 1.
    concatenate 'NEW LINE' itab2-text into itab2-text.
    modify itab2 transporting text index 1.
    append itab2 into itab.
    Hope it helps,
    Regards,
    Sylvie

  • Table for taxes

    Hi
    Can any one please suggest me (a MM guy) a table equivalent to BSET (for taxes) which will contains fields accounting document number, fiscal year, company code, material number, cost center (split account assigned vendor invoice), tax amount, and base amount for the tax amount
    BSET will have all the fields except the material number and cost center. I want to know, to which material, this tax amount has been paid
    waiting for your quick reply
    regards
    srini

    Hi Srini,
    refer these tables:
    T005S - Taxes- Region (Province) Key
    T005U - Taxes- Region Key- Texts
    T006  - Units of Measurement
    A003 - Tax Indicator
    A053 - Taxes via Jurisdiction Code
    T007A - Tax Keys
    T007B - Tax Processing in Accounting
    T007S - Tax Code Names
    T030K - Tax Accounts Determination
    T030R - Rules for Determination of Standard Accounts
    T050T - General texts
    T681A - Conditions: Applications
    T681B - Conditions: Applications:
    Texts - T681V Conditions: Usages
    T681W - Conditions: Usage: Texts
    T681Z - Conditions: Dependent Data for Application/Usage
    T682I - Conditions: Access Sequences (Generated Form)
    T683S - Pricing Procedure: Data
    T683T - Pricing Procedures: Texts
    T685 - Conditions: Types
    T685A - Conditions: Types: Additional Price Element Data
    T685T - Conditions: Types: Texts
    TTXD - Description of Tax Jurisdiction Code Structure
    TTXJ - Check Table for Tax Jurisdiction
    TTXJT - Text Table for Tax Jurisdiction
    Thanks and regards

  • Table for Invoice

    Hello Gurus,
    Can any one tell me the table for Invoicing header details and Line item details,
    Regards,
    Prasanna

    Hello
    Invoice Header table: RBKP
    Invoice item table: RSEG
    Regards
    Gregory Mathews

Maybe you are looking for

  • How do I make sure my mic is working?

    I purchased a USB port Logitech mouse a few months ago and a relative accidently through away the box with the directions. How do I record vocals on the computer and how do i make sure the mic works?

  • Can I buy an individual Ipad charging Socket From Apple store

    I just want to buy an charging socket, not the wire and socket. But i asked apple store and they said both. Would be fifteen pounds, so I would like to. Know that. Without the wire, will apple store give me a socket only  for?

  • Too many touch points reported: Bug ?

    Dear JavaFX community Following situation. I have a touch handler who recognizes special gestures and fires javafx.GestureEvent derivates on positive detection. the gesture event carries a list of cloned touch points for carrying the touches on start

  • Validity sensor/digital persona not working after win7 upgrade on dv3 2050ea

    Hi, I have recently clean installed windows 7 after Vista onto a dv3 2050ea laptop. I used the HP downloads page to get all the new drivers for win7 including the validity sensor and digital persona package. Win 7 does not find a biometric sensor and

  • WS-C2960-24TC-L - %PLATFORM_PM-3-HOSTACCESSFAIL - error

    Hello, I have issue with 3 ports on the switch. Once I put he following commands under the port I got error message :  authentication control-direction in authentication host-mode multi-auth authentication port-control auto authentication periodic au