<?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: Debug during background processing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644622#M1093199</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;You have to debug the Background Job by using the TCODE JDBG......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Oct 2008 04:45:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-15T04:45:24Z</dc:date>
    <item>
      <title>Debug during background processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644616#M1093193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey&lt;/P&gt;&lt;P&gt;i hav an doubt...&lt;/P&gt;&lt;P&gt;suppose to any Zprogram am executing in background mode and during this i want to debug..&lt;/P&gt;&lt;P&gt;is it possible  ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to Debug my Bank Payment Advice Script as well as its Driver program used in Cheque Printing&lt;/P&gt;&lt;P&gt;can u tell me how to debug it ?&lt;/P&gt;&lt;P&gt;evenif am putting break-point its not happening..B'coz we are generating spool in F110 and its run in background mode...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there no solution to this ????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance &lt;/P&gt;&lt;P&gt;SATYA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 11:47:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644616#M1093193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T11:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Debug during background processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644617#M1093194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;Yes, it is possible to debug a background job.&lt;/P&gt;&lt;P&gt;Select the job from SM37 and enter JDBG in command prompt.&lt;/P&gt;&lt;P&gt;It will take you to debug mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; All the databse updates will happen again , so be careful about this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 11:50:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644617#M1093194</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2008-10-14T11:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Debug during background processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644618#M1093195</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;First you need to put break point in printprogram where ever you want to stop the execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After in se71 give your formname and go to Utilities-&amp;gt;ActivateDebugger &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then go to your transaction like VF03(For invoice or credit memo ) to see the print preview execute it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When You execute it form debugging will get activated and you can see your form execution step by step .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 11:53:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644618#M1093195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T11:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Debug during background processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644619#M1093196</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;If you want to debug in back ground write a statement &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;break-point.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;in your progam where ever you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Narsim.Aeda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 11:54:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644619#M1093196</guid>
      <dc:creator>NAeda</dc:creator>
      <dc:date>2008-10-14T11:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Debug during background processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644620#M1093197</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;GOTO SM51.&lt;/P&gt;&lt;P&gt;There choose the server in which ur background program is running. Place the cursor on the line which shows your program. Choose the menu option 'Debugging'.&lt;/P&gt;&lt;P&gt;Depending on your version the menu option is in different places.&lt;/P&gt;&lt;P&gt;If you have the correct authorizations, a window pop will pop up, with your program in the debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Omkar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 11:55:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644620#M1093197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T11:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Debug during background processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644621#M1093198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; First you need to put break point in printprogram where ever you want to stop the execution.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; After in se71 give your formname and go to Utilities-&amp;gt;ActivateDebugger &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Then go to your transaction like VF03(For invoice or credit memo ) to see the print preview execute it .&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; When You execute it form debugging will get activated and you can see your form execution step by step .&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dear hari Hara,&lt;/P&gt;&lt;P&gt;i know this process&lt;/P&gt;&lt;P&gt;but it will not work in background processing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Satyabrata sahoo on Oct 15, 2008 9:59 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 04:29:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644621#M1093198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T04:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Debug during background processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644622#M1093199</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;You have to debug the Background Job by using the TCODE JDBG......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 04:45:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644622#M1093199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T04:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Debug during background processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644623#M1093200</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;Create a infinite loop in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA flag TYPE i.

WHILE flag EQ 1.
  
ENDWHILE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And go to SM50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select the program you want to debug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to menu path &lt;STRONG&gt;program/session&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;&amp;gt;program&lt;/STRONG&gt;&lt;/DEL&gt;&amp;gt;debugging&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There change the flag value as 1 and debug...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 05:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-during-background-processing/m-p/4644623#M1093200</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2008-10-15T05:23:37Z</dc:date>
    </item>
  </channel>
</rss>

