<?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 BAPI_ISUPROFILE_UPLOAD - input parameter s in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-isuprofile-upload-input-parameter-s/m-p/1802983#M344689</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to upload interval meter reading data. I am supposed to use BAPI_ISUPROFILE_UPLOAD for that. I am facing some error while executing the same.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do we have to pass Profile Number(Not Profile Role or Profile Role Type) to the this BAPI? If yes , in which field of input structure of BAPI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What exactly we have to pass in Reference Number field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have sample code for calling this BAPI?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Dec 2006 15:28:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-11T15:28:31Z</dc:date>
    <item>
      <title>BAPI_ISUPROFILE_UPLOAD - input parameter s</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-isuprofile-upload-input-parameter-s/m-p/1802983#M344689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to upload interval meter reading data. I am supposed to use BAPI_ISUPROFILE_UPLOAD for that. I am facing some error while executing the same.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do we have to pass Profile Number(Not Profile Role or Profile Role Type) to the this BAPI? If yes , in which field of input structure of BAPI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What exactly we have to pass in Reference Number field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have sample code for calling this BAPI?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 15:28:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-isuprofile-upload-input-parameter-s/m-p/1802983#M344689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T15:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ISUPROFILE_UPLOAD - input parameter s</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-isuprofile-upload-input-parameter-s/m-p/1802984#M344690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Devang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am assuming that you need to upload Meter Readings to a Profile for a given interval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used something similar in my project. Instead of &amp;lt;b&amp;gt;BAPI_ISUPROFILE_UPLOAD&amp;lt;/b&amp;gt;, try using &amp;lt;b&amp;gt;&amp;lt;i&amp;gt;BAPI_ISUPROFILE_IMPORT&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Populate as shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Populate the Upload Info data. This is optional.&lt;/P&gt;&lt;P&gt;  i_mr_input-extreference = ws_idoc_no+1(15). "Idoc number&lt;/P&gt;&lt;P&gt;  i_mr_input-srcsystem    = c_source.             "Source of Read data&lt;/P&gt;&lt;P&gt;  APPEND i_mr_input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Populate the Profile data to be uploaded. &lt;/P&gt;&lt;P&gt;      i_profile-fromoffset = '+01'.&lt;/P&gt;&lt;P&gt;      i_profile-tooffset    = '+01'.&lt;/P&gt;&lt;P&gt;      i_profile-profile      = profile number.&lt;/P&gt;&lt;P&gt;      i_profile-datefrom  = date_from.&lt;/P&gt;&lt;P&gt;      i_profile-timefrom  = time_from.&lt;/P&gt;&lt;P&gt;      i_profile-dateto      = date_to.&lt;/P&gt;&lt;P&gt;      i_profile-timeto      = time_to.&lt;/P&gt;&lt;P&gt;      IF p_finaldata-mrdata-read_value IS INITIAL.&lt;/P&gt;&lt;P&gt;          p_finaldata-mrdata-read_value = '0'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      i_profile-value       = p_finaldata-mrdata-read_value.&lt;/P&gt;&lt;P&gt;      i_profile-status     = c_tso. "User defined Read status if available&lt;/P&gt;&lt;P&gt;      i_profile-unit         = wa_unit. "UOM like KWH or M3&lt;/P&gt;&lt;P&gt;      Append i_profile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_ISUPROFILE_IMPORT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      uploadinfo    = i_mr_input&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      profilevalues = i_profile&lt;/P&gt;&lt;P&gt;      return          = i_bapi_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. After this is executed successfully call the below FM to commit the data.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trust this helps. Please mark helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Biju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 15:49:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-isuprofile-upload-input-parameter-s/m-p/1802984#M344690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T15:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ISUPROFILE_UPLOAD - input parameter s</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-isuprofile-upload-input-parameter-s/m-p/1802985#M344691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Biju for the response. It was really helpful. I hdon't have profile with me. But I have Point of Delivery and Register. Using these two, I fetched Profile from ISU_EDM_DETERMINE_PROFILE . From there, I would be able to use BAPI_ISUPROFILE_IMPORT successfully to upload interval meter readings.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 09:19:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-isuprofile-upload-input-parameter-s/m-p/1802985#M344691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T09:19:37Z</dc:date>
    </item>
  </channel>
</rss>

