<?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 Regarding Scripts........... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008725#M78391</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to ABAp programming.Can any one help in Sap Scripts.&lt;/P&gt;&lt;P&gt;Here I had a Z* form which I need to modify.&lt;/P&gt;&lt;P&gt;First I want to know how to look a print Programme for this form.&lt;/P&gt;&lt;P&gt;Can any one help in this....&lt;/P&gt;&lt;P&gt;Thanking you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Sep 2005 09:44:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-08T09:44:18Z</dc:date>
    <item>
      <title>Regarding Scripts...........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008725#M78391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to ABAp programming.Can any one help in Sap Scripts.&lt;/P&gt;&lt;P&gt;Here I had a Z* form which I need to modify.&lt;/P&gt;&lt;P&gt;First I want to know how to look a print Programme for this form.&lt;/P&gt;&lt;P&gt;Can any one help in this....&lt;/P&gt;&lt;P&gt;Thanking you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 09:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008725#M78391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T09:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Scripts...........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008726#M78392</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; A Print Program look like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The print program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Writing INTRODUCTION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          ELEMENT                  = 'INTRODUCTION'&lt;/P&gt;&lt;P&gt;          FUNCTION                 = 'SET'&lt;/P&gt;&lt;P&gt;          TYPE                     = 'BODY'&lt;/P&gt;&lt;P&gt;          WINDOW                   = 'MAIN'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;         OTHERS                   = 8&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Writing ITEM_HEADER&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          ELEMENT                  = 'ITEM_HEADER'&lt;/P&gt;&lt;P&gt;          FUNCTION                 = 'SET'&lt;/P&gt;&lt;P&gt;          TYPE                     = 'BODY'&lt;/P&gt;&lt;P&gt;          WINDOW                   = 'MAIN'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;         OTHERS                   = 8&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Set ITEM_HEADER into TOP area of main window for subsequent pages&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          ELEMENT                  = 'ITEM_HEADER'&lt;/P&gt;&lt;P&gt;          FUNCTION                 = 'SET'&lt;/P&gt;&lt;P&gt;          TYPE                     = 'TOP'&lt;/P&gt;&lt;P&gt;          WINDOW                   = 'MAIN'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;         OTHERS                   = 8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write ITEM_LINE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT .....&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;             ELEMENT               = 'ITEM_LINE'&lt;/P&gt;&lt;P&gt;             FUNCTION              = 'SET'&lt;/P&gt;&lt;P&gt;             TYPE                  = 'BODY'&lt;/P&gt;&lt;P&gt;             WINDOW                = 'MAIN'&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            OTHERS                 = 8.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Delete ITEM_HEADER from TOP area of main window&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          ELEMENT                  = 'ITEM_HEADER'&lt;/P&gt;&lt;P&gt;          FUNCTION                 = 'DELETE'&lt;/P&gt;&lt;P&gt;          TYPE                     = 'TOP'&lt;/P&gt;&lt;P&gt;          WINDOW                   = 'MAIN'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;         OTHERS                    = 8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Print CLOSING_REMARK&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          ELEMENT                  = 'CLOSING_REMARK'&lt;/P&gt;&lt;P&gt;          FUNCTION                 = 'SET'&lt;/P&gt;&lt;P&gt;          TYPE                          = 'BODY'&lt;/P&gt;&lt;P&gt;          WINDOW                   = 'MAIN'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;         OTHERS                    = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check this link,&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/sapscripts.htm" target="test_blank"&gt;http://www.sap-img.com/sapscripts.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm" target="test_blank"&gt;http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hope u understood.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Ruthra.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 09:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008726#M78392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T09:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Scripts...........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008727#M78393</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;using TNAPR table you can find out print program name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the FONAM (FORM) field enter your sapscript form name then you get print program, routine, output type and all the details corresponding to the form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 09:53:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008727#M78393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T09:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Scripts...........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008728#M78394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;What i am asking is If a Z* form is existing how can we see a print programm which is already exits.&lt;/P&gt;&lt;P&gt;Thanking you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 09:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008728#M78394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T09:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Scripts...........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008729#M78395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;- From SE71: Form-&amp;gt;Check-&amp;gt;Texts:&lt;/P&gt;&lt;P&gt;  If you are lucky, the system ask you which program it &lt;/P&gt;&lt;P&gt;  should use to check sapscript: that program is your &lt;/P&gt;&lt;P&gt;  program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- If your sapscript is used in some standard transaction&lt;/P&gt;&lt;P&gt;  You can try to find the program in TNAPR table, or you &lt;/P&gt;&lt;P&gt;  go to customizing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 09:55:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008729#M78395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T09:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Scripts...........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008730#M78396</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;Use table TTXFP, by specifing your Z* form name you can find out print program name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TNAPR table also used for this, but the table has entries only if the form assigned to output type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 15:49:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-scripts/m-p/1008730#M78396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T15:49:30Z</dc:date>
    </item>
  </channel>
</rss>

