DBA Data[Home] [Help]

APPS.PQH_SS_PRINT dependencies on FF_EXEC

Line 1133: l_inputs FF_EXEC.INPUTS_T;

1129: and p_eff_date between effective_start_date and effective_end_date;
1130: --
1131: -- Defining local variables.
1132: --
1133: l_inputs FF_EXEC.INPUTS_T;
1134: l_outputs FF_EXEC.OUTPUTS_T;
1135:
1136: l_session_id NUMBER;
1137: l_formula_id NUMBER;

Line 1134: l_outputs FF_EXEC.OUTPUTS_T;

1130: --
1131: -- Defining local variables.
1132: --
1133: l_inputs FF_EXEC.INPUTS_T;
1134: l_outputs FF_EXEC.OUTPUTS_T;
1135:
1136: l_session_id NUMBER;
1137: l_formula_id NUMBER;
1138: l_formula_existance VARCHAR2(10);

Line 1152: FF_EXEC.INIT_FORMULA(l_formula_id, p_effective_date,l_inputs,l_outputs);

1148: Fetch cur_chk_forumual_effective into l_formula_existance, l_session_id;
1149: Close cur_chk_forumual_effective;
1150:
1151: If l_formula_existance = 'X' then
1152: FF_EXEC.INIT_FORMULA(l_formula_id, p_effective_date,l_inputs,l_outputs);
1153:
1154: for l_in_cnt in 1..l_inputs.COUNT loop
1155: if(l_inputs(l_in_cnt).name = 'P_SESSION_ID') then
1156: l_inputs(l_in_cnt).value:= l_session_id;

Line 1178: FF_EXEC.RUN_FORMULA(l_inputs,l_outputs);

1174: --
1175: end if;
1176: end loop;
1177: g_transaction_id := p_transaction_id;
1178: FF_EXEC.RUN_FORMULA(l_inputs,l_outputs);
1179: --
1180: End If; -- formula existance
1181: END IF ;-- formula id not null
1182: END populate_data_from_ff;