<?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 for /ISDFPS/LPL1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-isdfps-lpl1/m-p/7788432#M1586142</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;There is a requirement, that data should be uploaded from Excel file to SAP. Excel file contains FE (Force Elements) and storage locations. So, basically this is mass data upload and force element default storage location change in tab 'Stock/Pool'. MRP area is already there, so no need to search for it.&lt;/P&gt;&lt;P&gt;As this transaction (/ISDFPS/LPL1) uses "Enjoy SAP" controls, BDC is not possible there. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone suggest BAPI, BDC workaround or even table update sequence? As far as I know, data is stored in /ISDFPS/FORCE table for it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aigars&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Mar 2011 13:43:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-31T13:43:05Z</dc:date>
    <item>
      <title>BAPI for /ISDFPS/LPL1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-isdfps-lpl1/m-p/7788432#M1586142</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;There is a requirement, that data should be uploaded from Excel file to SAP. Excel file contains FE (Force Elements) and storage locations. So, basically this is mass data upload and force element default storage location change in tab 'Stock/Pool'. MRP area is already there, so no need to search for it.&lt;/P&gt;&lt;P&gt;As this transaction (/ISDFPS/LPL1) uses "Enjoy SAP" controls, BDC is not possible there. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone suggest BAPI, BDC workaround or even table update sequence? As far as I know, data is stored in /ISDFPS/FORCE table for it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aigars&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Mar 2011 13:43:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-isdfps-lpl1/m-p/7788432#M1586142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-31T13:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for /ISDFPS/LPL1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-isdfps-lpl1/m-p/7788433#M1586143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. Looks like noone has this type of issue. I have solved this, by using /ISDFPS/CL_FORCE class method FORCE_MAINT. here is the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. SELECT all info from /ISDFPS/FORCE table into structure ls_force.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. CALL METHOD /isdfps/cl_force=&amp;gt;force_maint&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      im_msg_option      = /isdfps/cl_const=&amp;gt;msg_opt_none&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      cs_force           = ls_force&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      force_lock_error   = 1&lt;/P&gt;&lt;P&gt;      force_read_error   = 2&lt;/P&gt;&lt;P&gt;      force_not_exists   = 3&lt;/P&gt;&lt;P&gt;      force_create_error = 4&lt;/P&gt;&lt;P&gt;      OTHERS             = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Set 'SAVE'.&lt;/P&gt;&lt;P&gt;CALL METHOD /isdfps/cl_fdpwb_cntl=&amp;gt;set_ok_code&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;      im_ok_code = 'SAVE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.  Save changed structure.&lt;/P&gt;&lt;P&gt;CALL METHOD /isdfps/cl_fdpwb_cntl=&amp;gt;save&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          OTHERS = 1.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        MESSAGE s814(/isdfps/fdp).&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        MESSAGE s815(/isdfps/fdp).&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2011 12:28:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-isdfps-lpl1/m-p/7788433#M1586143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-04T12:28:07Z</dc:date>
    </item>
  </channel>
</rss>

