<?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: ecatt in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt/m-p/3392583#M814609</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is no procedure to upload data from excel file to ecatt... If u want to upload data from excel u need to use abap program and upload data and then post data using BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;better option is u need to convert the excel file to tab delimited file and then upload using ecatt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else just check whether u can use .csv file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Feb 2008 13:24:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-25T13:24:51Z</dc:date>
    <item>
      <title>ecatt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt/m-p/3392582#M814608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;               I want to upload the data from excel file to ecatt.I can upload from notepad but i cant do in excel file.help me please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank u,&lt;/P&gt;&lt;P&gt;Manjula devi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 13:19:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt/m-p/3392582#M814608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T13:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: ecatt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt/m-p/3392583#M814609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is no procedure to upload data from excel file to ecatt... If u want to upload data from excel u need to use abap program and upload data and then post data using BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;better option is u need to convert the excel file to tab delimited file and then upload using ecatt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else just check whether u can use .csv file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 13:24:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt/m-p/3392583#M814609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T13:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: ecatt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt/m-p/3392584#M814610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you are Step 2 of below blog,&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/testing/ecatt.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/testing/ecatt.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok please find the code below,&lt;/P&gt;&lt;P&gt;DO (COUNT).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : V_READINDX TYPE I,
FILE TYPE STRING,
INDX TYPE I VALUE 0.

DATA : BEGIN OF I_MARA OCCURS 0,
*** Prepare this internal table-----*
END OF I_MARA.

DATA : WA LIKE I_MARA.

FILE = FILE_V-PATH.

CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
FILENAME = FILE
HAS_FIELD_SEPARATOR = 'X'
TABLES
DATA_TAB = I_MARA.

V_READINDX = INT_LOC.
READ TABLE I_MARA INDEX V_READINDX INTO WA.

* assigning work area values to the screen field values you created so far
*example I_CCODE = WA-I_CCODE. " Company Code

ENDABAP.

* Replace this line with your TCD statement TCD ( MM01 , MM01_1 )-----

INT_LOC = INT_LOC + 1.

ENDDO.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Formatted by: Alvaro Tejada Galindo on Feb 25, 2008 2:48 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 13:48:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt/m-p/3392584#M814610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T13:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: ecatt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt/m-p/3392585#M814611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with eCATT in NetWeaver releases from 6.40 on there is testdata download/upload functionality available. Such is also known as "external variants".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you can do with it is:&lt;/P&gt;&lt;P&gt;- download the data of the variants of a test configuration or testdata conatiner to text file, the file beeing tab separated and in a predefined format&lt;/P&gt;&lt;P&gt;- upload from such files (requiring the correct format)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- the files can be opened with excel (converting at import from tab delimited txt), then in excel mark all cells (Ctrl+A) and doubleclick on any column seperator to get optimal column with&lt;/P&gt;&lt;P&gt;- edit the data rows in excel&lt;/P&gt;&lt;P&gt;- save the file but do not let excel convert it into xls &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- thereafter the files can be imported into eCATT TDC or TC &lt;/P&gt;&lt;P&gt;- also upload at each start a test configuration can be configured&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- a small limitation: all this is possible with simple parameters in ecatt but not with structured parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Jens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 18:02:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt/m-p/3392585#M814611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T18:02:31Z</dc:date>
    </item>
  </channel>
</rss>

