<?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: BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634714#M875328</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sivaram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare one more variable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_date as sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you get the data into the itab_fldate after gui_upload convert the date to the system date format and assign it to v_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then assign this v_date in place of itab_fldate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Apr 2008 04:39:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-15T04:39:31Z</dc:date>
    <item>
      <title>BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634708#M875322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAP Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written a Dialog Program For a Screen Which contains 5 fields namely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;carrid,&lt;/P&gt;&lt;P&gt;connid,&lt;/P&gt;&lt;P&gt;fldate,&lt;/P&gt;&lt;P&gt;price,&lt;/P&gt;&lt;P&gt;planetype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the PAI logic to insert whatever entries entered in the fields, into Database Table SFLIGHT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a Transaction and Tested whether the entries are succesfully entetered into the Database Table and it works just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i planned to write a BDC program for the above Transaction so that i can upload data to the Database table from a flat file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I went to SHDB transaction and created a new recording and transferred the program to generate a source code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
include bdcrecx1.

start-of-selection.
loop at itab.

perform open_group.

perform bdc_dynpro      using 'SAPMZ_TPSCREEN02' '1000'.
perform bdc_field       using 'BDC_OKCODE'
                              '=CREA'.
perform bdc_field       using 'BDC_CURSOR'
                              'SFLIGHT-PLANETYPE'.
perform bdc_field       using 'SFLIGHT-CARRID'
                              'AA'.
perform bdc_field       using 'SFLIGHT-CONNID'
                              '0017'.
perform bdc_field       using 'SFLIGHT-FLDATE'
                              '11/01/2007'.
perform bdc_field       using 'SFLIGHT-PRICE'
                              '767'.
perform bdc_field       using 'SFLIGHT-PLANETYPE'
                              'A310-200F'.
perform bdc_transaction using 'Z_TPSCREEN02'.

perform close_group.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i defined an internal table which contains the same fields as those in my Screen and Transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I populated the internal table from a flat file using GUI_UPLOAD function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to clarify - I got this flat file by using the GUI_DOWNLOAD module and later i uploaded the same file using GUI_UPLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested whether the internal table is populated or not using LOOP  AT ITAB. WRITE Statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally my code look like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; report ZVMREC
       no standard page heading line-size 255.
TABLES: sflight.


DATA: BEGIN OF itab OCCURS 0,
carrid LIKE sflight-carrid,
connid LIKE sflight-connid,
fldate LIKE sflight-fldate,
price TYPE sflight-price,
planetype TYPE sflight-planetype,
      END OF itab.


CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
    filename                      = 'C:\users\vamc\documents\flightinfo.txt'
    FILETYPE                      = 'ASC'
    HAS_FIELD_SEPARATOR           = 'X'

  tables
    data_tab                      = itab.



include bdcrecx1.

start-of-selection.
loop at itab.

perform open_group.

perform bdc_dynpro      using 'SAPMZ_TPSCREEN02' '1000'.
perform bdc_field       using 'BDC_OKCODE'
                              '=CREA'.
perform bdc_field       using 'BDC_CURSOR'
                              'SFLIGHT-PLANETYPE'.
perform bdc_field       using 'SFLIGHT-CARRID'
                              'AA'.
perform bdc_field       using 'SFLIGHT-CONNID'
                              '0017'.
perform bdc_field       using 'SFLIGHT-FLDATE'
                              '11/01/2007'.
perform bdc_field       using 'SFLIGHT-PRICE'
                              '767'.
perform bdc_field       using 'SFLIGHT-PLANETYPE'
                              'A310-200F'.
perform bdc_transaction using 'Z_TPSCREEN02'.

perform close_group.

endloop. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked for errors, activated and executed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I gave session name and executed, it generated same number of sessions as number of records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I went to SM35 and Processed one of the sessions in foreground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It brought my screen up with all fields fill up by the fields of first record in the internal table and with &lt;/P&gt;&lt;P&gt;OK Code popping up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I check the OK Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Now the problem has come up, its says&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*No batch input data for screen SAPMZ_TPSCREEN02 1000 *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My session was now incorrectly processed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me to fix this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I searched so many forums and google it a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i didn't find any clue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly take your time and have a look at this problem and let me know how can i fix it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shiv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sivaram  Naga on Apr 15, 2008 5:57 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 03:55:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634708#M875322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T03:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634709#M875323</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; Populate the internal table values on to the screen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMZ_TPSCREEN02' '1000'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=CREA'.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                              &lt;STRONG&gt;itab-PLANETYPE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;perform bdc_field       using 'SFLIGHT-CARRID'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                              &lt;STRONG&gt;itab-CARRID'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;perform bdc_field       using 'SFLIGHT-CONNID'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                              &lt;STRONG&gt;'0017'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;perform bdc_field       using 'SFLIGHT-FLDATE'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                              &lt;STRONG&gt;itab-FLDATE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;perform bdc_field       using 'SFLIGHT-PRICE'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                              &lt;STRONG&gt;itab-PRICE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;perform bdc_field       using 'SFLIGHT-PLANETYPE'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                              &lt;STRONG&gt;itab-PLANETYPE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'Z_TPSCREEN02'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;perform close_group.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 04:10:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634709#M875323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T04:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634710#M875324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI SANTOSH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tHANKS FOR YOUR QUICK REPLY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I GOT SHORT DUMP WHEN I MADE THE CHANGES AS YOU SUGGESTED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE DUMP SAYS 'UNABLE TO INTERPRET "/" AS A NUMBER .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NO CLUE AT ALL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 04:20:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634710#M875324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T04:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634711#M875325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please Comment perform open group and close group and then try again.&lt;/P&gt;&lt;P&gt;May be that will help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am really sorry, you want to run the bdc through session. then u will require open and close group.&lt;/P&gt;&lt;P&gt;sorry for my mistake&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Amit Sawant on Apr 15, 2008 6:29 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 04:20:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634711#M875325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T04:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634712#M875326</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; The dump is because of the date field ... so convert the date to system format i.e, yyyymmdd before populating it to the bdc ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 04:24:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634712#M875326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T04:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634713#M875327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How could i convert the date field to a System date field. I am directly uploading the data from file and populating the internal field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could i possibly do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 04:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634713#M875327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T04:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634714#M875328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sivaram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare one more variable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_date as sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you get the data into the itab_fldate after gui_upload convert the date to the system date format and assign it to v_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then assign this v_date in place of itab_fldate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 04:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634714#M875328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T04:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634715#M875329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used this code to convert the date format. I'm still getting the short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;   DATA: v_yyyy(4) TYPE c,
       v_mm(2) TYPE c,
       v_dd(2) TYPE c,
       v_date(8) TYPE c.

v_yyyy = itab-fldate(4).
v_mm = itab-fldate+4(2).
v_dd = itab-fldate+6(2).

concatenate v_yyyy v_mm v_dd  into v_date.  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm once again, putting my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report ZVMREC
       no standard page heading line-size 255.
TABLES: sflight.


DATA: BEGIN OF itab OCCURS 0,
carrid LIKE sflight-carrid,
connid LIKE sflight-connid,
fldate LIKE sflight-fldate,
price TYPE sflight-price,
planetype TYPE sflight-planetype,
      END OF itab.


CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
    filename                      = 'C:\users\vamc\documents\flightinfo.txt'
    FILETYPE                      = 'ASC'
    HAS_FIELD_SEPARATOR           = 'X'

  tables
    data_tab                      = itab.



include bdcrecx1.

start-of-selection.
loop at itab.
 DATA: v_yyyy(4) TYPE c,
       v_mm(2) TYPE c,
       v_dd(2) TYPE c,
       v_date(8) TYPE c.

v_yyyy = itab-fldate(4).
v_mm = itab-fldate+4(2).
v_dd = itab-fldate+6(2).

concatenate v_yyyy v_mm v_dd  into v_date.

 perform open_group.

perform bdc_dynpro      using 'SAPMZ_TPSCREEN02' '1000'.
perform bdc_field       using 'BDC_OKCODE'
                              '=CREA'.
perform bdc_field       using 'BDC_CURSOR'
                              'SFLIGHT-PLANETYPE'.
perform bdc_field       using 'SFLIGHT-CARRID'
                               ITAB-CARRID.
perform bdc_field       using 'SFLIGHT-CONNID'
                               ITAB-CONNID.
perform bdc_field       using 'SFLIGHT-FLDATE'
                              V_DATE.
perform bdc_field       using 'SFLIGHT-PRICE'
                               ITAB-PRICE.
perform bdc_field       using 'SFLIGHT-PLANETYPE'
                              ITAB-PLANETYPE.
perform bdc_transaction using 'Z_TPSCREEN02'.

 perform close_group.

endloop.
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly take a look at it and please help me out. I tried very hard. But i dont understand why?&lt;/P&gt;&lt;P&gt;&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;Shiv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sivaram  Naga on Apr 15, 2008 5:46 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 06:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634715#M875329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T06:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: BDC - Session Method - No batch input data for screen  SAPMZ_TPSCREEN02 100</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634716#M875330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sivaram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all you find out which date format your transaction is taking in. Then convert the date into that format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is exact error u r getting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to System&lt;DEL&gt;&amp;gt;User Profile&lt;/DEL&gt;&amp;gt;Own Data in the second tab defaults u can see the date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And check the date format that ur application is taking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And one more suggestion when u r running the session in foreground check all the fields once again, check whether data is populating in all the fields properly or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and try to open a new session and try to enter the same data which is coming while u r runnning the session in foreground and try to find the exact issue where u r getting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 15:58:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method-no-batch-input-data-for-screen-sapmz-tpscreen02-100/m-p/3634716#M875330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T15:58:12Z</dc:date>
    </item>
  </channel>
</rss>

