<?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: IDOC inbound function module! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535689#M850732</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;   Message Id means the name of the message class, check the tcode SE91. Each message class has 1000 messages from 000 to 999, here we can define the text to each message and display those as per requirement. The next one is Message type(MSGTY), we have different kinds of messages in ABAP like I(Information), S(success), E(Error), A(Abend) and W(Warning). Based on the message type the message displays in different ways like for Information and Warning the messaes are displayed in Popup screen. The error and Success messages are displayed in Status bar and so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Mar 2008 13:39:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-10T13:39:59Z</dc:date>
    <item>
      <title>IDOC inbound function module!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535684#M850727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anybody worked on IDOC inbound function module !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the meaning of the following steps !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IDOC_STATUS-DOCNUM = IDOC_CONTROL-DOCNUM.&lt;/P&gt;&lt;P&gt;IDOC_STATUS-STATUS = '51'.&lt;/P&gt;&lt;P&gt;IDOC_STATUS-MSGTY = 'E'&lt;/P&gt;&lt;P&gt;IDOC_STATUS-MSGID = ' ZE'&lt;/P&gt;&lt;P&gt;IDOC_STATUS-MSGNO = '007'&lt;/P&gt;&lt;P&gt;IDOC_STATUS-MSGV1 =  IT_LIKP-vbeln.&lt;/P&gt;&lt;P&gt;APPEND IDOC_STATUS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are possible values for MSGTY,MSGID, MSGNO.....&lt;/P&gt;&lt;P&gt;What do they mean !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Mar 10, 2008 7:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 12:48:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535684#M850727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T12:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC inbound function module!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535685#M850728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is to set the IDoc status to a specific message. MSGID will exist in SE91.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 12:56:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535685#M850728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T12:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC inbound function module!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535686#M850729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
"here nothing complicated ...
"status 51 means 'Application document not posted'
"in WE02 you can see this message 

IDoc: 0000000000001254 Status: Application document not posted


 IDOC_STATUS-DOCNUM = IDOC_CONTROL-DOCNUM. "IDoc number
 IDOC_STATUS-STATUS = '51'.                                      "stauts code
 IDOC_STATUS-MSGTY = 'E'                                         "error type 
 IDOC_STATUS-MSGID = ' ZE'                                       "message class ID
 IDOC_STATUS-MSGNO = '007'                                     "message number in ZE
 IDOC_STATUS-MSGV1 =  IT_LIKP-vbeln.                      "document number or order number 
 APPEND IDOC_STATUS.
 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 13:01:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535686#M850729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T13:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC inbound function module!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535687#M850730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;First let me explain to you what does the status mean.Whenever an idoc(inbound or outbound) is posted,its status is updated in its status segment.The status segment shows us the current status of an idoc.Also the control segment contains the direction of the idoc(1 for outbound and 2 for inbound) and the idoc number which is generated.&lt;/P&gt;&lt;P&gt;In your case the status is shown as 51 which means that the inbound idoc is not posted successfully and contains some error.E represents that the message is an error message and the text of the message is got from the message id and message number from Transaction code SE91.&lt;/P&gt;&lt;P&gt;You can get the different status and their meaning if you search the forum e.e 51 is error,53 means posted successfully etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is useful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 13:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535687#M850730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T13:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC inbound function module!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535688#M850731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In se91 I am only getting information aboput status !&lt;/P&gt;&lt;P&gt;Where we will get the other information&lt;/P&gt;&lt;P&gt;like MSGTY,MSGID,MSGNO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does it mean by STATUS-MSGTY = 'I'.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 13:30:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535688#M850731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T13:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC inbound function module!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535689#M850732</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;   Message Id means the name of the message class, check the tcode SE91. Each message class has 1000 messages from 000 to 999, here we can define the text to each message and display those as per requirement. The next one is Message type(MSGTY), we have different kinds of messages in ABAP like I(Information), S(success), E(Error), A(Abend) and W(Warning). Based on the message type the message displays in different ways like for Information and Warning the messaes are displayed in Popup screen. The error and Success messages are displayed in Status bar and so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 13:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535689#M850732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T13:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC inbound function module!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535690#M850733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Based upon the condition you have before these statement this Error message will be appear in the Idoc &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can check the message in transaction SE91, message type ZE and message number 007.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 13:55:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-function-module/m-p/3535690#M850733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T13:55:39Z</dc:date>
    </item>
  </channel>
</rss>

