DBA Data[Home] [Help]

APPS.AP_WEB_DISC_PKG dependencies on AP_WEB_PARENT_PKG

Line 77: function ReportTotal(Amount_Array in AP_WEB_PARENT_PKG.MiniString_Array)

73: function SwapPrompts(p_table in out nocopy disc_prompts_table,
74: p_from in number,
75: P_to in number) return boolean;
76:
77: function ReportTotal(Amount_Array in AP_WEB_PARENT_PKG.MiniString_Array)
78: return number;
79:
80: function ReportTotal2(ExpLine_Array in AP_WEB_DFLEX_PKG.ExpReportLines_A)
81: return number;

Line 640: xtypecomp_array out nocopy AP_WEB_PARENT_PKG.MiniString_Array,

636:
637:
638: PROCEDURE AP_WEB_DISC_GetExpType(
639: p_table in out nocopy disc_prompts_table,
640: xtypecomp_array out nocopy AP_WEB_PARENT_PKG.MiniString_Array,
641: p_xtemplateid in AP_WEB_DB_EXPTEMPLATE_PKG.expTempl_reportID
642: ) IS
643: /* xtypecomp_array is used later for populating xtypeindex_array. */
644: l_count number;

Line 992: PROCEDURE InitMiniStringArray(p_array OUT NOCOPY AP_WEB_PARENT_PKG.MiniString_Array,

988: APP_EXCEPTION.RAISE_EXCEPTION;
989:
990: END ap_web_disc_format_error;
991:
992: PROCEDURE InitMiniStringArray(p_array OUT NOCOPY AP_WEB_PARENT_PKG.MiniString_Array,
993: p_size IN number,
994: p_val IN varchar2 default '') IS
995:
996: i number;

Line 1006: PROCEDURE InitMedStringArray(p_array OUT NOCOPY AP_WEB_PARENT_PKG.MedString_Array,

1002: end loop;
1003:
1004: END InitMiniStringArray;
1005:
1006: PROCEDURE InitMedStringArray(p_array OUT NOCOPY AP_WEB_PARENT_PKG.MedString_Array,
1007: p_size IN number,
1008: p_val IN varchar2 default '') IS
1009:
1010: i number;

Line 1069: PROCEDURE PopulateXtypeIndex(xtypecomp_Array in AP_WEB_PARENT_PKG.MiniString_Array,

1065:
1066: END CheckStringSize;
1067:
1068:
1069: PROCEDURE PopulateXtypeIndex(xtypecomp_Array in AP_WEB_PARENT_PKG.MiniString_Array,
1070: xtype_array in AP_WEB_PARENT_PKG.MiniString_Array,
1071: xtypeindex_array out nocopy AP_WEB_PARENT_PKG.MiniString_Array) IS
1072: i number;
1073: V_ReceiptCount number;

Line 1070: xtype_array in AP_WEB_PARENT_PKG.MiniString_Array,

1066: END CheckStringSize;
1067:
1068:
1069: PROCEDURE PopulateXtypeIndex(xtypecomp_Array in AP_WEB_PARENT_PKG.MiniString_Array,
1070: xtype_array in AP_WEB_PARENT_PKG.MiniString_Array,
1071: xtypeindex_array out nocopy AP_WEB_PARENT_PKG.MiniString_Array) IS
1072: i number;
1073: V_ReceiptCount number;
1074:

Line 1071: xtypeindex_array out nocopy AP_WEB_PARENT_PKG.MiniString_Array) IS

1067:
1068:
1069: PROCEDURE PopulateXtypeIndex(xtypecomp_Array in AP_WEB_PARENT_PKG.MiniString_Array,
1070: xtype_array in AP_WEB_PARENT_PKG.MiniString_Array,
1071: xtypeindex_array out nocopy AP_WEB_PARENT_PKG.MiniString_Array) IS
1072: i number;
1073: V_ReceiptCount number;
1074:
1075: BEGIN

Line 1178: l_justreq_array AP_WEB_PARENT_PKG.Number_Array;

1174: /* just be there since ValidateReportLines is generic. */
1175: l_date_temp VARCHAR2(30) := '';
1176:
1177: -- store justif flag fetched from just_required
1178: l_justreq_array AP_WEB_PARENT_PKG.Number_Array;
1179:
1180: -- store currency code fetched from Currencies
1181: l_base_curr AP_WEB_DB_AP_INT_PKG.apSetUp_baseCurrencyCode;
1182: curr_found BOOLEAN := false;

Line 1935: l_justreq_array AP_WEB_PARENT_PKG.Number_Array;

1931:
1932: l_just_required_cursor AP_WEB_DB_EXPTEMPLATE_PKG.JustificationExpTypeCursor;
1933:
1934: l_curr_precision_cursor AP_WEB_DB_COUNTRY_PKG.CurrencyPrecisionCursor;
1935: l_justreq_array AP_WEB_PARENT_PKG.Number_Array;
1936: l_reimbcurr_precision AP_WEB_DB_COUNTRY_PKG.curr_precision;
1937:
1938: V_SysInfoRec AP_WEB_DB_AP_INT_PKG.APSysInfoRec; -- For PATC: Exchange rate type in AP and Functional currency
1939: V_EndExpenseDate DATE; -- For PATC: Latest receipt date

Line 2481: Function ReportTotal(Amount_Array in AP_WEB_PARENT_PKG.MiniString_Array)

2477: -- Returns the sum of Amount_Array content.
2478: -- Raise INVALID_NUMBER exception if a value is not
2479: -- a number.
2480: ------------------------------------------
2481: Function ReportTotal(Amount_Array in AP_WEB_PARENT_PKG.MiniString_Array)
2482: Return NUMBER IS
2483: i NUMBER;
2484: l_total NUMBER := 0;
2485: l_num NUMBER;

Line 2541: l_currency_array AP_WEB_PARENT_PKG.MiniString_Array;

2537: --- whereas reimbursement currency should be restricted.
2538: ---
2539: l_curr_code_cursor AP_WEB_DB_COUNTRY_PKG.CurrencyCodeCursor;
2540:
2541: l_currency_array AP_WEB_PARENT_PKG.MiniString_Array;
2542: l_count NUMBER;
2543: l_curr_found BOOLEAN := false;
2544: j BINARY_INTEGER;
2545:

Line 2626: l_xtypecomp_array AP_WEB_PARENT_PKG.MiniString_Array;

2622: l_terror_exists BOOLEAN;
2623: EndDate date;
2624:
2625: l_template_id AP_WEB_DB_EXPTEMPLATE_PKG.expTempl_reportID;
2626: l_xtypecomp_array AP_WEB_PARENT_PKG.MiniString_Array;
2627: l_last_receipt_date varchar2(25);
2628: l_dateformat varchar2(100);
2629:
2630: BEGIN