<?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: Uploading problem ..... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147423#M116594</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No its not the case I am hitting &amp;lt;b&amp;gt;Page down&amp;lt;/b&amp;gt; and values are coming for file for one employee there could be up to 30 entries .. I can only see first 01 ...to 06 fields in IT0028 Sub type = &amp;#145;9030&amp;#146;... &lt;/P&gt;&lt;P&gt;But for next field after one &amp;lt;b&amp;gt;'page down'&amp;lt;/b&amp;gt; is 07 but technically its field become (01) ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I made my self clear right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jan 2006 23:52:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-20T23:52:53Z</dc:date>
    <item>
      <title>Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147416#M116587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have record the BDC using SHDB  for (0028)&amp;#133; code is look like, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          'Q0028-SBJKT&amp;lt;b&amp;gt;(01)&amp;lt;/b&amp;gt;'    ' '                ' ',&lt;/P&gt;&lt;P&gt;          'Q0028-JNFLD(&amp;lt;b&amp;gt;01&amp;lt;/b&amp;gt;)'    ' '                ' ',&lt;/P&gt;&lt;P&gt;          'Q0028-NMFLD(&amp;lt;b&amp;gt;01&amp;lt;/b&amp;gt;)'    ' '                ' ',&lt;/P&gt;&lt;P&gt;          'Q0028-WTFLD&amp;lt;b&amp;gt;(01&amp;lt;/b&amp;gt;)'    ' '                ' ',&lt;/P&gt;&lt;P&gt;          'Q0028-DTFLD(&amp;lt;b&amp;gt;01)&amp;lt;/b&amp;gt;'    ' '                ' ',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this(01) will keep changing on the bases of excel sheet, how can I &amp;lt;b&amp;gt;pass (01) dynamically&amp;lt;/b&amp;gt; to BDC code &amp;lt;i&amp;gt;up to (30) &amp;#133;&amp;lt;/i&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example in some cased it could be &amp;lt;b&amp;gt;( 03),(05), or (20) or (30) ,&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;User will give me a excel sheet like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pernr  subtype result    Sbj01  JNF01  NMF01 Wtf01 Dtf01 &amp;#133;&amp;#133;&amp;#133;.up to Sbj30  JNF30  NMF30 Wtf30 Dtf30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;#146;ll appreciate your help.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2006 23:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147416#M116587</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-19T23:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147417#M116588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data int1 type I,&lt;/P&gt;&lt;P&gt;     n    type I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop n times.&lt;/P&gt;&lt;P&gt;int1 = sy-index. &lt;/P&gt;&lt;P&gt;concatenate 'Q0028-SBJKT(' int1 ')' into field1.&lt;/P&gt;&lt;P&gt;concatenate 'Q0028-jnfld(' int1 ')' into field2.&lt;/P&gt;&lt;P&gt;concatenate 'Q0028-jnfld(' int1 ')' into field3.&lt;/P&gt;&lt;P&gt;  ...&lt;/P&gt;&lt;P&gt;  ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear int1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fields field1, field2,... will contain the data.&lt;/P&gt;&lt;P&gt; dynamically the number is increased.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps you.&lt;/P&gt;&lt;P&gt;Pls do reward points if its helpful to you.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Suresh Deshpande&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2006 23:30:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147417#M116588</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-19T23:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147418#M116589</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;You should have an index to do that, for example if tha data file are stored in an internal table and every record is a record for your bdc:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: INDEX(2) TYPE N,&lt;/P&gt;&lt;P&gt;      COUNTER  TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA  BDC_FIELD(20).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNTER = COUNTER + 1.&lt;/P&gt;&lt;P&gt;IF COUNTER &amp;gt; 30.&lt;/P&gt;&lt;P&gt;  COUNTER = 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE COUNTER TO INDEX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM BUILD_FIELD_NAME USING: 'Q0028-SBJKT',&lt;/P&gt;&lt;P&gt;                                'Q0028-SBJKT',&lt;/P&gt;&lt;P&gt;                                'Q0028-JNFLD',&lt;/P&gt;&lt;P&gt;                                'Q0028-NMFLD',&lt;/P&gt;&lt;P&gt;                                'Q0028-WTFLD',&lt;/P&gt;&lt;P&gt;                                'Q0028-DTFLD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BUILD_FIELD_NAME USING FIELDNAME.&lt;/P&gt;&lt;P&gt;  CONCATENATE FIELDNAME '(' INDEX ')' INTO BDC_FIELD.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " BUILD_FIELD_NAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2006 23:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147418#M116589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-19T23:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147419#M116590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the answers. Any other Suggestion out there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waiting &lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2006 15:09:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147419#M116590</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-20T15:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147420#M116591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suleman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. There is no other way !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The field name which we &lt;/P&gt;&lt;P&gt;   pass in the bdc,&lt;/P&gt;&lt;P&gt;   -- it is not necessasry&lt;/P&gt;&lt;P&gt;   that we have to hardcode it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. we can use CONCATENATE and variable&lt;/P&gt;&lt;P&gt;   to Dynamically construct the FIELD NAme&lt;/P&gt;&lt;P&gt;   and also put Brackets ().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2006 15:15:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147420#M116591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-20T15:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147421#M116592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wrote up the code , and I&amp;#146;m coming across another problem now&amp;#133;&lt;/P&gt;&lt;P&gt; I wrote logic like &amp;#133;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;concatenate:'Q0028-SBJKT(' counter ')' into field1,&lt;/P&gt;&lt;P&gt;            'Q0028-jnfld(' counter ')' into field2,&lt;/P&gt;&lt;P&gt;            'Q0028-jnfld(' counter ')' into field3,&lt;/P&gt;&lt;P&gt;            'Q0028-WTFLD(' counter ')' into field4,&lt;/P&gt;&lt;P&gt;            'Q0028-DTFLD(' counter ')' into field5.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This fields are coming form excel and these fields are up to 30&amp;#133;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I record IT0028 , &amp;lt;b&amp;gt;It only consider the fields 01&amp;#133; to 06, There is page down up to 30&amp;lt;/b&amp;gt; .. fields &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;These fields are maintain as in tabular form &amp;#133;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;01  Degree Input from excel&lt;/P&gt;&lt;P&gt;02  Home  Input from excel &lt;/P&gt;&lt;P&gt;03  dd    Input from excel&lt;/P&gt;&lt;P&gt;04  dd    Input from excel &lt;/P&gt;&lt;P&gt;05  dd    Input from excel&lt;/P&gt;&lt;P&gt;06  dd    Input from excel&lt;/P&gt;&lt;P&gt;Next page  &lt;/P&gt;&lt;P&gt;07  ds    Input from excel&lt;/P&gt;&lt;P&gt;08  ee    Input from excel&lt;/P&gt;&lt;P&gt;09  ee    Input from excel&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;03  yy   Input from excel&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have write a code to page down depends upon every 06 fields &amp;#133;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;if counter GE  '06'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;elseif counter GE '12' and counter LE '18'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I = 2&amp;#133;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And so on  up to 30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;do i times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PERFORM sub_bdc_field USING :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          'BDC_CURSOR'     'P0028-EXDAT'          ' ' ,&lt;/P&gt;&lt;P&gt;          'BDC_OKCODE'      '=P+'                 ' '.    &lt;/P&gt;&lt;P&gt;enddo.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when say we need to upload &amp;#145;8&amp;#146; recorded which is 8th place in tabular but as we page down 1 when I pass 'Q0028-SBJKT(' counter ')' into field1 ( Where counter = &amp;#145;8) .. It pops the message field Q0028-SBJKT(08) does not exist . &amp;lt;b&amp;gt;because tabular is only take care of fields from 01&amp;#133;..06 &amp;#133;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can upload the records till 30th &amp;#133; where these values are based on subtype &amp;#145;9030&amp;#146; in IT0028.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you think guys.. &lt;/P&gt;&lt;P&gt;Lets see &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advanced...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2006 23:13:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147421#M116592</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-20T23:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147422#M116593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this. In your screen, when you do 'page-up', see where the next item can be inserted. Typically it will be in the second line. Assuming that it is, your do loop can be eliminated and rewritten as follows.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at items.
  if sy-tabix = 1.   
     prepare bdc data with counter 1.
  else.
     prepare bdc data with counter 2 always.
     do a page up.
  endif.
endloop&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2006 23:34:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147422#M116593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-20T23:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147423#M116594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No its not the case I am hitting &amp;lt;b&amp;gt;Page down&amp;lt;/b&amp;gt; and values are coming for file for one employee there could be up to 30 entries .. I can only see first 01 ...to 06 fields in IT0028 Sub type = &amp;#145;9030&amp;#146;... &lt;/P&gt;&lt;P&gt;But for next field after one &amp;lt;b&amp;gt;'page down'&amp;lt;/b&amp;gt; is 07 but technically its field become (01) ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I made my self clear right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2006 23:52:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147423#M116594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-20T23:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147424#M116595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is what I am trying to address. Do not try to enter all the lines (7 in this case). You enter one item, then the second, now do page up. This will bring the next empty line to second position. Enter item in the second position. Again press page up, the next empty line will be in the second position. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way you will always enter constantly in the second position, no matter however many lines you have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you code the way you are doing, you will run into the problems that you are facing now and also the number lines available will vary depending on the screen resolution and running it online vs background. So even if you change the counter back to 1 after every seven entries, the number of lines available may be 6 or 9. So you will face a problem there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So please try this logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enter first line with bdc field as field1(01).&lt;/P&gt;&lt;P&gt;enter second line with bdcfield as field2(01).&lt;/P&gt;&lt;P&gt;Bdc okcode = pageup&lt;/P&gt;&lt;P&gt;enter the third item of the itab into second position only.&lt;/P&gt;&lt;P&gt;bdcokcode = pageup.&lt;/P&gt;&lt;P&gt;enter 4th one again in the second position.&lt;/P&gt;&lt;P&gt;bdc okcode = pageup.&lt;/P&gt;&lt;P&gt;....... and so on...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jan 2006 00:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147424#M116595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-21T00:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147425#M116596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your answer...&lt;/P&gt;&lt;P&gt;in my case the value in rows are 'DEFAULT VALUES' based on subtype configuration in SPRO. For subtype '9030' I have 20 'DEFAULT VALUES' so Rows are like 01.....20. There&amp;#146;s no line feed on new line which I have to enter . When Ever I&amp;#146;ll click IT = 0028 and subtype = &amp;#145;9030&amp;#146;. I&amp;#146;ll get 20 values in rows and I have to put date in front of every Row till 20th (In fact Based on excel sheet ). &lt;/P&gt;&lt;P&gt;Any idea&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Suleman Javed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 16:14:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147425#M116596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-23T16:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147426#M116597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suleman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From what I understand, the examination areas are defined in T528Z and are fixed values for each subty.  ie the order in which you enter them should not matter. In your case for subty 9030, enter the first six entries as 'Q0028-SBJKT(01)' through 'Q0028-SBJKT(06)' page down &amp;amp; and next six entries as 'Q0028-SBJKT(01)' through 'Q0028-SBJKT(06)' and so on..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 20:36:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147426#M116597</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-23T20:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147427#M116598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh, &lt;/P&gt;&lt;P&gt;         Now we are on the same page .. I am trying to do the same but its not working ..like say 1st REC against any employee I get is 'Q0028-SBJKT(01), it will post it successfully , the next record is 20 OK ..Now we need to page down 3 times then we reach to record number '20' &lt;/P&gt;&lt;P&gt;3 * 6 = 18 ...Record will be 'Q0028-SBJKT(02)'....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can handle this in code. So far I am trying to do the following but its not working fine . &lt;/P&gt;&lt;P&gt;concatenate:'Q0028-SBJKT(' counter ')' into field1,&lt;/P&gt;&lt;P&gt;            'Q0028-jnfld(' counter ')' into field2,&lt;/P&gt;&lt;P&gt;            'Q0028-jnfld(' counter ')' into field3,&lt;/P&gt;&lt;P&gt;            'Q0028-WTFLD(' counter ')' into field4,&lt;/P&gt;&lt;P&gt;            'Q0028-DTFLD(' counter ')' into field5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate:'Q0028-jnfld(' count ')' into field6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM sub_bdc_dynpro USING 'MP002800' '2000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM sub_bdc_field USING :&lt;/P&gt;&lt;P&gt;          'P0028-EXDAT'    p_rec-a_EXDATE          ' ',&lt;/P&gt;&lt;P&gt;          'P0028-RESUL'    p_rec-a_RES             ' ',&lt;/P&gt;&lt;P&gt;          'BDC_CURSOR'     field6                  ' ' ,&lt;/P&gt;&lt;P&gt;          'BDC_OKCODE'      '=P+'                  ' ' ,    "NEXT PAGE&lt;/P&gt;&lt;P&gt;           field1          p_rec-a_SBJKT           ' ',&lt;/P&gt;&lt;P&gt;           field2          p_rec-a_JNFLD           ' ',&lt;/P&gt;&lt;P&gt;           field3          p_rec-a_NMFLD           ' ',&lt;/P&gt;&lt;P&gt;           field4          p_rec-a_WTFLD           ' ',&lt;/P&gt;&lt;P&gt;           field5          p_rec-a_DTFLD           ' ',&lt;/P&gt;&lt;P&gt;          'BDC_OKCODE'       '=UPD'                ' '.      "SAVE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case, subtype is also in excel file. Say for some subtype it will be till 30 or for some it will be till 10 or in some it will be: AL,AC etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks For your help...&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 20:46:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147427#M116598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-23T20:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147428#M116599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suleman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if the 2nd entry is '20', you don't need to really scroll down to the 20th entry in the table control.. you can enter it in 'Q0028-SBJKT(02)'. this is what I meant when I said the order in which you enter does not matter..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 21:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147428#M116599</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-23T21:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147429#M116600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I am trying to this for "20" its giving me following &amp;lt;b&amp;gt;error message "Examination area 9030 02 cannot be delete"&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Just do it in your SAP system and see how It reacts may be that will clear my question.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 21:09:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147429#M116600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-23T21:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147430#M116601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We don't use this infotype.. will try to do a recording in our sandbox &amp;amp; let u know..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 21:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147430#M116601</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-23T21:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147431#M116602</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;You will get that error if the mode eq 'X' in T578Z for the examination area(SBJKT).. which is why you are getting the error message.. So, pl check the entries in this table for subty '9030'. If the mode is 'X' for all the 20 entries.. you will have to pass empty values in your BDC for the SBJKT that you don't need.. because if you skip them, the system tries to delete &amp;amp; throws up the error.. hope the scenario is clear for you now..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 22:05:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147431#M116602</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-23T22:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147432#M116603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suleman/Suresh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I am also facing the Exact same kind of problem, I have tried almost everything.. But its not working ...&lt;/P&gt;&lt;P&gt;Any body out there who can solve it ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me tell you its a real challenging stuff to do ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waiting &lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 23:07:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147432#M116603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-23T23:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147433#M116604</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;Did you try what I suggested in my earlier reply.. it should work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 23:15:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147433#M116604</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-23T23:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147434#M116605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh &lt;/P&gt;&lt;P&gt;        I have tried , I knew there are few tables which contains the entries against subtype , in my case I am validating entries from these tables..&lt;/P&gt;&lt;P&gt;Tables are T578T,T578W,T578X,and the one you just told ..( T578Z)...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For subtype '9030' I can see all the values in  table are = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you are suggesting that if in file we have entries SBJKT = 01,03,15,20. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have to pass Spaces for all remaining SBJKT in BDC ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I remember I have done same kind of work in SALES ORDER ( VA02 ) screen but it has the option which will populate the Item number .. but here looks like its going beyond the screen ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me try this and get back to you... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 23:30:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147434#M116605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-23T23:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading problem .....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147435#M116606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Saquib &lt;/P&gt;&lt;P&gt;       I also tried to see option in Menu bar and also by right clicking on the table but there is no option which pulls up the rows . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I am not getting your point guys &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I may need a break . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Saquib and Suresh...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2006 23:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-problem/m-p/1147435#M116606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-23T23:37:00Z</dc:date>
    </item>
  </channel>
</rss>

