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 103: IF NOT (PO_DATES_S.val_open_period(

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

Line 165: IF NOT (PO_DATES_S.val_open_period(

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

Line 181: IF NOT (PO_DATES_S.val_open_period(

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

Line 198: PO_DATES_S.x_last_txn_date := x_trx_date ;

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