<?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: Please Reply in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034225#M717841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you checked the long text of the message as what it is saying.&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>Thu, 08 Nov 2007 00:52:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-08T00:52:36Z</dc:date>
    <item>
      <title>Please Reply</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034224#M717840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on this 'BAPI_GOODSMVT_CREATE' for Goods Issue, but my return statement returns this error message &amp;lt;b&amp;gt;"You have entered an external value"&amp;lt;/b&amp;gt;. Can you please tell me where I am wrong. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    loop at it_input_file.&lt;/P&gt;&lt;P&gt;      move: v_doc_date          to GOODSMVT_HEADER-DOC_DATE,&lt;/P&gt;&lt;P&gt;            v_pos_date          to GOODSMVT_HEADER-pstng_date,&lt;/P&gt;&lt;P&gt;            syst-uname          to GOODSMVT_HEADER-pr_uname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      move: '03' to GOODSMVT_CODE-GM_CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      move: it_input_file-matnr    to GOODSMVT_ITEM-material,&lt;/P&gt;&lt;P&gt;            it_input_file-werks    to GOODSMVT_ITEM-plant,&lt;/P&gt;&lt;P&gt;            it_input_file-st_loc   to GOODSMVT_ITEM-stge_loc,&lt;/P&gt;&lt;P&gt;            it_input_file-batch    to GOODSMVT_ITEM-batch,&lt;/P&gt;&lt;P&gt;            it_input_file-uoe_qty  to GOODSMVT_ITEM-entry_qnt,&lt;/P&gt;&lt;P&gt;            c_mov_type2            to GOODSMVT_ITEM-move_type,&lt;/P&gt;&lt;P&gt;            it_input_file-account  to GOODSMVT_ITEM-costcenter,&lt;/P&gt;&lt;P&gt;            it_input_file-uoe_uom  to GOODSMVT_ITEM-entry_uom,&lt;/P&gt;&lt;P&gt;            it_input_file-amount   to GOODSMVT_ITEM-AMOUNT_LC,&lt;/P&gt;&lt;P&gt;            ' '                    to GOODSMVT_ITEM-MVT_IND.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           'X'                     to GOODSMVT_ITEM-NO_MORE_GR.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append goodsmvt_item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      move 1 to goodmvt_serialnumber-MATDOC_ITM.&lt;/P&gt;&lt;P&gt;      append goodmvt_serialnumber.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      move: 1 to goodsmvt_item_cwm-MATDOC_ITM,&lt;/P&gt;&lt;P&gt;            it_input_file-uoe_qty    to goodsmvt_item_cwm-QUANTITY_PME,&lt;/P&gt;&lt;P&gt;            it_input_file-uoe_uom   to goodsmvt_item_cwm-BASE_UOM_PME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append goodsmvt_item_cwm.&lt;/P&gt;&lt;P&gt;&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       = GOODSMVT_HEADER&lt;/P&gt;&lt;P&gt;          GOODSMVT_CODE         = GOODSMVT_CODE&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          GOODSMVT_HEADRET      = GOODSMVT_HEADRET&lt;/P&gt;&lt;P&gt;          MATERIALDOCUMENT      = MATERIALDOCUMENT&lt;/P&gt;&lt;P&gt;          MATDOCUMENTYEAR       = MATDOCUMENTYEAR&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          GOODSMVT_ITEM         = GOODSMVT_ITEM&lt;/P&gt;&lt;P&gt;          GOODSMVT_SERIALNUMBER = goodmvt_serialnumber&lt;/P&gt;&lt;P&gt;          RETURN                = RETURN&lt;/P&gt;&lt;P&gt;          GOODSMVT_ITEM_CWM     = goodsmvt_item_cwm.&lt;/P&gt;&lt;P&gt;      if NOT return is initial.&lt;/P&gt;&lt;P&gt;        LOOP AT return INTO ls_return.&lt;/P&gt;&lt;P&gt;          if ls_return-type = 'E' OR&lt;/P&gt;&lt;P&gt;             ls_return-type = 'A' OR&lt;/P&gt;&lt;P&gt;             ls_return-type = 'X'.&lt;/P&gt;&lt;P&gt;            move: it_input_file-matnr   to it_bapi_errlog-matnr,&lt;/P&gt;&lt;P&gt;                  it_input_file-werks   to it_bapi_errlog-werks,&lt;/P&gt;&lt;P&gt;                  it_input_file-st_loc  to it_bapi_errlog-st_loc,&lt;/P&gt;&lt;P&gt;                  it_input_file-seq_num to it_bapi_errlog-seq_num,&lt;/P&gt;&lt;P&gt;                  ls_return-message     to it_bapi_errlog-msg_text.&lt;/P&gt;&lt;P&gt;            append it_bapi_errlog.&lt;/P&gt;&lt;P&gt;            clear it_bapi_errlog.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            RETURN = return2.&lt;/P&gt;&lt;P&gt;        move: materialdocument      to it_bapi_suclog-mblnr,&lt;/P&gt;&lt;P&gt;              it_input_file-matnr   to it_bapi_suclog-matnr,&lt;/P&gt;&lt;P&gt;              it_input_file-werks   to it_bapi_suclog-werks,&lt;/P&gt;&lt;P&gt;              it_input_file-st_loc  to it_bapi_suclog-st_loc,&lt;/P&gt;&lt;P&gt;              it_input_file-seq_num to it_bapi_suclog-seq_num,&lt;/P&gt;&lt;P&gt;              ls_return-message     to it_bapi_suclog-msg_text.&lt;/P&gt;&lt;P&gt;        append it_bapi_suclog.&lt;/P&gt;&lt;P&gt;        clear it_bapi_suclog.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      clear: GOODSMVT_HEADER, GOODSMVT_ITEM, goodmvt_serialnumber, RETURN, goodsmvt_item_cwm.&lt;/P&gt;&lt;P&gt;      refresh: GOODSMVT_ITEM, goodmvt_serialnumber, RETURN, goodsmvt_item_cwm.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 00:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034224#M717840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T00:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Please Reply</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034225#M717841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you checked the long text of the message as what it is saying.&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>Thu, 08 Nov 2007 00:52:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034225#M717841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T00:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Please Reply</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034226#M717842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply Atsish, this is what I am getting in the error message &amp;lt;b&amp;gt;" You have entered an external value"&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 01:26:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034226#M717842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T01:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Please Reply</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034227#M717843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Near the message you generally get a question mark. When you click on the same you get the long text assigned to that message. Is there any long text with the same.&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>Thu, 08 Nov 2007 01:30:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034227#M717843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T01:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Please Reply</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034228#M717844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Atish, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to ABAP so I am not sure whether this is what you are asking or not. but this what I am getting....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1	E	/CWM/MM    074  You have entered an external value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 01:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034228#M717844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T01:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Please Reply</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034229#M717845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will tell you how to look at long text.&lt;/P&gt;&lt;P&gt;Go to SE93. Give message class as /CWM/MM and message number as 074.&lt;/P&gt;&lt;P&gt;Now select the message displayed and click on the long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you will see more about the error details. Below are those details&lt;/P&gt;&lt;P&gt;According to this you might have entered external value in the item. Do not pass that value. Ask your functional consultant he might be able to help you in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Short Text&lt;/P&gt;&lt;P&gt;You have entered an external value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Diagnosis&lt;/P&gt;&lt;P&gt;It is not possible to enter an external value during the goods issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System Response&lt;/P&gt;&lt;P&gt;The system terminates processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedure&lt;/P&gt;&lt;P&gt;Delete the external value from the item.&lt;/P&gt;&lt;P&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>Thu, 08 Nov 2007 01:58:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034229#M717845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T01:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Please Reply</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034230#M717846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey thanks a lot for Atish, but I asked my functional guy and he told me that he is able able to post the data with the same information as he has given me, well can you tell me what kind of external value it can be. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 02:04:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-reply/m-p/3034230#M717846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T02:04:27Z</dc:date>
    </item>
  </channel>
</rss>

