<?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 BDC Issue with CU41 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-with-cu41/m-p/4955331#M1155346</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;My requirement is to create a profile for the material and then update its characteristics value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a typical upload program.&lt;/P&gt;&lt;P&gt;I am using BDC to create profile via Transaction CU41.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Issue is that, when I do CU41 for the first time at first login, then i get first pop up which ask "SELECT CONFIGURABLE OBJECT".&lt;/P&gt;&lt;P&gt;from which I have select "MATERIAL" as object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then at second time, if i do CU41 , it doesn't ask me for the pop up to SELECT CONFIGURABLE OBJECT", whereas it directly takes me to the initial screen of " Create Configuration profile for Material".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be an major issue at production as the BDC program cannot understand, whether the user has attempted CU41 for first time or second attempt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me any BAPI which does same functionality of CU41 to create profile for material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other mechanism by which i can put some condition of first attempt and second attempt for CU41 after first login before executing the BDC ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amruta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Dec 2008 07:45:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-09T07:45:07Z</dc:date>
    <item>
      <title>BDC Issue with CU41</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-with-cu41/m-p/4955331#M1155346</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;My requirement is to create a profile for the material and then update its characteristics value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a typical upload program.&lt;/P&gt;&lt;P&gt;I am using BDC to create profile via Transaction CU41.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Issue is that, when I do CU41 for the first time at first login, then i get first pop up which ask "SELECT CONFIGURABLE OBJECT".&lt;/P&gt;&lt;P&gt;from which I have select "MATERIAL" as object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then at second time, if i do CU41 , it doesn't ask me for the pop up to SELECT CONFIGURABLE OBJECT", whereas it directly takes me to the initial screen of " Create Configuration profile for Material".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be an major issue at production as the BDC program cannot understand, whether the user has attempted CU41 for first time or second attempt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me any BAPI which does same functionality of CU41 to create profile for material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other mechanism by which i can put some condition of first attempt and second attempt for CU41 after first login before executing the BDC ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amruta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 07:45:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-with-cu41/m-p/4955331#M1155346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T07:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Issue with CU41</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-with-cu41/m-p/4955332#M1155347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: gv_param_cuq  like RCUCO-CUQOB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before processing BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET parameter ID  'CUQ' &lt;/P&gt;&lt;P&gt;                     field gv_param_cuq.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if gv_param_cuq eq space.&lt;/P&gt;&lt;P&gt;   message e001(zmsg) with 'Please Select from POP-UP and execute this program again'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;  proceed for BDC.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gv_param_cuq = '001' for material&lt;/P&gt;&lt;P&gt;                         '002' ...... for remaining fields in pop up screen.&lt;/P&gt;&lt;P&gt;if u want to select material from pop up instead of giving error message you can &lt;/P&gt;&lt;P&gt;SET parameter ID  'CUQ' &lt;/P&gt;&lt;P&gt;                     field '001'.&lt;/P&gt;&lt;P&gt;and proceed for BDC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 10:17:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-with-cu41/m-p/4955332#M1155347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T10:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Issue with CU41</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-with-cu41/m-p/4955333#M1155348</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;set in your user ( transaction SU3 tab parameters) parameter CUQ and parameter value 001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use BDC and your problem will be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Vassko!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 15:01:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-with-cu41/m-p/4955333#M1155348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T15:01:08Z</dc:date>
    </item>
  </channel>
</rss>

