<?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 in  CALL FUNCTION 'GET_JOB_RUNTIME_INFO' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203924#M1626609</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried with above code and as per link both are the same &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But again Job_name is getting blank...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Getting Sy-subrc 1 that is No run time info....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Oct 2011 06:21:46 GMT</pubDate>
    <dc:creator>former_member550878</dc:creator>
    <dc:date>2011-10-04T06:21:46Z</dc:date>
    <item>
      <title>Problem in  CALL FUNCTION 'GET_JOB_RUNTIME_INFO'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203921#M1626606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While working in PDF attachment I am using&lt;/P&gt;&lt;P&gt;Function 'GET_JOB_RUNTIME_INFO' as bellow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GET_JOB_RUNTIME_INFO'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      eventid                 = gd_eventid&lt;/P&gt;&lt;P&gt;      eventparm               = gd_eventparm&lt;/P&gt;&lt;P&gt;      external_program_active = gd_external_program_active&lt;/P&gt;&lt;P&gt;      jobcount                = gd_jobcount&lt;/P&gt;&lt;P&gt;      jobname                 = gd_jobname&lt;/P&gt;&lt;P&gt;      stepcount               = gd_stepcount&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      no_runtime_info         = 1&lt;/P&gt;&lt;P&gt;      OTHERS                  = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But I am getting gd_jobname, gd_jobcount,gd_stepcount blanck&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So please help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2011 04:50:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203921#M1626606</guid>
      <dc:creator>former_member550878</dc:creator>
      <dc:date>2011-10-04T04:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in  CALL FUNCTION 'GET_JOB_RUNTIME_INFO'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203922#M1626607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: V_EVTID     LIKE TBTCM-EVENTID,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            V_EVTPRM    LIKE TBTCM-EVENTPARM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            V_JOBNAM    LIKE TBTCM-JOBNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GET_JOB_RUNTIME_INFO'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EVENTID         = V_EVTID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EVENTPARM       = V_EVTPRM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOBNAME         = V_JOBNAM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NO_RUNTIME_INFO = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OTHERS          = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WRITE:/'ERROR IN FUNCTION'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WRITE:/ 'JOB', V_JOBNAM, 'STARTED WITH EVENT', V_EVTID, 'AND PARAMETER', V_EVTPRM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2011 05:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203922#M1626607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-04T05:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in  CALL FUNCTION 'GET_JOB_RUNTIME_INFO'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203923#M1626608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;[You must check this once|http://wiki.sdn.sap.com/wiki/display/Snippets/Gets&lt;EM&gt;information&lt;/EM&gt;about&lt;EM&gt;a&lt;/EM&gt;job&lt;EM&gt;from&lt;/EM&gt;abap+editor.]&lt;/P&gt;&lt;P&gt;This link may be helpful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;koolspy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2011 06:03:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203923#M1626608</guid>
      <dc:creator>koolspy_ultimate</dc:creator>
      <dc:date>2011-10-04T06:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in  CALL FUNCTION 'GET_JOB_RUNTIME_INFO'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203924#M1626609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried with above code and as per link both are the same &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But again Job_name is getting blank...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Getting Sy-subrc 1 that is No run time info....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2011 06:21:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203924#M1626609</guid>
      <dc:creator>former_member550878</dc:creator>
      <dc:date>2011-10-04T06:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in  CALL FUNCTION 'GET_JOB_RUNTIME_INFO'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203925#M1626610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   You should execute this only in background.... This FM measures the runtime of the background job and will not return anything except the exception during foreground execution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: SrikanthRS on Oct 4, 2011 8:27 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2011 06:27:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203925#M1626610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-04T06:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in  CALL FUNCTION 'GET_JOB_RUNTIME_INFO'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203926#M1626611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;[Check this|http://www.abapprogramming.net/2007/04/debugging-in-abap.html]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;koolspy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2011 07:30:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-call-function-get-job-runtime-info/m-p/8203926#M1626611</guid>
      <dc:creator>koolspy_ultimate</dc:creator>
      <dc:date>2011-10-04T07:30:29Z</dc:date>
    </item>
  </channel>
</rss>

