<?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: is incompatible with in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843581#M1132964</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;PERFORM getattributes
            TABLES
               lt_attr_dat[]
            USING
               sy-uname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM getAttributes
       TABLES lt_attr_data  STRUCTURE  bbpt_attr
       USING  lv_user       TYPE sy-uname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : STRUCTURE Is obselete, hence you may define it as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;types: tab_type type table of bbpt_attr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;FORM getAttributes
       TABLES lt_attr_data  type tab_type
       USING  lv_user       TYPE sy-uname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mohaiyuddin Soniwala on Nov 26, 2008 5:10 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mohaiyuddin Soniwala on Nov 26, 2008 5:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Nov 2008 11:40:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-26T11:40:12Z</dc:date>
    <item>
      <title>is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843571#M1132954</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;I am getting the error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PERFORM or CALL FUNCTION "GETATTRIBUTES", &lt;/P&gt;&lt;P&gt;the actual parameter "LT_ATTR_DAT"&lt;/P&gt;&lt;P&gt;is incompatible with &lt;/P&gt;&lt;P&gt;the formal parameter "P_LT_ATTR_DATA".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice what is wrong right here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Sas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: lt_attr_dat TYPE TABLE OF bbpt_attr.

PERFORM getattributes
            TABLES
               lt_attr_dat
            USING
               sy-uname.


FORM getAttributes
       TABLES lt_attr_data  type bbpt_attr
       USING  lv_user       TYPE sy-uname.


TYPES: BEGIN OF lty_user_attr,
        attr_id	     TYPE om_attrib,
        value_logsys TYPE	log_system,
        value	       TYPE char30,
       END OF lty_user_attr.


DATA: lt_user_attr TYPE TABLE OF lty_user_attr.
DATA: lt_attr_list TYPE bbpt_attr_list.
DATA: lt_vlist     TYPE bbpt_attr_values.

DATA: ls_attr_list TYPE bbp_attr_list.
DATA: ls_attr_data TYPE bbps_attr.
DATA: ls_user_attr TYPE lty_user_attr.
DATA: ls_vlist     TYPE bbps_attr_values.
DATA: ls_t77omattr TYPE t77omattr.


lv_user = sy-uname.

ls_attr_list-attr_id = 'WRK'.
APPEND ls_attr_list TO lt_attr_list.

* Read Attributes
  CALL FUNCTION 'BBP_READ_ATTRIBUTES'
    EXPORTING
      iv_user                 = lv_user
      it_attr_list            = lt_attr_list
    IMPORTING
      et_attr                 = lt_attr_data
    EXCEPTIONS
      object_id_not_found     = 1
      no_attributes_requested = 2
      attributes_read_error   = 3
      OTHERS                  = 4.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.

endform.                    " getAttributes&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 09:56:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843571#M1132954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T09:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843572#M1132955</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;Error is in ur declarartion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM getAttributes
       TABLES lt_attr_data  type TABLE OF bbpt_attr
       USING  lv_user       TYPE sy-uname.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u hav declared ur table as  a structure. thats y.&lt;/P&gt;&lt;P&gt;Revert if ny issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Winnie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 10:01:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843572#M1132955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T10:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843573#M1132956</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 like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM getattributes&lt;/P&gt;&lt;P&gt;            TABLES&lt;/P&gt;&lt;P&gt;               lt_attr_dat&lt;/P&gt;&lt;P&gt;            USING&lt;/P&gt;&lt;P&gt;              lv_user.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM getAttributes&lt;/P&gt;&lt;P&gt;       TABLES lt_attr_data &lt;/P&gt;&lt;P&gt;       USING  lv_user       TYPE sy-uname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also while defining &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ls_attr_data TYPE bbps_attr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bbps_attr is a structure then define it with syntax 'type table of'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 10:02:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843573#M1132956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T10:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843574#M1132957</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;     In the FORM statement, use TYPE TABLE OF instead of TYPE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 10:03:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843574#M1132957</guid>
      <dc:creator>former_member772790</dc:creator>
      <dc:date>2008-11-26T10:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843575#M1132958</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;u defined lt_attr_data is of table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change type of   lt_attr_data  to  bbp_attr_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kusuma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 10:04:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843575#M1132958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T10:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843576#M1132959</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 didn't find the function module in ECC 6.0. pls let me know you are using any IS SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in FORM you have used the tables in that pls change like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM getAttributes&lt;/P&gt;&lt;P&gt;       TABLES lt_attr_data  type table of  bbpt_attr&lt;/P&gt;&lt;P&gt;       USING  lv_user       TYPE sy-uname.&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;&lt;/P&gt;&lt;P&gt;Rajesh V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 10:09:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843576#M1132959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T10:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843577#M1132960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have changed it to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM getAttributes&lt;/P&gt;&lt;P&gt;TABLES lt_attr_data type table of bbpt_attr&lt;/P&gt;&lt;P&gt;USING lv_user TYPE sy-uname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now I am getting &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Different number of parameters in FORM and PERFORM (routine: GETAT&lt;/P&gt;&lt;P&gt;number of formal parameters: 4, number of actual parameters: 2)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 10:12:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843577#M1132960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T10:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843578#M1132961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; have u Used this syntax,&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;try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM getattributes&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;lt_attr_dat&lt;/P&gt;&lt;P&gt;USING&lt;/P&gt;&lt;P&gt;lv_user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM getAttributes&lt;/P&gt;&lt;P&gt;TABLES lt_attr_data &lt;/P&gt;&lt;P&gt;USING lv_user TYPE sy-uname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also while defining &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ls_attr_data TYPE bbps_attr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bbps_attr is a structure then define it with syntax 'type table of'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 10:15:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843578#M1132961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T10:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843579#M1132962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In ur FORM stmt with TABLES you can give TYPE type of table types only, not a structure.&lt;/P&gt;&lt;P&gt;If you have no table types, just ommit the type table of stmt. It should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM getAttributes
         TABLES lt_attr_data 
         USING lv_user TYPE sy-uname..
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Winnie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 10:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843579#M1132962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T10:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843580#M1132963</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;&lt;/P&gt;&lt;P&gt;problem is still existing !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 11:34:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843580#M1132963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T11:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843581#M1132964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;PERFORM getattributes
            TABLES
               lt_attr_dat[]
            USING
               sy-uname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM getAttributes
       TABLES lt_attr_data  STRUCTURE  bbpt_attr
       USING  lv_user       TYPE sy-uname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : STRUCTURE Is obselete, hence you may define it as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;types: tab_type type table of bbpt_attr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;FORM getAttributes
       TABLES lt_attr_data  type tab_type
       USING  lv_user       TYPE sy-uname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mohaiyuddin Soniwala on Nov 26, 2008 5:10 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mohaiyuddin Soniwala on Nov 26, 2008 5:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 11:40:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843581#M1132964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T11:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843582#M1132965</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;Your code logic flow is same as u copied....i mean to say that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first perform stmt then form stmt and then the declarations.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 11:43:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843582#M1132965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T11:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843583#M1132966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: lt_attr_dat TYPE bbpt_attr.

PERFORM getattributes
             USING
                sy-uname
             CHANGING
                lt_attr_dat.

FORM getAttributes
       USING     lv_user       TYPE sy-uname
       CHANGING lt_attr_data  type bbpt_attr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assuming that bbpt_attr is a table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 11:50:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843583#M1132966</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-11-26T11:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843584#M1132967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thomas you are the best.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats also the reason why you have 3310 Points up to now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And your new number of points is 3320&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 12:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843584#M1132967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T12:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843585#M1132968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. Let me add that you should not use TABLES-parameters in forms anyway, since they are considered obsolete by SAP due to the internal table with header line that they represent. Better use USING or CHANGING parameters referencing table types, as seen here.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 13:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843585#M1132968</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-11-26T13:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843586#M1132969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. Thank you very much again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas, I have one more question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is about tables at Form Routines if they don't refer to "table types".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if there is no "table type" table existing for the affected table which I want to use &lt;/P&gt;&lt;P&gt;at the form routine?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;P&gt;Erdem Sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 20:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843586#M1132969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T20:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843587#M1132970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; What is about tables at Form Routines if they don't refer to "table types".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think there is an alternative to table types if the TABLES parameter is not to be used, because you cannot use ... TYPE TABLE OF ... in the declaration of the FORM-parameters, as you have found out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Or if there is no "table type" table existing for the affected table which I want to use &lt;/P&gt;&lt;P&gt;&amp;gt; at the form routine?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can always declare your own one in the data dictionary or in the program, for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF ty_struc,
       field1 LIKE ...
       field2 LIKE ...
      END OF ty_struc.
TYPES: ty_table TYPE TABLE OF ty_struc.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can use ty_table to pass internal table data to FORM-routines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 21:20:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843587#M1132970</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-11-26T21:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: is incompatible with</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843588#M1132971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;many thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I now definetly how to handle with tables at FORM routines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 22:07:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-incompatible-with/m-p/4843588#M1132971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T22:07:12Z</dc:date>
    </item>
  </channel>
</rss>

