<?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 F8 EXECUTION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925846#M384176</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even the called program not importing any data..still it is showing the job status as Finished / cancelled. How can we confirm that export statment has uploaded data to cluster??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we find out processing time of a program ..any system variable returns that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Praneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Feb 2007 09:26:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-13T09:26:54Z</dc:date>
    <item>
      <title>PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925836#M384166</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've developed a report which calls another standard report, which exports values to memory. &lt;/P&gt;&lt;P&gt;i will import those values to my program. I am calling that standard program in b/g mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i run the report in debugging mode i am getting output. But if i run directly (F8) the values are not exporting to memory and not getting the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what would be the problem??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points assured for quick response.&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;Pra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 13:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925836#M384166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T13:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925837#M384167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cn u show ur code??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 13:38:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925837#M384167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T13:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925838#M384168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***PERFORM TO SUBMIT STANDARD REPORT TO CAPTURE DATA INTO itab.&lt;/P&gt;&lt;P&gt;  PERFORM SUBMIT_zstandard_PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***PERFORM TO IMPORT DATA FROM DP96 PROGRAM.&lt;/P&gt;&lt;P&gt;  PERFORM IMPORT_DATA_FROM_standard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM SUBMIT_standard_PROGRAM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'JOB_OPEN'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      JOBNAME          = C_JOBNAME&lt;/P&gt;&lt;P&gt;      JOBCLASS         = 'A'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      JOBCOUNT         = X_JOBCOUNT&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CANT_CREATE_JOB  = 1&lt;/P&gt;&lt;P&gt;      INVALID_JOB_DATA = 2&lt;/P&gt;&lt;P&gt;      JOBNAME_MISSING  = 3&lt;/P&gt;&lt;P&gt;      OTHERS           = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SUBMIT  zzzstandard&lt;/P&gt;&lt;P&gt;                      USER SY-UNAME&lt;/P&gt;&lt;P&gt;                      VIA JOB C_JOBNAME NUMBER X_JOBCOUNT&lt;/P&gt;&lt;P&gt;                      AND RETURN&lt;/P&gt;&lt;P&gt;    WITH DD_VBELN IN S_VBELN&lt;/P&gt;&lt;P&gt;    WITH DD_VKORG IN S_VKORG&lt;/P&gt;&lt;P&gt;    WITH DD_ERNAM IN S_ERNAM&lt;/P&gt;&lt;P&gt;    WITH DD_ERDAT IN S_ERDAT&lt;/P&gt;&lt;P&gt;    WITH P_PDFROM = P_MONTH&lt;/P&gt;&lt;P&gt;    WITH P_YRFROM = P_YEAR&lt;/P&gt;&lt;P&gt;    WITH P_DATETO = SY-DATUM&lt;/P&gt;&lt;P&gt;    WITH P_SAVEX  = 'X'&lt;/P&gt;&lt;P&gt;    WITH P_TEST   = 'X'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE I000 WITH'submit started'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'JOB_CLOSE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        JOBCOUNT             = X_JOBCOUNT&lt;/P&gt;&lt;P&gt;        JOBNAME              = C_JOBNAME&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       PRDDAYS              = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       PRDHOURS             = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       PRDMINS              = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        STRTIMMED            = 'X'&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        CANT_START_IMMEDIATE = 1&lt;/P&gt;&lt;P&gt;        INVALID_STARTDATE    = 2&lt;/P&gt;&lt;P&gt;        JOBNAME_MISSING      = 3&lt;/P&gt;&lt;P&gt;        JOB_CLOSE_FAILED     = 4&lt;/P&gt;&lt;P&gt;        JOB_NOSTEPS          = 5&lt;/P&gt;&lt;P&gt;        JOB_NOTEX            = 6&lt;/P&gt;&lt;P&gt;        LOCK_FAILED          = 7&lt;/P&gt;&lt;P&gt;        INVALID_TARGET       = 8&lt;/P&gt;&lt;P&gt;        OTHERS               = 9.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     MESSAGE I000 WITH'submit done - success'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     PERFORM WRITE.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ZZZstandard program i've written&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export statement which is not exporting values...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Praneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 13:43:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925838#M384168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T13:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925839#M384169</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;The EXPORT / IMPORT to ABAP Memory parameters might be not used correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please paste the code here so that any comments can given.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Atul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 13:49:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925839#M384169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T13:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925840#M384170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;***PERFORM TO SUBMIT STANDARD REPORT TO CAPTURE DATA INTO itab.&lt;/P&gt;&lt;P&gt;PERFORM SUBMIT_zstandard_PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;wait up to 5 seconds.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***PERFORM TO IMPORT DATA FROM DP96 PROGRAM.&lt;/P&gt;&lt;P&gt;PERFORM IMPORT_DATA_FROM_standard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change ur coding like this &amp;amp; execute using F8.&lt;/P&gt;&lt;P&gt;this wait syntax may help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kalpanashri Rajendran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 14:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925840#M384170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T14:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925841#M384171</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;what is the necessity to wait for 5 seconds?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is must then how can i do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My export and import coding is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exporting in called program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT TAB = T_RESULTS_LIST&lt;/P&gt;&lt;P&gt;        TO DATABASE INDX(XY)&lt;/P&gt;&lt;P&gt;        FROM G_INDEX&lt;/P&gt;&lt;P&gt;        ID 'T_TAB'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing in my calling program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT TAB = T_RESULTS_LIST&lt;/P&gt;&lt;P&gt;    FROM DATABASE INDX(XY)&lt;/P&gt;&lt;P&gt;    TO   G_INDEX&lt;/P&gt;&lt;P&gt;    ID 'T_TAB'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion to change coding??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Praneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 06:09:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925841#M384171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T06:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925842#M384172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;The export statement will write to INDX database table with ID XY and Import statement will read the cluster data from the database table INDX with id XY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to export to memory and import from memory, use the normal &lt;/P&gt;&lt;P&gt;EXPORT obj1 ... objn TO MEMORY.&lt;/P&gt;&lt;P&gt;and IMPORT obj1 ... objn FROM MEMORY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 06:34:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925842#M384172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T06:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925843#M384173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Praneet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you submit the report via a JOB the called program is executed in background. You have mentioned this in your query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In such cases the &amp;lt;b&amp;gt;calling program&amp;lt;/b&amp;gt; does not wait till the &amp;lt;b&amp;gt;called program&amp;lt;/b&amp;gt; has finished execution and program execution for the calling program continues after the SUBMIT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next executable statement in the calling program is the IMPORT statement but since the called program is probably still under processing and has not exported anything to the database id. Hence the IMPORT statement does not fetch anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 06:39:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925843#M384173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T06:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925844#M384174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shall i use &amp;lt;b&amp;gt;commit work and wait&amp;lt;/b&amp;gt;  statment to make my called program to wait and till calling program to finish it's execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your answer is Yes, where can i insert the code exactly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any other solution to avoid this problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajasekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 08:41:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925844#M384174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T08:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925845#M384175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Commit Work and Wait is not the solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you had to write a WAIT statement then you would have to know the processing time(XX) of the called program and then write a WAIT UP TO XX seconds statement in your program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have to process the called program in the background you can check the status of the job in a DO...ENDO loop after the JOB_CLOSE function and before the IMPORT statement. If the job has finished/cancelled exit the DO loop and continue with the program i.e. the IMPORT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 09:11:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925845#M384175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T09:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925846#M384176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even the called program not importing any data..still it is showing the job status as Finished / cancelled. How can we confirm that export statment has uploaded data to cluster??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we find out processing time of a program ..any system variable returns that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Praneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 09:26:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925846#M384176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T09:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925847#M384177</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;For knowing the processing time of a program&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------" /&gt;&lt;P&gt;Use SE36 Transaction to get the run time Analaysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward suitable points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Atul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 09:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925847#M384177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T09:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925848#M384178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot know the processing time of a background job beforehand. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the SY-SUBRC variable after the EXPORT statement. If it is set to ZERO then the data is exported correctly. For any other value of SY-SUBRC you should raise an exception in the program since the calling program is dependant on the exported data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I meant in my earlier post was to modify your code as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOB_OPEN&lt;/P&gt;&lt;P&gt;JOB_SUBMIT&lt;/P&gt;&lt;P&gt;JOB_CLOSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;Check status of the job. &lt;/P&gt;&lt;P&gt;IF JOB_STATUS = FINISHED. "Data should have been exported&lt;/P&gt;&lt;P&gt; EXIT THE LOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF JOB_STATUS = CANCELLED.&lt;/P&gt;&lt;P&gt; EXIT THE LOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF JOB_STATUS = FINISHED.&lt;/P&gt;&lt;P&gt;IMPORT DATA.&lt;/P&gt;&lt;P&gt;ELSEIF JOB_STATUS = CANCELLED.&lt;/P&gt;&lt;P&gt;*Message stating dependant job was cancelled&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Kiran&lt;/P&gt;&lt;P&gt;Please reward useful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 09:42:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925848#M384178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T09:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925849#M384179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;before importing the data ur first perform must be completed but here its not completed so ur not getting the output. Here we have to use wait statment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i have inserted tht syntax in ur program now execute ur program &amp;amp; check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***PERFORM TO SUBMIT STANDARD REPORT TO CAPTURE DATA INTO itab.&lt;/P&gt;&lt;P&gt;PERFORM SUBMIT_zstandard_PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wait up to 5 seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***PERFORM TO IMPORT DATA FROM DP96 PROGRAM.&lt;/P&gt;&lt;P&gt;PERFORM IMPORT_DATA_FROM_standard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM SUBMIT_standard_PROGRAM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'JOB_OPEN'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;JOBNAME = C_JOBNAME&lt;/P&gt;&lt;P&gt;JOBCLASS = 'A'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;JOBCOUNT = X_JOBCOUNT&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;CANT_CREATE_JOB = 1&lt;/P&gt;&lt;P&gt;INVALID_JOB_DATA = 2&lt;/P&gt;&lt;P&gt;JOBNAME_MISSING = 3&lt;/P&gt;&lt;P&gt;OTHERS = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT zzzstandard&lt;/P&gt;&lt;P&gt;USER SY-UNAME&lt;/P&gt;&lt;P&gt;VIA JOB C_JOBNAME NUMBER X_JOBCOUNT&lt;/P&gt;&lt;P&gt;AND RETURN&lt;/P&gt;&lt;P&gt;WITH DD_VBELN IN S_VBELN&lt;/P&gt;&lt;P&gt;WITH DD_VKORG IN S_VKORG&lt;/P&gt;&lt;P&gt;WITH DD_ERNAM IN S_ERNAM&lt;/P&gt;&lt;P&gt;WITH DD_ERDAT IN S_ERDAT&lt;/P&gt;&lt;P&gt;WITH P_PDFROM = P_MONTH&lt;/P&gt;&lt;P&gt;WITH P_YRFROM = P_YEAR&lt;/P&gt;&lt;P&gt;WITH P_DATETO = SY-DATUM&lt;/P&gt;&lt;P&gt;WITH P_SAVEX = 'X'&lt;/P&gt;&lt;P&gt;WITH P_TEST = 'X'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE I000 WITH'submit started'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'JOB_CLOSE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;JOBCOUNT = X_JOBCOUNT&lt;/P&gt;&lt;P&gt;JOBNAME = C_JOBNAME&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PRDDAYS = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PRDHOURS = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PRDMINS = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;STRTIMMED = 'X'&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;CANT_START_IMMEDIATE = 1&lt;/P&gt;&lt;P&gt;INVALID_STARTDATE = 2&lt;/P&gt;&lt;P&gt;JOBNAME_MISSING = 3&lt;/P&gt;&lt;P&gt;JOB_CLOSE_FAILED = 4&lt;/P&gt;&lt;P&gt;JOB_NOSTEPS = 5&lt;/P&gt;&lt;P&gt;JOB_NOTEX = 6&lt;/P&gt;&lt;P&gt;LOCK_FAILED = 7&lt;/P&gt;&lt;P&gt;INVALID_TARGET = 8&lt;/P&gt;&lt;P&gt;OTHERS = 9.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE I000 WITH'submit done - success'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PERFORM WRITE.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 09:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925849#M384179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T09:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925850#M384180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Kalpana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i put wait statement it is working..i've checked for several instances.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even i put commit work and wait after export, is not working. Only wait statement before importing is working...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need only one clarification ..how can we enusre that  Wait is for 5 seconds?&lt;/P&gt;&lt;P&gt;can you explain....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 10:06:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925850#M384180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T10:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925851#M384181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thats based on the amount of data transfered u can check with 2 seconds also .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u r  importing more data then u can increase the seconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since i dont know the amount of transfer i specified 5 seconds. If its minimum u reduce it to some 3 seconds &amp;amp; check whether its working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 10:10:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925851#M384181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T10:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM WITH F8 EXECUTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925852#M384182</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;Wait statement is working fine for small amount of data.&lt;/P&gt;&lt;P&gt;but not able to retreive data when the amount of data is large..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can we do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 09:08:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f8-execution/m-p/1925852#M384182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T09:08:11Z</dc:date>
    </item>
  </channel>
</rss>

