<?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: any function module available for... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819721#M659495</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check below link. It has sample progem for GR. Just compare and see what you might be missing.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/bapi-goodsmvt-create-to-post-goods-movement.htm" target="test_blank"&gt;http://www.sap-img.com/abap/bapi-goodsmvt-create-to-post-goods-movement.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Oct 2007 01:10:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-03T01:10:09Z</dc:date>
    <item>
      <title>any function module available for...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819716#M659490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;i need a function module to do a goods receipt for the PO using &lt;/P&gt;&lt;P&gt;movement type 161,&lt;/P&gt;&lt;P&gt;movement ind B,&lt;/P&gt;&lt;P&gt;goodsmvt code '01'. &lt;/P&gt;&lt;P&gt;i couldnt able to post using BAPI_GOODSMVT_CREATE as iam getting &lt;/P&gt;&lt;P&gt;'NO GOODS RECEIPT POSSIBLE FOR PO XXXXXXXX XXXXX'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So is there any function module other than bapi to do a goodsmvt with my requirements.&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Prem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2007 23:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819716#M659490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-02T23:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: any function module available for...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819717#M659491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use this BAPI only. there must be some wrong data you provided.&lt;/P&gt;&lt;P&gt;Just check with your functional and give the correct data and try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 00:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819717#M659491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T00:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: any function module available for...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819718#M659492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;the code i use is,&lt;/P&gt;&lt;P&gt; loop at gt_final into gs_wa_final.&lt;/P&gt;&lt;P&gt;        gt_item-move_type     = '161'.&lt;/P&gt;&lt;P&gt;        gt_item-entry_uom     = gs_wa_final-meins.&lt;/P&gt;&lt;P&gt;        gt_item-stge_loc        = gs_wa_final-lgort.&lt;/P&gt;&lt;P&gt;        gt_item-entry_qnt      = gs_wa_final-menge.&lt;/P&gt;&lt;P&gt;        gt_item-entry_uom_iso = gs_wa_final-meins.&lt;/P&gt;&lt;P&gt;        gt_header-ref_doc_no                   = gs_wa_final-submi.&lt;/P&gt;&lt;P&gt;        gt_item-base_uom = gs_wa_final-meins.&lt;/P&gt;&lt;P&gt;        gt_header-doc_date                      = gv_last_date.&lt;/P&gt;&lt;P&gt;        gt_header-pstng_date                   = sy-datum.        &lt;/P&gt;&lt;P&gt;        gt_item-ind_propose_quanx           = 'X'.&lt;/P&gt;&lt;P&gt;        gt_item-serialno_auto_numberassignment = 'X'.&lt;/P&gt;&lt;P&gt;        gt_item-material                           = gs_wa_final-matnr.&lt;/P&gt;&lt;P&gt;        gt_item-plant                               = gs_wa_final-werks.&lt;/P&gt;&lt;P&gt;        gt_item-po_number                      = gs_wa_final-ebeln.&lt;/P&gt;&lt;P&gt;        gt_item-po_item                          = gs_wa_final-ebelp.&lt;/P&gt;&lt;P&gt;        gt_item-mvt_ind                          = 'B'.&lt;/P&gt;&lt;P&gt;      append gt_item.&lt;/P&gt;&lt;P&gt;      clear gt_item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*call bapi goodsmvt create to do the gr&lt;/P&gt;&lt;P&gt;    set update task local.&lt;/P&gt;&lt;P&gt;    call function 'BAPI_GOODSMVT_CREATE'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        goodsmvt_header       = gt_header&lt;/P&gt;&lt;P&gt;        goodsmvt_code         = gt_bapigm_code&lt;/P&gt;&lt;P&gt;      importing&lt;/P&gt;&lt;P&gt;        goodsmvt_headret      = gs_headret&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        goodsmvt_item         = gt_item&lt;/P&gt;&lt;P&gt;        goodsmvt_serialnumber = gt_serialno&lt;/P&gt;&lt;P&gt;        return                = gt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call bapi_transaction_commit to commit if success&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    if gt_return-type &amp;lt;&amp;gt; 'E'.&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 = 'X'.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      call function 'BAPI_TRANSACTION_ROLLBACK'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After executing iam getting an error mess in gt_return[] &lt;/P&gt;&lt;P&gt;'NO GOODS RECEIPT POSSIBLE FOR PO XXXXXXXXXX XXXXX' &lt;/P&gt;&lt;P&gt;i cant understand y the function module is returning this error message,&lt;/P&gt;&lt;P&gt;can any one help me in this issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in adavance,&lt;/P&gt;&lt;P&gt;Prem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 00:24:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819718#M659492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T00:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: any function module available for...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819719#M659493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you able to create GR using normal transaction for the same data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 00:34:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819719#M659493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T00:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: any function module available for...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819720#M659494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes iam able to do a GR using MIGO alone &amp;amp; not with MB01.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 00:42:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819720#M659494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T00:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: any function module available for...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819721#M659495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check below link. It has sample progem for GR. Just compare and see what you might be missing.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/bapi-goodsmvt-create-to-post-goods-movement.htm" target="test_blank"&gt;http://www.sap-img.com/abap/bapi-goodsmvt-create-to-post-goods-movement.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 01:10:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-function-module-available-for/m-p/2819721#M659495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T01:10:09Z</dc:date>
    </item>
  </channel>
</rss>

