DBA Data[Home] [Help]

APPS.RCV_DATES_S dependencies on PO_DATES_S

Line 29: ** 3) Calls PO_DATES_S.val_open_period to check if transaction date is in an

25: ** 2) If the transaction type is 'RECEIVE' or 'MATCH' for a vendor, then it
26: ** calls val_receipt_date_tolerance to check if the transaction date falls
27: ** within the receipt date tolerance.
28: **
29: ** 3) Calls PO_DATES_S.val_open_period to check if transaction date is in an
30: ** open GL period.
31: **
32: ** 4) Calls PO_DATES_S.val_open_period to first check if inventory is
33: ** installed. If so, it checks that the transaction date is in an open

Line 32: ** 4) Calls PO_DATES_S.val_open_period to first check if inventory is

28: **
29: ** 3) Calls PO_DATES_S.val_open_period to check if transaction date is in an
30: ** open GL period.
31: **
32: ** 4) Calls PO_DATES_S.val_open_period to first check if inventory is
33: ** installed. If so, it checks that the transaction date is in an open
34: ** inventory period.
35: **
36: ** 5) Calls PO_DATES_S.val_open_period to first check if purchasing is

Line 36: ** 5) Calls PO_DATES_S.val_open_period to first check if purchasing is

32: ** 4) Calls PO_DATES_S.val_open_period to first check if inventory is
33: ** installed. If so, it checks that the transaction date is in an open
34: ** inventory period.
35: **
36: ** 5) Calls PO_DATES_S.val_open_period to first check if purchasing is
37: ** installed. If so, it checks that the transaction date is in an open
38: ** purchasing period.
39: **
40: ** 6) If the transaction type is not 'RECEIVE' or 'UNORDERED' then it checks

Line 100: IF NOT (PO_DATES_S.val_open_period(

96: -- 3) Transaction Date must be in an open GL period
97:
98: x_progress := '030';
99:
100: IF NOT (PO_DATES_S.val_open_period(
101: inv_le_timezone_pub.get_le_day_for_inv_org(x_trx_date, x_org_id),
102: x_sob_id,
103: 'SQLGL',
104: x_org_id)) THEN

Line 162: IF NOT (PO_DATES_S.val_open_period(

158: --END IF;
159:
160: --else
161:
162: IF NOT (PO_DATES_S.val_open_period(
163: inv_le_timezone_pub.get_le_day_for_inv_org(x_trx_date, x_org_id),
164: x_sob_id,
165: 'INV',
166: x_org_id)) THEN

Line 178: IF NOT (PO_DATES_S.val_open_period(

174: -- 5) Transaction Date must be in an open PO period
175:
176: x_progress := '050';
177:
178: IF NOT (PO_DATES_S.val_open_period(
179: inv_le_timezone_pub.get_le_day_for_inv_org(x_trx_date, x_org_id),
180: x_sob_id,
181: 'PO',
182: x_org_id)) THEN

Line 195: PO_DATES_S.x_last_txn_date := x_trx_date ;

191: */
192:
193: /* Bug 3622309.
194: * Commenting out the change below since this is causing problems.
195: PO_DATES_S.x_last_txn_date := x_trx_date ;
196: */
197:
198:
199: