<?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: Multiple line items with eCATT....again in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403500#M1406658</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Vinay and Sebastian,&lt;/P&gt;&lt;P&gt;OK, I'm making some progress. I created three import parameters (I changed CUSTOMER to PASSNAME since that is the rows I want to add):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_TAB_PASSNAME	S_PASSNAME[]&lt;/P&gt;&lt;P&gt;I_TAB_TITLE	S_FORM[]&lt;/P&gt;&lt;P&gt;I_TAB_DOB	S_BIRTHDAT[]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume I should parameterize the command interface with these params. So I put the new parameters I created like so:&lt;/P&gt;&lt;P&gt;Id  'wnd[0]/usr/tabsTABSTRIP1/tabpPASS/ssubTAB1_REF1:EC_TUTORIAL_SAPGUI:0102/cntlCUSTOM102/shellcont/shell'&lt;/P&gt;&lt;P&gt;modifyCell&lt;/P&gt;&lt;P&gt;    Parameter	0&lt;/P&gt;&lt;P&gt;    Parameter	'PASSNAME'&lt;/P&gt;&lt;P&gt;    Parameter	I_TAB_PASSNAME  &amp;lt;&amp;lt; Param I created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modifyCell&lt;/P&gt;&lt;P&gt;    Parameter	0&lt;/P&gt;&lt;P&gt;    Parameter	'PASSFORM'&lt;/P&gt;&lt;P&gt;    Parameter	I_TAB_TITLE  &amp;lt;&amp;lt; Param I created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modifyCell&lt;/P&gt;&lt;P&gt;    Parameter	0&lt;/P&gt;&lt;P&gt;    Parameter	'PASSBIRTH'&lt;/P&gt;&lt;P&gt;    Parameter	I_TAB_DOB  &amp;lt;&amp;lt; Param I created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I can't see how to get values into these parameters. It seems I need to build a table somewhere. Can I somehow read records into these parameters from the system data container?&lt;/P&gt;&lt;P&gt;You say "get the values with I_TAB_PASSNAME(Index)-TABLE_LINE." What is "(Index)" and TABLE_LINE? Is there a command before that? Is it inside the DO...ENDDO loop? By fieldnames do you mean 'PASSNAME', 'PASSFORM' &amp;amp; 'PASSBIRTH'?&lt;/P&gt;&lt;P&gt;Sorry for sounding so stupid but there are so many pieces and I haven't done anything close to this before so I don't know how to fit them all together. I will go back to online help with the new information on table parameters and see what I can find. Thank you for your efforts,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Dec 2009 02:15:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-03T02:15:08Z</dc:date>
    <item>
      <title>Multiple line items with eCATT....again</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403496#M1406654</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;I am struggling with adding multiple lines in an eCATT script. For this example I will use the Airline demo example from SAP help: &lt;A href="http://help.sap.com/saphelp_nw70ehp1/helpdata/en/fd/4f6b3f3d643b3be10000000a114084/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70ehp1/helpdata/en/fd/4f6b3f3d643b3be10000000a114084/content.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;(You initialize the Airline demo data with SE38&amp;gt;&amp;gt;SAPBC_DATA_GENERATOR first.)&lt;/P&gt;&lt;P&gt;The demo is based on transaction EC_TUTORIAL_SAPGUI.&lt;/P&gt;&lt;P&gt;Start transaction EC_TUTORIAL_SAPGUI&lt;/P&gt;&lt;P&gt;Open an airline and flight&lt;/P&gt;&lt;P&gt;Right click on a date and select New Booking&lt;/P&gt;&lt;P&gt;Pick a customer from F4 list&lt;/P&gt;&lt;P&gt;Select Passengers tab&lt;/P&gt;&lt;P&gt;Enter a last name, title and date of birth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created the script, system and test data containers and test configuration. Everything runs great.&lt;/P&gt;&lt;P&gt;Now I want to modify it a little so I can add multiple passengers into one flight booking request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read Sapna Modi &amp;amp; Rakesh Kumar Jain's excellent blogs and have been able to start using eCATT productively with their help. Also from reading all the SDN posts I think I need the DO...ENDDO loop. (I would like to do it without inline ABAP mainly because I don't know ABAP at all and we will want to do similar things in the future with other non-ABAP'ers.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my test script ZTUTORIAL_TS_LOOP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_100_1 ).&lt;/P&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_120_1 ).&lt;/P&gt;&lt;P&gt;GETGUI ( EC_TUTORIAL_SAPGUI_100_4 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Switch to Passengers tab. Cursor in Class field.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_100_STE_1 ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Delete first row so I start with empty table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_100_STE_2 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This is where I am stuck. I don't know how to add as many rows as there are variants (records) in my test data containter.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The way it is below, it inserts the same record twice and the whole script repeats for each record in the TDC.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DO ( 2 ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Insert row and type passenger name, title, DOB.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_100_STE_3 ).&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Save.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_100_STE_4 ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Confirm pop-up.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_110_STE_1 ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Show message in status bar.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_100_STE_5 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know I have to pass the DO a parameter and somehow get that into the command and use that to loop through the test data container, I just haven't been able to put the pieces together. Can anybody help? Thank you,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 21:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403496#M1406654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-26T21:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple line items with eCATT....again</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403497#M1406655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;Since you are updating the row and not columns( you are doing correct here).&lt;/P&gt;&lt;P&gt;Within each loop you should also put new value.&lt;/P&gt;&lt;P&gt;For that you should create a table of entries with table type of parameter.&lt;/P&gt;&lt;P&gt;For example type of SPFLI.&lt;/P&gt;&lt;P&gt;Now inside the parameter IT_SPFLI, enter more data.&lt;/P&gt;&lt;P&gt;When you loop in DO loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO ( 2 ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Insert row and type passenger name, title, DOB.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_100_STE_3 ).&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass the data it_spfli[&amp;amp;lpc]-field to fields on screen.&lt;/P&gt;&lt;P&gt;Else same data will repeat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 08:54:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403497#M1406655</guid>
      <dc:creator>Vny12</dc:creator>
      <dc:date>2009-12-02T08:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple line items with eCATT....again</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403498#M1406656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;That looks like what I want to do but where do I create a table in eCATT? How do I create a parameter of type table; I only know how to make Import, Export or Local Variable parameters?&lt;/P&gt;&lt;P&gt;I think I've read the eCATT help but I must be totally missing something. Thanks for your time.&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 17:01:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403498#M1406656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T17:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple line items with eCATT....again</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403499#M1406657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create your parameter with a parameter reference. Add to the reference these brackets: []&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example - Table for the CustomerIDs&lt;/P&gt;&lt;P&gt;Paramname: I_TAB_CUSTOMER&lt;/P&gt;&lt;P&gt;Reference: S_CUSTOMER[]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get the values with &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; I_TAB_CUSTOMER[Index]-TABLE_LINE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is your reference a structured parameter use the fieldnames instead of "-TABLE_LINE".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sebastian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 17:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403499#M1406657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T17:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple line items with eCATT....again</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403500#M1406658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Vinay and Sebastian,&lt;/P&gt;&lt;P&gt;OK, I'm making some progress. I created three import parameters (I changed CUSTOMER to PASSNAME since that is the rows I want to add):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_TAB_PASSNAME	S_PASSNAME[]&lt;/P&gt;&lt;P&gt;I_TAB_TITLE	S_FORM[]&lt;/P&gt;&lt;P&gt;I_TAB_DOB	S_BIRTHDAT[]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume I should parameterize the command interface with these params. So I put the new parameters I created like so:&lt;/P&gt;&lt;P&gt;Id  'wnd[0]/usr/tabsTABSTRIP1/tabpPASS/ssubTAB1_REF1:EC_TUTORIAL_SAPGUI:0102/cntlCUSTOM102/shellcont/shell'&lt;/P&gt;&lt;P&gt;modifyCell&lt;/P&gt;&lt;P&gt;    Parameter	0&lt;/P&gt;&lt;P&gt;    Parameter	'PASSNAME'&lt;/P&gt;&lt;P&gt;    Parameter	I_TAB_PASSNAME  &amp;lt;&amp;lt; Param I created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modifyCell&lt;/P&gt;&lt;P&gt;    Parameter	0&lt;/P&gt;&lt;P&gt;    Parameter	'PASSFORM'&lt;/P&gt;&lt;P&gt;    Parameter	I_TAB_TITLE  &amp;lt;&amp;lt; Param I created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modifyCell&lt;/P&gt;&lt;P&gt;    Parameter	0&lt;/P&gt;&lt;P&gt;    Parameter	'PASSBIRTH'&lt;/P&gt;&lt;P&gt;    Parameter	I_TAB_DOB  &amp;lt;&amp;lt; Param I created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I can't see how to get values into these parameters. It seems I need to build a table somewhere. Can I somehow read records into these parameters from the system data container?&lt;/P&gt;&lt;P&gt;You say "get the values with I_TAB_PASSNAME(Index)-TABLE_LINE." What is "(Index)" and TABLE_LINE? Is there a command before that? Is it inside the DO...ENDDO loop? By fieldnames do you mean 'PASSNAME', 'PASSFORM' &amp;amp; 'PASSBIRTH'?&lt;/P&gt;&lt;P&gt;Sorry for sounding so stupid but there are so many pieces and I haven't done anything close to this before so I don't know how to fit them all together. I will go back to online help with the new information on table parameters and see what I can find. Thank you for your efforts,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2009 02:15:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403500#M1406658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-03T02:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple line items with eCATT....again</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403501#M1406659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow! There's a light at the end of the tunnel. So here's what I've got now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In desperation I found that if you double click a table parameter you can create lines for it and voila there's that "TABLE_LINE" Sebastion mentioned. So I added three rows for each of my new table parameters.&lt;/P&gt;&lt;P&gt;Now looping three times with the DO...ENDDO thusly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO ( 3 ).&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;Rows in ALV start at zero so row number is one less than loop counter.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;V_ROWNUM = &amp;amp;LPC - 1.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;Insert row&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_100_STE_9 ).&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;Enter Name, Title, DOB&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;SAPGUI ( EC_TUTORIAL_SAPGUI_100_STE_15 ).&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in the command interfaces I've parameterized like so:&lt;/P&gt;&lt;P&gt;EC_TUTORIAL_SAPGUI_100_STE_9&lt;/P&gt;&lt;P&gt;insertRows&lt;/P&gt;&lt;P&gt;    Parameter\[1\]  V_ROWNUM    &amp;lt;&amp;lt; This is $LPC-1 declared above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EC_TUTORIAL_SAPGUI_100_STE_15&lt;/P&gt;&lt;P&gt;modifyCell&lt;/P&gt;&lt;P&gt;    Parameter\[1\]  V_ROWNUM&lt;/P&gt;&lt;P&gt;    Parameter\[2\]  'PASSNAME'&lt;/P&gt;&lt;P&gt;    Parameter\[3\]  I_TAB_PASSNAME\[&amp;amp;LPC\]-TABLE_LINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modifyCell&lt;/P&gt;&lt;P&gt;    Parameter\[1\]  V_ROWNUM&lt;/P&gt;&lt;P&gt;    Parameter\[2\]  'PASSFORM'&lt;/P&gt;&lt;P&gt;    Parameter\[3\]  I_TAB_TITLE\[&amp;amp;LPC\]-TABLE_LINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modifyCell&lt;/P&gt;&lt;P&gt;    Parameter\[1\]  V_ROWNUM&lt;/P&gt;&lt;P&gt;    Parameter\[2\]  'PASSBIRTH'&lt;/P&gt;&lt;P&gt;    Parameter\[3\]  I_TAB_DOB\[&amp;amp;LPC\]-TABLE_LINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I can now add three passengers to the booking request. Almost there!&lt;/P&gt;&lt;P&gt;Now all I need to do is find a way to populate the table parameters at runtime, from the system data container I presume, and then loop as many times as there are rows in the table parameters. But it's getting late now and my brain hurts.&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2009 03:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403501#M1406659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-03T03:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple line items with eCATT....again</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403502#M1406660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vinay and Sebastian,&lt;/P&gt;&lt;P&gt;I'm going to call this solved; I'm close enough that I can work with it. I double clicked on the parameter in the test data container and added rows there for each variant. Thank you both so much for your help.&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 03:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403502#M1406660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T03:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple line items with eCATT....again</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403503#M1406661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear David,Vinay and Sebastian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an issue....I am new to ECATT.&lt;/P&gt;&lt;P&gt;iam Using SECATT Transaction.&lt;/P&gt;&lt;P&gt;I need 2 record PFCG to Create Role and assign Multiple Transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have Gone through th eBlogs of Sapna and many other links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly I have Tried Both the Methods,&lt;/P&gt;&lt;P&gt;TCD and GUI as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Case is as Follows....&lt;/P&gt;&lt;P&gt;1)while Creating Role in PFCG(Recording).&lt;/P&gt;&lt;P&gt;I give &lt;/P&gt;&lt;P&gt;         a)Role Name&lt;/P&gt;&lt;P&gt;         b)Description Then Navigate to Menu Tab&lt;/P&gt;&lt;P&gt;         c)Click on  Transaction Button&lt;/P&gt;&lt;P&gt;         d)now this is where the Problem Arises.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I  first    Enter VA01 and press enter&lt;/P&gt;&lt;P&gt;   Then  Enter Va02 and Press enter&lt;/P&gt;&lt;P&gt;Similarly I make Multiple Entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that I Click on Assign Transaction and then Save my Recording and then go back.&lt;/P&gt;&lt;P&gt;Now I am Done with my recording.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now issue is after creating my Test Script...When i Create the Test Configuration.&lt;/P&gt;&lt;P&gt;I provide the Test Script Name and Download the Template.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now after Creating Template I give Entries as follows in tab Delimit Format.&lt;/P&gt;&lt;P&gt;I modified my File as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[VARIANT]                     	[DESCRIPTION]	V_ROLE_NAME	V_DESC	V_TCODE&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                            		BDC field value	BDC field value	BDC field value&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*ECATTDEFAULT                 		X104	A1	VL03N&lt;/P&gt;&lt;P&gt;1		ROLE1	A1	SE37&lt;/P&gt;&lt;P&gt;2		ROLE1	A1	SE38&lt;/P&gt;&lt;P&gt;3		ROLE1	A1	SE51&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problems:-&lt;/P&gt;&lt;P&gt;1)Whenever I Execute The Recording it Shows Previous Entry which i made during Recording and says that the Role already Exists&lt;/P&gt;&lt;P&gt;2)while recording in Foreground Teh File Picks ROLE1 then picks the Desc  A1 then when it Picks the Transaction  se37.&lt;/P&gt;&lt;P&gt;now when it Goes to second line it Shows the Previous Entry I JUST ENTERED.i.e SE37 and says that Tcode laready Exists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i Clear this previus variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2ndly if i Program My Code and dont Use External Vaiant.&lt;/P&gt;&lt;P&gt;I made the File as Below as Text Delimit and This Time iam not using The Template.&lt;/P&gt;&lt;P&gt;But when i Execute it It Gives Error.&lt;/P&gt;&lt;P&gt;Is there any Problem with My File..Please Suggest.&lt;/P&gt;&lt;P&gt;It has been 3 Days and iam Still Stuck at this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ROLE2	DES1	MB5B&lt;/P&gt;&lt;P&gt;ROLE2	DES2	ME23N         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Respond.&lt;/P&gt;&lt;P&gt;Thanks Awaiting.&lt;/P&gt;&lt;P&gt;Essam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Apr 2010 17:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-line-items-with-ecatt-again/m-p/6403503#M1406661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-28T17:30:49Z</dc:date>
    </item>
  </channel>
</rss>

