<?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: CHECK Command in Report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731358#M1457051</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thanks for the quick responses! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;i will try the new check statements.&lt;/P&gt;&lt;P&gt;i'm using this code, to enhance a datasource which extracts data into the BW.&lt;/P&gt;&lt;P&gt;the datasource, the report and the fuba are on the sourcesystem side.&lt;/P&gt;&lt;P&gt;if i comment the check-command out, the FM ist called correctly. so the remote-checkbox of the FM properties shouldn't change the behaviour?!&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;phil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Mar 2010 11:36:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-10T11:36:03Z</dc:date>
    <item>
      <title>CHECK Command in Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731352#M1457045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;i haved programmed an include in abap.&lt;/P&gt;&lt;P&gt;in this include, i check, if i use the code in debug mode or if the user begins with RFC.&lt;/P&gt;&lt;P&gt;here the code:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;Check    l_debug = 'X'  OR sy-uname(3) = 'RFC'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'Z_XYZ'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      T_table       = T_table.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;when i ran the programm in debugging mode and i change the l_debug flag to 'X', then the FM is called.&lt;/P&gt;&lt;P&gt;when i ran the report by the remote user (begins with RFC), the FM isn't called. i can see the user name in the log.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you have ideas, why the behaviour differs in the two cases? do i have to use brackets for the two logical expressions? but normally, abap should check both expressions also without using brackets?!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;phil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 10:40:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731352#M1457045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T10:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK Command in Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731353#M1457046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; -&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; Check    l_debug = 'X'  OR sy-uname(3) = 'RFC'.&lt;/P&gt;&lt;P&gt;&amp;gt;  &lt;/P&gt;&lt;P&gt;&amp;gt;   CALL FUNCTION 'Z_XYZ'&lt;/P&gt;&lt;P&gt;&amp;gt;     TABLES&lt;/P&gt;&lt;P&gt;&amp;gt;       T_table       = T_table.&lt;/P&gt;&lt;P&gt;&amp;gt; -&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; phil&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try the following code in place of yours&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Check l_debug = 'X' OR sy-uname CP 'RFC*'. " use CP in place of  = .

CALL FUNCTION 'Z_XYZ'
TABLES
T_table = T_table.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ritesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 10:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731353#M1457046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T10:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK Command in Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731354#M1457047</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 am not clear whether you have problem with FM or CHECK statement.but look at the below comments&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If problem with Check:&lt;/P&gt;&lt;P&gt;    According to ur statement it should work fine.  (if all remote User ID start with 'RFC').&lt;/P&gt;&lt;P&gt;If problem with FM:&lt;/P&gt;&lt;P&gt;  You are saying that, when You ran the report by the remote user, then i think fucntion should be RFC Enabled to be called by a remote 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;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vamsi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vamsi Krishna on Mar 10, 2010 11:51 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 10:51:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731354#M1457047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T10:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK Command in Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731355#M1457048</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;there should be no difference, and you do not have to use brackets.&lt;/P&gt;&lt;P&gt;Your contitions look good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace RFC with first letters of your user id and check - it should work.&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;--&lt;/P&gt;&lt;P&gt;Przemysław&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 10:52:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731355#M1457048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T10:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK Command in Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731356#M1457049</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 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check l_debug = 'X' OR sy-uname(3) EQ 'RFC'.   &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_XYZ'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;T_table = T_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 10:53:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731356#M1457049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T10:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK Command in Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731357#M1457050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Philip,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please create a check-point group (transaction SAAB) and use it before CHECK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOG-POINT ID checkpoint_group
  [SUBKEY sub_key]
  [FIELDS field1 u2026 fieldn].&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i.e.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOG-POINT ID Z_check
  subkey sy-uzeit
  fields sy-uname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the SUBKEY because the log will be overwritten for each call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am convinced if you see the user name as it is eveluated by the check statement, you will see what is wrong.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 11:04:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731357#M1457050</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-03-10T11:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK Command in Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731358#M1457051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thanks for the quick responses! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;i will try the new check statements.&lt;/P&gt;&lt;P&gt;i'm using this code, to enhance a datasource which extracts data into the BW.&lt;/P&gt;&lt;P&gt;the datasource, the report and the fuba are on the sourcesystem side.&lt;/P&gt;&lt;P&gt;if i comment the check-command out, the FM ist called correctly. so the remote-checkbox of the FM properties shouldn't change the behaviour?!&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;phil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 11:36:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731358#M1457051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T11:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK Command in Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731359#M1457052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there, i found the problem. in the is-u, the customer exit is called during the mass activity for sales statistic. here, the user ist my one, not the RFC user. i thought, the exit is called during the extraction into the bw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for all the hints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;philipp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:55:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-command-in-report/m-p/6731359#M1457052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T08:55:40Z</dc:date>
    </item>
  </channel>
</rss>

