DBA Data[Home] [Help]

APPS.BEN_PLAN_DESIGN_PROGRAM_MODULE dependencies on PER_POSITIONS

Line 7193: l_position_name per_positions.name%type := null;

7189: (
7190: p_position_id in number
7191: ) return varchar2 is
7192:
7193: l_position_name per_positions.name%type := null;
7194:
7195: cursor c_position_name is
7196: select pos.name
7197: from per_positions pos

Line 7197: from per_positions pos

7193: l_position_name per_positions.name%type := null;
7194:
7195: cursor c_position_name is
7196: select pos.name
7197: from per_positions pos
7198: where pos.position_id = p_position_id;
7199:
7200: begin
7201: open c_position_name;