<?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 Need clarification on this statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-clarification-on-this-statement/m-p/1753450#M326579</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;In the function module TH_DELETE_USER.&lt;/P&gt;&lt;P&gt;There is one statement CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE_DELETE_USR&lt;/P&gt;&lt;P&gt;      ID 'TID' FIELD TID.&lt;/P&gt;&lt;P&gt;Can any one plaese clarify what the meaning of this statement&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Dec 2006 05:41:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-06T05:41:18Z</dc:date>
    <item>
      <title>Need clarification on this statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-clarification-on-this-statement/m-p/1753450#M326579</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;In the function module TH_DELETE_USER.&lt;/P&gt;&lt;P&gt;There is one statement CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE_DELETE_USR&lt;/P&gt;&lt;P&gt;      ID 'TID' FIELD TID.&lt;/P&gt;&lt;P&gt;Can any one plaese clarify what the meaning of this statement&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 05:41:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-clarification-on-this-statement/m-p/1753450#M326579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T05:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: Need clarification on this statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-clarification-on-this-statement/m-p/1753451#M326580</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 think it's system call.Check syntax in ABAP for system commands(put F1 in call).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 05:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-clarification-on-this-statement/m-p/1753451#M326580</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-12-06T05:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Need clarification on this statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-clarification-on-this-statement/m-p/1753452#M326581</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;It's a Cfunction call. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement is for internal use only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incompatible changes or further developments may occur at any time without warning or notice. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic form 8 &lt;/P&gt;&lt;P&gt;CALL cfunc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... ID id1 FIELD f1 ... ID idn FIELD fn &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Calls the system function cfunc. The relevant function must exist in the file sapactab.h. If you change or recreate a function, you have to compile and link the SAP kernel again. For this, you need the C source code files. &lt;/P&gt;&lt;P&gt;Normally, external programs should be called by RFC with CALL FUNCTION ... DESTINATION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition &lt;/P&gt;&lt;P&gt;... ID id1 FIELD f1 ... ID idn FIELD fn &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Passes fields to the called program by reference. With "ID id1", you specify the name of a formal parameter, and with "FIELD f1" the relevant field from the ABAP/4 program. If a formal parameter expects an internal table, the latter is passed in the form "FIELD tab[]". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;DATA RESULT(8). &lt;/P&gt;&lt;P&gt;CALL 'MULTIPLY' ID 'P1'  FIELD '9999' &lt;/P&gt;&lt;P&gt;                ID 'P2'  FIELD '9999' &lt;/P&gt;&lt;P&gt;                ID 'RES' FIELD RESULT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;With some critical C functions, the system automatically performs an authorization check. If the user does not have the appropriate authorization, a runtime error occurs. You can check the authorization with the function module AUTHORITY_CHECK_C_FUNCTION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exceptions &lt;/P&gt;&lt;P&gt;Catchable Exceptions &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: You do not have the authorization to call this C function. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_C_FUNCTION_NO_AUTHORITY &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The system function specified is unknown. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_C_FUNCTION_NOT_FOUND &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The system function SYSTEM is deactivated (in CALL 'SYSTEM') &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_SYSTEM_DISABLED &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Surya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 05:51:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-clarification-on-this-statement/m-p/1753452#M326581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T05:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Need clarification on this statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-clarification-on-this-statement/m-p/1753453#M326582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Calls the system function. &lt;/P&gt;&lt;P&gt;It passes fields to the called program by reference. With "ID id1", you specify the name of a formal parameter, and with "FIELD f1" the relevant field from the ABAP/4 program. If a formal parameter expects an internal table, the latter is passed in the form "FIELD tab[]".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 05:53:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-clarification-on-this-statement/m-p/1753453#M326582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T05:53:26Z</dc:date>
    </item>
  </channel>
</rss>

