<?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: re: Ale outbound processing module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-ale-outbound-processing-module/m-p/2134007#M448787</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;krishna, &lt;/P&gt;&lt;P&gt;   Try to reprocess the idoc using BD87. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since u have said that the idoc could not be posted in the port. Try to create ur port manually using we21.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Apr 2007 12:28:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-13T12:28:02Z</dc:date>
    <item>
      <title>re: Ale outbound processing module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-ale-outbound-processing-module/m-p/2134006#M448786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;      I want to distribute one data from one r/3 to another r/3.  I done all the configurations. And i written outbound processing fmodule. I done the testing from the standard tcode bd10. All the connections are working ok.  When ever i post the idoc through my outbound it is showing yellow status that&lt;/P&gt;&lt;P&gt; Idoc generated and it is ready for dispatch . But it could not show any error message and it could not post to port .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my fm code contains.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of f_idoc_header.&lt;/P&gt;&lt;P&gt;          include structure edidc.&lt;/P&gt;&lt;P&gt;  data: end of f_idoc_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: begin of t_idoc_data occurs 10.&lt;/P&gt;&lt;P&gt;          include structure edidd.&lt;/P&gt;&lt;P&gt;  data: end of t_idoc_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: begin of t_idoc_comm_control occurs 10.&lt;/P&gt;&lt;P&gt;          include structure edidc.&lt;/P&gt;&lt;P&gt;  data: end of t_idoc_comm_control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: active_flag(1) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: comm_control_lines like sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: idoc_cimtype like edidc-cimtyp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: partner_type like tpar-nrart.                       "P30K057526&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: country_iso like t005-intca.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;initial&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear t_idoc_comm_control.&lt;/P&gt;&lt;P&gt;  refresh t_idoc_comm_control.&lt;/P&gt;&lt;P&gt;  clear t_idoc_data.&lt;/P&gt;&lt;P&gt;  refresh t_idoc_data.&lt;/P&gt;&lt;P&gt;  clear idoc_cimtype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;*fill IDOC_HEADER&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  f_idoc_header-mestyp = 'YTEXT'.&lt;/P&gt;&lt;P&gt;  f_idoc_header-idoctp = 'ZIDOC_TEXT'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;F_IDOC_HEADER-CIMTYP = IDOC_CIMTYPE.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  f_idoc_header-sndpfc = 'LS'.&lt;/P&gt;&lt;P&gt;  f_idoc_header-sndprn = 'HPL600'.&lt;/P&gt;&lt;P&gt;  f_idoc_header-sndprt =  'LS'.&lt;/P&gt;&lt;P&gt;  f_idoc_header-rcvpfc = 'LS'.&lt;/P&gt;&lt;P&gt;  f_idoc_header-rcvprn = 'REC11'.&lt;/P&gt;&lt;P&gt;  f_idoc_header-rcvprt = 'LS'.&lt;/P&gt;&lt;P&gt;  f_idoc_header-serial = space.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_tline type table of tline.&lt;/P&gt;&lt;P&gt;data: wa_tline like line of it_tline.&lt;/P&gt;&lt;P&gt;data: wa_header like thead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'READ_TEXT'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLIENT                        = SY-MANDT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    id                            = 'ST'&lt;/P&gt;&lt;P&gt;    language                      = 'E'&lt;/P&gt;&lt;P&gt;    name                          =  '0001'&lt;/P&gt;&lt;P&gt;    object                        = 'TEXT'&lt;/P&gt;&lt;P&gt;  importing&lt;/P&gt;&lt;P&gt;    header                        = wa_header&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      lines                         = it_tline&lt;/P&gt;&lt;P&gt;   exceptions&lt;/P&gt;&lt;P&gt;     id                            = 1&lt;/P&gt;&lt;P&gt;     language                      = 2&lt;/P&gt;&lt;P&gt;     name                          = 3&lt;/P&gt;&lt;P&gt;     not_found                     = 4&lt;/P&gt;&lt;P&gt;     object                        = 5&lt;/P&gt;&lt;P&gt;     reference_check               = 6&lt;/P&gt;&lt;P&gt;     wrong_access_to_archive       = 7&lt;/P&gt;&lt;P&gt;     others                        = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&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;P&gt;    t_idoc_data-segnam = 'YTEXT_HEAD'.&lt;/P&gt;&lt;P&gt;    t_idoc_data-mandt = sy-mandt.&lt;/P&gt;&lt;P&gt;    move: wa_header to  t_idoc_data-sdata.&lt;/P&gt;&lt;P&gt;    append t_idoc_data.&lt;/P&gt;&lt;P&gt;    clear  t_idoc_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    t_idoc_data-segnam = 'YTEXT_LINE'.&lt;/P&gt;&lt;P&gt;    t_idoc_data-mandt = sy-mandt.&lt;/P&gt;&lt;P&gt;    loop at it_tline into wa_tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     move: wa_tline to  t_idoc_data-sdata.&lt;/P&gt;&lt;P&gt;     append t_idoc_data.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;     clear t_idoc_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'MASTER_IDOC_DISTRIBUTE'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            master_idoc_control            = f_idoc_header&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            communication_idoc_control     = t_idoc_comm_control&lt;/P&gt;&lt;P&gt;            master_idoc_data               = t_idoc_data&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            error_in_idoc_control          = 01&lt;/P&gt;&lt;P&gt;            error_writing_idoc_status      = 02&lt;/P&gt;&lt;P&gt;            error_in_idoc_data             = 03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  describe table t_idoc_comm_control lines comm_control_lines.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CREATED_COMM_IDOCS = COMM_CONTROL_LINES.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  write: comm_control_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; what will be problem.  Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;p. krishnaprsad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 12:23:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-ale-outbound-processing-module/m-p/2134006#M448786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T12:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: re: Ale outbound processing module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-ale-outbound-processing-module/m-p/2134007#M448787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;krishna, &lt;/P&gt;&lt;P&gt;   Try to reprocess the idoc using BD87. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since u have said that the idoc could not be posted in the port. Try to create ur port manually using we21.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 12:28:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-ale-outbound-processing-module/m-p/2134007#M448787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T12:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: re: Ale outbound processing module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-ale-outbound-processing-module/m-p/2134008#M448788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       I could able to send data through bd87, but why it is happening. Why i could not dispatch automatically. Is any drawback in my configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;p. krishna prsad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 12:55:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-ale-outbound-processing-module/m-p/2134008#M448788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T12:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: re: Ale outbound processing module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-ale-outbound-processing-module/m-p/2134009#M448789</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;1.Change the partner profile settings in WE20 - Trigger immediately&lt;/P&gt;&lt;P&gt;2.Use COMMIT WORK after call function MASTER_IDOC_DISTRIBUTE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i doc will automatically tranferred to the target system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;L Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 13:27:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-ale-outbound-processing-module/m-p/2134009#M448789</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2007-04-13T13:27:00Z</dc:date>
    </item>
  </channel>
</rss>

