Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Reading Table Parameter in eCATT

Former Member
0 Likes
563

Hello All,

To my requirement, i need to read the table parameter line by line out side

ABAP..ENDABAP block of eCATT script. So is there any possibility to do that..

Thank you..

Gunnam

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
415

Hello,

Use GETLEN ( V_TABLE , V_ROWS ). to have the number of rows and then

DO V_ROWS.

... (variable &LPC contains the number of loop)

ENDDO.

2 REPLIES 2
Read only

Former Member
0 Likes
415

Hi

check the links related to eCATT

check these link,

eCATT- An Introduction

/people/sumeet.kaul/blog/2005/07/26/ecatt-an-introduction

Creating Test Scripts

/people/sumeet.kaul/blog/2005/08/10/ecatt-creating-test-scripts

eCATT Logs

/people/sapna.modi/blog/2006/04/18/ecatt-logs-part-vi

eCATT Scripts Creation – TCD Mode

/people/sapna.modi/blog/2006/04/10/ecatt-scripts-creation-150-tcd-mode-part-ii

Creation of Test Data Container

/people/sumeet.kaul/blog/2005/08/24/ecatt-creation-of-test-data-container

eCATT Scripts Creation - SAPGUI Mode

/people/sapna.modi/blog/2006/04/10/ecatt-scripts-creation--sapgui-mode-part-iii

Integrating ECATT & MERCURY QTP Part -1

/people/community.user/blog/2007/01/02/integrating-ecatt-mercury-qtp-part-1

Using eCatt to Test Web Dynpro ABAP

/people/thomas.jung/blog/2006/03/21/using-ecatt-to-test-web-dynpro-abap

and

-command reference

http://help.sap.com/saphelp_nw04/helpdata/en/c6/3c333b40389c46e10000000a114084/content.htm

/people/sapna.modi/blog/2006/04/10/ecatt--an-introduction-part-i

http://prasadbabu.blogspot.com

https://www.sdn.sap.com/sdn/developerareas/was.sdn?page=test_tool_integration_for_sap_e-catt.htm

http://help.sap.com/saphelp_nw04/helpdata/en/1b/e81c3b84e65e7be10000000a11402f/frameset.htm

http://www.erpgenie.com/ecatt/index.htm

hope this helps.

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
416

Hello,

Use GETLEN ( V_TABLE , V_ROWS ). to have the number of rows and then

DO V_ROWS.

... (variable &LPC contains the number of loop)

ENDDO.