<?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: Function module 'ISU_S_WORKLIST_INSTALL' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-isu-s-worklist-install/m-p/6757777#M1461156</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this.  It is working fine for Normal meter. &lt;/P&gt;&lt;P&gt;But in my case, the meter is an interval meter so in this case, on eg30 screen( device replacement ) , always  the first register is coming grayed-out (No entry is possible).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; So,even when I am passing the Meter Reading in auto-auto_zw accordingly to function module 'ISU_S_WORKLIST_INSTALL', it is giving me error -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"You cannot make an entry in field No MR". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what to change in  auto-auto_zw so that all the meter reading got correctly populated into old and new device meter reading fields and device get replaced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 Apr 2010 18:40:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-17T18:40:20Z</dc:date>
    <item>
      <title>Function module 'ISU_S_WORKLIST_INSTALL'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-isu-s-worklist-install/m-p/6757774#M1461153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used Function module 'ISU_S_WORKLIST_INSTALL' to replace old normal device with a new normal device.&lt;/P&gt;&lt;P&gt;I have passed all the register meter readings for all the registers in old and &lt;/P&gt;&lt;P&gt;new device, alongwith other parameters accordingly to the Function module &lt;/P&gt;&lt;P&gt;and it replaced the old device with the new one correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to use the same function module 'ISU_S_WORKLIST_INSTALL' to replace installed interval meter&lt;/P&gt;&lt;P&gt;with a new interval meter. I passed the meter readings for both old and new meter.but it is giving error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"You cannot make an entry in field No MR"&lt;/P&gt;&lt;P&gt;"Specify a device that is installed"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I tried to run the function module 'ISU_S_WORKLIST_INSTALL' in dialog mode, &lt;/P&gt;&lt;P&gt;I see that meter readings for both old and new meter is not populated and If I give the&lt;/P&gt;&lt;P&gt;readings on screen itself , it replaced the old meter with the new meter in the installation correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help to understand what to do so that function module passes meter reading values&lt;/P&gt;&lt;P&gt;( that I am pasing to function module) for old and new interval meter at run time and it replace the old device with the new one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rohit Kumar on Apr 17, 2010 12:05 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 22:02:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-isu-s-worklist-install/m-p/6757774#M1461153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-16T22:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Function module 'ISU_S_WORKLIST_INSTALL'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-isu-s-worklist-install/m-p/6757775#M1461154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First you have to call FM ISU_S_WORKLIST_INSTALL_PROVIDE and it will give you the AUTO structure filled. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure you set the ok code in AUTO structure to 'SAVE'.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then you just fill in AUTO-ZW structure with your meter readings like this : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT lt_auto_zw ASSIGNING &amp;lt;fs_auto_zw&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;fs_auto_zw&amp;gt;-zwnummere = '001'. " Register Number&lt;/P&gt;&lt;P&gt;&amp;lt;fs_auto_zw&amp;gt;-zwstandce = '0'. " Meter Reading&lt;/P&gt;&lt;P&gt;&amp;lt;fs_auto_zw&amp;gt;-tarifart = 'WT_FIREM'. " Rate Type&lt;/P&gt;&lt;P&gt;&amp;lt;fs_auto_zw&amp;gt;-perverbr = '0'. " Periodic Consumption&lt;/P&gt;&lt;P&gt;&amp;lt;fs_auto_zw&amp;gt;-kondigre = 'FACTS'. " Rate Fact Group&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;&amp;lt;fs_auto_zw&amp;gt;-anzdaysofperiod = is_install-anzdaysofperiod. " Days of Periodic Consumption&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After these steps you call FM  ISU_S_WORKLIST_INSTALL.&lt;/P&gt;&lt;P&gt;If you do not have filled in AUTO-ZW structure, you will get the exception as you mentioned. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also see this link :  &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1217321"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 23:09:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-isu-s-worklist-install/m-p/6757775#M1461154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-16T23:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: Function module 'ISU_S_WORKLIST_INSTALL'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-isu-s-worklist-install/m-p/6757776#M1461155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this.  It is working fine for Normal meter. &lt;/P&gt;&lt;P&gt;But in my case, the meter is an interval meter so in this case, on eg30 screen( device replacement ) , always  the first register is coming grayed-out (No entry is possible).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; So,even when I am passing the Meter Reading in auto-auto_zw accordingly to function module 'ISU_S_WORKLIST_INSTALL', it is giving me error -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"You cannot make an entry in field No MR". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what to change in  auto-auto_zw so that all the meter reading got correctly populated into old and new device meter reading fields and device get replaced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Apr 2010 18:39:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-isu-s-worklist-install/m-p/6757776#M1461155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-17T18:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Function module 'ISU_S_WORKLIST_INSTALL'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-isu-s-worklist-install/m-p/6757777#M1461156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this.  It is working fine for Normal meter. &lt;/P&gt;&lt;P&gt;But in my case, the meter is an interval meter so in this case, on eg30 screen( device replacement ) , always  the first register is coming grayed-out (No entry is possible).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; So,even when I am passing the Meter Reading in auto-auto_zw accordingly to function module 'ISU_S_WORKLIST_INSTALL', it is giving me error -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"You cannot make an entry in field No MR". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what to change in  auto-auto_zw so that all the meter reading got correctly populated into old and new device meter reading fields and device get replaced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Apr 2010 18:40:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-isu-s-worklist-install/m-p/6757777#M1461156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-17T18:40:20Z</dc:date>
    </item>
  </channel>
</rss>

