U r taken ORD=All in correlated function.What it
represents.Now i want to capture the ORD=3 occurance& place
it in web_submit_data of vu gen script. How can u do it?

Answers were Sorted based on User's Feedback



U r taken ORD=All in correlated function.What it represents.Now i want to capture the ORD=3 occuran..

Answer / selva

ORD in web_reg_save_param or ORDINAL represents the position
of the desired data in a list of matching output values that
have passed the left and right boundary test.

For e.g., let us assume your server output looks like this :

the table value created is: 1234 and can be used
the table value created is: 1235 and can be used
the table value created is: 1236 and can be used

Here the LEFT and RIGHT boundaries are same for all the
three values 1234, 1235 and 1236. But you need only the
value 1236. If this is the case, you need to use the OPTION
'ORD' in this method. ORD indicates which value among the
matching ones must be retrieved

If you specify ALL, it will return an ARRAY WITH ALL
MATCHING VALUES in the array. Hence, your array will have
1234, 1235, 1236.

For capturing ORD=3 occurrence and using it in
web_submit_data, store ORD=3 occurrence in a PARAMETER
through web_reg_save_param.
Replace the data in the web_submit_data with the PARAMETER
CREATED.

Is This Answer Correct ?    24 Yes 0 No

U r taken ORD=All in correlated function.What it represents.Now i want to capture the ORD=3 occuran..

Answer / maheshkumar

Using ORD=ALL will capture an ARRAY WITH ALL
MATCHING VALUES.

1. case where you want only 3rd value use can use ORD=3
2. If you want to capture all values and then you want to
make use of 3rd value of the captured array, you will have
to use "PARAM_NAME_3"

For example you have used:
web_reg_save_param
("Array","LB=abc","RB=xyz","ORD=All",LAST);
and it give results a1,a2,a3,....
Now you want to place "a3" in web_submit_data then you
should use:
{Array_3}

Is This Answer Correct ?    15 Yes 1 No

U r taken ORD=All in correlated function.What it represents.Now i want to capture the ORD=3 occuran..

Answer / narayana

maheshkumar is correct


if u want particular occurrence we need to write like this

paramname_no

if paramname is param and if u want 3 occ

then we can write like this:param_3

if u want to get count of all occ then param_count need to be used

Is This Answer Correct ?    7 Yes 0 No

U r taken ORD=All in correlated function.What it represents.Now i want to capture the ORD=3 occuran..

Answer / bala

if u want a perticular value from a list of matches which
having the same LB and RB then we go for ORD=3

e.g:

abc234xzc
abc456xzc
abc789xzc
abc980xzc
abc567xzc

if u want the value 789 from that list
then u set as ORD=3
it will returns that value
this concept is used for corelation

Is This Answer Correct ?    6 Yes 3 No

U r taken ORD=All in correlated function.What it represents.Now i want to capture the ORD=3 occuran..

Answer / hussain

Narayana,


where to write this :param_3 in function


Thanks,
Bhasheer

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More Load Runner Interview Questions

How can we develop the database vuser script?

0 Answers  


How to handle the dynamic value in the script if the boundary and dynamic value both are changing as a... 1.special char. 2.Hex code or binary code

1 Answers  


What is report header and what are the information contains?

0 Answers  


Explain the function of a transaction in a script?

3 Answers   AppLabs,


How do you write user defined functions in LR? Give me few functions you wrote in your previous project?

1 Answers  






Does any one know how to over come the problem of "monitoring the load generators over firewall". We are able to use these machines for load generation, but are not able to monitor the measurements of these machines. When tried to add these machines to the windows resources, we were getting the error "Monitor name :Windows Resources. Cannot connect to machine stresstestxp6:62043. Reason: The network path was not found." Also note that, we are able to ping/telnet the LG from the controller, but not the vice versa Is there any router settings to be made or any other configuration has to be done?

1 Answers  


What's r client side authentications in loadreunner?

4 Answers   Symphony,


We have executed a scenario in controller from 3 diff Load Generators..How can we measure or get the response time of transactions of individual LG's....?

3 Answers   ADP,


WHAT IS THE PRESENT MARKET FOR LOAD RUNNER?ANY REQ IS THERE UP TO DEC 2012?

2 Answers  


what is the difference between HTTP & HTTPS

1 Answers   SumTotal,


What is memory Leak. What is the most suitable performance counter to detect Memory Leak.

5 Answers  


What is the difference between standard log and extended log?

4 Answers  


Categories