OverridePromptTableName property: Field class
Description
Use this property to override the prompt table name at runtime. You should provide a valid record name as a string value and this record name is used to override the prompt table name at runtime; it does not update the persisted value in the database.
Note:
The OverridePromptTableName property is ignored if you invoke it to override a dynamic view set at record field property level.
Note:
The OverridePromptTableName property does not override the SQL that is set using the SqlText property.
This property is read/write.
Example
Local Field &field;
&field = GetField();
/* Use a branch statement checking for PeopleTools release, which should be greater than 8.62. */
#If #ToolsRel >= "8.62" #Then
&field.OverridePromptTableName = "VENDOR_SHRT_DV2";
End-If;