<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: help in smart forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985617#M402524</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Narendran &lt;/P&gt;&lt;P&gt;how can i bring the name of student for the smart form page &lt;/P&gt;&lt;P&gt;i have to declare all the field of my internal table in FORM INTERFACE or just the internal table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Feb 2007 18:07:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-21T18:07:37Z</dc:date>
    <item>
      <title>help in smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985612#M402519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallow I new in smart form .i build a report program in abap and in my program I have to call to smart form .&lt;/P&gt;&lt;P&gt;In my program I select score of student  in some course in If the student passed the course I have to send him page with his name (that I have in the program) and more data that I have in my program and if the student pass the course I send page 1&lt;/P&gt;&lt;P&gt;And if he didn't pass I send other page .&lt;/P&gt;&lt;P&gt;My problem is how I call to the smart from from my program and if I have to build 2 different smart forms .   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT objid_e objid_p objid_va objid_r objid_p objid_vc istat_p score weighting begda_e endda_e&lt;/P&gt;&lt;P&gt;  FROM yhr_score_page&lt;/P&gt;&lt;P&gt;  INTO (wa_score_tab-objid_e , wa_score_tab-objid_p , wa_score_tab-objid_va ,wa_score_tab-objid_r,&lt;/P&gt;&lt;P&gt;        wa_score_tab-objid_p, wa_score_tab-objid_vc,wa_score_tab-istat_p,wa_score_tab-score,&lt;/P&gt;&lt;P&gt;        wa_score_tab-weighting ,wa_score_tab-begda_e ,wa_score_tab-endda_e)&lt;/P&gt;&lt;P&gt;  WHERE objid_e IN c_course&lt;/P&gt;&lt;P&gt;  AND objid_p = pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wa_score_tab TO score_tab.&lt;/P&gt;&lt;P&gt;    CLEAR wa_score_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT score_tab INTO wa_score_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE ename orgeh werks&lt;/P&gt;&lt;P&gt;    FROM pa0001&lt;/P&gt;&lt;P&gt;    INTO (wa_score_tab-ename , wa_score_tab-orgeh , wa_score_tab-werks)&lt;/P&gt;&lt;P&gt;    WHERE pernr = wa_score_tab-objid_p.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    MODIFY score_tab FROM wa_score_tab TRANSPORTING ename orgeh werks.&lt;/P&gt;&lt;P&gt;    CLEAR wa_score_tab.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yhr_score_page is table that I take all the data for the student and score tab is my internal table with the data .&lt;/P&gt;&lt;P&gt;I wont to now how I move ename to the smart form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I now that I have lot of question but I lost.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 16:48:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985612#M402519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T16:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: help in smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985613#M402520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can still call one smartforms..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create two windows in the smartforms..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can give conditions in the conditions tab of the window..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give the condition V_PASS = 'X' in the pass window.&lt;/P&gt;&lt;P&gt;Give the condition V_PASS = ' ' in the did not pass window..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 16:50:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985613#M402520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T16:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: help in smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985614#M402521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Narendran &lt;/P&gt;&lt;P&gt;thankes for that qustion &lt;/P&gt;&lt;P&gt;my other 2 qustion is:&lt;/P&gt;&lt;P&gt;1) how can i get the name and score from my program how i decare it in the smart form (how i export the data from my internal table to the smart form)&lt;/P&gt;&lt;P&gt;2) how i call to the smart from from my program&lt;/P&gt;&lt;P&gt;hope u can help&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 17:02:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985614#M402521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T17:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: help in smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985615#M402522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you create the smartforms..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the GLOBAL SETTINGS -&amp;gt; FORM INTERFACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can give the internal table name in the TABLES PARAMETER..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After activating the form..It will generate a function module...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press f8 in the smartforms after activating..you will get the function module name..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the function module name to call from your print program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'xxxxx'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;          .................&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ITAB   = ITAB_DATA[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is just like a function module call..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 17:17:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985615#M402522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T17:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: help in smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985616#M402523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For getting function module generated by smart form use &lt;/P&gt;&lt;P&gt;SSF_FUNCTION_MODULE_NAME function module by passing smart form name to this function module, you will get function module generated by smart form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 17:29:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985616#M402523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T17:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: help in smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985617#M402524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Narendran &lt;/P&gt;&lt;P&gt;how can i bring the name of student for the smart form page &lt;/P&gt;&lt;P&gt;i have to declare all the field of my internal table in FORM INTERFACE or just the internal table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 18:07:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985617#M402524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T18:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: help in smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985618#M402525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select single * from stxh client specified&lt;/P&gt;&lt;P&gt;     where mandt    = client&lt;/P&gt;&lt;P&gt;       and tdobject = object&lt;/P&gt;&lt;P&gt;       and tdname   = name&lt;/P&gt;&lt;P&gt;       and tdid     = id&lt;/P&gt;&lt;P&gt;       and tdspras  = language.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;gt; 0.&lt;/P&gt;&lt;P&gt;    write language to l_language(2).&lt;/P&gt;&lt;P&gt;    call function  'SAPSCRIPT_MESSAGE_DEF'&lt;/P&gt;&lt;P&gt;            exporting no = 600&lt;/P&gt;&lt;P&gt;                      v1 = name&lt;/P&gt;&lt;P&gt;                      v2 = id&lt;/P&gt;&lt;P&gt;                      v3 = l_language.&lt;/P&gt;&lt;P&gt;    message e600 with name id language raising not_found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above statements are in the function module "Read_text".  Iam comparing all the fields with my fields(client,object,name,id,language) , all are matching except "name". This record(name) is not there in the table STXH. So i want to add  record(name) to this table. What is the procedure?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Narmda Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 13:11:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-smart-forms/m-p/1985618#M402525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T13:11:22Z</dc:date>
    </item>
  </channel>
</rss>

