<?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: BDC - post goods issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-post-goods-issue/m-p/5487627#M1256010</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are you doing in that background function or RFC function. If you have any screen processing then it will certainly fail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Apr 2009 13:45:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-23T13:45:43Z</dc:date>
    <item>
      <title>BDC - post goods issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-post-goods-issue/m-p/5487626#M1256009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  to all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we have requiriment like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when ever post goods issue has been done from inbound delivery, we have to create sesion and we have to procees that session in back ground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my program is getting trigered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but out put type has been configured to type 4.(But its workign fine with other types i mean like 8.........)&lt;/P&gt;&lt;P&gt;our program is callling in update task.&lt;/P&gt;&lt;P&gt;we are geting dump for this. its showing that "Statement "SUBMIT" is not allowed in this form.&lt;/P&gt;&lt;P&gt;" that menas in the form routine....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the detailed meaning for this is as shown belwo .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program is triggered in the update task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; There, the following ABAP/4 statements are not allowed:&lt;/P&gt;&lt;P&gt;-  CALL SCREEN&lt;/P&gt;&lt;P&gt;-  CALL DIALOG&lt;/P&gt;&lt;P&gt;-  CALL TRANSACTION&lt;/P&gt;&lt;P&gt;-  SUBMIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we have created RFC FM and called in SEPARATE TASK but still we are getting problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help me out to solve thsi problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 13:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-post-goods-issue/m-p/5487626#M1256009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T13:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - post goods issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-post-goods-issue/m-p/5487627#M1256010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are you doing in that background function or RFC function. If you have any screen processing then it will certainly fail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 13:45:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-post-goods-issue/m-p/5487627#M1256010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T13:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - post goods issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-post-goods-issue/m-p/5487628#M1256011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use SUBMIT VIA JOB .  The example call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: number           TYPE tbtcjob-jobcount, &lt;/P&gt;&lt;P&gt;      name             TYPE tbtcjob-jobname VALUE 'JOB_TEST', &lt;/P&gt;&lt;P&gt;      print_parameters TYPE pri_params. &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 'JOB_OPEN' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  EXPORTING &lt;/P&gt;&lt;P&gt;    jobname          = name &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IMPORTING &lt;/P&gt;&lt;P&gt;    jobcount         = number &lt;/P&gt;&lt;P&gt;&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 submitable TO SAP-SPOOL &lt;/P&gt;&lt;P&gt;                    SPOOL PARAMETERS print_parameters &lt;/P&gt;&lt;P&gt;                    WITHOUT SPOOL DYNPRO &lt;/P&gt;&lt;P&gt;                    VIA JOB name NUMBER number &lt;/P&gt;&lt;P&gt;                    AND RETURN. &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;    CALL FUNCTION 'JOB_CLOSE' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      EXPORTING &lt;/P&gt;&lt;P&gt;        jobcount             = number &lt;/P&gt;&lt;P&gt;        jobname              = name &lt;/P&gt;&lt;P&gt;        strtimmed            = 'X' &lt;/P&gt;&lt;P&gt;&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;        OTHERS               = 8. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0. &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;  ENDIF. &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;Edited by: Venkatesan Nagiah on Apr 23, 2009 6:55 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 16:54:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-post-goods-issue/m-p/5487628#M1256011</guid>
      <dc:creator>venkatesan_nagiah</dc:creator>
      <dc:date>2009-04-23T16:54:36Z</dc:date>
    </item>
  </channel>
</rss>

