<?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: Debugging Call 'ThNoGet' statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-call-thnoget-statement/m-p/4020464#M960714</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi tarun gupta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The one you have got is a system function. Kindly refer below for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kernel C System calls are really just for SAP internal use. If SAP wants to allow a customer to use one, they will generally write a released ABAP function module to expose the Kernel Call. One example of this is the function module TH_USER_INFO. The following is from the on-line help for system call: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL - Call a System Function &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &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;Basic form 8 &lt;/P&gt;&lt;P&gt;CALL cfunc. &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;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;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;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;Example &lt;/P&gt;&lt;P&gt;Код: &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;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;Runtime errors: &lt;/P&gt;&lt;P&gt;CALL_C_FUNCTION_NOT_FOUND: Specified system function unknown. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL_C_FUNCTION_NO_AUTHORITY: No authorization to call this C function. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL_SYSTEM-DISABLED: The system function SYSTEM is disabled (with CALL 'SYSTEM'). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the System functions &lt;/P&gt;&lt;P&gt;ABAP_CALLSTACK &lt;/P&gt;&lt;P&gt;ABAP_CRC64 &lt;/P&gt;&lt;P&gt;ABAP_PRECOMPILED_HEADER_USAGE &lt;/P&gt;&lt;P&gt;ABSTOR_TEST AB_CALL_LITL_CHECK AB_CALL_STACK_TRACE &lt;/P&gt;&lt;P&gt;AB_CREATE_SAPHFILE &lt;/P&gt;&lt;P&gt;AB_DELETE_ALL_MEM &lt;/P&gt;&lt;P&gt;AB_DELETE_ALL_SHARED &lt;/P&gt;&lt;P&gt;AB_DELETE_MEM AB_DELETE_SHARED &lt;/P&gt;&lt;P&gt;AB_FIELD_CHECKWRITEADDRESS &lt;/P&gt;&lt;P&gt;AB_FIELD_INFO &lt;/P&gt;&lt;P&gt;AB_FRAG_VIEW_TO_ITAB &lt;/P&gt;&lt;P&gt;AB_GET_CALLER AB_GET_COUNTRY &lt;/P&gt;&lt;P&gt;AB_GET_CX_DATA &lt;/P&gt;&lt;P&gt;AB_GET_CX_FOR_CUSTOMIZE &lt;/P&gt;&lt;P&gt;AB_GET_C_PARMS &lt;/P&gt;&lt;P&gt;AB_GET_DIRECTORY_DB &lt;/P&gt;&lt;P&gt;AB_GET_DIRECTORY_MEM &lt;/P&gt;&lt;P&gt;AB_GET_DIRECTORY_SHARED &lt;/P&gt;&lt;P&gt;AB_GET_GLOBAL_FIELDS &lt;/P&gt;&lt;P&gt;AB_GET_KEYS_MEM &lt;/P&gt;&lt;P&gt;AB_GET_KEYS_SHARED &lt;/P&gt;&lt;P&gt;AB_GET_NEXT_LEVEL_SHARED &lt;/P&gt;&lt;P&gt;AB_GET_TEXT_FROM_CLUSTER &lt;/P&gt;&lt;P&gt;AB_GET_VIEW_TO_ITAB AB_IMPORT_DECOMPRESS &lt;/P&gt;&lt;P&gt;AB_PRINT &lt;/P&gt;&lt;P&gt;AB_PROGTEXT &lt;/P&gt;&lt;P&gt;AB_P_A_CALC &lt;/P&gt;&lt;P&gt;AB_READTABLE_TRACE_GET AB_READTABLE_TRACE_ON &lt;/P&gt;&lt;P&gt;AB_READ_TEXTPOOL &lt;/P&gt;&lt;P&gt;AB_RFC_STATISTIC_TID &lt;/P&gt;&lt;P&gt;AB_RFC_X_SCRAMBLE_STRING &lt;/P&gt;&lt;P&gt;AB_RTM_DUMP &lt;/P&gt;&lt;P&gt;AB_RTM_LOAD_FILE &lt;/P&gt;&lt;P&gt;AB_SET_CODEPAGE_IN_CLUSTER &lt;/P&gt;&lt;P&gt;AB_SET_CX_DATA &lt;/P&gt;&lt;P&gt;AB_SET_C_PARMS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ThDisplay &lt;/P&gt;&lt;P&gt;ThGwMon &lt;/P&gt;&lt;P&gt;ThNoCall &lt;/P&gt;&lt;P&gt;ThNoGet -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; this is the one you have got...&lt;/P&gt;&lt;P&gt;ThNoRead ThSndDelUser &lt;/P&gt;&lt;P&gt;ThSysInfo &lt;/P&gt;&lt;P&gt;ThTest &lt;/P&gt;&lt;P&gt;ThUsrInfo &lt;/P&gt;&lt;P&gt;ThVBCall &lt;/P&gt;&lt;P&gt;ThVersion &lt;/P&gt;&lt;P&gt;ThWpInfo &lt;/P&gt;&lt;P&gt;TrCall&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jun 2008 12:04:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-13T12:04:59Z</dc:date>
    <item>
      <title>Debugging Call 'ThNoGet' statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-call-thnoget-statement/m-p/4020463#M960713</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;&lt;/P&gt;&lt;P&gt;Can any please explain me the following command?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   Nummernvergabe aus Puffer aufrufen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL 'ThNoGet' ID 'BNRIV'    FIELD BNRIV&lt;/P&gt;&lt;P&gt;                 ID 'NO'       FIELD G_NOIVBUFFER&lt;/P&gt;&lt;P&gt;                 ID 'QUAN'     FIELD P_QUANTITY&lt;/P&gt;&lt;P&gt;                 ID 'PERCENT'  FIELD TNRO-PERCENTAGE&lt;/P&gt;&lt;P&gt;                 ID 'NONRSWAP' FIELD TNRO-NONRSWAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, please let me know how to debug this command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 11:51:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-call-thnoget-statement/m-p/4020463#M960713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-13T11:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging Call 'ThNoGet' statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-call-thnoget-statement/m-p/4020464#M960714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi tarun gupta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The one you have got is a system function. Kindly refer below for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kernel C System calls are really just for SAP internal use. If SAP wants to allow a customer to use one, they will generally write a released ABAP function module to expose the Kernel Call. One example of this is the function module TH_USER_INFO. The following is from the on-line help for system call: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL - Call a System Function &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &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;Basic form 8 &lt;/P&gt;&lt;P&gt;CALL cfunc. &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;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;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;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;Example &lt;/P&gt;&lt;P&gt;Код: &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;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;Runtime errors: &lt;/P&gt;&lt;P&gt;CALL_C_FUNCTION_NOT_FOUND: Specified system function unknown. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL_C_FUNCTION_NO_AUTHORITY: No authorization to call this C function. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL_SYSTEM-DISABLED: The system function SYSTEM is disabled (with CALL 'SYSTEM'). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the System functions &lt;/P&gt;&lt;P&gt;ABAP_CALLSTACK &lt;/P&gt;&lt;P&gt;ABAP_CRC64 &lt;/P&gt;&lt;P&gt;ABAP_PRECOMPILED_HEADER_USAGE &lt;/P&gt;&lt;P&gt;ABSTOR_TEST AB_CALL_LITL_CHECK AB_CALL_STACK_TRACE &lt;/P&gt;&lt;P&gt;AB_CREATE_SAPHFILE &lt;/P&gt;&lt;P&gt;AB_DELETE_ALL_MEM &lt;/P&gt;&lt;P&gt;AB_DELETE_ALL_SHARED &lt;/P&gt;&lt;P&gt;AB_DELETE_MEM AB_DELETE_SHARED &lt;/P&gt;&lt;P&gt;AB_FIELD_CHECKWRITEADDRESS &lt;/P&gt;&lt;P&gt;AB_FIELD_INFO &lt;/P&gt;&lt;P&gt;AB_FRAG_VIEW_TO_ITAB &lt;/P&gt;&lt;P&gt;AB_GET_CALLER AB_GET_COUNTRY &lt;/P&gt;&lt;P&gt;AB_GET_CX_DATA &lt;/P&gt;&lt;P&gt;AB_GET_CX_FOR_CUSTOMIZE &lt;/P&gt;&lt;P&gt;AB_GET_C_PARMS &lt;/P&gt;&lt;P&gt;AB_GET_DIRECTORY_DB &lt;/P&gt;&lt;P&gt;AB_GET_DIRECTORY_MEM &lt;/P&gt;&lt;P&gt;AB_GET_DIRECTORY_SHARED &lt;/P&gt;&lt;P&gt;AB_GET_GLOBAL_FIELDS &lt;/P&gt;&lt;P&gt;AB_GET_KEYS_MEM &lt;/P&gt;&lt;P&gt;AB_GET_KEYS_SHARED &lt;/P&gt;&lt;P&gt;AB_GET_NEXT_LEVEL_SHARED &lt;/P&gt;&lt;P&gt;AB_GET_TEXT_FROM_CLUSTER &lt;/P&gt;&lt;P&gt;AB_GET_VIEW_TO_ITAB AB_IMPORT_DECOMPRESS &lt;/P&gt;&lt;P&gt;AB_PRINT &lt;/P&gt;&lt;P&gt;AB_PROGTEXT &lt;/P&gt;&lt;P&gt;AB_P_A_CALC &lt;/P&gt;&lt;P&gt;AB_READTABLE_TRACE_GET AB_READTABLE_TRACE_ON &lt;/P&gt;&lt;P&gt;AB_READ_TEXTPOOL &lt;/P&gt;&lt;P&gt;AB_RFC_STATISTIC_TID &lt;/P&gt;&lt;P&gt;AB_RFC_X_SCRAMBLE_STRING &lt;/P&gt;&lt;P&gt;AB_RTM_DUMP &lt;/P&gt;&lt;P&gt;AB_RTM_LOAD_FILE &lt;/P&gt;&lt;P&gt;AB_SET_CODEPAGE_IN_CLUSTER &lt;/P&gt;&lt;P&gt;AB_SET_CX_DATA &lt;/P&gt;&lt;P&gt;AB_SET_C_PARMS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ThDisplay &lt;/P&gt;&lt;P&gt;ThGwMon &lt;/P&gt;&lt;P&gt;ThNoCall &lt;/P&gt;&lt;P&gt;ThNoGet -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; this is the one you have got...&lt;/P&gt;&lt;P&gt;ThNoRead ThSndDelUser &lt;/P&gt;&lt;P&gt;ThSysInfo &lt;/P&gt;&lt;P&gt;ThTest &lt;/P&gt;&lt;P&gt;ThUsrInfo &lt;/P&gt;&lt;P&gt;ThVBCall &lt;/P&gt;&lt;P&gt;ThVersion &lt;/P&gt;&lt;P&gt;ThWpInfo &lt;/P&gt;&lt;P&gt;TrCall&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 12:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-call-thnoget-statement/m-p/4020464#M960714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-13T12:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging Call 'ThNoGet' statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-call-thnoget-statement/m-p/4020465#M960715</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;This statement is a Kernel System call, written in C language. You cannot debug System call. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jun 2008 06:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-call-thnoget-statement/m-p/4020465#M960715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-14T06:59:04Z</dc:date>
    </item>
  </channel>
</rss>

