DBA Data[Home] [Help]

APPS.PSB_WS_POS3 dependencies on PSB_PAY_ELEMENT_OPTIONS

Line 1020: from PSB_PAY_ELEMENT_OPTIONS

1016: l_option_flag VARCHAR2(1);
1017:
1018: cursor c_ElemOption is
1019: select pay_element_option_id
1020: from PSB_PAY_ELEMENT_OPTIONS
1021: where pay_element_id = p_pay_element_id;
1022:
1023: BEGIN
1024:

Line 3287: from PSB_PAY_ELEMENT_OPTIONS

3283:
3284: cursor c_ElemOptions (ElemOptID NUMBER) is
3285: select name,
3286: sequence_number
3287: from PSB_PAY_ELEMENT_OPTIONS
3288: where pay_element_option_id = ElemOptID;
3289:
3290: cursor c_NextOption (ElementID NUMBER,
3291: OptionName VARCHAR2,

Line 3295: from PSB_PAY_ELEMENT_OPTIONS

3291: OptionName VARCHAR2,
3292: SeqNum NUMBER) is
3293: select pay_element_option_id,
3294: sequence_number
3295: from PSB_PAY_ELEMENT_OPTIONS
3296: where sequence_number =
3297: (select min(sequence_number)
3298: from PSB_PAY_ELEMENT_OPTIONS
3299: where sequence_number > SeqNum

Line 3298: from PSB_PAY_ELEMENT_OPTIONS

3294: sequence_number
3295: from PSB_PAY_ELEMENT_OPTIONS
3296: where sequence_number =
3297: (select min(sequence_number)
3298: from PSB_PAY_ELEMENT_OPTIONS
3299: where sequence_number > SeqNum
3300: and name = OptionName
3301: and pay_element_id = ElementID)
3302: and name = OptionName

Line 5244: from PSB_PAY_ELEMENT_OPTIONS

5240:
5241: cursor c_Grade is
5242: select name grade_name,
5243: grade_step
5244: from PSB_PAY_ELEMENT_OPTIONS
5245: where pay_element_option_id = p_pay_element_option_id;
5246:
5247: cursor c_SalaryNeqAll is
5248: select a.name position_name,

Line 5252: PSB_PAY_ELEMENT_OPTIONS b,

5248: select a.name position_name,
5249: b.name,
5250: b.grade_step
5251: from PSB_POSITIONS a,
5252: PSB_PAY_ELEMENT_OPTIONS b,
5253: PSB_POSITION_ASSIGNMENTS c
5254: where exists
5255: (select 1
5256: from PSB_BUDGET_POSITIONS d,

Line 5277: from PSB_PAY_ELEMENT_OPTIONS a,

5273:
5274: cursor c_SalaryNeq is
5275: select a.name,
5276: a.grade_step
5277: from PSB_PAY_ELEMENT_OPTIONS a,
5278: PSB_POSITION_ASSIGNMENTS b
5279: where a.pay_element_option_id = b.pay_element_option_id
5280: and b.pay_element_option_id <> p_pay_element_option_id
5281: and (((b.effective_start_date <= p_year_start_date)