<?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: Report canceled with message 'No forms available', in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848258#M359597</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mystery solved!  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user running the report in PRD did not have the security authorization to run the job in background. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once that was granted, the job finished without a problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestions! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doug at Publix Super Markets&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Jan 2007 17:30:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-12T17:30:40Z</dc:date>
    <item>
      <title>Report canceled with message 'No forms available',</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848253#M359592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are stumped.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a simple ABAP HR report using the PNP logical database.  It pulls benefits info and master data for displaying on the screen.   (Associates Eligible for FMLA)   No ALV grid, just a simple write to the screen.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The job runs fine in in the background as well as foreground in DEV, QAS, and STA .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But now that the program is in PRD, when we run it in BACKGROUND, the job CANCELS after 10 minutes.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The spool lists the message 'No forms available', several dozen times, and then 'No memory for cua processer'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oddly, the program runs fine in forground. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any clues how I can get this program to run in background?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 18:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848253#M359592</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T18:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Report canceled with message 'No forms available',</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848254#M359593</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 the statements prior to the 'No forms available' message display.&lt;/P&gt;&lt;P&gt;Are you using some 'Check statements', are you checking for any SY-BATCH value or checking the SY-MANDT field in your code.&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>Fri, 12 Jan 2007 00:23:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848254#M359593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T00:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Report canceled with message 'No forms available',</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848255#M359594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Job log Messages: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;12:48:38    Job started&lt;/P&gt;&lt;P&gt;12:48:38    Step 001 started (program ZPRCR_DISABILBITY_ELIGIBLE)&lt;/P&gt;&lt;P&gt;12:48:50    No forms available&lt;/P&gt;&lt;P&gt;   "             "   "        "&lt;/P&gt;&lt;P&gt;12:57:47    No forms available&lt;/P&gt;&lt;P&gt;12:57:48    No memory for cua processor&lt;/P&gt;&lt;P&gt;12:57:49    Job canceled&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I looked at the code and there are no ABAP 'check' statements, nor reference to sy-mandt.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is code in the 'at selection-screen' section that puts out a warning if the program is ran in foreground without a date. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  if pn-begda is initial and sy-batch is initial.
    message e000(zpa) with 'Please enter a run date'.
  endif.   
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other than that, the program runs fine in foreground in PRD, but cancels in background.  The same code runs fine in foreground and background in all our other clients.    Our BASIS group is stumped too. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doug&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2007 14:46:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848255#M359594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T14:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Report canceled with message 'No forms available',</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848256#M359595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Can you please check the Date format of the user and also the Format of the field which is giving the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2007 14:57:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848256#M359595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T14:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Report canceled with message 'No forms available',</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848257#M359596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked the Dump Analysis (ST22) to see if there is a dump for the "no memory" message"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2007 15:01:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848257#M359596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T15:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: Report canceled with message 'No forms available',</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848258#M359597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mystery solved!  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user running the report in PRD did not have the security authorization to run the job in background. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once that was granted, the job finished without a problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestions! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doug at Publix Super Markets&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2007 17:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-canceled-with-message-no-forms-available/m-p/1848258#M359597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T17:30:40Z</dc:date>
    </item>
  </channel>
</rss>

