SELECT item_Id, FROM permanent_staff WHERE staff_no=? ''',([Search_Id])
I want to run the sql query example below to enable the user to type in any item_ID the user want , so that sql statement will return the exact record of the item_Id typed by the user.
SELECT item_Id, FROM items WHERE item_Id=? ''',([Search_Id])
SELECT item_id, item_name, item_type from items WHERE item_id=$P(pitem_id)
report = project.report(...
report.setParameterValue( 'pitem_id','4' )
report.setParameterValue( 'pitem_id','4' )
?
report.setParameterValue( 'pitem_id','4' )
is set. Meaning after I package the app as .exe I can only search for the record with parameter value of '4'. But I would like to search for any other record. So is there a say a variable that could hold all the parameter values one time?
report.setParameterValue( 'pitem_id', paramValue )
report.setParameterValue( 'pitem_id', paramValue )