<?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: Error While Uploading Material Master Through Bdc Call Transaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777346#M1585083</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, explain more in details :&lt;/P&gt;&lt;P&gt;1) what is the relationship between your batch input error and the file upload????&lt;/P&gt;&lt;P&gt;2) Should I still focus on the batch input or forget it???? &lt;/P&gt;&lt;P&gt;If you don't answer, I don't see how I can help as I understand nothing of the context!&lt;/P&gt;&lt;P&gt;PLEASE BE CLEAR !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 Apr 2011 13:56:34 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2011-04-16T13:56:34Z</dc:date>
    <item>
      <title>Error While Uploading Material Master Through Bdc Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777341#M1585078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sap Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing Bdc call Transaction for Material Master Uploading.&lt;/P&gt;&lt;P&gt;But After Entering data for 4-5 screen i got a error_&lt;/P&gt;&lt;P&gt;Field Mara-iprkz doesn,t exit in the screen saplmgmm 4000 &lt;/P&gt;&lt;P&gt;Field Mara-prctr doesn,t exit in the screen saplmgmm 4000 &lt;/P&gt;&lt;P&gt;Field Mbew-stprs doesn,t exit in the screen saplmgmm 4000&lt;/P&gt;&lt;P&gt;Field Marc-mtvfe doesn,t exit in the screen saplmgmm 4000&lt;/P&gt;&lt;P&gt;Enter Valuation class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my Programme....................................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;removed by moderator&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arindam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please post only relevant code parts, your post must be less than 5000 characters to preserve formatting.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Apr 16, 2011 9:29 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Apr 2011 07:14:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777341#M1585078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-16T07:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error While Uploading Material Master Through Bdc Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777342#M1585079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for my obvious answer, but you should ask a more precise question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your errors are that you try to enter fields but they don't exist, so it sounds logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the error "Enter Valuation class." means that the field is mandatory. So you must enter it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re-record the transaction using SHDB (eventually play with the &lt;A href="http://wiki.sdn.sap.com/wiki/display/ABAP/Record" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/ABAP/Record&lt;/A&gt;&lt;EM&gt;during&lt;/EM&gt;play), run it in A display mode, and correct your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
perform bdc_dynpro      using 'SAPLMGMM' '4000'.
...
perform bdc_field       using 'MVKE-SKTOF'
                              'X'.
...
perform bdc_dynpro      using 'SAPLMGMM' '4000'.
...
perform bdc_field       using 'MARC-PRCTR'
                              wa_mara-prctr."'MUMBAI'.
...
perform bdc_dynpro      using 'SAPLMGMM' '4000'.
...
perform bdc_field       using 'MARA-IPRKZ'
                              'D'.
...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Apr 2011 08:35:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777342#M1585079</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-04-16T08:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error While Uploading Material Master Through Bdc Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777343#M1585080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks For your reply.....................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Flat file is in Excel format............&lt;/P&gt;&lt;P&gt;I am using citrix  webinterface.....&lt;/P&gt;&lt;P&gt;I got excel file but in my program i m using BDC_UPLOAD function Module.................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i m executing the programm it's transfer me to server desktop?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i solve this Problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Apr 2011 10:57:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777343#M1585080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-16T10:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error While Uploading Material Master Through Bdc Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777344#M1585081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't understand. Your issue was with the messages. Why are you talking about file upload, which is not related to batch input at all... Why do you use BDC_UPLOAD?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Apr 2011 12:26:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777344#M1585081</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-04-16T12:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error While Uploading Material Master Through Bdc Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777345#M1585082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry For Last Message....................&lt;/P&gt;&lt;P&gt;Actually I am using Gui_Upload FM For Call Transaction Programme............&lt;/P&gt;&lt;P&gt;When i Execute the programm it will take me to server's Desktop......Though I am using Citrix Web Interface from My Desktop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Apr 2011 13:11:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777345#M1585082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-16T13:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: Error While Uploading Material Master Through Bdc Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777346#M1585083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, explain more in details :&lt;/P&gt;&lt;P&gt;1) what is the relationship between your batch input error and the file upload????&lt;/P&gt;&lt;P&gt;2) Should I still focus on the batch input or forget it???? &lt;/P&gt;&lt;P&gt;If you don't answer, I don't see how I can help as I understand nothing of the context!&lt;/P&gt;&lt;P&gt;PLEASE BE CLEAR !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Apr 2011 13:56:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777346#M1585083</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-04-16T13:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error While Uploading Material Master Through Bdc Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777347#M1585084</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;FM GUI_UPLOAD is used to upload the file from presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to upload the file from application server then use OPEN DATASET, READ, CLOSE DATASET... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Apr 2011 10:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-material-master-through-bdc-call-transaction/m-p/7777347#M1585084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-18T10:40:22Z</dc:date>
    </item>
  </channel>
</rss>

