Table containing Program Texts(Text Symbols, SelectionTexts, List Heading)

Hi All,
         I would like to know which is the standard SAP std. table which stores the data regarding Text Symbols, SelectionTexts, and List Heading of every program we create. There should definitly be a table where it is stored (otherwise we will not be able to retrieve it each time).
I have found out a structure RS38M which has all the required fields. But since it is a structure, it doesnt contain data. 
So please inform if any body knows any standard SAP table which stores Program Texts. A quick, correct reply would be highly appreciated.

Hi
All these texts are stored in text pool not in any std. table.
To retrieve these info u have to use statement like:
READ TEXTPOOL <prog_name> INTO itab LANGUAGE <language> [STATE state].
This statement reads the text elements of the text pool of the language specified in lang and the program specified in prog from the Repository and places them into the internal table itab. The previous content of itab is deleted. If the text elements cannot be read, then the content of itab remains unchanged.
For prog, you must specify a flat character-like data object, which contains the name of the program of the text elements to be read; the name is case-independent. The internal table can have any table type and its row type must correspond to structure TEXTPOOL from the ABAP Dictionary.
For lang, you must specify a flat character-like data object, which contains a language key of up to one character, whose value must be contained in the SPRAS column of database table T002. If lang contains a blank, the behavior is undefined.
After a successful read, itab contains in the ENTRY column the texts of the text symbols, the selection texts, the list headers and the title from the program attributes. Every text element that exists for the specified language occupies one row of the internal table and is identified uniquely by the columns ID and KEY. The column LENGTH contains the length of the text element. The table below shows the possible values of the columns ID and KEY and their meaning:
ID KEY ENTRY
H 001 to 004 List header: Column headings
I Text symbol identifier Text symbol text
R - Program title
S Name of a parameter or selection criterion Selection text
T - List Title: Titlebar

Similar Messages

  • Which table contains the text

    hi all,
    im working on a smartform where i need to display data of trx VA01.After the initial screen of va01 in the Sales Tab when i double click the line item (Material field), it goes to a third screen where in Additional Data A tab  , Material Groups are defined from 1 to 5.
    I need to display the data entered in material group. In table VBAP the value for the material groups  from 1 to 5 is in the form of 01,02,03 etc. whereas when the user selects value of these they appear in a drop down list in the form of text.
    e.g:
    Material group 1 : uk , germany,india.(these are the options in drop down list on screen).
    vbap contains mvgr1 as 01, 02,06.
    I need to know which table contains the text uk,germany,india.
    thnxs .
    Points will be rewarded!

    Hi,
    Check the tables..
    For MVGR1 - TVM1T
    For MVGR2 - TVM2T
    For MVGR3 - TVM3T
    For MVGR4 - TVM4T
    For MVGR5 - TVM5T
    Thanks,
    Naren

  • Reg: Adding spaces between texts in ALV list header

    Hi All,
    I was implementing a client requirement for ALV. The list header should contain something of this format.
    Pgm Id:               ZZZ01
    After this list header it is ALV display.
    I did this using the concatenate statement.
    ex: Concatenate 'PgmID' sy-repid into listheader seperated by space.
    But this is not showing spaces between text in ALV display. See I want a tabspace between the texts in headr. Any idea on how to mak it?
    Rakesh

    Depending on Fontsize the space might be so narrow that you believe its not there.
    check in the debugger if there is really a space in the string, the clause "separated by space" will insert one for sure.
    May be you'reshowing the ALV before you are modifying the listheader?
    Another approach is using strings, blanks at the end of a string are not deleted
    concatenate 'ABC ' 'XYZ' into s.
    and
    concatenate `ABC ` `XYZ` into s.
    will give different results, be aware of the difference in the quots in both cases. Using the second example you can insert as many blanks as you want.

  • Table containes GL account and Symbolic account .

    Hi All ,
    Is there any table or Function module Or Bapi  so that we can find out  G/L account ( expense account ) for any symbolic account ???
    Expense account  is maintained against Symbolic account through configuration using path ( Financial Accounting (New ) -> Travel Management ->Travel Expenses ->Transfer Accounting-> Conversion of symbolic account to expense account ) . How can i get this account number if i know symbolic account. Where this data is stored .??
    Thanks In advance.
    Regards,
    Sijin K P

    here we go:
    Payroll > Payroll: your country > Posting to Financial Accounting > Activities in the HR-System > Employee grouping and symbolic accounts > Define symbolic accounts

  • Text symbol in script

    Hi All,
    I am using a standard symbol in script.Insert>symbol>standard symbol,whether these symbols are speific to the program or will be available globally.i meant to ask if i use a standard symbole 'cp_prod' can i use the same in another form for different text?
    Regards,
    Sai

    Hi
    These script symbols are global
    you can use them in other form also
    A variable in SAPscript is called a symbol. There are the following types.
    • System symbol (e.g. the number of the current page)
    • Standard symbol (usable in any document)
    • Program symbol (value from the print program)
    • Text symbol (“local variable”)
    The value of a symbol is text for using within SAPscript code and is represented by the symbol-name enclosed by ampersands. On seeing the tell-tale ampersands in SAPscript code, you sometimes need to figure out the symbol type.
    goto any PAGEWINDOW's Text elements in Script (SE71)
    from the Menu-> INSERT-> Symbols
    you find all symbols here
    System symbols
    System symbols in a SAPscript form are comparable to system fields like SY-UZEIT in an ABAP program, and include these. The graphical editor offers three types of system symbol.
    1. General system symbols
    See the table TTSXY. PAGE is the most widely used. The list given in our BC460 training manuals is out of date.
    2. SAPscript system symbols
    See the dictionary structure SAPSCRIPT. SAPSCRIPT-FORMPAGES is the most widely used.
    3. ABAP system symbols
    For the ABAP system field SY-UNAME, say, the symbol is SYST-UNAME. [SYST is the dictionary structure for ABAP system fields.]
    Sample code:
    User: &SYST-UNAME&
    Page &PAGE& of &SAPSCRIPT-FORMPAGES(C3)&
    Standard symbols
    Standard symbols are maintained centrally (in the table TTDTG via transaction SE75) for use in any document. Menu path:
    Tools
    Form Printout
    Administration
    Settings
    Some standard symbols are SAP-standard and others are custom. Curiously, table TTDTG is cross-client although SAPscript forms are not.
    The value of a standard symbol has to be defined for each language used. This gives a way to make a single SAPscript form multi-lingual.
    We can take advantage to an extent of the central maintenance, though there is no guarantee that the available standard symbols will used in every appropriate context.
    Standard symbols complicate searching a SAPscript form, since text like ‘Charity registration 211581’ may be hiding in a standard symbol.
    Text symbols
    A text symbol is declared and assigned to within the SAPscript code, and so obviously applies only to the current document. The command DEFINE is used, requiring /: in the tag column, as in the following examples.
    /: DEFINE &COMP_NAME& = ‘University of Warwick’
    /: DEFINE &WS_RATE& = &TAX_SUMM_C&
    Reward points for useful Answers
    Regards
    Anji

  • Listing text literals and text symbols

    HI,
    I am able to get list of all text literals used in a program using
    SCAN ABAP-SOURCE gt_source
                    INCLUDE PROGRAM FROM 'ZTEST_AM_ALV2'
                    TOKENS INTO gt_tokens
                    STATEMENTS INTO gt_stmts.
    LOOP AT gt_tokens into w_tokens WHERE type = 'S'.
    WRITE:/1  w_tokens-row,
            15 w_tokens-col,
            29 w_tokens-str.
    ENDLOOP.
    Now for all these text literals in g_tokens i want to list down all the text symbols which can be assigned to these literals.
    Thanks.

    Hi...
      do this...
    DATA: ITAB LIKE STANDARD TABLE OF TEXTPOOL WITH HEADER LINE.
    CALL FUNCTION 'RS_TEXTPOOL_READ'
      EXPORTING
        OBJECTNAME                 = SY-REPID
      ACTION                     = 'EDIT'
      TABLES
        TPOOL                      = ITAB
    EXCEPTIONS
       OBJECT_NOT_FOUND           = 1
       PERMISSION_FAILURE         = 2
       INVALID_PROGRAM_TYPE       = 3
       ERROR_OCCURED              = 4
       ACTION_CANCELLED           = 5
       OTHERS                     = 6
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT ITAB.
    WRITE:/ ITAB-KEY, ITAB-ENTRY.
    ENDLOOP.
    Abhishek...do not forget to give points...
    Rammohan

  • Finding all programs having particualr string in its Text symbols...

    Hello Gurus,
    If I want to search the string in ABAP code , I know I can use program RPR_ABAP_SOURCE_SCAN.
    But I want to find all SAP programs in which the text-symbols is defined by a particular string. How can I do that ?
    Please help....

    Hello Rajesh
    A function module which provides you will all text elements of a single report is RPY_PROGRAM_READ.
    Given this fm it is quite simple to write a report for your requirement:
    *& Report  ZUS_SDN_READ_TEXT_ELEMENTS
    *& Thread: Finding all programs having particualr string in its Text symbols...
    *& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="814207"></a>
    REPORT  zus_sdn_read_text_elements.
    TABLES: trdir.
    TYPES: BEGIN OF ty_s_outtab.
    TYPES: name   TYPE trdir-name.
    INCLUDE TYPE textpool     AS text.
    TYPES: END OF ty_s_outtab.
    TYPES: ty_t_outtab  TYPE STANDARD TABLE OF ty_s_outtab
                        WITH DEFAULT KEY.
    DATA: gt_outtab     TYPE ty_t_outtab,
          gs_outtab     TYPE ty_s_outtab,
          gt_fcat       TYPE lvc_t_fcat.
    DATA: gt_trdir      TYPE STANDARD TABLE OF trdir,
          gs_trdir      TYPE trdir.
    DATA: gt_textpool   TYPE STANDARD TABLE OF textpool.
    DATA: gd_count      TYPE i,
          gd_perc       TYPE i,
          gd_text(50)   TYPE c.
    SELECT-OPTIONS:
      o_report    FOR trdir-name.
    START-OF-SELECTION.
      IF ( o_report[] IS INITIAL ).
      ELSE.
        SELECT * FROM  trdir INTO TABLE gt_trdir
               WHERE  name  IN o_report.
      ENDIF.
      CHECK ( gt_trdir IS NOT INITIAL ).
      DESCRIBE TABLE gt_trdir.
      gd_count = syst-tfill.
      LOOP AT gt_trdir INTO gs_trdir.
        gd_perc = ( syst-tabix * 100 ) / gd_count.
        gd_text = gs_trdir-name.
        CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
          EXPORTING
            percentage = gd_perc
            text       = gd_text.
        REFRESH: gt_textpool.
        CALL FUNCTION 'RPY_PROGRAM_READ'
          EXPORTING
    *         LANGUAGE                  = SY-LANGU
            program_name              = gs_trdir-name
            with_includelist          = ' '
    *         ONLY_SOURCE               = ' '
            only_texts                = 'X'
    *         READ_LATEST_VERSION       = ' '
    *         WITH_LOWERCASE            = ' '
    *       IMPORTING
    *         PROG_INF                  =
          TABLES
    *         INCLUDE_TAB               =
    *         SOURCE                    =
    *         SOURCE_EXTENDED           =
            textelements              = gt_textpool
          EXCEPTIONS
            cancelled                 = 1
            not_found                 = 2
            permission_error          = 3
            OTHERS                    = 4.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        DELETE gt_textpool WHERE ( id NE 'I ' ).  " keep only text elements
        CLEAR: gs_outtab.
        gs_outtab-name = gs_trdir-name.
        LOOP AT gt_textpool INTO gs_outtab-text.
          APPEND gs_outtab TO gt_outtab.
        ENDLOOP.
      ENDLOOP.
      PERFORM build_fieldcatalog.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
        EXPORTING
    *       I_INTERFACE_CHECK                 = ' '
    *       I_BYPASSING_BUFFER                =
    *       I_BUFFER_ACTIVE                   =
    *       I_CALLBACK_PROGRAM                = ' '
    *       I_CALLBACK_PF_STATUS_SET          = ' '
    *       I_CALLBACK_USER_COMMAND           = ' '
    *       I_CALLBACK_TOP_OF_PAGE            = ' '
    *       I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
    *       I_CALLBACK_HTML_END_OF_LIST       = ' '
    *       i_structure_name                  = 
    *       I_BACKGROUND_ID                   = ' '
    *       I_GRID_TITLE                      =
    *       I_GRID_SETTINGS                   =
    *       IS_LAYOUT_LVC                     =
            it_fieldcat_lvc                   = gt_fcat
    *       IT_EXCLUDING                      =
    *       IT_SPECIAL_GROUPS_LVC             =
    *       IT_SORT_LVC                       =
    *       IT_FILTER_LVC                     =
    *       IT_HYPERLINK                      =
    *       IS_SEL_HIDE                       =
    *       I_DEFAULT                         = 'X'
    *       I_SAVE                            = ' '
    *       IS_VARIANT                        =
        TABLES
          t_outtab                          = gt_outtab
        EXCEPTIONS
          program_error                     = 1
          OTHERS                            = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    END-OF-SELECTION.
    *&      Form  BUILD_FIELDCATALOG
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM build_fieldcatalog .
    * define local data
      DATA: ls_fcat   TYPE lvc_s_fcat,
            lt_fcat   TYPE lvc_t_fcat.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
    *     I_BUFFER_ACTIVE              =
          i_structure_name             = 'TRDIR'
    *     I_CLIENT_NEVER_DISPLAY       = 'X'
    *     I_BYPASSING_BUFFER           =
    *     I_INTERNAL_TABNAME           =
        CHANGING
          ct_fieldcat                  = gt_fcat
        EXCEPTIONS
          inconsistent_interface       = 1
          program_error                = 2
          OTHERS                       = 3.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DELETE gt_fcat WHERE ( fieldname NE 'NAME' ).
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
      EXPORTING
    *     I_BUFFER_ACTIVE              =
        i_structure_name             = 'TEXTPOOL'
    *     I_CLIENT_NEVER_DISPLAY       = 'X'
    *     I_BYPASSING_BUFFER           =
    *     I_INTERNAL_TABNAME           =
      CHANGING
        ct_fieldcat                  = gt_fcat
      EXCEPTIONS
        inconsistent_interface       = 1
        program_error                = 2
        OTHERS                       = 3.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT gt_fcat INTO ls_fcat.
        ls_fcat-col_pos = syst-tabix.
        MODIFY gt_fcat FROM ls_fcat INDEX syst-tabix.
      ENDLOOP.
    ENDFORM.                    " BUILD_FIELDCATALOG
    Regards
      Uwe

  • List of text symbols

    hi,
    Can i get the o/p as list of text-001,text-002......text-a001....depending on nos of literals in given code.
    eg:
    Literal         Text Symbol
    'ABC'           text-001
    'DEF'           text-003
    'Line is'       text-aa1
    Thanks

    Hi.abhi...try this...
    DATA: ITAB LIKE STANDARD TABLE OF TEXTPOOL WITH HEADER LINE.
    data: wa like line of itab.
    CALL FUNCTION 'RS_TEXTPOOL_READ'
      EXPORTING
        OBJECTNAME                 = SY-REPID
      ACTION                     = 'EDIT'
      TABLES
        TPOOL                      = ITAB
    EXCEPTIONS
       OBJECT_NOT_FOUND           = 1
       PERMISSION_FAILURE         = 2
       INVALID_PROGRAM_TYPE       = 3
       ERROR_OCCURED              = 4
       ACTION_CANCELLED           = 5
       OTHERS                     = 6
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    skip 3.
    LOOP AT ITAB into wa.
    WRITE at 5 wa-entry.
    concatenate 'text-' wa-KEY into w_text.
    WRITE at 15 w_text.
    write /.
    clear w_text.
    ENDLOOP.
    Ram

  • How to fast replace text inside a program by its text symbol ?

    Hi guys !
    I'm new here and I have a little question for you.
    I have a program with a lot of texts and I started to add them into the text symbols tables.
    example:
    Program :'Hello world'(001)
    Symbol table : 001 | Hello world
    I'm looking for a tip wich replaces the 'Hello world'(001) by text-001 inside my program. Is that possible to do this ?
    Best regards,
    Sonia

    Hi Sonia,
    The notation Hello world'(001)' stands both for text literal 'Hello world' and text symbol text-001 . During logon the system checks the language and if there is corresponding text symbol in this language. If text-001 doens't satify this check, text 'Hello world' is displayed instead. 
    It is therefore highly recomended to leave that notation, because as the system wouldn't find text symbol it would display empty string, which must be avoided. It usually happens in selection texts, so sometimes you can see selection screen field without explanation text, but its technical name like i.e. PA_BUKRS.
    Regards
    Marcin

  • Text symbols are missing in SAP standard program

    Hi All,
    I am in very critical probelm I have standard program J_1I_EWT_MIS in that i have text elements are in english.
    I dont have any access key but i want to transalte the text elements while tarnsalting it doesnt ask me for any access key.
    Unfortunately i have overwitten all the text elemnts to another language all my text sysmbols were disapperared.
    I dont have any solution now..
    BUt i know that etx symbols which are disapperead.
    Please advise me how can i proceed to get my text symbols.
    Thanks,

    Hi,
    My problem is i have selections texts in standard program previously i have descriptions for that.
    By mistaken all the texts were disappered and selection texts are existing.
    Now i eant to enter selection text name for that.AS it is a standard program i can't change it.
    Can you please give me an idea on this.
    Thanks,
    Swapna.

  • Hi All, In which tables the packages , programs and program texts stored

    Hi All ,
             I want to display all the programs under a package with its package name , program name , program text and the created user if possible table ..for that i need in which tables all the packages will be store and in which i need program and its text will be stored and also created user's .
    Please provide the solution ASAP.
    Thanks & Regards,
    Bharat

    Hi,
    Check These..
    TDEVC : Packages
    REPOSRC : Report Source Code
    TADIR : Directory of Repository Objects
    Arunima
    Edited by: Arunima Rudra on Nov 20, 2008 9:34 AM

  • Output Types Replacement of text symbols: program, FORM routine needed

    Hello,
    I'm searching for a program and/or FORM routine that will replace &EKKO-EBELN& and &EKKO-LIFNR& (from Mail title and texts) .
    Example: Hochland Rahmenvertrag &EKKO-EBELN& / &EKKO-LIFNR&
    Replaced with: Hochland Rahmenvertrag 4600012345 / 712888
    I have problems filling the eMail subject when creating a Outline agreement (Apllication EV)...
    For purchase orders it's working without FORM routine (Apll. EF) !!!
    SAP provides this (empty) fields in transaction NACE (or NACT).
    Output type > Detail
    General Data > Replacement of text symbols
    appreciating any hints in this topic
    regards
    Jörg
    from SAP F1 context help:
    Program for creating or changing an output text
    Use
    In order to analyse parameters in titles of e-mails or faxes, you have to store a special program and a form routine in the field FORM routine. System fields like SY-UNAME or SY-DATUM are are excluded from this: They will be automatically analysed by the system.
    Example
    On New Year's Day 2000, you send the purchase order 4711 by fax. The title of the corresponding output type is "Purchase order no. VBAK-VBELN on SY-DATUM" (put a "&" before and after the fields). In the outbound message you therefore have the output "Purchase order no. 4711 on 01/01/2000". The field VBAK-VBELN has been filled with global data by a form routine.

    shital phadake wrote:
    > here are some hints
    > PR - SAPMM06B - Include MM06BFTE_TEXT_EDITIEREN - ?????
    > PO - SAPMM06E - Include MM06EFTE_TEXT_EDITIEREN - Form text_symbol_replace
    Great - these where the hints i was searching for
    NACE ...
    program = SAPMM06E
    form routine = TEXT_SYMBOL_REPLACE
    ...now the eMail subject is filled with PO-number and supplier-number as demanded ... and all just using SAP standard
    thx to you guys assisting me
    special thx to shital phadake
    Jörg

  • How to create new text symbols for the standard program.

    Based on the customer's requirement, I need to create a new implicit enhancement for the selection screen.
    I want to create new text symbols for the parameters and blocks, but I cannot change the standard ones.
    Does anybody know something about that? Thank you.

    hi ming yu,
    example : %_MATNR_%_APP_%-TEXT -> this is the material  description name in mb5b
    change the description in ur enhancement implementation
    %_MATNR_%_APP_%-TEXT = 'Material'
    it is works only input/output field
    Thanks&Regards,
    naveen

  • Assigning a Value to a Text Symbol: DEFINE

    Hi all,
    I am printing some text in the form. The text is in the database table and is retrieved. say the field name is fld06 in the table ztfin. Previously it is code as &zfin-fld06& in the form edotir. Now my requiremnet is to dispay some other text where ever I have to print ztfin-fld06. I have used the define statement in this way :
    /: DEFINE &ztfin-fld06& = 'Data Fattura'
    But when I look at the output the text is not replaced nor it is realised while I am debugging. Can anyone tellme where I am going wrong ?
    Regards,
    Varun.
    Message was edited by: varun sonu

    hi
    chk this out
    <b>DEFINE: Value assignment to text symbols
    Text symbols receive their value through an explicit assignment. This assignment can be made interactively in the editor via the menu options Include &#61614;&#61472;&#61614;&#61472;Symbols &#61614;&#61472;&#61614;&#61472;Text. This lists all the text symbols of a text module, as well as those of the allocated layout set.
    The contents defined in this way are lost if the transaction is exited. To continue printing the text module, you would have to enter the symbol values again.The DEFINE command allows you to anchor this value assignment firmly in the text, to also have it available when you next call up the text. Furthermore, you can allocate another value to a text symbol in
    the course of the text.
    Syntax:
    /: DEFINE &symbolname& = ‘value’
    Example:
    /: DEFINE &re& = ‘Your correspondence of 3/17/94’
    Example:
    /: DEFINE &symbol1& = ‘xxxxxxx’
    /: DEFINE &symbol2& = ‘yyy&symbol1&’
    /: DEFINE &symbol1& = ‘zzzzzzz’
    Result: &symbol2& &#61614;&#61472;yyyzzzzzzz
    The assigned value may have a maximum of 60 characters. It can also contain further symbols. When a symbol is defined using the control command DEFINE, symbols which occur in the value are not immediately replaced by their value. They are only replaced when the target symbol is output. If the operator := is used in the DEFINE statement, all symbols which occur in the value which is to be assigned are immediately replaced by their current values. The resulting character string is only then assigned to the target symbol when all occurring symbols have been replaced. The length of the value is limited to 80 characters. The target symbol must be a text symbol, as at present.
    Syntax:
    /: DEFINE &symbolname& := ‘value’</b>
    <i>u can also write a perform...endperform to change the value of a field to ur required text.</i>

  • Not able to make change of text in text symbol which are stored in txt pool

    Hi Experts,
    I have new problem today. I have been told to make changes of header text which is displayed after running one customized program.
    Program name : ZSDXXXXX1 which is attached in one Tcode: ZSDXX2.But when I goto SE38 and display the program to make changes, it shows the following different report name like AQCSSYSTQV000009ZSDXXXXX1 and the text symbols text-f58 which are somewhat different.
    Pls gide me to proceed further...
    In SE38:
    report AQCSSYSTQV000009ZSDXXXXX1
       line-size 253 no standard page heading line-count 000(003).
    include <symbol>.
    include <icon>.
    selection-screen: begin of block prog
                               with frame title text-f58.
    tables LIKP.
    data %count-LIKP(4) type x.
    data %linr-LIKP(2).
    tables aqldb.
    include rsaqexcd.
    data: begin of %st_liste occurs 100,
              head(1),
              tab(3),
              line(6) type n,
              cont(1) type n,
              fint(1),
              finv(1),
              fcol(1) type n,
              text(0253),
          end of %st_liste.
    etc.

    As per the report name "AQCSSYSTQV000009ZSDXXXXX1", it seems that there will be a SAP Infoset "ZSDXXXXX1"
    Go to transaction SQ02 with this infoset name "ZSDXXXXX1" then press change button.
    Then on right hand side there witll be field groups/data fields. Select the folder corresponding to Text-F58 and then press change button .
    If it does not work try transaction SQ01 & SQ03.
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Apr 11, 2008 4:29 PM

Maybe you are looking for