<?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: Problem with Parameters or Query in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418588#M1646386</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear Sriram.S	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.. for the answer..&lt;/P&gt;&lt;P&gt;would you please give me a brief between hkont and saknr.&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;Avirat Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Dec 2011 08:44:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-12-20T08:44:55Z</dc:date>
    <item>
      <title>Problem with Parameters or Query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418582#M1646380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends&lt;/P&gt;&lt;P&gt;i am not able to rectify the issue with following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN  BEGIN OF BLOCK BK1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS BUKRS FOR BSEG-BUKRS OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS  GJAHR FOR BSEG-GJAHR OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS  SAKNR FOR BSEG-SAKNR.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK BK1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT BUKRS BELNR GJAHR AUGDT AUGCP AUGBL BSCHL KOART SHKZG DMBTR ZUONR SGTXT&lt;/P&gt;&lt;P&gt;      HKONT KUNNR LIFNR FROM BSEG INTO corresponding fields of table IT_BSEG&lt;/P&gt;&lt;P&gt;      WHERE BUKRS in BUKRS&lt;/P&gt;&lt;P&gt;      AND SAKNR IN SAKNR&lt;/P&gt;&lt;P&gt;      AND GJAHR in GJAHR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i entered bukrs , gjahr and saknr then&lt;/P&gt;&lt;P&gt;there is no any value inside internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if i entered bukrs and gjahr then there are list of values inside internal table including saknr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i came to know that there is some issue with saknr ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Avirat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 06:46:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418582#M1646380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-20T06:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Parameters or Query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418583#M1646381</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 giving hkont instead of saknr as both fields are same.If there are no values for saknr you woill not get you can use hkont also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt; Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 06:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418583#M1646381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-20T06:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Parameters or Query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418584#M1646382</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;Before processing query check the value in your database table through SE16N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the 3 fields and check the whether the values are displaying or not . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass 2 fields and check whether it is dispalying or not .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are passing two fields bukrs and gjahr for that no saknr value is not there thats why the data is not fetching.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You this is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;G.Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 06:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418584#M1646382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-20T06:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Parameters or Query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418585#M1646383</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 adding SAKNR feild in the select query selection fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 07:02:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418585#M1646383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-20T07:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Parameters or Query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418586#M1646384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a conversion exit for field SAKNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use below function modules accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_INPUT&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_OUTPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 07:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418586#M1646384</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2011-12-20T07:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Parameters or Query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418587#M1646385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;H Corrtech,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use the function module  'CONVERSION_EXIT_ALPHA_INPUT' before the select  to modify the range table SAKNR as the field type is char and convers.routine (ALPHA) is attached. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;conversation exit fun is used to add the preceding zero&lt;/P&gt;&lt;P&gt;Exp:'1234 ' --&amp;gt; '00001234'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Prabhakaran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 07:55:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418587#M1646385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-20T07:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Parameters or Query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418588#M1646386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear Sriram.S	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.. for the answer..&lt;/P&gt;&lt;P&gt;would you please give me a brief between hkont and saknr.&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;Avirat Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 08:44:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-parameters-or-query/m-p/8418588#M1646386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-20T08:44:55Z</dc:date>
    </item>
  </channel>
</rss>

