<?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: Queries in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751801#M902612</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. How many secondary indexes can we create in a table?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;for  a table there can only 9 indexs created&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. what table stores the online messages?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the table eddis stores all the messages for idoc&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. How many watchpoints can be used in a program?&lt;/P&gt;&lt;P&gt;may be 10 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. Components of BADI?&lt;/P&gt;&lt;P&gt;here is two example for a badi with better screen shots...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/ExitsBADIs/ImplementBADI/page1.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/ExitsBADIs/ImplementBADI/page1.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/ExitsBADIs/DefineBADI/page1.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/ExitsBADIs/DefineBADI/page1.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. What are the different ways of passing the data between the lists?&lt;/P&gt;&lt;P&gt;you mean that alv lists..or list box..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for alv....we can use the function modules&lt;/P&gt;&lt;P&gt;reuse_avl_list_display&lt;/P&gt;&lt;P&gt;reuse_alv_grid_display&lt;/P&gt;&lt;P&gt;reuse_alv_hirarchial_list_display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the list box check this program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: VRM.&lt;/P&gt;&lt;P&gt;DATA: NAME TYPE VRM_ID,&lt;/P&gt;&lt;P&gt;LIST TYPE VRM_VALUES,&lt;/P&gt;&lt;P&gt;VALUE LIKE LINE OF LIST.&lt;/P&gt;&lt;P&gt;PARAMETERS: PS_PARM(10) AS LISTBOX VISIBLE LENGTH 10.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;NAME = 'PS_PARM'.&lt;/P&gt;&lt;P&gt;VALUE-KEY = '1'.&lt;/P&gt;&lt;P&gt;VALUE-TEXT = 'LINE 1'.&lt;/P&gt;&lt;P&gt;APPEND VALUE TO LIST. VALUE-KEY = '2'.&lt;/P&gt;&lt;P&gt;VALUE-TEXT = 'LINE 2'.&lt;/P&gt;&lt;P&gt;APPEND VALUE TO LIST.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or check this program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS : vrm.&lt;/P&gt;&lt;P&gt;TABLES:vbak,vbap.&lt;/P&gt;&lt;P&gt;DATA : v(80) TYPE c.&lt;/P&gt;&lt;P&gt;DATA: wa_vbak TYPE vbak,&lt;/P&gt;&lt;P&gt;      it_vbak TYPE vbak OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      wa_vbap TYPE vbap,&lt;/P&gt;&lt;P&gt;      it_vbap TYPE vbap OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;  DATA: l_name TYPE vrm_id,&lt;/P&gt;&lt;P&gt;        li_list TYPE vrm_values ,&lt;/P&gt;&lt;P&gt;        v_count  TYPE i,&lt;/P&gt;&lt;P&gt;        l_value LIKE LINE OF li_list.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_test(20) AS LISTBOX VISIBLE LENGTH 60 MODIF ID DAT.&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  PERFORM get_data.&lt;/P&gt;&lt;P&gt;  LOOP AT it_vbak.&lt;/P&gt;&lt;P&gt;    l_value-key =  it_vbak-vbeln .&lt;/P&gt;&lt;P&gt;    l_value-text = it_vbak-vbeln .&lt;/P&gt;&lt;P&gt;    APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      id              = 'P_TEST'&lt;/P&gt;&lt;P&gt;      values          = li_list&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      id_illegal_name = 1&lt;/P&gt;&lt;P&gt;      OTHERS          = 2.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON P_TEST.&lt;/P&gt;&lt;P&gt;  clear : li_list , li_list[].&lt;/P&gt;&lt;P&gt;  SELECT vbeln&lt;/P&gt;&lt;P&gt;         matnr&lt;/P&gt;&lt;P&gt;         meins&lt;/P&gt;&lt;P&gt;         FROM vbap&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF TABLE it_vbap&lt;/P&gt;&lt;P&gt;         WHERE vbeln = p_test.&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  get_Data&lt;/P&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 get_data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT  vbeln&lt;/P&gt;&lt;P&gt;          FROM vbak&lt;/P&gt;&lt;P&gt;          INTO  CORRESPONDING FIELDS OF TABLE it_vbak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " get_Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9. How 2 pass data from a FORM to a SUBROUTINE program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using the statement using and changing..like this.&lt;/P&gt;&lt;P&gt;        perform zf_proc_get_om_objects tables i_objects&lt;/P&gt;&lt;P&gt;                                       using c_otype_position&lt;/P&gt;&lt;P&gt;                                             i0001-plans&lt;/P&gt;&lt;P&gt;                                               changing g_retcd.&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;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 26 Apr 2008 10:49:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-26T10:49:47Z</dc:date>
    <item>
      <title>Queries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751798#M902609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;1. Which function module is called by the remote system that acts as&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the entry point for all inbound ALE process?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. How many secondary indexes can we create in a table?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3. what table stores the online messages?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4. To link a loop to a table control, we use the addition WITH CONTROL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;else this works as a stand-alone ______________________________.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5. How many watchpoints can be used in a program?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;6. Within a macro, u can use up to _________ Place holders.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;7. Components of BADI?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;8. What are the different ways of passing the data between the lists?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;9. How 2 pass data from a FORM to a SUBROUTINE program?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10. How records from the left table are omitted in an outer join?&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 06:23:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751798#M902609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T06:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Queries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751799#M902610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;2. How many secondary indexes can we create in a table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ans : - 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. what table stores the online messages?&lt;/P&gt;&lt;P&gt;Ans :-  Table T100.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 06:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751799#M902610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T06:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Queries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751800#M902611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Shlipa Reddy,&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;I should provide answers for some of the questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Answers:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 2)  There is no specific limit on the creation of secondary indexes upto my knowledge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5)  Max. Break-points: 30&lt;/P&gt;&lt;P&gt;             Watch points: 10&lt;/P&gt;&lt;P&gt;6) In Macro, Max. Placeholders: 9&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7) &lt;STRONG&gt;Components of BADI:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;Tcodes:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SE18: BADI Definition.&lt;/P&gt;&lt;P&gt;SE19: BADI Implementation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For One Badi def we able to provide n no.of implementation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Components:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) Attributes:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;It gives the Name of the Business add in class,&lt;/P&gt;&lt;P&gt;we have a chance tick or uncheck the Multiple use checkbox for custom badi def and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Filter type&lt;/STRONG&gt;: Fiter type always should be data element and search help needs to be attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2)Interface:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;It gives the inteface name for the given badi definition&lt;/P&gt;&lt;P&gt;In this interface provided the method definitions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we provide implementation with these method using se19. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3)Fcodes and Subscreens.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;These should be used when we add our own screen to&lt;/P&gt;&lt;P&gt;SAP statndard tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10) By using Right Outer join , we skip the field values from the  left side table in the join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it helpful, reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;G.V.K.Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 06:58:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751800#M902611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T06:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Queries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751801#M902612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. How many secondary indexes can we create in a table?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;for  a table there can only 9 indexs created&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. what table stores the online messages?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the table eddis stores all the messages for idoc&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. How many watchpoints can be used in a program?&lt;/P&gt;&lt;P&gt;may be 10 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. Components of BADI?&lt;/P&gt;&lt;P&gt;here is two example for a badi with better screen shots...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/ExitsBADIs/ImplementBADI/page1.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/ExitsBADIs/ImplementBADI/page1.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/ExitsBADIs/DefineBADI/page1.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/ExitsBADIs/DefineBADI/page1.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. What are the different ways of passing the data between the lists?&lt;/P&gt;&lt;P&gt;you mean that alv lists..or list box..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for alv....we can use the function modules&lt;/P&gt;&lt;P&gt;reuse_avl_list_display&lt;/P&gt;&lt;P&gt;reuse_alv_grid_display&lt;/P&gt;&lt;P&gt;reuse_alv_hirarchial_list_display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the list box check this program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: VRM.&lt;/P&gt;&lt;P&gt;DATA: NAME TYPE VRM_ID,&lt;/P&gt;&lt;P&gt;LIST TYPE VRM_VALUES,&lt;/P&gt;&lt;P&gt;VALUE LIKE LINE OF LIST.&lt;/P&gt;&lt;P&gt;PARAMETERS: PS_PARM(10) AS LISTBOX VISIBLE LENGTH 10.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;NAME = 'PS_PARM'.&lt;/P&gt;&lt;P&gt;VALUE-KEY = '1'.&lt;/P&gt;&lt;P&gt;VALUE-TEXT = 'LINE 1'.&lt;/P&gt;&lt;P&gt;APPEND VALUE TO LIST. VALUE-KEY = '2'.&lt;/P&gt;&lt;P&gt;VALUE-TEXT = 'LINE 2'.&lt;/P&gt;&lt;P&gt;APPEND VALUE TO LIST.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or check this program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS : vrm.&lt;/P&gt;&lt;P&gt;TABLES:vbak,vbap.&lt;/P&gt;&lt;P&gt;DATA : v(80) TYPE c.&lt;/P&gt;&lt;P&gt;DATA: wa_vbak TYPE vbak,&lt;/P&gt;&lt;P&gt;      it_vbak TYPE vbak OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      wa_vbap TYPE vbap,&lt;/P&gt;&lt;P&gt;      it_vbap TYPE vbap OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;  DATA: l_name TYPE vrm_id,&lt;/P&gt;&lt;P&gt;        li_list TYPE vrm_values ,&lt;/P&gt;&lt;P&gt;        v_count  TYPE i,&lt;/P&gt;&lt;P&gt;        l_value LIKE LINE OF li_list.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_test(20) AS LISTBOX VISIBLE LENGTH 60 MODIF ID DAT.&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  PERFORM get_data.&lt;/P&gt;&lt;P&gt;  LOOP AT it_vbak.&lt;/P&gt;&lt;P&gt;    l_value-key =  it_vbak-vbeln .&lt;/P&gt;&lt;P&gt;    l_value-text = it_vbak-vbeln .&lt;/P&gt;&lt;P&gt;    APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      id              = 'P_TEST'&lt;/P&gt;&lt;P&gt;      values          = li_list&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      id_illegal_name = 1&lt;/P&gt;&lt;P&gt;      OTHERS          = 2.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON P_TEST.&lt;/P&gt;&lt;P&gt;  clear : li_list , li_list[].&lt;/P&gt;&lt;P&gt;  SELECT vbeln&lt;/P&gt;&lt;P&gt;         matnr&lt;/P&gt;&lt;P&gt;         meins&lt;/P&gt;&lt;P&gt;         FROM vbap&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF TABLE it_vbap&lt;/P&gt;&lt;P&gt;         WHERE vbeln = p_test.&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  get_Data&lt;/P&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 get_data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT  vbeln&lt;/P&gt;&lt;P&gt;          FROM vbak&lt;/P&gt;&lt;P&gt;          INTO  CORRESPONDING FIELDS OF TABLE it_vbak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " get_Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9. How 2 pass data from a FORM to a SUBROUTINE program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using the statement using and changing..like this.&lt;/P&gt;&lt;P&gt;        perform zf_proc_get_om_objects tables i_objects&lt;/P&gt;&lt;P&gt;                                       using c_otype_position&lt;/P&gt;&lt;P&gt;                                             i0001-plans&lt;/P&gt;&lt;P&gt;                                               changing g_retcd.&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;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 10:49:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751801#M902612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T10:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Queries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751802#M902613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shilpa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try to give the answers for some quesions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maximum secondary indexes pssble are 11.&lt;/P&gt;&lt;P&gt;Watch points- 10&lt;/P&gt;&lt;P&gt;Breakpoits-30&lt;/P&gt;&lt;P&gt;macros-9&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 11:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/queries/m-p/3751802#M902613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T11:02:39Z</dc:date>
    </item>
  </channel>
</rss>

