DBA Data[Home] [Help]

APPS.GMD_SEARCH_REPLACE_VERS dependencies on GMD_ROUTINGS_PVT

Line 86: -- BUG 5197863 GMD_ROUTINGS_PVT.Validate_dates validates the start and end dates

82: OPEN Cur_get_hdr;
83: FETCH Cur_get_hdr INTO X_hdr_rec;
84: CLOSE Cur_get_hdr;
85:
86: -- BUG 5197863 GMD_ROUTINGS_PVT.Validate_dates validates the start and end dates
87: -- and also validates the dates with operation dates.
88:
89: -- Bug# 5493773 Removed NVL for the end date as the end date can be NULL
90: l_ret := GMD_ROUTINGS_PVT.Validate_dates(p_routing_id,

Line 90: l_ret := GMD_ROUTINGS_PVT.Validate_dates(p_routing_id,

86: -- BUG 5197863 GMD_ROUTINGS_PVT.Validate_dates validates the start and end dates
87: -- and also validates the dates with operation dates.
88:
89: -- Bug# 5493773 Removed NVL for the end date as the end date can be NULL
90: l_ret := GMD_ROUTINGS_PVT.Validate_dates(p_routing_id,
91: NVL( FND_DATE.canonical_to_date(p_effective_start_date) ,X_hdr_rec.effective_start_date ),
92: FND_DATE.canonical_to_date(p_effective_end_date) );
93:
94: IF l_ret < 0 THEN