<?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 Issue regarding BAPI_INSPECTIONPLAN_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-bapi-inspectionplan-create/m-p/6853161#M1474696</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am  creating a inspection plan through the BAPI mentioned in the subject and getting the following errors :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Specify a valid data import mode for master inspection characteristic &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help resolve the issue....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ramesh Manoharan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 May 2010 03:58:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-10T03:58:32Z</dc:date>
    <item>
      <title>Issue regarding BAPI_INSPECTIONPLAN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-bapi-inspectionplan-create/m-p/6853161#M1474696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am  creating a inspection plan through the BAPI mentioned in the subject and getting the following errors :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Specify a valid data import mode for master inspection characteristic &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help resolve the issue....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ramesh Manoharan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 03:58:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-bapi-inspectionplan-create/m-p/6853161#M1474696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T03:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Issue regarding BAPI_INSPECTIONPLAN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-bapi-inspectionplan-create/m-p/6853162#M1474697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;closing the thread&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 11:17:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-bapi-inspectionplan-create/m-p/6853162#M1474697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-28T11:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Issue regarding BAPI_INSPECTIONPLAN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-bapi-inspectionplan-create/m-p/6853163#M1474698</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;&lt;/P&gt;&lt;P&gt;Sample code can be useful to you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_test_run    type bapiflag,&lt;/P&gt;&lt;P&gt;        wa_group       like BAPI1191_TSK_C-TASK_LIST_GROUP,&lt;/P&gt;&lt;P&gt;        wa_gr_counter  like  BAPI1191_TSK_C-GROUP_COUNTER.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Determine Group and Group Counter.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  perform get_group_groupcounter.&lt;/P&gt;&lt;P&gt;  IF V_EXIT = 'X'.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*call BAPI&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_INSPECTIONPLAN_CREATE'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       TESTRUN                      = wa_test_run&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    PROFILE                      = c_profile&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;       GROUP                        = wa_group&lt;/P&gt;&lt;P&gt;       GROUPCOUNTER                 = wa_gr_counter&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;       TASK                        = t_task&lt;/P&gt;&lt;P&gt;       MATERIALTASKALLOCATION       = t_matalloc&lt;/P&gt;&lt;P&gt;       OPERATION                    = t_oper&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     REFERENCEOPERATION           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     PRODUCTIONRESOURCE           =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       INSPCHARACTERISTIC           = t_insp_char&lt;/P&gt;&lt;P&gt;      TEXTALLOCATION               = t_text_all&lt;/P&gt;&lt;P&gt;      TEXT                         = t_text&lt;/P&gt;&lt;P&gt;       RETURN                       = t_return.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    call function 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        wait   = t_wait&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        return = wa_return.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Dec 2010 15:16:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-bapi-inspectionplan-create/m-p/6853163#M1474698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-30T15:16:49Z</dc:date>
    </item>
  </channel>
</rss>

