<?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: SELECT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478419#M224133</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here i am placing the way how to have to do.&lt;/P&gt;&lt;P&gt;data : l_vbeln type vbrp-vbeln.&lt;/P&gt;&lt;P&gt;l_vbeln = lw_auditin-invno.&lt;/P&gt;&lt;P&gt;*--now call the conversion exit to convert external value to SAP internal format&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;input = l_vbeln&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;output = l_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;both the places, you can pass the same field &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;l_vbeln&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE aubel aupos&lt;/P&gt;&lt;P&gt;INTO (l_aubel, l_aupos)&lt;/P&gt;&lt;P&gt;FROM vbrp "Billing Doc&lt;/P&gt;&lt;P&gt;WHERE vbeln = l_vbeln AND&lt;/P&gt;&lt;P&gt;posnr = l_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i believe, POSNR is a numeric field. so no need to use conversion routine for that field.but check this whether POSNR is a char or NUMC field in VBRP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Aug 2006 08:33:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-03T08:33:16Z</dc:date>
    <item>
      <title>SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478409#M224123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,  The following codes did not make the SELECT work.  Both l_vbeln and l_psonr has good value to call the vbrp  table.  The sy-subrc = 4. Any idea?  I appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:l_vbeln        TYPE vbrp-vbeln,&lt;/P&gt;&lt;P&gt;       l_posnr        TYPE vbrp-posnr,&lt;/P&gt;&lt;P&gt;       l_aubel        TYPE vbrp-aubel,&lt;/P&gt;&lt;P&gt;       l_aupos        TYPE vbrp-aupos.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  l_vbeln = lw_auditin-invno.&lt;/P&gt;&lt;P&gt;  l_posnr = lw_auditin-invitemno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE aubel aupos         "Sales Doc; Sales Item&lt;/P&gt;&lt;P&gt;    INTO (l_aubel, l_aupos)&lt;/P&gt;&lt;P&gt;  FROM vbrp                                   "Billing Doc&lt;/P&gt;&lt;P&gt;  WHERE vbeln = l_vbeln  AND&lt;/P&gt;&lt;P&gt;        posnr = l_posnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 07:59:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478409#M224123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T07:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478410#M224124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check vbpr table  data  is  there  or  not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:02:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478410#M224124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478411#M224125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Helen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before the select stmt use the anyone of the FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_INPUT    Conversion exit ALPHA, external-&amp;gt;internal&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_OUTPUT   Conversion exit ALPHA, internal-&amp;gt;external&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;to do the conversion exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the select stmt will work for u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:02:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478411#M224125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478412#M224126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your VBELN having 10 characters or not ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i mean '123' will be different with '0000000123' if you pass to VBRP table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so use conversion_exit to convert to SAP internal format then pass that VBELN to the select .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:04:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478412#M224126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478413#M224127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am very new to the ABAP.  I add the FM and got the syntax error 'OUTPUT" is not expected'.  Please advise!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; l_vbeln = lw_auditin-invno.&lt;/P&gt;&lt;P&gt;  l_posnr = lw_auditin-invitemno.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt; CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      input         = l_vbeln&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      output        = lw_auditin-invno.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;      input         = lw_auditin-invitemno&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      OUTPUT        = l_posnr.&amp;lt;/b&amp;gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE aubel aupos              "Sales Doc; Sales Item&lt;/P&gt;&lt;P&gt;    INTO (l_aubel, l_aupos)&lt;/P&gt;&lt;P&gt;  FROM vbrp                                    "Billing Doc&lt;/P&gt;&lt;P&gt;  WHERE vbeln = l_vbeln  AND&lt;/P&gt;&lt;P&gt;        posnr = l_posnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:24:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478413#M224127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478414#M224128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I query the table and the data is there.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478414#M224128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478415#M224129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : l-vbeln type VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_vbeln = lw_auditin-invno.&lt;/P&gt;&lt;P&gt;l_posnr = lw_auditin-invitemno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;input = l_vbeln&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;output = l_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE aubel aupos "Sales Doc; Sales Item&lt;/P&gt;&lt;P&gt;INTO (l_aubel, l_aupos)&lt;/P&gt;&lt;P&gt;FROM vbrp "Billing Doc&lt;/P&gt;&lt;P&gt;WHERE vbeln = l_vbeln AND&lt;/P&gt;&lt;P&gt;posnr = l_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion for posnr is not required as it of type numc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478415#M224129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478416#M224130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : l_vbeln typd vbrk-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;input = l_vbeln&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;output = &amp;lt;b&amp;gt;l_vbeln&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;populate same variable name to both import and export parametes as given above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:27:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478416#M224130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478417#M224131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;input = lw_auditin-invno&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;output = l_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE aubel aupos "Sales Doc; Sales Item&lt;/P&gt;&lt;P&gt;INTO (l_aubel, l_aupos)&lt;/P&gt;&lt;P&gt;FROM vbrp "Billing Doc&lt;/P&gt;&lt;P&gt;WHERE vbeln = l_vbeln AND&lt;/P&gt;&lt;P&gt;posnr = l_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion for posnr is not required as it of type numc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:29:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478417#M224131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478418#M224132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Helen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing would be to define the variables lw_audit* similar to vbeln and posnr from vbrp. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel that would help and you wouldnt require the fm conversion exit. Also, it would be nice to understand the logic where you populate the particular fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:32:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478418#M224132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478419#M224133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here i am placing the way how to have to do.&lt;/P&gt;&lt;P&gt;data : l_vbeln type vbrp-vbeln.&lt;/P&gt;&lt;P&gt;l_vbeln = lw_auditin-invno.&lt;/P&gt;&lt;P&gt;*--now call the conversion exit to convert external value to SAP internal format&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;input = l_vbeln&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;output = l_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;both the places, you can pass the same field &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;l_vbeln&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE aubel aupos&lt;/P&gt;&lt;P&gt;INTO (l_aubel, l_aupos)&lt;/P&gt;&lt;P&gt;FROM vbrp "Billing Doc&lt;/P&gt;&lt;P&gt;WHERE vbeln = l_vbeln AND&lt;/P&gt;&lt;P&gt;posnr = l_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i believe, POSNR is a numeric field. so no need to use conversion routine for that field.but check this whether POSNR is a char or NUMC field in VBRP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:33:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478419#M224133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478420#M224134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Helen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing would be to define the variables lw_audit* similar to vbeln and posnr from vbrp. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel that would help and you wouldnt require the fm conversion exit(depending on your logic). Also, it would be nice to understand the logic where you populate the particular fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:34:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478420#M224134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478421#M224135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i can suggest 3 things,&lt;/P&gt;&lt;P&gt;1. tables vbrv. on the top on data declaration&lt;/P&gt;&lt;P&gt;2. use sy-dbcnt,&lt;/P&gt;&lt;P&gt;   if sy-dbcnt is initial.&lt;/P&gt;&lt;P&gt;   message i123(zxxx).&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt;3. there is no write statement in the code,to display output,use it,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kcc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:42:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478421#M224135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478422#M224136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I pass the syntax error,but get the run time error at the function Module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:49:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478422#M224136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478423#M224137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please include the piece of code where you have defined lw_auditin* variables and secondly, where you initialise the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 09:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478423#M224137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T09:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478424#M224138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the run time error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incorrect parameter with CALL FUNCTION.&lt;/P&gt;&lt;P&gt;When calling a function module, one of the parmaeters was notspecified. Error in ABAP application program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_DYN_CALL_PARAM_MISSING'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;005680     l_vbeln = lw_auditin-invno.&lt;/P&gt;&lt;P&gt;005690     l_posnr = lw_auditin-invitemno.&lt;/P&gt;&lt;P&gt;005700&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;     CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;005720       EXPORTING&lt;/P&gt;&lt;P&gt;005730         output = l_vbeln&lt;/P&gt;&lt;P&gt;005740       IMPORTING&lt;/P&gt;&lt;P&gt;005750         input  = l_vbeln.&lt;/P&gt;&lt;P&gt;005760&lt;/P&gt;&lt;P&gt;005770     SELECT SINGLE aubel aupos              "Sales Doc; Sales Item&lt;/P&gt;&lt;P&gt;005780       INTO (l_aubel, l_aupos)&lt;/P&gt;&lt;P&gt;005790     FROM vbrp                                    "Billing Doc&lt;/P&gt;&lt;P&gt;005800     WHERE vbeln = l_vbeln  AND&lt;/P&gt;&lt;P&gt;005810           posnr = l_posnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 09:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478424#M224138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T09:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478425#M224139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note: The input to the invno and invitemno are CHARACTERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF type_auditin_mapping ,&lt;/P&gt;&lt;P&gt;          companyid         TYPE char2,&lt;/P&gt;&lt;P&gt;          invno             TYPE vbrp-vbeln,     &lt;/P&gt;&lt;P&gt;          invitemno         TYPE vbrp-posnr,     &lt;/P&gt;&lt;P&gt;          invdate           TYPE vbrp-fbuda,     &lt;/P&gt;&lt;P&gt;          taxprodcode       TYPE char9,          &lt;/P&gt;&lt;P&gt;          prodcode          TYPE char25,         &lt;/P&gt;&lt;P&gt;          grossamt          TYPE char13,         &lt;/P&gt;&lt;P&gt;          fedtxamt          TYPE char13,         &lt;/P&gt;&lt;P&gt;          sttxamt           TYPE char13,         &lt;/P&gt;&lt;P&gt;          countytxamt       TYPE char13,         &lt;/P&gt;&lt;P&gt;          citytxamt         TYPE char13,         &lt;/P&gt;&lt;P&gt;END OF type_auditin_mapping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : lw_auditin TYPE type_auditin_mapping.&lt;/P&gt;&lt;P&gt;DATA:l_vbeln        TYPE vbrp-vbeln,&lt;/P&gt;&lt;P&gt;     l_posnr        TYPE vbrp-posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_vbeln = lw_auditin-invno.&lt;/P&gt;&lt;P&gt;l_posnr = lw_auditin-invitemno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      output = l_vbeln&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      input  = l_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE aubel aupos          "Sales Doc; Sales Item&lt;/P&gt;&lt;P&gt;    INTO (l_aubel, l_aupos)&lt;/P&gt;&lt;P&gt;  FROM vbrp                                 "Billing Doc&lt;/P&gt;&lt;P&gt;  WHERE vbeln = l_vbeln  AND&lt;/P&gt;&lt;P&gt;        posnr = l_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    WRITE: / g_inv, '/', g_invitem,&lt;/P&gt;&lt;P&gt;          ' not found in the vbrp table'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 09:11:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478425#M224139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T09:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478426#M224140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;            INPUT  = IT_LINE-VBELN this should be first called&lt;/P&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;              OUTPUT = IT_DELV_DATA-VBELN.then this field.&lt;/P&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;it seems to be you have reversed the way of parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use first exporting then use importing.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;output = l_vbeln  &amp;lt;-- is wrong, here INPUT Should APPEAR&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;input = l_vbeln. &amp;lt;--- is also wrong, here OUTPUT should appear .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 09:17:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478426#M224140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T09:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478427#M224141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The both invno and initemno are CHARACTERS.  I think they should mapping to the vbrp attribute when I split into the lw_auditin-invno and lw_auditin-invitemno. Am my thinking right?  I turn debugging on and see the correct value when select. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SPLIT l_data AT g_delimit INTO lw_auditin-companyid&lt;/P&gt;&lt;P&gt;                           dummy1&lt;/P&gt;&lt;P&gt;                           lw_auditin-invno&lt;/P&gt;&lt;P&gt;                           lw_auditin-invitemno&lt;/P&gt;&lt;P&gt;                           lw_auditin-invdate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 09:23:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478427#M224141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T09:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478428#M224142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please note the change marked Anurag+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF type_auditin_mapping ,&lt;/P&gt;&lt;P&gt;companyid TYPE char2,&lt;/P&gt;&lt;P&gt;invno TYPE vbrp-vbeln, &lt;/P&gt;&lt;P&gt;invitemno TYPE vbrp-posnr, &lt;/P&gt;&lt;P&gt;invdate TYPE vbrp-fbuda, &lt;/P&gt;&lt;P&gt;taxprodcode TYPE char9, &lt;/P&gt;&lt;P&gt;prodcode TYPE char25, &lt;/P&gt;&lt;P&gt;grossamt TYPE char13, &lt;/P&gt;&lt;P&gt;fedtxamt TYPE char13, &lt;/P&gt;&lt;P&gt;sttxamt TYPE char13, &lt;/P&gt;&lt;P&gt;countytxamt TYPE char13, &lt;/P&gt;&lt;P&gt;citytxamt TYPE char13, &lt;/P&gt;&lt;P&gt;END OF type_auditin_mapping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : lw_auditin TYPE type_auditin_mapping.&lt;/P&gt;&lt;P&gt;DATA:l_vbeln TYPE vbrp-vbeln,&lt;/P&gt;&lt;P&gt;l_posnr TYPE vbrp-posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_vbeln = lw_auditin-invno.&lt;/P&gt;&lt;P&gt;l_posnr = lw_auditin-invitemno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anurag+&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;input = lw_auditin-invno&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;output = l_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;input = lw_auditin-invitemno   &lt;/P&gt;&lt;P&gt;imPORTING&lt;/P&gt;&lt;P&gt;output = l_posnr.&lt;/P&gt;&lt;P&gt;Anurag+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE aubel aupos "Sales Doc; Sales Item&lt;/P&gt;&lt;P&gt;INTO (l_aubel, l_aupos)&lt;/P&gt;&lt;P&gt;FROM vbrp "Billing Doc&lt;/P&gt;&lt;P&gt;WHERE vbeln = l_vbeln &lt;/P&gt;&lt;P&gt;AND posnr = l_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;WRITE: / g_inv, '/', g_invitem,&lt;/P&gt;&lt;P&gt;' not found in the vbrp table'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the above does not work try to define the variables l_vbeln(10) type n, l_posnr(6) type n..in this case we would not need the conversion functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 09:28:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1478428#M224142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T09:28:34Z</dc:date>
    </item>
  </channel>
</rss>

