[Home] [Help]
979: /* Verify that the request belongs to this user */
980:
981: select 'Y' into l_valid_user
982: from fnd_concurrent_requests fcr,
983: fnd_concurrent_programs fcp
984: where fcr.request_id = p_request_id
985: and fcr.requested_by = p_user_id
986: and fcp.concurrent_program_id = fcr.concurrent_program_id
987: and fcp.concurrent_program_name = 'RAXINV_SEL';