Wht is TEXT ID for Header Text in a Purc. Order?

Hi Experts,
Am looking to dispaly the header text of my_purchase order into a report, by using READ_TEXT.
But. am unable to figure out the TEXT ID for this HEADER TEXT for my_PO.
So,
1 - Wht is TEXT ID for it? ok, after some reasearch , i came to know that, its F01.......so, how to know the F01 is for header text? i know how to know this for sales order!!
2 - In which tables stiores all thsese info?
replies appreciated.
thanq
Edited by: SAP ABAPer on Oct 14, 2008 9:27 PM

Rob's Suggestion is the best way to find that out.
One other way is to Double click on the Text area. This will open a text editor.
Then Navigate to Goto->Header. This should give you the required Info.

Similar Messages

  • Problem for Header text of Contracts

    Hi guys,
    a suggest:I have created in customizing a new header text and I want display and manage it on header of contract but when I create the contract see always the standard header texts 'release order text', 'header text','header note' 'pricing type' 'deadlines' but my own header text number 17 there is not.
    i have simply entered in customizing Contract>Texts for Contracts>Define Text Types for Header Texts and I have created the text with sequence numeber 17...how can I display it in header of contract?
    I have seeked for in this forum but in all messages on text I don't find this problem
    Thanks in advance
    Bye

    Hi,
    am adding up...........
    Please refer the below link......
    http://www.sap-advisor.com/abap-coding/sap-text-administration-and-info-records-for-purchase-orders/
    Hope it may help you...
    Venkat.

  • Table For Header Text Old Value

    Hi,
    Could Anyone helpme in finding the table for Header text of the PO , as We know  to find the current PO Header Text,by usinf th FM READ_text but i want to to find the header text for the po before Updated , Thanks in advance
    Regards
    Priyanka M Jain

    Hi,
    I believe that you need the text just after entering in PO during the runtime.
    just enter the text and go in the debugg mode, check for table text / textline in the global parameters and you will find the text.
    Hope this helps,
    Raj

  • Condition for header text heading

    Hi
    in sales order smart form i have created text element(include text) for including header text named SPECIAL INSTRUCTIONS. i have proveded all the parameters like text name, text ID, Text object..
    how can i restrict the heading for this text (i.e i want the heading special instructions to be appeared only when the text is maintained for that ID 
    Regards
    DB kumar

    Hi,
    You can not maintain a standard text without a single line.
    But, by default, default paragraph , i.e. (*)  will come in that column which means an EMPTY TEXT LINE is entered.
    If you want to check for the empty text line, then do  th efollowing.
    1. insert code lines . Take a global field : flag type c.
    tables: stxl.
    select single * from stxl where TDNAME EQ 'ZTEST_RAM'.
    if sy-subrc eq 0.
      if stxl-CLUSTR gt 81.  " when no line is maintained , stxl-CLUSTR = 81. else stxl-CLUSTR > 81.
        flag = 'X'.
      endif.
    endif.
    2. For Heading Text ,  Maintain condition with flag as u required.
    Thanks & Regards,
    Ram.

  • Text Name for Service Text

    Hello All,
    In Service PO ,
    In Item Details , Service Tab there is text column Service Text.
    I want to read ( for printing ) service text using function READ_TEXT.
    When i am in  ME23N/ME22N i can see all parameters, which i need for READ_TEXT
    TEXT ID,TEXT OBJECT AND TEXT NAME ( GOTO-> HEADER )
    Text id- is constant LLTX,Text Object is constant too u2013 ESLL, but Text Name is Variable. How (from where) can I get Text Name? It's very Critical for me.
    Thanks, Liza

    Hi,
    Try with the function module READ_TEXT
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    CLIENT = (Client ID)
    ID = (Text ID)
    LANGUAGE = (Language)
    NAME = (PO Number)
    OBJECT = 'EKKO' for Header & EKPO for Item
    TABLES
    LINES = (Internal Table of type tlines)
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    NOT_FOUND = 4
    OBJECT = 5
    REFERENCE_CHECK = 6
    WRONG_ACCESS_TO_ARCHIVE = 7
    OTHERS = 8.
    Regards,
    BK

  • I purchased a text tone from Itunes.  It shows up in my library, but not as a text tone.  Is there a way for me to set it as a text tone for all texts?  Or I am stuck with factory settings?

    I purchased a text tone from Itunes.  It shows up in my library, but not as a text tone.  Is there a way for me to set it as a text tone for all texts?  Or I am stuck with factory settings?

    So it is conseidered a customized text tones even if it was purchased through iTunes?  Confusing.  Since I bought it through itunes as a text tone I assumed it would work.  OOOPS
    Thanks so much

  • Text Area for long text not appearing properly for BBP_POC_DISPLAY Service

    Hi,
    In our development we have added additional Icon at ITS in Process PO transaction and onclicking  that icon Web dynpro AB screen called with the Purchase Order No of selected row .(SRM 5.0)
    There is one more icon in Web dynpro screen on click of that Purchase order service open in ITS with display mode .This is achieved with service BBP_POC_DISPLAY from Web Dynpro-AB.
    This is also working ok only the issue is in Document tab of PO The Text Area for long text appear at Top  .This functionality is working fine with BBP_POC  service from ITS .
    Has anybody faced this kind of issue ?
    Thanks,
    SMS

    Hi SMS,
    I am unsure of the additional component you are talking about. In general, issues with text area misplacing, is solved by note 1067625. May be you can check it.
    thanks,
    Ashwin

  • How to find the text id for the text in the sales order

    Hi all,
    How to find the text id for the item-text in the sales order?
    There are different Text available in  the sales order under item like Warehouse instruction, CSR instruction...
    I want to know the corresponding Text id for the text ELECTRONIC ORDER COMMENT.
    Table TTXID contains the validation of the Text id.
    Please help me in knowing the way to identify the text-id from the text list..
    Thanks foryour help
    Suresh Kumar

    U can fetch the texts for the items using
    Read_text.
    Example:
        g_f_tdname = xvttp-vbeln.
        g_f_obj = p_obj.
        g_f_langu = 'DE'.
        REFRESH g_t_lines.
        CLEAR g_t_lines.
        CALL FUNCTION 'READ_TEXT'
             EXPORTING
                  id                      = p_var
                  language                = g_f_langu
                  name                    = g_f_tdname
                  object                  = g_f_obj
             TABLES
                  lines                   = g_t_lines
             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 <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    The Required fields are,
    Text-id ,language,name,object.
    Let me know if you further require help.
    Regards

  • Default gutter width for drawing text boxes for overset text

    I have master pages that were created with columns and the correct gutter width we want. When I drag a story from a window (a window that is part of our CMS) and place it on the page, the gutters between the text columns are correct -- p9 (or 0.125 inches). But if I draw a new text box or if I click the red plus to draw a text box for overset text, the gutter is a full pica (or 0.1667 inches).
    I want any text box that is drawn on the page or any overset text box that is drawn to default to p9 for gutters.
    I don't want to manually change the gutter for every new text box I draw.
    I'm using ID with CS4.
    Thank you.

    The default gutter in a multi-column frame is set in the object style under Text Frame General Options. If you haven't defined any new styles you only need to edit the [Basic Text Frame] style. New frames will use the new gutter value when you add columns. If you have object styles for other text frames, you'll need to edit those, too. For existing frames, if the number of columns has been changed manually, you will need to reset the gutter.

  • To find text id for particluar text object

    Hi All,
    how to find the text id for particluar text object. Means the standard text has been given but the name if text idd is not mentioned in so10, is there any table where we can be able to find the relevant text id for given text object.
    usefull anwer will be rewarded.
    Thanks,

    Hi,
    use the table TTXID.
    rgds,
    bharat.

  • Copy the PR header Text to RFQ header Text while Creating W.R.T

    Dear Guru's
    While Creating with reference I want to Copy the PR Header text into  RFQ Header Text..
    Please do the needfulll
    Thanks in Advance.
    GSANA

    Dear You can not copy the header text of PR to RFQ in the standard SAp, as PR is internal document and RFQ is external. but if you even want to do it then contact your ABAP team.
    regards,
    qsm sap

  • PS: What is PS Text, Text Types for PS Text?

    Hi,
    I came across this config: Project Systems > Documents > Define Text Types for PS Text.
    Can you explain what it is and where it could be found?
    Thanks!

    Hi Vivian,
    Go to SPRO>Project System>Documents>Define Text type for PS texts.  Read the document adjacent to the indicator. That explains you the purpose.
    PS texts are user-definable texts that are managed in a PS text catalog. The texts are grouped according to text type and can be created in several different languages. You can create PS texts in SAP Script format or using Microsoft Word. The files in question are stored in the R/3 database. You can assign PS texts to one or more WBS elements or activities.
    To create PS text for any WBS element, go to the detail screen of that "WBS" in project builder, click on "PS Text OVerview" for eg. Create a PS text called Specification with text type 01 (Function Description) and format 2 (DOC Format)
    Enter a text of your choice in the Microsoft Word Editor.
    Regards,

  • User Exit / BADI for Header Text in IW21

    Dear All,
    I have an requirement to update a header text of IW21 (Creating Notification) with some condition, ie., Header Text should be updated with different text (some information along with entered text) depends on Notification type and Functional Location.
    Is there any User Exit / Badi to do this ?
    Could any one help on this regard ?
    Thanks and Regards,

    Hi,
    Below are the exits for the Transaction Code - IW21.
    Exit Name Description
    IWO10026 User check on setting status 'Do not perform'
    IWO10027 User exit: Generate user-defined settlement rule
    IWOC0002 PM/SM notification: Check whether status change is allowed
    IWOC0003 PM/SM authorization check of ref. object and planner group
    IWOC0004 Change single-level list editing PM/QM/SM ALV settings
    IWOC0001 Create PM/SM notification: Determine reference object
    Check each which can server your purpose.
    May be EXIT_SAPMIWO0_020 might suit your purpose.
    Regards,
    Vijay V

  • Change documents log for Header texts of Sales order

    Hi ,
    Does any body came across seeing the changes in the texts in the change logs in the sales order ?
    Can anyone of you provide me the way to activate the change logs for the long texts
    Regards,
    Ajai.

    Kapil,
    Before my current project I was with the same opinion. But at my current client I saw the header texts being logged for the purchase order. I.e if we change the header texts for the PO, we can see the changes in the change log history of the PO.  Thats where I got trouble into.  The business shows the PO history and expecting the same in SO too.  I was unable to figure out how the PO header texts changes were being logged.
                Coming to performance, the clients volume of orders is not too high.
    Lets see any of our SDN friends come up with some hints..
    Regards,
    Ajai.

  • Creating screen for header text

    Hi Experts,
    I am creating a Z transaction for our business process. In the header part the users want to enter header texts as it is available in SO/PO etc. I know the function modules read_text, save_text and commit_text.
    I would like to know how I will be able to create the texts types and assign it with my document numbers.
    Thanks,
    Abdullah

    This is described in [sap library - SAPscript Control Tables and Structures|http://help.sap.com/saphelp_nw2004s/helpdata/en/d6/0db81a494511d182b70000e829fbfe/frameset.htm] (transaction SE75, tables TTXOB, TTXID, etc.)
    To make a relationship between a text (primary key TDOBJECT, TDID, TDNAME, TDSPRAS) and a document, concatenate document primary key into TDNAME field.

Maybe you are looking for