<?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: Doubt in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460001#M217197</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;:PERFORM get_date IN PROGRAM zreport &lt;/P&gt;&lt;P&gt;/:USING &amp;amp;SALESORDER&amp;amp;&lt;/P&gt;&lt;P&gt;/:CHANGING &amp;amp;S_DATE&amp;amp;&lt;/P&gt;&lt;P&gt;/:ENDPERFORM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can print S_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write this code in the new ABAP program would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zreport.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM get_date TABLES in_tab STRUCTURE ITCSY &lt;/P&gt;&lt;P&gt;out_tab STRUCTURE ITCSY .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE in_tab INDEX 1.&lt;/P&gt;&lt;P&gt;SELECT some_date FROM ztab &lt;/P&gt;&lt;P&gt;WHERE salesorder = in_tab-value.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;READ TABLE out-tab INDEX 1.&lt;/P&gt;&lt;P&gt;MOVE ztab-somedate TO out_tab-value&lt;/P&gt;&lt;P&gt;MODIFY out_tab INDEX 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Jun 2006 06:43:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-21T06:43:46Z</dc:date>
    <item>
      <title>Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460000#M217196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone explain me the following code written for the Sapscript.  The First part is written SE38 and next part in SE71 - Text Element layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to know the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  How the perform works in Text Element Layout.&lt;/P&gt;&lt;P&gt;2.  What is Intab and Outtab.&lt;/P&gt;&lt;P&gt;3.  What is table structure ITCSY.&lt;/P&gt;&lt;P&gt;4.  What is &amp;amp;CHANGING&amp;amp;.&lt;/P&gt;&lt;P&gt;5.  What is &amp;amp;USING&amp;amp;.&lt;/P&gt;&lt;P&gt;6.  How is the code written in SE38 (Print program) links with the Text Element layout part.&lt;/P&gt;&lt;P&gt;7.  Why perform is used in Text Element layout instead of fetching the necessary data in an internal table and to use the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt; SE-38 &amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  ZSEL_FIELD&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;INTAB      text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;OUTAB1     text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM ZSEL_FIELD TABLES INTAB  STRUCTURE ITCSY&lt;/P&gt;&lt;P&gt;                     OUTAB1 STRUCTURE ITCSY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE INTAB INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM VBRK WHERE VBELN = INTAB-VALUE.&lt;/P&gt;&lt;P&gt;  READ TABLE INTAB INDEX 2.&lt;/P&gt;&lt;P&gt;  SELECT * FROM KONV INTO CORRESPONDING FIELDS OF TABLE ITAB1&lt;/P&gt;&lt;P&gt;                    WHERE KNUMV = VBRK-KNUMV&lt;/P&gt;&lt;P&gt;                     AND  KPOSN = INTAB-VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT ITAB1.&lt;/P&gt;&lt;P&gt;    IF ITAB1-KSCHL = 'ZFPR'.&lt;/P&gt;&lt;P&gt;      WA_ZFPR = ITAB1-KWERT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF ITAB1-KSCHL = 'ZABT'.&lt;/P&gt;&lt;P&gt;      WA_ZABT = ITAB1-KWERT.&lt;/P&gt;&lt;P&gt;      WA_RABT = ITAB1-KBETR.&lt;/P&gt;&lt;P&gt;      WA_RABT = WA_RABT / 10.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF ITAB1-KSCHL = 'JECS'.&lt;/P&gt;&lt;P&gt;      WA_JECS = ITAB1-KWERT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WA_ZFPR1 = WA_ZFPR.&lt;/P&gt;&lt;P&gt;  WA_ZFPR2 = WA_ZFPR1.&lt;/P&gt;&lt;P&gt;  CONDENSE WA_ZFPR2 NO-GAPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'Z_CHAR_CURR_CONVERSION'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      AMOUNT  = WA_ZFPR2&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      AMOUNT1 = WA_ZFPR2.&lt;/P&gt;&lt;P&gt;  CONDENSE WA_ZFPR2 NO-GAPS.&lt;/P&gt;&lt;P&gt;  READ TABLE OUTAB1 INDEX 1.&lt;/P&gt;&lt;P&gt;  MOVE WA_ZFPR2 TO OUTAB1-VALUE.&lt;/P&gt;&lt;P&gt;  MODIFY OUTAB1 INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WA_ZABT1 = WA_ZABT.&lt;/P&gt;&lt;P&gt;  WA_ZABT2 = WA_ZABT1.&lt;/P&gt;&lt;P&gt;  CONDENSE WA_ZABT2 NO-GAPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'Z_CHAR_CURR_CONVERSION'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      AMOUNT  = WA_ZABT2&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      AMOUNT1 = WA_ZABT2.&lt;/P&gt;&lt;P&gt;  CONDENSE WA_ZABT2 NO-GAPS.&lt;/P&gt;&lt;P&gt;  READ TABLE OUTAB1 INDEX 2.&lt;/P&gt;&lt;P&gt;  MOVE WA_ZABT2 TO OUTAB1-VALUE.&lt;/P&gt;&lt;P&gt;  MODIFY OUTAB1 INDEX 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE OUTAB1 INDEX 3.&lt;/P&gt;&lt;P&gt;  WA_JECS1 = WA_JECS.&lt;/P&gt;&lt;P&gt;  MOVE WA_JECS1 TO OUTAB1-VALUE.&lt;/P&gt;&lt;P&gt;  MODIFY OUTAB1 INDEX 3.&lt;/P&gt;&lt;P&gt;  READ TABLE OUTAB1 INDEX 4.&lt;/P&gt;&lt;P&gt;  WA_RABT1 = WA_RABT.&lt;/P&gt;&lt;P&gt;  MOVE WA_RABT1 TO OUTAB1-VALUE.&lt;/P&gt;&lt;P&gt;  MODIFY OUTAB1 INDEX 4.&lt;/P&gt;&lt;P&gt;  CLEAR ITAB1.&lt;/P&gt;&lt;P&gt;  REFRESH ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.              " ZSEL_FIELD&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;&amp;lt;&amp;lt;  SE71  -  TEXT ELEMENT LAYOUT  &amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/:   PERFORM ZSEL_FIELD IN PROGRAM ZJ1I_ADD&lt;/P&gt;&lt;P&gt;/:   USING &amp;amp;J_1IEXCHDR-RDOC&amp;amp;&lt;/P&gt;&lt;P&gt;/:   USING &amp;amp;J_1IEXCDTL-ZEILE&amp;amp;&lt;/P&gt;&lt;P&gt;/:   CHANGING &amp;amp;TEXT1&amp;amp;&lt;/P&gt;&lt;P&gt;/:   CHANGING &amp;amp;TEXT2&amp;amp;&lt;/P&gt;&lt;P&gt;/:   CHANGING &amp;amp;TEXT3&amp;amp;&lt;/P&gt;&lt;P&gt;/:   CHANGING &amp;amp;TEXT4&amp;amp;&lt;/P&gt;&lt;P&gt;/:   ENDPERFORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly explain the above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark K&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I1   &amp;amp;J_1IEXCDTL-ZEILE&amp;amp;,,&amp;amp;J_1IEXCDTL-MATNR&amp;amp;,,&amp;amp;J_1IEXCDTL-MENGE&amp;amp;,,&lt;/P&gt;&lt;P&gt;I1   &amp;amp;J_1IEXCDTL-MEINS&amp;amp;,,&amp;amp;TEXT1&amp;amp;,,&amp;amp;TEXT2&amp;amp;,,&amp;amp;J_1IEXCDTL- EXBAS(16.2R)&amp;amp;,,&lt;/P&gt;&lt;P&gt;I1   &amp;amp;J_1IEXCDTL-EXBED(16.2R)&amp;amp;,,&amp;amp;J_1IEXCDTL-ECS(13.2R)&amp;amp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jun 2006 06:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460000#M217196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-21T06:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460001#M217197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;:PERFORM get_date IN PROGRAM zreport &lt;/P&gt;&lt;P&gt;/:USING &amp;amp;SALESORDER&amp;amp;&lt;/P&gt;&lt;P&gt;/:CHANGING &amp;amp;S_DATE&amp;amp;&lt;/P&gt;&lt;P&gt;/:ENDPERFORM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can print S_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write this code in the new ABAP program would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zreport.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM get_date TABLES in_tab STRUCTURE ITCSY &lt;/P&gt;&lt;P&gt;out_tab STRUCTURE ITCSY .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE in_tab INDEX 1.&lt;/P&gt;&lt;P&gt;SELECT some_date FROM ztab &lt;/P&gt;&lt;P&gt;WHERE salesorder = in_tab-value.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;READ TABLE out-tab INDEX 1.&lt;/P&gt;&lt;P&gt;MOVE ztab-somedate TO out_tab-value&lt;/P&gt;&lt;P&gt;MODIFY out_tab INDEX 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jun 2006 06:43:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460001#M217197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-21T06:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460002#M217198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; here is the scenario where you need to write some FORMS in a Zprogram to fetch some values &amp;amp; get them in the script and finally print them on the layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example : we have a standard layout &amp;amp; driver program for PO . MEDRUCK is the layout name &amp;amp; some SAP* will be the driver program name. suppose for your client, he need some more details (like VENDOR country for example also needs to print on the layout,assume its not printing now).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what you have to do is &lt;/P&gt;&lt;P&gt;1. copy the layout to a new Z layout.&lt;/P&gt;&lt;P&gt;2. then your task would be printing of VENDOR COUNTRY on the layout. for that instead of changing the standard driver program or copying it to a new Z program for this simple addition, we will make use of PERFORM &amp;amp; FORM given by script.&lt;/P&gt;&lt;P&gt; WE WILL write a Z program and write a FORM which will take VENDOR NO as INPUT &amp;amp; fetch its country from LFA1 &amp;amp; sends back the VENDOR COUNTRY.&lt;/P&gt;&lt;P&gt;we will then call that form which is available in the program in the layout using PERFORM control command.&lt;/P&gt;&lt;P&gt;in that call,&lt;/P&gt;&lt;P&gt;USING : we use for sending the values from script to the program,(in our case, to fetch vendor country we need to send vendor no).&lt;/P&gt;&lt;P&gt;CHANGING is the parameters whose value will be populated in that form &amp;amp; comes as output to the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Intab and Outtab&lt;/P&gt;&lt;P&gt;  these both having same structure of ITCSY.&lt;/P&gt;&lt;P&gt;  this ITCSY having 2 fields NAME &amp;amp; VALUE.&lt;/P&gt;&lt;P&gt;  i mean, if you are sending VENDOR NO &amp;amp; FETCHING VENDOR COUNTRY this would as :&lt;/P&gt;&lt;P&gt;   your &amp;amp;LFA1-LIFNR&amp;amp; Will be the NAME &lt;/P&gt;&lt;P&gt;       and 100 is the value you are sending .&lt;/P&gt;&lt;P&gt;in the similar way,&lt;/P&gt;&lt;P&gt; if you want to modify the outtab for vendor country.&lt;/P&gt;&lt;P&gt; you have to say&lt;/P&gt;&lt;P&gt;   modify outtab where name = 'vend_country'.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jun 2006 07:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460002#M217198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-21T07:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460003#M217199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MARK,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.In the text element area you have just to write the perform.Form will be written in the print program.The output field value will be returned to the SAPSCRIPT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Intab and outtab is the same as using and changing that you use in the normal perform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. table structure ITCSY data structure for declaring intab and outtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&amp;amp;using&amp;amp; is field value that you are using from the FORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.&amp;amp;changing&amp;amp; is field value that you are changing in the Print program form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6.In the form with the perform you have written the Print program also from there it is linking the perform with the form iin the priint program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jun 2006 07:04:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460003#M217199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-21T07:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460004#M217200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;2. What is Intab and Outtab.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;u can give any name for those internal tables only difference is First table INTAB contains whatever give in under USING statement &amp;amp;J_1IEXCHDR-RDOC&amp;amp; &amp;amp;J_1IEXCDTL-ZEILE&amp;amp;&lt;/P&gt;&lt;P&gt;fields  without &amp;amp; thier values at runtime are stored .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second table OUTTAB contains whatever give in under CHANGING statement /: CHANGING &amp;amp;TEXT1&amp;amp; &amp;amp;TEXT2&amp;amp; &amp;amp;TEXT3&amp;amp;&lt;/P&gt;&lt;P&gt;&amp;amp;TEXT4&amp;amp;  fields without &amp;amp;thier values at runtime are stored .&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;3. What is table structure ITCSY.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ITCSY structure has 2 fields&lt;/P&gt;&lt;P&gt;NAME=&amp;gt;CHAR=&amp;gt;130=&amp;gt;Name of a program symbol (w/o &amp;amp;)&lt;/P&gt;&lt;P&gt;VALUE=&amp;gt;CHAR=&amp;gt;255=&amp;gt;Text symbol value&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;4. What is &amp;amp;CHANGING&amp;amp;.&lt;/P&gt;&lt;P&gt;5. What is &amp;amp;USING&amp;amp;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using &amp;amp;USING&amp;amp; fields value we change OUTTAB values those are automatically reflected in PERFORM statement under CHANGING &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6.&lt;/P&gt;&lt;P&gt;U have to write in SUbroutine .Only thing is Use the existing values using INTAB and also u can use SELECT quiries to get what u want .Change the INTAB table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat.O&amp;lt;/b&amp;gt;&amp;lt;b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jun 2006 07:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt/m-p/1460004#M217200</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2006-06-21T07:07:19Z</dc:date>
    </item>
  </channel>
</rss>

