Exam UiARD All QuestionsBrowse all questions from this exam
Question 179

HOTSPOT -

You need to include rows from one datatable named "dt1" in another datatable named "dt2".

Instructions: From the drop-down lists for Invoke Method on the "For Each Row in Data Table" display, select the correct value of each field for the "Invoke Method". Next, from the drop-down list on the Parameters display, select the correct Value to complete this task.

    Correct Answer:

    To include rows from one datatable (dt1) into another datatable (dt2), you need to utilize the Invoke Method activity effectively. The correct configuration is as follows: For the TargetObject, select 'dt2' because it is the datatable into which you want to import rows. For the MethodName, select 'ImportRow' because this method is used to import the rows from one datatable to another. In the Parameters section, for the Value, select 'CurrentRow' since you need to import each row from dt1. Therefore, the correct configuration should be: TargetObject: dt2, MethodName: ImportRow, Parameters Value: CurrentRow.

Discussion
Andreea22

target object - DT2 method - import row argument - in Current Row tested in Studio

sur_bhi123456789

target object - DT2 method - import row argument - in Dt2