<?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: CLOI_CHANGES_UPL_31 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cloi-changes-upl-31/m-p/498847#M17128</link>
    <description>&lt;P&gt;Hey,&lt;/P&gt;
  &lt;P&gt;First, of the task name should be up to 32 chars and must be unique - not sure you achieve this with 'YMES_ORDERS_RESCHEDULE'.&lt;/P&gt;
  &lt;P&gt;Second, change the type of gt_cloi_ordu to TYPE STANDARD TABLE OF cloioperu.&lt;/P&gt;
  &lt;P&gt;Third, can you add a screen shot of your debbuger screen with the table gt_cloi_ordu open on "Tables" tab of the debugger?&lt;/P&gt;</description>
    <pubDate>Thu, 30 Nov 2017 13:47:32 GMT</pubDate>
    <dc:creator>iftah_peretz</dc:creator>
    <dc:date>2017-11-30T13:47:32Z</dc:date>
    <item>
      <title>CLOI_CHANGES_UPL_31</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cloi-changes-upl-31/m-p/498846#M17127</link>
      <description>&lt;P&gt;Hi all. I tried to change production order with FM CLOI_CHANGES_UPL_31, but without success. After I call FM with passed cloi_if_par and cloi_ord_ordu_imp in debugging I can see passed values of cloi_if_par in CLOI_CHANGES_UPL_31 but not cloi_ord_ordu_imp.&lt;/P&gt;
  &lt;P&gt;Could somebody help me? I don't know where is problem.&lt;/P&gt;
  &lt;P&gt;Here is my code:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA gs_cloi_if_par_v2       LIKE cloiifpar.
DATA gt_cloi_ordu            TYPE STANDARD TABLE OF cloiordu.
DATA gt_cloi_methods_exp     TYPE STANDARD TABLE OF cloimetlog.
DATA gt_cloi_messages_exp    TYPE STANDARD TABLE OF cloimsglog.
DATA gt_cloi_msg_obj_log_exp TYPE STANDARD TABLE OF cloimoblog.
DATA gt_cloi_ord_exp         TYPE STANDARD TABLE OF cloiord.
DATA gv_flag(1)              TYPE c.
.
.
.
.
FORM update_orders.
  CLEAR gv_flag.

  CALL FUNCTION 'CLOI_CHANGES_UPL_31'
    STARTING NEW TASK 'YMES_ORDERS_RESCHEDULE'
    PERFORMING receive_result ON END OF TASK
    EXPORTING
      cloi_if_par          = gs_cloi_if_par_v2
    TABLES
      cloi_ord_ordu_imp    = gt_cloi_ordu
      cloi_method_log_exp  = gt_cloi_methods_exp
      cloi_message_log_exp = gt_cloi_messages_exp
      cloi_msg_obj_log_exp = gt_cloi_msg_obj_log_exp
      cloi_ord_exp         = gt_cloi_ord_exp.

  WAIT UNTIL gv_flag = 'X'.

  REFRESH gt_cloi_ordu.
  REFRESH gt_cloi_methods_exp.
  REFRESH gt_cloi_messages_exp.
  REFRESH gt_cloi_msg_obj_log_exp.
*  REFRESH gt_cloi_ord_exp.
ENDFORM.
FORM receive_result USING taskname.
  RECEIVE RESULTS FROM FUNCTION 'CLOI_CHANGES_UPL_31'
     TABLES
       cloi_method_log_exp  = gt_cloi_methods_exp
       cloi_message_log_exp = gt_cloi_messages_exp
       cloi_msg_obj_log_exp = gt_cloi_msg_obj_log_exp
       cloi_ord_exp         = gt_cloi_ord_exp.

  gv_flag = 'X'.
ENDFORM.

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 07 Nov 2017 07:47:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cloi-changes-upl-31/m-p/498846#M17127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-11-07T07:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: CLOI_CHANGES_UPL_31</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cloi-changes-upl-31/m-p/498847#M17128</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;
  &lt;P&gt;First, of the task name should be up to 32 chars and must be unique - not sure you achieve this with 'YMES_ORDERS_RESCHEDULE'.&lt;/P&gt;
  &lt;P&gt;Second, change the type of gt_cloi_ordu to TYPE STANDARD TABLE OF cloioperu.&lt;/P&gt;
  &lt;P&gt;Third, can you add a screen shot of your debbuger screen with the table gt_cloi_ordu open on "Tables" tab of the debugger?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 13:47:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cloi-changes-upl-31/m-p/498847#M17128</guid>
      <dc:creator>iftah_peretz</dc:creator>
      <dc:date>2017-11-30T13:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: CLOI_CHANGES_UPL_31</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cloi-changes-upl-31/m-p/498848#M17129</link>
      <description>&lt;P&gt;Try to set a break-point at start of FM CLOI_ORD_DATA_PREP.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 15:46:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cloi-changes-upl-31/m-p/498848#M17129</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-11-30T15:46:24Z</dc:date>
    </item>
  </channel>
</rss>

