<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Introduction to Parameterization with QTP&#8217;s Local DataTable</title>
	<atom:link href="http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/feed/" rel="self" type="application/rss+xml" />
	<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/</link>
	<description>A Resource for Test Automation Development</description>
	<lastBuildDate>Fri, 18 May 2012 07:21:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Anonymous</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-59958</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 24 Apr 2012 11:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-59958</guid>
		<description>Hi,

 How to read one xml fiel and put the contents of it( whole contents as it is) in to a table field in database usign QTP?
The table looks like below. Need to put the xml file contents(from top to bottom) in to field XML_DATA(data type is CLOB).


CREATE TABLE FAST_USER.FS_AIB_TRANSACTIONS
(
  ID            NUMBER(6)                       NOT NULL,
  AIB_REF_NO    VARCHAR2(30 BYTE),
  PIP_REF_NO    VARCHAR2(30 BYTE),
  TR_CODE       CHAR(10 BYTE)                   NOT NULL,
  STATUS_ID     NUMBER(3)                       NOT NULL,
  CREATED_DATE  DATE                            NOT NULL,
  XML_DATA      CLOB
)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p> How to read one xml fiel and put the contents of it( whole contents as it is) in to a table field in database usign QTP?<br />
The table looks like below. Need to put the xml file contents(from top to bottom) in to field XML_DATA(data type is CLOB).</p>
<p>CREATE TABLE FAST_USER.FS_AIB_TRANSACTIONS<br />
(<br />
  ID            NUMBER(6)                       NOT NULL,<br />
  AIB_REF_NO    VARCHAR2(30 BYTE),<br />
  PIP_REF_NO    VARCHAR2(30 BYTE),<br />
  TR_CODE       CHAR(10 BYTE)                   NOT NULL,<br />
  STATUS_ID     NUMBER(3)                       NOT NULL,<br />
  CREATED_DATE  DATE                            NOT NULL,<br />
  XML_DATA      CLOB<br />
)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kiran Chikkala</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-59664</link>
		<dc:creator>Kiran Chikkala</dc:creator>
		<pubDate>Mon, 16 Apr 2012 11:39:38 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-59664</guid>
		<description>Nice Article</description>
		<content:encoded><![CDATA[<p>Nice Article</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-55084</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 02 Feb 2012 05:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-55084</guid>
		<description>replace getcurrentrow with getrowcount</description>
		<content:encoded><![CDATA[<p>replace getcurrentrow with getrowcount</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachel Wang</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-54060</link>
		<dc:creator>Rachel Wang</dc:creator>
		<pubDate>Fri, 13 Jan 2012 06:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-54060</guid>
		<description>I have 100 records, inside an action I can only setup/validate 9 records (9 iterations) at one time by limitation of application.
My test was designed as below -

1. Action_Login
2. Action_SetUp (9 records)
3. Action_Logout
4. Action_Login (again)
5. Action_validate (9 records)
*** 1 iteration done *** and will repeat Action 2 ~5

I will need to run the test multiple times to test all of 100 records.
I could not figure out how to control the number of iterations with DataTable(Global and Action), I do not have a Global sheet, only Action table with 100 rows.

I&#039;ve tried to use an external file (excel sheet) instead of DataTable for inputer parameter, and it seems work for me.

Do you think I can control my test with DataTable (Global/Action)? Theoretically I should, but I have no enough knowledge on DataTable control, please provide advice.

Thanks.
Rachel</description>
		<content:encoded><![CDATA[<p>I have 100 records, inside an action I can only setup/validate 9 records (9 iterations) at one time by limitation of application.<br />
My test was designed as below -</p>
<p>1. Action_Login<br />
2. Action_SetUp (9 records)<br />
3. Action_Logout<br />
4. Action_Login (again)<br />
5. Action_validate (9 records)<br />
*** 1 iteration done *** and will repeat Action 2 ~5</p>
<p>I will need to run the test multiple times to test all of 100 records.<br />
I could not figure out how to control the number of iterations with DataTable(Global and Action), I do not have a Global sheet, only Action table with 100 rows.</p>
<p>I&#8217;ve tried to use an external file (excel sheet) instead of DataTable for inputer parameter, and it seems work for me.</p>
<p>Do you think I can control my test with DataTable (Global/Action)? Theoretically I should, but I have no enough knowledge on DataTable control, please provide advice.</p>
<p>Thanks.<br />
Rachel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-54027</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Thu, 12 Jan 2012 16:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-54027</guid>
		<description>Rachel, How can you have 9 rows of records in a DataTable of 100 rows?

How many rows in Action DataTable? How many rows in Global DataTable?</description>
		<content:encoded><![CDATA[<p>Rachel, How can you have 9 rows of records in a DataTable of 100 rows?</p>
<p>How many rows in Action DataTable? How many rows in Global DataTable?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachel Wang</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-53955</link>
		<dc:creator>Rachel Wang</dc:creator>
		<pubDate>Thu, 12 Jan 2012 00:25:28 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-53955</guid>
		<description>I am seeking for a help ...

My test comprises 5 re-usable actions, I can only run 9 rows of records (9 iterations of action run) from a DataTable of 100 rows at one time.
I have to run the test multiple times with the set of different 9 row data each time, until complete all 100 rows.

How can I fulfill my teask with DataTable and/or Parameterizing?

Thanks for help!</description>
		<content:encoded><![CDATA[<p>I am seeking for a help &#8230;</p>
<p>My test comprises 5 re-usable actions, I can only run 9 rows of records (9 iterations of action run) from a DataTable of 100 rows at one time.<br />
I have to run the test multiple times with the set of different 9 row data each time, until complete all 100 rows.</p>
<p>How can I fulfill my teask with DataTable and/or Parameterizing?</p>
<p>Thanks for help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roveena</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-53922</link>
		<dc:creator>roveena</dc:creator>
		<pubDate>Wed, 11 Jan 2012 09:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-53922</guid>
		<description>how to create and use the data pools using QTP</description>
		<content:encoded><![CDATA[<p>how to create and use the data pools using QTP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wasay</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-53555</link>
		<dc:creator>wasay</dc:creator>
		<pubDate>Thu, 05 Jan 2012 11:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-53555</guid>
		<description>Hi,
    Can any one tell me how to insert a value in the data table of a particular position?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
    Can any one tell me how to insert a value in the data table of a particular position?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelley Wang</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-53199</link>
		<dc:creator>Shelley Wang</dc:creator>
		<pubDate>Thu, 29 Dec 2011 03:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-53199</guid>
		<description>You may try:
Dim res
res = 4
msgbox res
DataTable.Values(“RequestID”,”Global”) = res

I&#039;ve tried it, it works well. But you must make sure you&#039;ve already created a column named &quot;RequestID&quot; in run-time &quot;Global&quot; sheet.

Hope it works for you too.</description>
		<content:encoded><![CDATA[<p>You may try:<br />
Dim res<br />
res = 4<br />
msgbox res<br />
DataTable.Values(“RequestID”,”Global”) = res</p>
<p>I&#8217;ve tried it, it works well. But you must make sure you&#8217;ve already created a column named &#8220;RequestID&#8221; in run-time &#8220;Global&#8221; sheet.</p>
<p>Hope it works for you too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anu Chavan</title>
		<link>http://relevantcodes.com/introduction-to-parameterization-qtps-local-datatable/#comment-52656</link>
		<dc:creator>Anu Chavan</dc:creator>
		<pubDate>Thu, 22 Dec 2011 06:36:40 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=2002#comment-52656</guid>
		<description>Hi Anshoo,
Articals and problem solved by u are very good .I am facing one problem in qtp 9.2.0 with Extjs.In my test site gird is displaying with checkbox in first column to select row.now my problem is when checkbox is checked i have to get either row number or text appread in 2nd column in grid so that i will use that info for next recording.qtp is recognising that grid as webelement

waiting for reply...</description>
		<content:encoded><![CDATA[<p>Hi Anshoo,<br />
Articals and problem solved by u are very good .I am facing one problem in qtp 9.2.0 with Extjs.In my test site gird is displaying with checkbox in first column to select row.now my problem is when checkbox is checked i have to get either row number or text appread in 2nd column in grid so that i will use that info for next recording.qtp is recognising that grid as webelement</p>
<p>waiting for reply&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 10/14 queries in 0.003 seconds using disk: basic
Object Caching 379/379 objects using disk: basic
Content Delivery Network via N/A

Served from: relevantcodes.com @ 2012-05-19 11:10:22 -->
