<?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: Perform in SAPSCRIPT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570125#M257444</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;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM &amp;lt;function&amp;gt; IN PROGRAM &amp;lt;progr&amp;gt; &lt;/P&gt;&lt;P&gt;USING &amp;amp;val1&amp;amp;&lt;/P&gt;&lt;P&gt;USING &amp;amp;val2&amp;amp; &lt;/P&gt;&lt;P&gt;CHANGING &amp;amp;SUM&amp;amp; &lt;/P&gt;&lt;P&gt;ENDPERFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls mrk hlpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Oct 2006 13:31:03 GMT</pubDate>
    <dc:creator>anversha_s</dc:creator>
    <dc:date>2006-10-04T13:31:03Z</dc:date>
    <item>
      <title>Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570123#M257442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to pss 2 vriables through perfrom and then sum it up, by changing i will get back that summed variable to the Script.&lt;/P&gt;&lt;P&gt;Those 2 variables r Integers. now pls provide me the code for this, its urgent?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:27:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570123#M257442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570124#M257443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com//abap/how-to-call-a-subroutine-form-sapscripts.htm" target="test_blank"&gt;http://www.sap-basis-abap.com//abap/how-to-call-a-subroutine-form-sapscripts.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;more help on this.&lt;/P&gt;&lt;P&gt;here is the total logic for your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the script layout,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;/: PERFORM Get_Pack IN PROGRAM ZTEST
/: USING &amp;amp;V_FIELD1&amp;amp;
/: USING &amp;amp;V_FIELD2&amp;amp;
/: CHANGING &amp;amp;RESULT&amp;amp;
*----and so onn
/: ENDPERFORM&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;/* HERE WE are printing the result&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*  result : &amp;amp;RESULT&amp;amp;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the program,&lt;/P&gt;&lt;P&gt;all the paramters you pass from SCRIPT with USING command will come into ITAB.&lt;/P&gt;&lt;P&gt;all parameters with CHANGING command will comes into OTAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM  Get_Pack TABLES ITAB   STRUCTURE ITCSY
                      OTAB   STRUCTURE ITCSY.
data: v_field1 type i,
      v_field2 type i,
      v_result type i.
 
*--TO read the values from the ITAB you have to use this logic.
  READ TABLE ITAB WITH KEY NAME = &amp;lt;b&amp;gt;'V_FIELD1'&amp;lt;/b&amp;gt;
         TRANSPORTING VALUE.
  IF SY-SUBRC = 0.
    CONDENSE ITAB-VALUE.
    V_FIELD1 = ITAB-VALUE.
  ENDIF.

  READ TABLE ITAB WITH KEY NAME = &amp;lt;b&amp;gt;'V_FIELD2'&amp;lt;/b&amp;gt;
         TRANSPORTING VALUE.
  IF SY-SUBRC = 0.
    CONDENSE ITAB-VALUE.
    V_FIELD2 = ITAB-VALUE.
  ENDIF.

*--to modify PACK value
*--write your logic to get the value inTO RESULT. 
   V_RESULT = V_FIELD1 + V_FIELD2.

   OTAB-VALUE = V_RESULT.
   condense OTAB-VALUE.
   MODIFY OTAB  TRANSPORTING VALUE 
             WHERE &amp;lt;b&amp;gt;NAME = 'RESULT'&amp;lt;/b&amp;gt;.
ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create the program either as Executable or subroutine pool in SE38. there will not be any difference,i guess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:29:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570124#M257443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570125#M257444</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;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM &amp;lt;function&amp;gt; IN PROGRAM &amp;lt;progr&amp;gt; &lt;/P&gt;&lt;P&gt;USING &amp;amp;val1&amp;amp;&lt;/P&gt;&lt;P&gt;USING &amp;amp;val2&amp;amp; &lt;/P&gt;&lt;P&gt;CHANGING &amp;amp;SUM&amp;amp; &lt;/P&gt;&lt;P&gt;ENDPERFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls mrk hlpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570125#M257444</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-04T13:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570126#M257445</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 the variables from the program in the sapscript editor using Global Varaiables &amp;amp; add the contents and store the same in any of the varaiables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g., Say you have 2 varaiables Z1 &amp;amp; Z2. Use the option &lt;/P&gt;&lt;P&gt;Z1 = z1 + z2. and u wl get your solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570126#M257445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570127#M257446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello RAMADA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM GET_SUM IN PROGRAM Z_SUM CHANGING INT1 INT2 SUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM GET_SUM TABLES IN_PAR  STRUCTURE ITCSY&lt;/P&gt;&lt;P&gt;                         OUT_PAR STRUCTURE ITCSY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: num1 type i,&lt;/P&gt;&lt;P&gt;      num2 type i,&lt;/P&gt;&lt;P&gt;      sum type i.  &lt;/P&gt;&lt;P&gt; READ TABLE IN_PAR WITH KEY NAME = 'INT1'.&lt;/P&gt;&lt;P&gt;if sy-subrc  = 0.&lt;/P&gt;&lt;P&gt;CONDENSE IN_PAR-VALUE NO-GAPS.&lt;/P&gt;&lt;P&gt;num1 = IN_PAR-VALUE.&lt;/P&gt;&lt;P&gt;READ TABLE IN_PAR WITH KEY NAME = 'INT1'.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;CONDENSE IN_PAR-VALUE NO-GAPS.&lt;/P&gt;&lt;P&gt;num2= IN_PAR-VALUE.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;sum = num1 + num2.&lt;/P&gt;&lt;P&gt;READ TABLE IN_PAR WITH KEY NAME = 'SUM'.&lt;/P&gt;&lt;P&gt;OUT_PAR-VALUE = sum.&lt;/P&gt;&lt;P&gt;MODIFY OUT_PAR INDEX SY-TABIX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:34:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570127#M257446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570128#M257447</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;&lt;/P&gt;&lt;P&gt;A sample code of how to use performs in sap scripts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In script program,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/:PERFORM GET_SBGRP_STEXT IN PROGRAM ZSDSCRIPT&lt;/P&gt;&lt;P&gt;/:USING &amp;amp;GV_MATNR&amp;amp;&lt;/P&gt;&lt;P&gt;/:CHANGING &amp;amp;GV_STEXT&amp;amp;&lt;/P&gt;&lt;P&gt;/:TABLES INPUT_TABLE&lt;/P&gt;&lt;P&gt;/: OUTPUT_TABLE&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;In program ZSDSCRIPT,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form get_sbgrp_stext tables intab structure itcsy&lt;/P&gt;&lt;P&gt;outab structure itcsy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: LV_MATNR LIKE MARA-MATNR,&lt;/P&gt;&lt;P&gt;LV_TEXT(3) TYPE C VALUE 'ABC'.&lt;/P&gt;&lt;P&gt;clear intab.&lt;/P&gt;&lt;P&gt;read table intab with key name = 'GV_MATNR'.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;lv_MATNR = intab-value.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR OUTTAB.&lt;/P&gt;&lt;P&gt;READ TABLE OUTAB WITH KEY NAME = 'GV_STEXT'.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;OUTAB-VALUE = LV_TEXT.&lt;/P&gt;&lt;P&gt;modify outab index sy-tabix.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:49:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570128#M257447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570129#M257448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just Copy and paste theis code, this will work for you and the Field &amp;amp;RESULT&amp;amp; will avilable in the SCRIPT with result ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the script,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: PERFORM SUM IN PROGRAM ZPROGRAM&lt;/P&gt;&lt;P&gt;/: USING &amp;amp;VAR1&amp;amp;&lt;/P&gt;&lt;P&gt;/: USING &amp;amp;VAR2&amp;amp;&lt;/P&gt;&lt;P&gt;/: CHANGING &amp;amp;RESULT&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;In the program(ZPROGRAM), we need to write the form ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM SUM TABLES INTAB   STRUCTURE ITCSY&lt;/P&gt;&lt;P&gt;                OUTTAB  STRUCTURE ITCSY.&lt;/P&gt;&lt;P&gt;data: field1 type i,&lt;/P&gt;&lt;P&gt;      field2 type i,&lt;/P&gt;&lt;P&gt;      result type i.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*--TO read the values from the ITAB you have to use this logic.&lt;/P&gt;&lt;P&gt;  READ TABLE INTAB WITH KEY NAME = 'VAR1'.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    FIELD1 = INTAB-VALUE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  READ TABLE INTAB WITH KEY NAME = 'VAR2'.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    FIELD2 = ITAB-VALUE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   RESULT = V_FIELD1 + V_FIELD2.&lt;/P&gt;&lt;P&gt; READ TABLE OUTTAB INDEX 1.&lt;/P&gt;&lt;P&gt; IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;   OTAB-VALUE = RESULT.&lt;/P&gt;&lt;P&gt;   MODIFY OUTTAB INDEX 1 .&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:56:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570129#M257448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570130#M257449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what if i want Decimals to be added and my result should also be in decimals? i done with the same code , but i am geting errors? pls help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 14:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570130#M257449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T14:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570131#M257450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thnks Srikant, i want to add 2 decimals and then my result shud also be in decimals? how shall i do it?&lt;/P&gt;&lt;P&gt;i done with the same logic but i am getting errors?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 14:12:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570131#M257450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T14:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Perform in SAPSCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570132#M257451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramada,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. while calling subroutines from sapscripts,&lt;/P&gt;&lt;P&gt;there is a special technique,&lt;/P&gt;&lt;P&gt;which has got its own limitations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. &lt;/P&gt;&lt;P&gt;FORM abc&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;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;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. The perform in se38 program should be of the&lt;/P&gt;&lt;P&gt;above format only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. We cannot pass internal tables.&lt;/P&gt;&lt;P&gt;5. Rather we need to pass&lt;/P&gt;&lt;P&gt;VARIABLE NAME&lt;/P&gt;&lt;P&gt;VARIABLE VALUE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(see the structure of itcsy in se11)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. In this form, we have to read&lt;/P&gt;&lt;P&gt;the internal table in_tab&lt;/P&gt;&lt;P&gt;to capture the variable name and its value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. Similary, to return the values,&lt;/P&gt;&lt;P&gt;we have to put one record (for each variable)&lt;/P&gt;&lt;P&gt;in out_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 14:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-in-sapscript/m-p/1570132#M257451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T14:12:49Z</dc:date>
    </item>
  </channel>
</rss>

