<?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: needs a bapi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824817#M660895</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hitesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/LIST_ALL_BAPIs.htm" target="test_blank"&gt;http://www.planetsap.com/LIST_ALL_BAPIs.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2007 09:29:19 GMT</pubDate>
    <dc:creator>former_member189629</dc:creator>
    <dc:date>2007-10-04T09:29:19Z</dc:date>
    <item>
      <title>needs a bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824815#M660893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using a BAPI BAPI_INSPCHAR_GETRESULT to get inspection lot characterstics result but this FM is obsolete . Please help me how i can get characteristics results FM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Hitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 09:26:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824815#M660893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T09:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: needs a bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824816#M660894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hitesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QPL1_INSPECTION_LOT_CREATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code for ur reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have created a function which creates inspection lots based on some Z-tables we have. The FM you mention creates the inspection lot but just stores it in memory. It is necessary to update table QALS. Here's the interesting part of the code we're using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LIKP data:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MOVE ztaf07-proveedor TO l_likp-lifnr.&lt;/P&gt;&lt;P&gt;MOVE ztaf07-cliente TO l_likp-kunnr.&lt;/P&gt;&lt;P&gt;MOVE ztaf07-cliente TO l_likp-kunag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE vkorg FROM vbak&lt;/P&gt;&lt;P&gt;INTO l_likp-vkorg&lt;/P&gt;&lt;P&gt;WHERE vbeln = ztaf07-vbeln.&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;MOVE sy-subrc TO l_subrc.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LIPS data:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MOVE ztaf08-matnr TO l_lips-matnr.&lt;/P&gt;&lt;P&gt;MOVE ztaf08-werks TO l_lips-werks.&lt;/P&gt;&lt;P&gt;MOVE ztaf08-c_fact TO l_lips-lgmng.&lt;/P&gt;&lt;P&gt;MOVE ztaf08-vrkme TO l_lips-meins.&lt;/P&gt;&lt;P&gt;MOVE ztaf08-charg TO l_lips-charg.&lt;/P&gt;&lt;P&gt;MOVE ztaf07-fecha TO l_lips-mbdat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TVLK data:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MOVE '89' TO l_tvlk-qherk. "Lot creation without reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'QAAT_SD_LOT_CREATION'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_kuwev = l_kuwev&lt;/P&gt;&lt;P&gt;i_likp = l_likp&lt;/P&gt;&lt;P&gt;i_lips = l_lips&lt;/P&gt;&lt;P&gt;i_tvlk = l_tvlk&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_prueflos = l_prueflos&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;E_TEILLOS =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;x_no_origin = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&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;MOVE sy-subrc TO l_subrc.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE l_prueflos TO l_lipsvb-qplos.&lt;/P&gt;&lt;P&gt;MOVE 0 TO l_lipsvb-qtlos.&lt;/P&gt;&lt;P&gt;MOVE 1 TO l_lipsvb-updkz.&lt;/P&gt;&lt;P&gt;APPEND l_lipsvb.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'QAAT_SD_LOT_POSTING'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;t_lips_tab = l_lipsvb.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MOVE sy-subrc TO l_subrc.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;COMMIT WORK.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harini.S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 09:29:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824816#M660894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T09:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: needs a bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824817#M660895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hitesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/LIST_ALL_BAPIs.htm" target="test_blank"&gt;http://www.planetsap.com/LIST_ALL_BAPIs.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 09:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824817#M660895</guid>
      <dc:creator>former_member189629</dc:creator>
      <dc:date>2007-10-04T09:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: needs a bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824818#M660896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The BAPI which u have specified is obsolete. Instead, use BAPI_INSPOPER_GETDETAIL and set the indicator READ_CHAR_RESULTS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This BAPI_INSPOPER_GETDETAIL  supplies the inspection specifications and results of an inspection operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope so this will help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 09:32:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824818#M660896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T09:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: needs a bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824819#M660897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check with these BAPIS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check all,&lt;/P&gt;&lt;P&gt;BAPI_CLASS_ALLOC_GLOB_DEP BAPI: Assign Global Dependencies to Class&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHANGE BAPI: Change Class&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHARVALUE_DEL_DEP Class BAPI: Delete Local / Global Dependencies for Characteristic Valu&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHARVALUE_GLOB_DEP Class BAPI: Assign Global Dependencies to Characteristic Value&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHARVALUE_LOCAL_DEP Class BAPI: Maintain Local Dependency for Characteristic Value&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHARVALUE_READ_ALLO Class BAPI: Read Dependencies for Characteristic Value&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHAR_ALLOC_GLOB_DEP Class BAPI: Global Dependencies for Characteristic&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHAR_DELETE_DEP Class BAPI: Delete Global / Local Dependency for Characteristic&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHAR_LOCAL_DEP Class BAPI: Assign / Delete Local Dependency for Characteristic&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHAR_READ_ALLOC Class BAPI: Read Dependencies for Characteristic&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHAR_VALUE_TEXT_DEL Class BAPI: Delete Overwriting of Long Text for Characteristic or Value&lt;/P&gt;&lt;P&gt;BAPI_CLASS_CHAR_VALUE_TEXT_OVR Class BAPI: Overwriting of Long Text for Characteristic or Value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward point if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 09:33:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/needs-a-bapi/m-p/2824819#M660897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T09:33:55Z</dc:date>
    </item>
  </channel>
</rss>

