<?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: ABAP statement problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043237#M1501007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Brad:&lt;/P&gt;&lt;P&gt;          Thank you very much. Thanks a lot for your help. It's look like work. For some situation still wrong, but it's OK to me.&lt;/P&gt;&lt;P&gt;Thank you to offer an opinion and the example. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Nicole Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Jul 2010 01:25:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-21T01:25:03Z</dc:date>
    <item>
      <title>ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043225#M1500995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all:&lt;/P&gt;&lt;P&gt;          Please help. &lt;/P&gt;&lt;P&gt;          If i will be create 25 add on tables, each table include the same fields for user id, create date, create time and terminal id. Each add on table will be create table maintenance.  For set these four fields value, my original as below, but it's will be a long statement. I want to know that have function or other statement to do this. Thanks a lot!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE p_dynnr.&lt;/P&gt;&lt;P&gt;    WHEN '0001'. "for add on table ZZRDF001&lt;/P&gt;&lt;P&gt;      zzrdf001-usnam = sy-uname. "user id&lt;/P&gt;&lt;P&gt;      zzrdf001-datum = sy-datum. "create/change date&lt;/P&gt;&lt;P&gt;      zzrdf001-uzeit = sy-uzeit. "create/change time&lt;/P&gt;&lt;P&gt;      zzrdf001-term  = p_term.    "terminal id&lt;/P&gt;&lt;P&gt;    WHEN '0002'. "for add on table ZZRDF01&lt;/P&gt;&lt;P&gt;      zzrdf01-usnam = sy-uname. "user id&lt;/P&gt;&lt;P&gt;      zzrdf01-datum = sy-datum. "create/change date&lt;/P&gt;&lt;P&gt;      zzrdf01-uzeit = sy-uzeit. "create/change time&lt;/P&gt;&lt;P&gt;      zzrdf01-term  = p_term.    "terminal id&lt;/P&gt;&lt;P&gt;    WHEN '0003'."for add on table ZZRDF02 &lt;/P&gt;&lt;P&gt;      zzrdf02-usnam = sy-uname. "user id&lt;/P&gt;&lt;P&gt;      zzrdf02-datum = sy-datum. "create/change date&lt;/P&gt;&lt;P&gt;      zzrdf02-uzeit = sy-uzeit. "create/change time&lt;/P&gt;&lt;P&gt;      zzrdf02-term  = p_term.    "terminal id&lt;/P&gt;&lt;P&gt;    WHEN '0005'. "for add on table ZZRDF04 &lt;/P&gt;&lt;P&gt;      zzrdf04-usnam = sy-uname. "user id&lt;/P&gt;&lt;P&gt;      zzrdf04-datum = sy-datum. "create/change date&lt;/P&gt;&lt;P&gt;      zzrdf04-uzeit = sy-uzeit. "create/change time&lt;/P&gt;&lt;P&gt;      zzrdf04-term  = p_term.    "terminal id&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use more descriptive subject lines from now on.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Jul 14, 2010 12:54 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 10:09:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043225#M1500995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-14T10:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043226#M1500996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try the following code to reduce the size and improve the readability&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : BEGIN OF y_struc,
          usnam LIKE zzrdf001-usnam,
          datum LIKE zzrdf001-datum,
          uzeit LIKE zzrdf001-uzeit,
          term  LIKE zzrdf001-term,
        END OF y_struc.

MOVE : sy-uname TO y_struc-usnam
     , sy-datum TO y_struc-datum
     , sy-uzeit TO y_struc-uzeit
     , p_term   TO y_struc-term
     .


CASE p_dynnr.

  WHEN '0001'. "for add on table ZZRDF001
    
    MOVE-CORRESPONDING y_struc TO zzrdf001.
    
  WHEN '0002'. "for add on table ZZRDF01
    
    MOVE-CORRESPONDING y_struc TO zzrdf01.
    
  WHEN '0003'."for add on table ZZRDF02
    
    MOVE-CORRESPONDING y_struc TO zzrdf02.
    
  WHEN '0005'. "for add on table ZZRDF04
    
    MOVE-CORRESPONDING y_struc TO zzrdf04.
    
ENDCASE.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can use teh MACROS for eliminating MOVE CORRESPONDENCE statement to improve the performance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : BEGIN OF y_struc,
          usnam LIKE zzrdf001-usnam,
          datum LIKE zzrdf001-datum,
          uzeit LIKE zzrdf001-uzeit,
          term  LIKE zzrdf001-term,
        END OF y_struc.

MOVE : sy-uname TO y_struc-usnam
     , sy-datum TO y_struc-datum
     , sy-uzeit TO y_struc-uzeit
     , p_term   TO y_struc-term
     .


CASE p_dynnr.
  
  WHEN '0001'. "for add on table ZZRDF001

    M_FILL_TABLE y_struc zzrdf001.

  WHEN '0002'. "for add on table ZZRDF01

    M_FILL_TABLE y_struc zzrdf01.

  WHEN '0003'."for add on table ZZRDF02

    M_FILL_TABLE y_struc zzrdf02.

  WHEN '0005'. "for add on table ZZRDF04

    M_FILL_TABLE y_struc zzrdf04.

ENDCASE.

DEFINE M_FILL_TABLE.

  MOVE : &amp;amp;1-usnam to &amp;amp;2-usnam
       , &amp;amp;1-datum to &amp;amp;2-usnam
       , &amp;amp;1-uzeit to &amp;amp;2-uzeit
       , &amp;amp;1-term  to &amp;amp;2-term
       .

END-OF-DEFINITION.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Senthil Kumar on Jul 14, 2010 4:09 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 10:38:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043226#M1500996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-14T10:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043227#M1500997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use field-symbols&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 10:49:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043227#M1500997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-14T10:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043228#M1500998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used stored table names (in a char30 if I remember correctly).  Then one merely references the variable holding the table name or, as already noted, one could use field-symbols.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 11:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043228#M1500998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-14T11:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043229#M1500999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would use a data reference for that but before doing so, since it seems that you have a1-to-1 relationship between screens and tables and all tables are typed the same, any approach you use would be much slicker if you named your tables consistently with your screens, e.g., table ZBB0001 for screen '0001'.  A data reference works like this (assuming you follow my suggestion and you have a base structure or table that all others follow):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: gr_dref      TYPE REF TO data.
DATA: gv_tablename TYPE tablename.

FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE zbb0000.

CONCATENATE 'ZBB' sy-dynnr INTO gv_tablename.

TRY.

    CREATE DATA gr_dref TYPE (gv_tablename).
    ASSIGN gr_dref-&amp;gt;* TO &amp;lt;fs&amp;gt;.

  CATCH cx_sy_create_data_error.
*     Do something

ENDTRY.

&amp;lt;fs&amp;gt;-field1 = '1'.
&amp;lt;fs&amp;gt;-field2 = '2'.
&amp;lt;fs&amp;gt;-field3 = '3'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jul 2010 14:02:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043229#M1500999</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-07-14T14:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043230#M1501000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your replied.But still have problem. I'm just not familiar 'field symbol'.&lt;/P&gt;&lt;P&gt;My statement as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * INTO lw_tvdir  "This is get my table name by input screen no.&lt;/P&gt;&lt;P&gt;  FROM tvdir&lt;/P&gt;&lt;P&gt;  UP TO 1 ROWS&lt;/P&gt;&lt;P&gt;  WHERE area = 'ZRD01'&lt;/P&gt;&lt;P&gt;    AND devclass = 'ZRD01'&lt;/P&gt;&lt;P&gt;    AND ( liste = p_dynnr&lt;/P&gt;&lt;P&gt;     OR detail = p_dynnr ).&lt;/P&gt;&lt;P&gt;  ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now, i want to combine the table name and field name(UNAME, datum, uzeit, term) to set each table fields value.&lt;/P&gt;&lt;P&gt;example: after selected tvdir the tablename is 'ZZRDF001'.&lt;/P&gt;&lt;P&gt;                  ZZRDF001-UNAME = SY-UNAME.&lt;/P&gt;&lt;P&gt;                  ZZRDF001-DATUM = SY-DATUM.&lt;/P&gt;&lt;P&gt;                  ZZRDF001-UZEIT = SY-UZEIT.&lt;/P&gt;&lt;P&gt;                  ZZRDF001-TERM = P_TERM.&lt;/P&gt;&lt;P&gt;               and these fields will be update the real data. How can i do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 07:31:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043230#M1501000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-15T07:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043231#M1501001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The example I gave you still applies, especially since you are using TVDIR to determine the table name.  You can use one of the tables (since they are all typed the same) to declare the field symbol type in order to reference the field names directly in the program.  Otherwise, you'll need to use a run time type identification class (or function) to get the index of each field in the structure and access them dynamically in a DO loop with the field symbol.  You need to spend some time reading the help files and applying the example though - don't just say you're not familiar with field symbols.  I wasn't either until I read about them and tried them out many years ago &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 12:42:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043231#M1501001</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-07-15T12:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043232#M1501002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
data:begin of wa_s,
     name type sy-uname,
     date type sy-datum,
     time type sy-uzeit,
     end of wa_s.

field-symbols:&amp;lt;fs&amp;gt; type any.

wa_s-name = sy-uname.
wa_s-date = sy-datum.
wa_s-time = sy-uzeit.


CASE p_dynnr.
WHEN '0001'. "for add on table ZZRDF001
assign &amp;lt;fs&amp;gt; to zzrdf001.
WHEN '0002'. "for add on table ZZRDF01
assign &amp;lt;fs&amp;gt; to zzrdf01.
WHEN '0003'."for add on table ZZRDF02 
assign &amp;lt;fs&amp;gt; to zzrdf02.
WHEN '0005'. "for add on table ZZRDF04 
assign &amp;lt;fs&amp;gt; to zzrdf04.
ENDCASE.

move-corresponding wa_s to &amp;lt;fs&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will this do ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why are using screen number, your are selecting the table name through select query right ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Keshav.T on Jul 15, 2010 6:39 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 12:55:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043232#M1501002</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-07-15T12:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043233#M1501003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would do that for 25 tables all typed the exact same?  True, it's a bad design to start with, but what if they add 25 more tables?  You're going to have to change the code every single time and then you wind up with a 50 level CASE statement.  Why not make it dynamic and hands-off (no more development required, no matter how many tables they add)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 13:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043233#M1501003</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-07-15T13:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043234#M1501004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are correct, i didnt know that he is selecting the table name from the DDIC table.&lt;/P&gt;&lt;P&gt;If so then it can be assigned once.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 13:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043234#M1501004</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-07-15T13:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043235#M1501005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for you these reply and suggestion. Actually my English not pretty good, maybe the words fail to express what is meant. But it's OK. I will try by best to understand what you-all said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree some opinion, because my problem and these situation that it's too difficult explain in English for me.&lt;/P&gt;&lt;P&gt;And my job situation It's a long story. I don't  want to explain too much. Because it's like a pretext.&lt;/P&gt;&lt;P&gt;Anyway, thanks a lot and nice to meet you-all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Nicole Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 16:49:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043235#M1501005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-15T16:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043236#M1501006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, your english is better than most non-primary speakers.  I'm still not exactly sure what your design is or what you're trying to accomplish but since you are making an effort, here is a snippet of code that might help (some obvious declarations/checks/handling left out):&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: gr_dref       TYPE REF TO data.
DATA: gv_tablename  TYPE vim_name.
FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE zzrdf001.   "Assumes all table typed the same - may need to cast if not

SELECT SINGLE tabname FROM tvdir INTO gv_tablename  "This is get my table name by input screen no.
       WHERE   area     EQ 'ZRD01'
         AND   devclass EQ 'ZRD01'
         AND ( liste    EQ p_dynnr   OR 
               detail   EQ p_dynnr ).

CHECK sy-subrc EQ 0.

TRY.

    CREATE DATA gr_dref TYPE (gv_tablename).
    ASSIGN gr_dref-&amp;gt;* TO &amp;lt;fs&amp;gt;.

  CATCH cx_sy_create_data_error.
*     Do something

ENDTRY.

&amp;lt;fs&amp;gt;-uname = sy-uname.  "Assumes UNAME is the key
&amp;lt;fs&amp;gt;-datum = sy-datum.
&amp;lt;fs&amp;gt;-uzeit = sy-uzeit.
&amp;lt;fs&amp;gt;-term  = p_term.

MODIFY (gv_tablename) FROM &amp;lt;fs&amp;gt;.

COMMIT WORK.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 17:44:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043236#M1501006</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-07-15T17:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP statement problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043237#M1501007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Brad:&lt;/P&gt;&lt;P&gt;          Thank you very much. Thanks a lot for your help. It's look like work. For some situation still wrong, but it's OK to me.&lt;/P&gt;&lt;P&gt;Thank you to offer an opinion and the example. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Nicole Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 01:25:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-statement-problem/m-p/7043237#M1501007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T01:25:03Z</dc:date>
    </item>
  </channel>
</rss>

