Smartform Text Module - where used

Hi,
I know the name of my smartform text module. How can I find out which forms use it ?

here use for Text Elemnet is not possible as it is a generic entity.
Regards,
Amit

Similar Messages

  • Smartforms - Text Modules

    Hi,
    I want why Text Modules will Use in Smartforms ,where they will use can u explain?
    Thanks

    Hi,
    You use the text type Text M odule of the text node to refer to an existing text module in the system. This allows you to easily use texts from one text module in several forms. In addition, it is not necessary to load the entire form description to maintain these texts.
    for more infor
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0c/ef1fae008c11d4b588006094192fe3/content.htm
    Regards
    Shiva

  • ABAP Function Module where-used in BI-Transformations

    Hi,
    we have developed some ABAP-Z-Function-Modules. These are used in several BI-Data-Transformations and work fine and performant.
    The problem we have now is to find out in which transformation a Function-Module is used.
    The where-used-list in SE37 doesn't report any BI-Transformations althought I check all categories.
    Got anyone a solution for our problem?
    Christian

    Hi,
    see this code for function module where used list only for transformation . i used the same code as bhaskar specified..but little modification..here u used "date_get_week" function module..
    TYPE-POOLS slis.
    DATA fcat1 TYPE slis_t_fieldcat_alv.
    DATA: BEGIN OF t_display OCCURS 0,
             targetname LIKE rstran-targetname,
             sourcename LIKE rstran-sourcename,
             tranid LIKE rstran-tranid,
             routine LIKE rstran-startroutine,
             line_no LIKE rsaabap-line_no,
             line LIKE rsaabap-line,
    END OF t_display.
    data : input(75) type c.
    DATA : input_pattern1(75) TYPE c.
    DATA : input_pattern2(75) TYPE c.
    DATA : same_source(30) TYPE c.
    **Internal table declerations**************************************
    TYPES:  BEGIN OF t_trans_lookup_finder,
             targetname TYPE rstran-targetname,
             sourcename TYPE rstran-sourcename,
             tranid TYPE rstran-tranid,
             routine TYPE rstran-startroutine,
             line_no TYPE rsaabap-line_no,
             line TYPE rsaabap-line,
    END OF t_trans_lookup_finder.
    DATA: i_lookup_finder TYPE STANDARD TABLE OF t_trans_lookup_finder,
      wa_lookup_finder TYPE t_trans_lookup_finder,
      i_trans_lookup_finder TYPE STANDARD TABLE OF t_trans_lookup_finder,
      wa_trans_lookup_finder TYPE t_trans_lookup_finder,
      i_trans_final TYPE STANDARD TABLE OF t_trans_lookup_finder,
      wa_trans_final TYPE t_trans_lookup_finder.
    DATA : i(7) TYPE n.
    DATA  old_cube(20) TYPE c VALUE ' '.
    DATA  old_source(20) TYPE c VALUE ' '.
    **Selections for update rules**************************************
    SELECT DISTINCT  targetname    sourcename  tranid        endroutine       line_no       line
           INTO TABLE i_trans_lookup_finder FROM
           rstran AS a  INNER JOIN rsaabap AS b ON aendroutine = bcodeid
                           WHERE
                           aobjvers = 'A' AND bobjvers = 'A'.
      APPEND LINES OF i_trans_lookup_finder TO i_lookup_finder.
    **Selections for Transformations(Expert routine)*******************
    SELECT DISTINCT        targetname       sourcename       tranid       expert       line_no       line
           INTO TABLE i_trans_lookup_finder FROM
           rstran AS a  INNER JOIN rsaabap AS b ON aexpert = bcodeid
                           WHERE
                           aobjvers = 'A' AND bobjvers = 'A'.
      APPEND LINES OF i_trans_lookup_finder TO i_lookup_finder.
    Edited by: Sakthi Jaganathan on May 20, 2009 6:25 PM

  • Smartform text modules client independent...

    Hi Guys,
    Are smartform text modules also client independent ?
    If I do some change in text modules in one client its not getting reflected in other. Can someone tell me why ?
    Thanks.
    Tushar.

    Hi Tushar,
    As Phani and Rich mentioned Text module are client dependent similar to smartforms. You have to transport from one client to another.
    Lanka

  • Text Variable Where-used?

    Hi, Can't seem to figure out how to do a where-used on a text variable?  Anyone?
    Thanks!

    Kenneth,
    First go to table RSZGLOBV and find your variable by the VNAM field.  Get the ID of your variable and run the Function Module RRM_SV_VAR_WHERE_USED_LIST_GET.  This will give you a list of queries that use the variable. 
    Thanks,
    Jeff

  • Standard text (SO10) - 'Where used list'

    Dear all,
    I would know if SAP provide a standard tool that consents to display a 'where used' list for the standard texts.
    I mean, this report has to show where the standard text defined via SO10 are used (SAPScripts, Smartforms...).
    Thanks and best regards
    Davide

    I doubt if there is such report.
    Enjoy SAP.
    Pankaj Singh.

  • Smartform - text module - qualifying event

    Hi all,
    Once more a question:
    E-recruitment 6.0
    Smartforms with invitation letters (for example for an interview)
    In the recruiter's portal we use a 'qualifying event' to 'set' an appointment' , date, time, place etc.
    We use the input from this reference activity in the text module of the smartform.
    The text module holds the main text of the letter.
    The text from the module appears in the recruiters portal when the recruiter performs activity 'send letter' (act. type: type invitation) so that he can add some text manually if he likes.
    It goes well when the recruiter does not add anything manually. The variables load in the smartform and it works as wel wanted.
    BUT when the recruiter manually changes the letter (the text module) in the recruiters portal, all variable are lost from the letter.
    I hope someone can help me out.
    Edited by: N. Lodewijk on Dec 4, 2008 11:47 AM

    You need to use the functionality "Changeable letter".

  • Function Module where-used list does not find update rule programs

    We have function modules called in update rules. The where-used list in the function builder does not find the update rule programs.
    For example, function DATE_GET_WEEK is called in an update rule to InfoCube YCUBE001. The activated program name for this update rule is GP3PWI6PKM5Y3K75A370DIS8I77. When I goto SE37, enter the function DATE_GET_WEEK, click the where-used button, check the programs option and search. The system does not find the program GP3PWI6PKM5Y3K75A370DIS8I77.
    Without this search capability it is difficult to do an impact analysis of changing function modules. Does anyone know of a solution?

    hi,
    i think the reason is the code of update rules' generated program are stored line by line in table(rsaabap), update rules program itself stored in table rsupdrout, link with field codeid, another useful table is rsupdinfo which store infocube, infosource related.  other info may stored in some other rs* and rsa* tables.
    try to create following program in your system, and run, type in the function module name, and will display out the update rules program id, with additional useful info : which infoprovider, infosource, and detail info of the routine and infoobject in the update rule that using that function module. you may modify the program to have better display out list.
    hope this helps.
    REPORT  Z_FM_UPDRUL_WHEREUSED.
    data : lv_sfm,
           lv_line type string,
           lv_where type string.
    tables : rsaabap,RSUPDROUT,rsupdinfo.
    select-options:
    s_fm for rsaabap-LINE.
    start-of-selection.
      loop at s_fm.
        concatenate s_fm-low ' ' into lv_sfm.
        concatenate '%' s_fm-low into lv_line.
        concatenate lv_line '%' into lv_line.
        write : / 'function module', 'update rule id', 'routine id', 'infoobject', 'infocube', 'infosource'.
        select * from rsaabap
        where line like lv_line and objvers = 'A'.
           select * from rsupdrout
           where codeid = rsaabap-codeid and objvers = 'A'.
             select single * from rsupdinfo
             where updid = rsupdrout-updid and objvers = 'A'.
               write: / lv_sfm, rsupdrout-updid, rsaabap-codeid,
                        rsupdrout-iciobjnm, rsupdinfo-infocube,
                        rsupdinfo-isource.
        endselect.
        endselect.
      endloop.

  • Function Module "where used list"

    I'm looking for a function module which does the same as the where used list: i want to have all tables conataining a special field e.g. mandt. Is there such a FM available?

    Hi,
    Use FM 'CHVW_EXPLODE_ALL' to get the Batch where used list.
    HTH
    Regards,
    Dhruv Shah

  • Name of the function module-where used

    I want to know the name of function module which gives the where used list for that perticular table. like I want a where used list abt table spfli so which function module gives this information.*where used list for tables

    Hi Abhijeet,
                      Use FM <b>BRF_WHERE_USED</b>
                                  <b>RKD_WHERE_USED_TABLE_IS_BUILD</b>
    There is another way without FM.go tpo se11.enter the table name.click on WHERE-USED_LIST button on application tool bar.
    Reward points if helpful.
    Regards,
    Hemant

  • SmartForms - Text Module

    Hello,
    how can I include dynamically text modules in my text node. I tried like this:
    ->GLOBAL DEFINTIONS
    Global data:
    textmodule   type    string
    Under Initialization:
    i give manually the name of my text module   "foot"
    textmodule = 'foot'.
    ->TEXTNODE
    Field Name:   &TEXTBAUSTEIN&
    When I want to activate  I get the failure: Type specification "STRING" not allowed.
    My aim is to set different textmodules for several cases.
    Has anybody of the you an idea for me, please?!?!
    With kind regards
    gokselin

    Dear Naimesh,
    I thank you very much for the quick reply.
    But I also get the same failure message: Type specification "CHAR70" not allowed.
    And the name of the text module is less than 20 letters.
    I would like to know what the reason for this failure is.
    As I told you in the Initialization-Screen I set my variable "L_TEXTNAME = 'TB_FOOT' " to test it. After I have a positive test I will give the names of the text modules by the interface. That means, in my report I set up the name of the right text node for my smartform.
    Maybe we both can try it again with a new solution.
    With kind regards
    gokselin

  • What is the Use of Text Module Radio buton in Smartforms

    Hi all,
    What is the Use of Text Module Radio buton in Smartforms T - code ? How can we link this to our form ?
    Thanks in advance
    KR

    Text modules
    Text modules are used to centrally store texts that are used frequently in forms in the system.
    Text modules are included in forms using texts nodes. The text node can either refer to the text module or take its text. You can then change the text or add to it to suit the form.
    Text modules have the following attributes:
    They are client-independent
    They are connected to the transport system
    They are connected to the translation tools in the system
    The third attribute means that a text module can be uniquely assigned to a language using the logon language. When including a text module, you can also access translations of the text module, for example, to include an English text module in a German form.
    Reward Points if useful.

  • Use of SAP Smart Forms - Text Modules

    Hi!
    One or two questions regarding the SAP Smart Forms text modules.
    First: In which table the text name is saved? Is there something like the STXH table for SapScript Objects?
    Second: Is it possible to use SmartForm text modules in the text determination for SD (Invoice e.g.)?
    I´m looking forward for many answers
    Greetings
    Mark

    Hi,
      From STXL table u can get the text object, id n name pertaining to a text .These things put in FM 'READ_TEXT'. u get the long text...
    Instead in smartforms, u can directly include texts using Create-Text, Type Include text...enter the id, name ,lang and object....
    Also, for text names, objects and ID..u go to the place where long text has been entered, enter the sapscript editor from there, goto Header...u ll get all the detaails..
    hope it helps,
    Regards,
    Bikash

  • Can I use a field name in text module

    Hi,
    I get a object name of the standard text in a field.  Can I use that field in Text module.
    Thanks,
    Srinivas.

    Go to t-code SMARTFORMS->Text Module->Create or Edit-> choose add icon and type your field name (used in your smartform) like this &fieldname&, then use this Text module in your smartform.

  • How to include text modules into text modules

    Hi experts,
    is there any possibility to include smartform text modules or sapscript standard texts into
    a text module?
    For example:
    Text module "B" and "C" are supposed to be used in text module "A".
    Regards
    CHRIS

    Hi,
    thanks to all for your answers.
    Obviously, there's no way to include a textmodule into a textmodule in SmartForms.
    Regards from Germany
    CHRIS

Maybe you are looking for

  • Letterboxing and Aspect Ratio problem

    I'm authoring a feature film DVD. All menus and movies are 16:9 When I play the Simulator in "16:9" everything is fine. When I play the Simulator in "4:3 Letterbox" my menus are letterboxed as desired, however every movie is for some reason squished

  • Bit locker recover key

    Hi, I have restarted my windows surface and its asking for the recovery key and has told me to go to http:/windows.microsoft.com/recoverykey to retrieve it. it also gave me the key ID if i need it. where do i go to retrieve this recovery key? using m

  • Data pump problem

    I am facing the a problem during running expdp. The command is failing with the following error when I try to use expdp command: Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit Production With the Partitioning and Data

  • MBP will not work with 20" Apple Cinema Display

    I got a 20" ACD about a month ago. Everything was working perfectly until I disconnected it from my laptop a few days ago. After I reconnected, the display will no longer work. The MBP does no even show the needed resolution in preferences any more.

  • *** Can I order the iPhone from Canada and use it right away as just a PDA?

    I'd really like to order an iPhone today (I'm in Canada) from the US Apple store. I know there is the whole unlocking problem (ugh) up here, but I'm wondering if I could buy it and use it for wi-fi internet/email/ical, etc and not as a phone without