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

Similar Messages

  • Can I include a logo into text module in smart forms

    Hi,
    I want to know whether I can include a logo into text module or not in smart forms.
    Pls some one assist me.
    Regards,
    Chandra

    Hi,
    No you cannot attach a logo in Text Module because it can store only text, and your logo is stored in presentation server so it cannot be used aywhere else.I hope your question is answered.
    Regards.

  • How to include variable in the text column in report painter?

    Dear Expert,
    Would like to seek for your help to include How to include variable in the text column in report painter?Please advice.
    Thank you.
    Regards,
    Karen
    Edited by: Karen Swee Ping Ho on Jun 17, 2011 2:48 AM

    Hi,
    Thank you for the promt reply.
    1) How I include the variable in the column header to display fiscal year which I have selected from the selection screen?
    which variable should i use?
    2) Where can i find more information about the characteristic and which variable to be use base on the characteristic?
    For example: I would like to display the fiscal year from the selection screen/input screen when execute the report which also will reflected to the element definition and will display the fiscal year also in the column text?
    3) Kindly advise base on question 2, the variable that i use in element definition it will also display  in selection screen?
    4) When execute the report the first selection screen input parameter it obtain from where it is from element definition?
    5) Please advice how to be done when report execute with first screen input selection will also reflect the element definition of column and rom with the selection of the fiscal year?
    Please help.
    many thanks
    Edited by: KH on Jun 18, 2011 7:18 AM

  • How to  include a report  into the  SAP-SCRIPT

    plz tell me 
    How to  include a report  into the  SAP-SCRIPT
    ASAP

    creat a z report like this....................
    REPORT  zmmgl_picklist1.
    TABLES : likp,ltap,ltak.
    data : lv_NUM1 type c .
    data : lv_NUM type c.
    *&      Form  get_data1
          text
         -->IN_DATA    text
         -->OUT_DATA   text
    FORM get_data1 TABLES in_data STRUCTURE  itcsy
                         out_data STRUCTURE itcsy.
    READ TABLE in_data WITH KEY name = 'LTAP-VBELN'.
    lv_NUM = lv_NUM1 + 1.
    out_data-name = 'lv_NUM'.
      out_data-value = lv_NUM .
    APPEND out_data.
    endform.
    *&      Form  get_data
          This form is to read  details from  LIKP    *
         -->IN_DATA    text
         -->OUT_DATA   text
    FORM get_data TABLES in_data STRUCTURE  itcsy
                         out_data STRUCTURE itcsy.
      READ TABLE in_data WITH KEY name = 'LTAK-VBELN'.
      Select single bldat from likp into likp-bldat where lgnum = ltap-lgnum.
      out_data-name = 'LIKP-BLDAT'.
      out_data-value = likp-bldat.
      APPEND out_data.
       READ TABLE in_data WITH KEY name = 'LTAK-VBELN'.
      Select single vstel from likp into likp-vstel where lgnum = ltak-lgnum .
      out_data-name = 'LIKP-VSTEL'.
      out_data-value = likp-vstel.
      APPEND out_data.
    READ TABLE in_data WITH KEY name = 'LTAK-VBELN'.
      Select single kunnr from likp into likp-kunnr where lgnum = ltap-lgnum.
      out_data-name = 'LIKP-KUNNR'.
      out_data-value = likp-kunnr.
      APPEND out_data.
    ENDFORM.                    "get_data.
    after this go to the script editor......
    /: perform get_data in program zmmgl_picklist1.
    /: using &ltap-vbeln&                 (Reference field.this field          should be there in both program and script.....)
    /:changing &likp-bldat&         
    /:changing &likp-vstel&
    /:changing &likp-kunnr&
    \[removed by moderator\]
    Regards
    Anbu
    Edited by: Jan Stallkamp on Jun 10, 2008 2:26 PM

  • How to include one view into another view

    Hi SDN's,
                   Could any please tell me,How to include one view into another view.
    In my requirment.I want to create a 'Z' view for an interface .In that  view i have to take,
    1) Ship-to-email adrr by
                              LIKP-KUNNR -> KNA1-ADRNR
                              KNA1-ADRNR -> ADR6-ADDRESNUMBER.
    2) E-mail addr of person who created the document.i.e
        LIKP-ERNAM -> USR21-BNAME.
        USR21-ADDRESNUMBER ->  ADR6-ADDRESNUMBER 
        USR21-PERSNUMBER -> ADR6-PERSNUMBER.
       In both the case we have to pass ADDRESSNUMBER to ADR6 table.
    If we pass these condition it fails,B'Coz at a time it passes Two ADDRESSNUMBER and a PERSNUMBER.
    So i created two which fetches only the email addr of  person who created the document.and another view fetches Ship-to-email addr.
    Now i want to include the second view into first view . Is it possible?or please
    tell me someother way to get these email addresses in a single view.

    hi
    as per my knowledge, nested views are not possible. However, while creating a new view, selection method will not giv u option to select the already created view(S) except the tables..i think so.
    regards,
    shamim

  • How to include .js file into validater-rules.xml

    iam doing project using struts.
    i have .js file for client side validation.how to include .js file into struts validate-rules.xml so that i can use those validation in my project.
    without writing any class.
    is there any way

    copy + paste from my book...............
    Enabling Client-Side Validations
    In addition to providing a framework for simplifying server-side form data validations, Validator provides an easy-to-use mechanism for performing client-side validations. Each validation routine defined in the validator-rules.xml file optionally specifies JavaScript code that can be run in the browser (client side) to perform the same validations that take place on the server side. When run on the client side, the validations will not allow the form to be submitted until they have all passed.
    To enable client-side validation, you have to place the HTML Tag Library's javascript tag in each JSP for which you want validation performed, as shown here:
    <html:javascript formName="logonForm"/>
    The javascript tag requires that you use the formName attribute to specify the name of a <form> definition from the validation.xml file, as shown here, for which you want validations performed:
    <form name="logonForm">
    <field property="username" depends="required">
    <arg0 key="prompt.username"/>
    </field>
    <field property="password" depends="required">
    <arg0 key="prompt.password"/>
    </field>
    </form>
    All the validations that you have specified for the <form> definition to run on the server side will be run on the client side.

  • How to insert an image into text area?

    Hi everybody,
    I have a proplem : insert an image into text area ( likely Yahoo Chat)
    eg : Hello,World :D =)) :x
    I can't do it.
    Can you help me?
    Thank you!
    Edited by: Chelsea_Drogba7589 on May 28, 2010 9:28 PM

    StanislavL wrote:
    [http://java-sl.com/tip_autoreplace_smiles.html]
    Neat example. :)
    Try this.I did and was at first confused because I expected the code to arrive on-screen looking like the screen-shot at the page. Then it occured to me to type some text including a smiley, and it changed to the icon as expected.
    For other people like me who are not quite very clever, how about adding an 'Instructions' section, or initializing the JEP with instructions?
    BTW -
    "The screenshot shows how it looks like:" reads better as..
    "The screenshot shows how it looks:"

  • How to include unicode chars in text boxes?

    Hi,
    We need the unicode chars (for example: Chinese, Korean, etc...) to appear in the generated .pdf and .pcl files from the Adobe Output designer's IFD file.
    These chars are static and will not change, so we shall not be fetching them from FNF file (.dat).
    While trying to copy-paste directly into text box field, we are getting an error prompting for converting them to some other character set.
    We couldn't paste them exactly with the text how they should appear in the text boxes.
    Please tell us if there is a way to achieve this.
    Thanks and regards,
    Gurunath
    [email protected]

    Double check that all of the selected presentation targets and the font being used for the particular text box supports the characters you are trying to paste into it. For example, the PDF target only has 11 fonts available unless you use the other tabs to "create new soft font cartidges". If you have the appropriate fonts installed on you PC you should be able to use this capability to make the font available for each of your presentation targets. (At least that is my impression - I've never needed to try it.)

  • How to open a registered oracle form in one module into another module?

    Hii der
    I'm trying to learning some concept in Oracle forms and stuck with an issue and not able to find a solution, any help will be appreciated in this regards.
    I want to know, can I open a registered form in oracle apps one module into the another module. For example, I have a form registered in Application Developer module and i want to use that form in Order Management or any other module. How I can achieve this.
    Please help......  Thanks in advance.
    Regards
    Royal A

    Hi,
    Can you tell me in which Application you have register your form, basically we need to register our custom form in our custom schema. For example our project is called XXPROJ the we will have our custom schema like XXPROJ.. In this all the custom form fmx and other reports will there.
    So Register the form in the custom Application and then create a form function and then attach the form function to two menu. For example under payables and purchasing.
    Just now i tried and its working fine, check the same and let me know if any issues
    Regards
    Sri

  • How to include animation files into muse test site on business catalyst?

    Hi there
    I am trying to publish a site created in muse to the business catalyst test website service for a client to review
    in the website i created an animation that i have inserted as an HTML snippet (ie copied relevant code into "INSERT HTML"
    The question is how do include the folder with all the files required to run the animation when i click "PUBLISH" to business catalyst?
    thanks

    Hello,
    You can make the changes in .muse file and then publish it to the existing site.
    It will automatically detect your old site when you click on File>Publish ONLY if you are using the same Adobe Id to upload the site which you used earlier to upload.
    You can check which Adobe Id you are using by going into Edit>Preferences option and under Publish with Account youwill find the Adobe Id which is being used to upload the site.
    you can change the Id (if required) by clicking on the dropdown and click on Switch accounts.
    Hope this helps.
    Regards,
    Sachin

  • How to include applet jars into an JSF application

    Hey guys,
    I have a rather simple question. I have made a JAR that contains an applet. The applet runs fine, but when I include the applet into a JSF / JSP page I get a Class not found error.. The JAR containing the applet is included in the websites build path.
    Can someone give me a hint where the JAR shoud go? Maybe a link to a tut would be nice

    classpath wasnt set correctly

  • How to include BSEG ANLN1 into OBCY selection.

    Hi,
    I need to include BSEG ANLN1 into selection of summarise FI   Tcode OBCY. Appreciate some advise. TQ

    Hi,
    I am not convinced whether we can do it. The field names are stored in table TTYPS-FI Summarization: Document Fields Allowed.
    Take the help of technical consultant and see if you can maintain the table entries there.
    Aravind

  • How to include local chains into meta chain

    Hi Experts,
    Could any one pl help me how to include  3 local chains in to a meta chain.
    first i am creating local chains
    Thanks in Advance
    Nitya
    Please check the forum before posting
    Edited by: Vikram Srivastava on Sep 24, 2010 4:43 PM

    Hi Nitya
    Nothing much to explain about it but any ways
    First create separate chains for all 3 local chains and create a meta chain include all this 3 in that
    Meta Chain steps:
    If the chains are dependents on each other then create as below
    Start process -> local chain1>local chain2-->local chain3.
    If the chains are independent loads then
    Start process ---> local chain 1,2,3 place it in parllel.
    Precaution: ensure that you local chains start process should place the maintain process radio button set to "Start using meta chain or API".
    Please find the help link for the same : [Creating process chains and schedules|http://help.sap.com/saphelp_nw04s/helpdata/en/a4/1be541f321c717e10000000a155106/frameset.htm]
    Hope its clear a little..!
    Thanks
    K M R
    ***Even if you have nothing, you can get anything.
    But your attitude & approach should be positive..!****
    >
    H. Nitya wrote:
    > Hi Experts,
    >
    >
    > Could any one pl help me how to include  3 local chains in to a meta chain.
    > first i am creating local chains
    >
    >
    > Thanks in Advance
    >
    > Nitya

  • How to export waveform data into text file

    Hi..
        I am trying to export my waveform graph data into write spreadsheet file. When running the proram, I am getting graph values (values in a matrix) when checking with the probe. But once I save it to a text file, the values recorded are just zeros. I have attached the text file along with this. Could anyone please tell me why the graph data is not recorded in the spreadsheet? I have extracted the Y component of the graph and then wired it to the write to spreadsheet function. It seems like the labview is getting the data.. but now the problem is how to get the data out of labview?

    Please find the attched image of the whole program. I tried running the program after removing the array to matrix but still I am not able to export the graph values to spreadsheet. The program as a whole is working as I am able to display the oscilloscope graph into the waveform graph but I am not able to export the values. When I tried using probes, I am getting differnet matrix values till the end of the connection given to 'write to spreadsheet' but not able to export the values. The second image shows the write to spreadsheet file inside the while loop as i thought it will reduce the memory.. but it is still not working...
    Attachments:
    Scanner complete program.jpg ‏713 KB
    full scanner program 2.jpg ‏664 KB

  • How to convert a Tcode into Function module or a Bapi

    Dear all,
    i would like to convert Tcode : ME21N into a Function module or a Bapi to create a Webservice.
    Kindly help me..!!
    Thanks in advance..
    SreeKumar..

    Hey,
    Is the existing BAPI  'BAPI_PO_CREATE1' not sufficient for your needs?
    Till now never had to do something with webservices but this service ...maybe it does exist already...
    seems a likely candidate to be converted by SAP. So you do no need to re-invent the wheel again...and again...
    Cheers,
    BV.

Maybe you are looking for

  • Customer open items

    HI all, In Which table could I get the customer open items up to some date...?

  • Sun IDE Question

    I've posted the question in the Sun ONE Studio forum, but no answer there, so I'm trying here, in the hope that I can get some assistance. This is not really about Java, but about using the Sun ONE Studio IDE. I go through the tutorial building a jsp

  • Adding animation as a background for a website

    I created my website on photoshop and added the animation on photoshop. I saved it as JPEG and opened it on dreamweaver and when I previewed the webpage the animation was not working. I want the background to animate from different pictures instead o

  • I forgot my security questions , what to do now ?, they're asking me the question

    i forgot the answers what to do ,??

  • Cover flow breaks up

    I use iTunes 9 on Windows xp. Full screen cover flow works fine. But when the cover flow is a fraction of the screen area, the image breaks up. There are rectangles showing other parts of the flow or my desktop. Any suggestions?