linked_cmd : SELECT_USING ensured_variable_usage_expression { $$=print_linked_cmd('S',$2); if ($$==NULL) { a4gl_yyerror("Not a linked variable"); } } ; linked_del_cmd : DELETE_USING ensured_variable_usage_expression { $$=print_linked_cmd('D',$2); if ($$==NULL) { a4gl_yyerror("Not a linked variable"); } } ; linked_upd_cmd : UPDATE_USING ensured_variable_usage_expression { $$=print_linked_cmd('U',$2); if ($$==NULL) { a4gl_yyerror("Not a linked variable"); } } ;