<?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 perform tabls in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895069#M680550</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;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 DATA: BEGIN OF rtab ,
        sign(1)   TYPE c,
        option(2) TYPE c,
        low   TYPE datum,
        high  TYPE datum,
      END OF rtab .
 
 DATA: r_sel TYPE STANDARD TABLE  OF rtab.
 
 DATA: wa_sel LIKE rtab.
 
 
 PERFORM define-periods TABLES r_sel
                        USING date_from1 date_to1
                              date_from2  date_to2. 
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  define-periods
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_DATE_FROM1  text
*      --&amp;gt;P_DATE_TO1  text
*      --&amp;gt;P_DATE_FROM2  text
*      --&amp;gt;P_DATE_TO2  text
*      --&amp;gt;P_R_SEL  text
*----------------------------------------------------------------------*
FORM define-periods  TABLES p_r_sel
                     USING  p_date_from1
                            p_date_to1
                            p_date_from2
                            p_date_to2. 
  RANGES: r_per1 FOR sy-datum .
  RANGES: r_per2 FOR sy-datum .
 
 
  MOVE 'I' TO r_per1-sign .
  MOVE 'BT' TO r_per1-option .
  CONCATENATE p_date_from1 '01' INTO r_per1-low .
  IF p_date_to1 IS INITIAL .
    PERFORM last-day
       USING p_date_from1
       CHANGING r_per1-high .
  ELSE.
    PERFORM last-day
        USING p_date_to1
        CHANGING r_per2-high.
 
  ENDIF .
  APPEND r_per1 .
 
  MOVE 'I' TO r_per2-sign .
  MOVE 'BT' TO r_per2-option .
  CONCATENATE p_date_from2 '01' INTO r_per2-low .
  IF p_date_to2 IS INITIAL .
    PERFORM last-day
       USING p_date_from2
       CHANGING r_per2-high .
  ELSE.
    PERFORM last-day
      USING p_date_to2
      CHANGING r_per1-high.
  ENDIF .
  APPEND r_per2 .
 
"here i append r_sel 
  MOVE r_per1-sign TO wa_sel-sign.
  MOVE r_per1-option TO wa_sel-option .
  MOVE r_per1-low TO wa_sel-low .
  MOVE r_per1-high TO wa_sel-high .
  APPEND wa_sel to p_r_sel .

  MOVE r_per2-sign TO wa_sel-sign .
  MOVE r_per2-option TO wa_sel-option .
  MOVE r_per2-low TO wa_sel-low .
  MOVE r_per2-high TO wa_sel-high .
  APPEND wa_sel to p_r_sel .
 
ENDFORM.                    " define-periods
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Oct 2007 17:23:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-16T17:23:28Z</dc:date>
    <item>
      <title>help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895068#M680549</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;i doing that perform and i wont to use table r_sel not only in the perform i try with perform tables but i have an erorr &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my data and call perform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

 DATA: BEGIN OF rtab ,
        sign(1)   TYPE c,
        option(2) TYPE c,
        low   TYPE datum,
        high  TYPE datum,
      END OF rtab .

 DATA: r_sel TYPE STANDARD TABLE  OF rtab.



  PERFORM define-periods USING date_from1 date_to1
                               date_from2  date_to2 TABLES r_sel.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

"this is the form

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  define-periods
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_DATE_FROM1  text
*      --&amp;gt;P_DATE_TO1  text
*      --&amp;gt;P_DATE_FROM2  text
*      --&amp;gt;P_DATE_TO2  text
*      --&amp;gt;P_R_SEL  text
*----------------------------------------------------------------------*
FORM define-periods  USING    p_date_from1
                              p_date_to1
                              p_date_from2
                              p_date_to2
                     TABLES   p_r_sel .   "i think the problem is here i i try with structre rtab buti have eroor to 


  RANGES: r_per1 FOR sy-datum .
  RANGES: r_per2 FOR sy-datum .



  MOVE 'I' TO r_per1-sign .
  MOVE 'BT' TO r_per1-option .
  CONCATENATE p_date_from1 '01' INTO r_per1-low .
  IF p_date_to1 IS INITIAL .
    PERFORM last-day
       USING p_date_from1
       CHANGING r_per1-high .
  ELSE.
    PERFORM last-day
        USING p_date_to1
        CHANGING r_per2-high.

  ENDIF .
  APPEND r_per1 .

  MOVE 'I' TO r_per2-sign .
  MOVE 'BT' TO r_per2-option .
  CONCATENATE p_date_from2 '01' INTO r_per2-low .
  IF p_date_to2 IS INITIAL .
    PERFORM last-day
       USING p_date_from2
       CHANGING r_per2-high .
  ELSE.
    PERFORM last-day
      USING p_date_to2
      CHANGING r_per1-high.
  ENDIF .
  APPEND r_per2 .

"here i append r_sel 
  MOVE r_per1-sign TO r_sel-sign.
  MOVE r_per1-option TO r_sel-option .
  MOVE r_per1-low TO r_sel-low .
  MOVE r_per1-high TO r_sel-high .
  APPEND r_sel .
  MOVE r_per2-sign TO r_sel-sign .
  MOVE r_per2-option TO r_sel-option .
  MOVE r_per2-low TO r_sel-low .
  MOVE r_per2-high TO r_sel-high .
  APPEND r_sel .

ENDFORM.                    " define-periods

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;the first erorr is:&lt;/P&gt;&lt;P&gt;	The field "R_SEL" is unknown, but there is a field with the similar			name "P_R_SEL". "P_R_SEL".		&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;when i change it to p_r_sel&lt;/P&gt;&lt;P&gt;i get erorr &lt;/P&gt;&lt;P&gt;The data object "P_R_SEL" has no structure and therefore no component	called "SIGN". called "SIGN".		&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>Tue, 16 Oct 2007 17:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895068#M680549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895069#M680550</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;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 DATA: BEGIN OF rtab ,
        sign(1)   TYPE c,
        option(2) TYPE c,
        low   TYPE datum,
        high  TYPE datum,
      END OF rtab .
 
 DATA: r_sel TYPE STANDARD TABLE  OF rtab.
 
 DATA: wa_sel LIKE rtab.
 
 
 PERFORM define-periods TABLES r_sel
                        USING date_from1 date_to1
                              date_from2  date_to2. 
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  define-periods
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_DATE_FROM1  text
*      --&amp;gt;P_DATE_TO1  text
*      --&amp;gt;P_DATE_FROM2  text
*      --&amp;gt;P_DATE_TO2  text
*      --&amp;gt;P_R_SEL  text
*----------------------------------------------------------------------*
FORM define-periods  TABLES p_r_sel
                     USING  p_date_from1
                            p_date_to1
                            p_date_from2
                            p_date_to2. 
  RANGES: r_per1 FOR sy-datum .
  RANGES: r_per2 FOR sy-datum .
 
 
  MOVE 'I' TO r_per1-sign .
  MOVE 'BT' TO r_per1-option .
  CONCATENATE p_date_from1 '01' INTO r_per1-low .
  IF p_date_to1 IS INITIAL .
    PERFORM last-day
       USING p_date_from1
       CHANGING r_per1-high .
  ELSE.
    PERFORM last-day
        USING p_date_to1
        CHANGING r_per2-high.
 
  ENDIF .
  APPEND r_per1 .
 
  MOVE 'I' TO r_per2-sign .
  MOVE 'BT' TO r_per2-option .
  CONCATENATE p_date_from2 '01' INTO r_per2-low .
  IF p_date_to2 IS INITIAL .
    PERFORM last-day
       USING p_date_from2
       CHANGING r_per2-high .
  ELSE.
    PERFORM last-day
      USING p_date_to2
      CHANGING r_per1-high.
  ENDIF .
  APPEND r_per2 .
 
"here i append r_sel 
  MOVE r_per1-sign TO wa_sel-sign.
  MOVE r_per1-option TO wa_sel-option .
  MOVE r_per1-low TO wa_sel-low .
  MOVE r_per1-high TO wa_sel-high .
  APPEND wa_sel to p_r_sel .

  MOVE r_per2-sign TO wa_sel-sign .
  MOVE r_per2-option TO wa_sel-option .
  MOVE r_per2-low TO wa_sel-low .
  MOVE r_per2-high TO wa_sel-high .
  APPEND wa_sel to p_r_sel .
 
ENDFORM.                    " define-periods
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:23:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895069#M680550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895070#M680551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this out -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have modified your code -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM define-periods &amp;lt;b&amp;gt;TABLES r_sel&lt;/P&gt;&lt;P&gt;                       uSING date_from1 date_to1&lt;/P&gt;&lt;P&gt;                             date_from2  date_to2&amp;lt;/b&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  define-periods&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;----&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;P_DATE_FROM1  text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_DATE_TO1  text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_DATE_FROM2  text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_DATE_TO2  text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_R_SEL  text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM define-periods &amp;lt;b&amp;gt;TABLES   P_R_SEL STRUCTURE rtab&lt;/P&gt;&lt;P&gt;  USING    P_DATE_FROM1&lt;/P&gt;&lt;P&gt;                              P_DATE_TO1&lt;/P&gt;&lt;P&gt;                              P_DATE_FROM2&lt;/P&gt;&lt;P&gt;                              P_DATE_TO2&amp;lt;/b&amp;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; RANGES: r_per1 FOR sy-datum .&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; RANGES: r_per2 FOR sy-datum .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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; MOVE 'I' TO r_per1-sign .&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; MOVE 'BT' TO r_per1-option .&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CONCATENATE p_date_from1 '01' INTO r_per1-low .&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; IF p_date_to1 IS INITIAL .&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   PERFORM last-day&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      USING p_date_from1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CHANGING r_per1-high .&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ELSE.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   PERFORM last-day&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       USING p_date_to1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       CHANGING r_per2-high.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ENDIF .&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; APPEND r_per1 .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDFORM.                    " define-periods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. Check the sequence of TABLES and USING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:26:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895070#M680551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895071#M680552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ferry &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thankes for your replay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i cange it but i have erorr &lt;/P&gt;&lt;P&gt;The data object "R_SEL" has no structure and therefore no component&lt;/P&gt;&lt;P&gt;called "SIGN". called "SIGN".		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:27:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895071#M680552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895072#M680553</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 use the TABLES addition in the FORM definition, but what i usually do is define a table type and add it to the CHANGING parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM just_do_it USING a type c&lt;/P&gt;&lt;P&gt;                         CHANGING pi_tt type tt_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where tt_table is a table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Hans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:28:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895072#M680553</guid>
      <dc:creator>h_senden2</dc:creator>
      <dc:date>2007-10-16T17:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895073#M680554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ashish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thankes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i try it but i have the same erorr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:32:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895073#M680554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895074#M680555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to declare workarea explicitly for R_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And use this while inserting data to P_R_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: r_sel TYPE STANDARD TABLE  OF rtab,&lt;/P&gt;&lt;P&gt;      wa_sel type rtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later in FORM routine code -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append WA_SEL tp P_R_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:32:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895074#M680555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895075#M680556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ashish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i try it but i have the erorr here &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt;MOVE r_per1-sign TO r_sel-sign.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  MOVE r_per1-option TO r_sel-option .&lt;/P&gt;&lt;P&gt;  MOVE r_per1-low TO r_sel-low .&lt;/P&gt;&lt;P&gt;  MOVE r_per1-high TO r_sel-high .&lt;/P&gt;&lt;P&gt;  APPEND r_sel .&lt;/P&gt;&lt;P&gt;  MOVE r_per2-sign TO r_sel-sign .&lt;/P&gt;&lt;P&gt;  MOVE r_per2-option TO r_sel-option .&lt;/P&gt;&lt;P&gt;  MOVE r_per2-low TO r_sel-low .&lt;/P&gt;&lt;P&gt;  MOVE r_per2-high TO r_sel-high .&lt;/P&gt;&lt;P&gt;  APPEND r_sel .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the erorr:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	The field "R_SEL" is unknown, but there is a field with the similar			name "P_R_SEL". "P_R_SEL".		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when i change it to &lt;/P&gt;&lt;P&gt;p_r_sel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i get this erorr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	name "P_R_SEL". "P_R_SEL".		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data object "P_R_SEL" does not have a component called "SIGN".		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:37:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895075#M680556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895076#M680557</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;Please try this again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 DATA: BEGIN OF rtab ,
        sign(1)   TYPE c,
        option(2) TYPE c,
        low   TYPE datum,
        high  TYPE datum,
      END OF rtab .
 
 DATA: r_sel TYPE STANDARD TABLE  OF rtab.
 
 DATA: wa_sel LIKE rtab.                "Add here
 
 
 PERFORM define-periods TABLES r_sel    "Change here
                        USING date_from1 date_to1
                              date_from2  date_to2. 
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  define-periods
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_DATE_FROM1  text
*      --&amp;gt;P_DATE_TO1  text
*      --&amp;gt;P_DATE_FROM2  text
*      --&amp;gt;P_DATE_TO2  text
*      --&amp;gt;P_R_SEL  text
*----------------------------------------------------------------------*
FORM define-periods  TABLES p_r_sel       "Change here
                     USING  p_date_from1
                            p_date_to1
                            p_date_from2
                            p_date_to2. 

  RANGES: r_per1 FOR sy-datum .
  RANGES: r_per2 FOR sy-datum .
 
 
  MOVE 'I' TO r_per1-sign .
  MOVE 'BT' TO r_per1-option .
  CONCATENATE p_date_from1 '01' INTO r_per1-low .
  IF p_date_to1 IS INITIAL .
    PERFORM last-day
       USING p_date_from1
       CHANGING r_per1-high .
  ELSE.
    PERFORM last-day
        USING p_date_to1
        CHANGING r_per2-high.
 
  ENDIF .
  APPEND r_per1 .
 
  MOVE 'I' TO r_per2-sign .
  MOVE 'BT' TO r_per2-option .
  CONCATENATE p_date_from2 '01' INTO r_per2-low .
  IF p_date_to2 IS INITIAL .
    PERFORM last-day
       USING p_date_from2
       CHANGING r_per2-high .
  ELSE.
    PERFORM last-day
      USING p_date_to2
      CHANGING r_per1-high.
  ENDIF .
  APPEND r_per2 .
 
  MOVE r_per1-sign TO wa_sel-sign.          "Change here
  MOVE r_per1-option TO wa_sel-option.      "Change here 
  MOVE r_per1-low TO wa_sel-low.            "Change here 
  MOVE r_per1-high TO wa_sel-high.          "Change here
  APPEND wa_sel to p_r_sel .                "Change here
  CLEAR wa_sel.                             "Add here 

  MOVE r_per2-sign TO wa_sel-sign .         "Change here
  MOVE r_per2-option TO wa_sel-option.      "Change here
  MOVE r_per2-low TO wa_sel-low.            "Change here
  MOVE r_per2-high TO wa_sel-high .         "Change here
  APPEND wa_sel to p_r_sel.                 "Change here
  CLEAR wa_sel.                             "Add here
 
ENDFORM.                    " define-periods
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895076#M680557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895077#M680558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare a work area in your data declaration -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_sel type rtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your  FORM code, you need to assign values to this work area.&lt;/P&gt;&lt;P&gt;CLEAR WA_SEL.&lt;/P&gt;&lt;P&gt;MOVE r_per1-sign TO WA_sel-sign.&lt;/P&gt;&lt;P&gt;MOVE r_per1-option TO WA_sel-option .&lt;/P&gt;&lt;P&gt;MOVE r_per1-low TO WA_sel-low .&lt;/P&gt;&lt;P&gt;MOVE r_per1-high TO WA_sel-high .&lt;/P&gt;&lt;P&gt;APPEND WA_sel TO P_R_SEL.&lt;/P&gt;&lt;P&gt;MOVE r_per2-sign TO AW_sel-sign .&lt;/P&gt;&lt;P&gt;MOVE r_per2-option TO WA_sel-option .&lt;/P&gt;&lt;P&gt;MOVE r_per2-low TO WA_sel-low .&lt;/P&gt;&lt;P&gt;MOVE r_per2-high TO WA_sel-high .&lt;/P&gt;&lt;P&gt;APPEND WA_sel TO P_R_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should help you out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REMEMBER, R_SEL is named as P_R_SEL in the FORM so you need to use P_R_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:41:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895077#M680558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895078#M680559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ferry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thankes &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i try exactly like u write and i have this erorr &lt;/P&gt;&lt;P&gt;Field "WA_SEL-SIGN" is unknown. It is neither in one of the specified	tables nor defined by a "DATA" statement.	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe becouse i do that in FM &lt;/P&gt;&lt;P&gt;i have to declare the data in other place&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895078#M680559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895079#M680560</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;Did you declare this line? Please check my codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: wa_sel LIKE rtab.                "Add here
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:47:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895079#M680560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895080#M680561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ferry &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes i do that this is my new code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 DATA: BEGIN OF rtab ,
        sign(1)   TYPE c,
        option(2) TYPE c,
        low   TYPE datum,
        high  TYPE datum,
      END OF rtab .

 DATA: r_sel TYPE  TABLE  OF rtab,
       wa_sel LIKE rtab.



  PERFORM define-period TABLES r_sel USING date_from1 date_to1
                                           date_from2 date_to2 .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_R_SEL  text
*      --&amp;gt;P_DATE_FROM1  text
*      --&amp;gt;P_DATE_TO1  text
*      --&amp;gt;P_DATE_FROM2  text
*      --&amp;gt;P_DATE_TO2  text
*----------------------------------------------------------------------*
FORM define-period  TABLES   p_r_sel STRUCTURE rtab
                    USING    p_date_from1
                             p_date_to1
                             p_date_from2
                             p_date_to2.

  RANGES: r_per1 FOR sy-datum .
  RANGES: r_per2 FOR sy-datum .



  MOVE 'I' TO r_per1-sign .
  MOVE 'BT' TO r_per1-option .
  CONCATENATE p_date_from1 '01' INTO r_per1-low .
  IF p_date_to1 IS INITIAL .
    PERFORM last-day
       USING p_date_from1
       CHANGING r_per1-high .
  ELSE.
    PERFORM last-day
        USING p_date_to1
        CHANGING r_per2-high.

  ENDIF .
  APPEND r_per1 .

  MOVE 'I' TO r_per2-sign .
  MOVE 'BT' TO r_per2-option .
  CONCATENATE p_date_from2 '01' INTO r_per2-low .
  IF p_date_to2 IS INITIAL .
    PERFORM last-day
       USING p_date_from2
       CHANGING r_per2-high .
  ELSE.
    PERFORM last-day
      USING p_date_to2
      CHANGING r_per1-high.
  ENDIF .
  APPEND r_per2 .

  MOVE: r_per1-sign TO wa_sel-sign,
        r_per1-option TO wa_sel-option ,
        r_per1-low TO wa_sel-low ,
        r_per1-high TO wa_sel-high .
  APPEND wa_sel TO p_r_sel .

  MOVE r_per2-sign TO wa_sel-sign .
  MOVE r_per2-option TO wa_sel-option .
  MOVE r_per2-low TO wa_sel-low .
  MOVE r_per2-high TO wa_sel-high .
  APPEND wa_sel TO p_r_sel .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:50:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895080#M680561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895081#M680562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So after this change, are you still getting an error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes, what is the error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:54:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895081#M680562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895082#M680563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ashish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thankes for your time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i get this erorr:&lt;/P&gt;&lt;P&gt;Field "WA_SEL-SIGN" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement. &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:55:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895082#M680563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895083#M680564</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;Please change to this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF rtab ,
        sign(1)   TYPE c,
        option(2) TYPE c,
        low   TYPE datum,
        high  TYPE datum,
      END OF rtab .
 
DATA: r_sel TYPE  TABLE  OF rtab,
      wa_sel LIKE line of r_sel.
 ...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:56:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895083#M680564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895084#M680565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure - the code passes a syntax check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:58:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895084#M680565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895085#M680566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ferry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i try it myself but its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe the erorr is becouse i use fm and i do that perform in top include?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:58:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895085#M680566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895086#M680567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do one thing. Declare WA_SEL in your FORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you are using this only in your FORM, let it be declared as Local work area and try again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I check my program but it is not giving an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 17:59:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895086#M680567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T17:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform tabls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895087#M680568</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;It is weird ... it is fine in my program.&lt;/P&gt;&lt;P&gt;Try to declare in top include. Then check and generate from main program.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 18:01:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform-tabls/m-p/2895087#M680568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T18:01:41Z</dc:date>
    </item>
  </channel>
</rss>

