DBA Data[Home] [Help]

APPS.GCS_RULES_PROCESSOR dependencies on GCS_TEMPLATES_DYNAMIC_PKG

Line 39: templates_pkg_error EXCEPTION; -- GCS_TEMPLATES_DYNAMIC_PKG may raise

35: bad_sign EXCEPTION; -- a line_item is missing a SIGN attr
36: no_default_cctr_found EXCEPTION; -- used in initEntriesGT_tgtDimSet()
37: convert_threshold_err EXCEPTION; -- used in createEntry
38: entry_header_error EXCEPTION; -- GCS_ENTRY_PKG.create_entry_header failed
39: templates_pkg_error EXCEPTION; -- GCS_TEMPLATES_DYNAMIC_PKG may raise
40: invalid_category_code EXCEPTION; -- unable to get data from gcs_categories_b
41:
42: --The cctr_org and interco dims may require special handling
43: --The column names are long strings, so lets use shorter constants

Line 575: --Used by the call to GCS_TEMPLATES_DYNAMIC_PKG

571: l_owner_percent NUMBER;
572: l_errbuf VARCHAR2(100);
573: l_errcode NUMBER;
574:
575: --Used by the call to GCS_TEMPLATES_DYNAMIC_PKG
576: templateRecord GCS_TEMPLATES_PKG.templateRecord;
577:
578: procedureName varchar2(30);
579:

Line 794: GCS_TEMPLATES_DYNAMIC_PKG.calculate_re(p_entry_id => l_seq(i),

790: FOR i IN l_entities.first .. l_entities.last LOOP
791:
792: IF (l_net_to_re_flag = 'Y') THEN
793: BEGIN
794: GCS_TEMPLATES_DYNAMIC_PKG.calculate_re(p_entry_id => l_seq(i),
795: p_hierarchy_id => contextData.hierarchy,
796: p_bal_type_code => 'ACTUAL',
797: p_entity_id => l_entities(i));
798: EXCEPTION

Line 817: GCS_TEMPLATES_DYNAMIC_PKG.balance(p_entry_id => l_seq(i),

813: END;
814: END IF;
815:
816: BEGIN
817: GCS_TEMPLATES_DYNAMIC_PKG.balance(p_entry_id => l_seq(i),
818: p_template => templateRecord,
819: p_bal_type_code => 'ACTUAL',
820: p_hierarchy_id => contextData.hierarchy,
821: p_entity_id => l_entities(i),

Line 4037: --Used by the call to GCS_TEMPLATES_DYNAMIC_PKG

4033: liaVers number;
4034: ataAttr number;
4035: ataVers number;
4036:
4037: --Used by the call to GCS_TEMPLATES_DYNAMIC_PKG
4038: templateRecord GCS_TEMPLATES_PKG.templateRecord;
4039:
4040: -- See package global data declares above for cursor
4041: categoryInfo getCategory%ROWTYPE;

Line 4417: GCS_TEMPLATES_DYNAMIC_PKG.balance(p_entry_id => entryId,

4413: --followed by the one to handle Retained Earnings
4414: --JH 5.3.04: Added p_rel_id
4415: begin
4416:
4417: GCS_TEMPLATES_DYNAMIC_PKG.balance(p_entry_id => entryId,
4418: p_template => templateRecord,
4419: p_bal_type_code => 'ACTUAL',
4420: p_hierarchy_id => contextData.hierarchy,
4421: p_entity_id => categoryInfo.entityId,

Line 4443: GCS_TEMPLATES_DYNAMIC_PKG.calculate_re(p_entry_id => entryId,

4439: end;
4440:
4441: begin
4442:
4443: GCS_TEMPLATES_DYNAMIC_PKG.calculate_re(p_entry_id => entryId,
4444: p_hierarchy_id => contextData.hierarchy,
4445: p_bal_type_code => 'ACTUAL',
4446: p_entity_id => categoryInfo.entityId);
4447:

Line 4755: --Used by the call to GCS_TEMPLATES_DYNAMIC_PKG

4751: liaVers number;
4752: ataAttr number;
4753: ataVers number;
4754:
4755: --Used by the call to GCS_TEMPLATES_DYNAMIC_PKG
4756: templateRecord GCS_TEMPLATES_PKG.templateRecord;
4757:
4758: -- See package global data declares above for cursor
4759: categoryInfo getCategory%ROWTYPE;

Line 4966: GCS_TEMPLATES_DYNAMIC_PKG.balance(p_entry_id => entryId,

4962: --JH 5.3.04: Added p_rel_id
4963: begin
4964:
4965: --Bugfix 5103251: Removed hard-coding of balance type code
4966: GCS_TEMPLATES_DYNAMIC_PKG.balance(p_entry_id => entryId,
4967: p_template => templateRecord,
4968: p_bal_type_code => contextData.balanceTypeCode,
4969: p_hierarchy_id => contextData.hierarchy,
4970: p_entity_id => categoryInfo.entityId,

Line 4991: GCS_TEMPLATES_DYNAMIC_PKG.calculate_re(p_entry_id => entryId,

4987:
4988: begin
4989:
4990: --Bugfix 5103251: Removed hard-coding of balance type code
4991: GCS_TEMPLATES_DYNAMIC_PKG.calculate_re(p_entry_id => entryId,
4992: p_hierarchy_id => contextData.hierarchy,
4993: p_bal_type_code => contextData.balanceTypeCode,
4994: p_entity_id => categoryInfo.entityId);
4995:

Line 5332: --raise by gcs_templates_dynamic_pkg...

5328: to_char(SYSDATE, 'DD-MON-YYYY HH:MI:SS'));
5329: RETURN(3);
5330:
5331: WHEN templates_pkg_error THEN
5332: --raise by gcs_templates_dynamic_pkg...
5333: logString(procedureLogLevel,
5334: procedureName,
5335: 'end',
5336: to_char(SYSDATE, 'DD-MON-YYYY HH:MI:SS'));