DBA Data[Home] [Help]

APPS.FV_FACTS_EDIT_CHECK dependencies on FV_FACTS_SUBMISSION

Line 1185: UPDATE fv_facts_submission

1181: and fct_int_record_type = 'BLK_DTL';
1182:
1183: -- Enable the foot note flag for this failed
1184: -- edit check
1185: UPDATE fv_facts_submission
1186: SET foot_note_flag = 'Y'
1187: WHERE treasury_symbol_id = g_treasury_symbol_id;
1188:
1189: END IF;

Line 1240: UPDATE fv_facts_submission

1236: and fct_int_record_type = 'BLK_DTL';
1237:
1238: -- Enable the foot note flag for this failed
1239: -- edit check
1240: UPDATE fv_facts_submission
1241: SET foot_note_flag = 'Y'
1242: WHERE treasury_symbol_id = g_treasury_symbol_id;
1243:
1244: END IF;

Line 1253: UPDATE fv_facts_submission

1249: v_edit_check_status := 'Passed' ;
1250:
1251: -- Disable the foot note flag for this passed
1252: -- edit check in case it has failed earlier
1253: UPDATE fv_facts_submission
1254: SET foot_note_flag = 'N'
1255: WHERE treasury_symbol_id = g_treasury_symbol_id;
1256:
1257: ELSE