DBA Data[Home] [Help]

APPS.CSD_REPAIRS_UTIL dependencies on OKS_ENTITLEMENTS_PUB

Line 526: X_ENT_CONTRACTS OUT NOCOPY Oks_Entitlements_Pub.GET_CONTOP_TBL,

522: P_SEVERITY_ID IN NUMBER DEFAULT NULL,
523: P_TIME_ZONE_ID IN NUMBER DEFAULT NULL,
524: P_CALC_RESPTIME_FLAG IN VARCHAR2 DEFAULT NULL,
525: --End forwardporting bug fix for 2806199,2806661,2802141 By Vijay
526: X_ENT_CONTRACTS OUT NOCOPY Oks_Entitlements_Pub.GET_CONTOP_TBL,
527: X_RETURN_STATUS OUT NOCOPY VARCHAR2,
528: X_MSG_COUNT OUT NOCOPY NUMBER,
529: X_MSG_DATA OUT NOCOPY VARCHAR2
530: )

Line 534: l_input_param_rec Oks_Entitlements_Pub.get_contin_rec;

530: )
531: IS
532: --
533: l_api_name VARCHAR2(30) := 'GET_ENTITLEMENTS';
534: l_input_param_rec Oks_Entitlements_Pub.get_contin_rec;
535: l_api_version_number CONSTANT NUMBER := 1.0;
536: --
537: BEGIN
538: --

Line 580: Oks_Entitlements_Pub.GET_CONTRACTS

576: -- If the validate_flag is 'Y' then only the valid contract lines as of
577: -- 'request_date' are returned. If the validate_flag is 'N' then
578: -- all the contract lines - valid and invalid- are returned.
579: --
580: Oks_Entitlements_Pub.GET_CONTRACTS
581: (p_api_version => p_api_version_number,
582: p_init_msg_list => p_init_msg_list,
583: p_inp_rec => l_input_param_rec,
584: x_return_status => x_return_status,

Line 1568: -- calls oks_entitlements_pub.get_react_resolve_by

1564: -- Version : Current version 1.0
1565: -- Initial Version 1.0
1566: --
1567: -- Description : rfieldma: 5355051
1568: -- calls oks_entitlements_pub.get_react_resolve_by
1569: -- return resolve_by_date
1570: --
1571: --
1572: --

Line 1592: subtype r_input_rec is oks_entitlements_pub.grt_inp_rec_type;

1588:
1589: -- define variables
1590: l_server_timezone_id NUMBER;
1591:
1592: subtype r_input_rec is oks_entitlements_pub.grt_inp_rec_type;
1593: l_inp_rec r_input_rec;
1594:
1595: subtype r_react_rec is oks_entitlements_pub.rcn_rsn_rec_type;
1596: l_react_rec r_react_rec;

Line 1595: subtype r_react_rec is oks_entitlements_pub.rcn_rsn_rec_type;

1591:
1592: subtype r_input_rec is oks_entitlements_pub.grt_inp_rec_type;
1593: l_inp_rec r_input_rec;
1594:
1595: subtype r_react_rec is oks_entitlements_pub.rcn_rsn_rec_type;
1596: l_react_rec r_react_rec;
1597:
1598: subtype r_resolve_rec is oks_entitlements_pub.rcn_rsn_rec_type;
1599: l_resolve_rec r_resolve_rec;

Line 1598: subtype r_resolve_rec is oks_entitlements_pub.rcn_rsn_rec_type;

1594:
1595: subtype r_react_rec is oks_entitlements_pub.rcn_rsn_rec_type;
1596: l_react_rec r_react_rec;
1597:
1598: subtype r_resolve_rec is oks_entitlements_pub.rcn_rsn_rec_type;
1599: l_resolve_rec r_resolve_rec;
1600:
1601:
1602: BEGIN

Line 1637: l_inp_rec.category_rcn_rsn := OKS_ENTITLEMENTS_PUB.G_RESOLUTION;

1633: l_inp_rec.business_process_id := p_bus_proc_id ;
1634: l_inp_rec.severity_id := p_severity_id ;
1635: l_inp_rec.request_date := p_request_date ;
1636: l_inp_rec.time_zone_id := l_server_timezone_id ;
1637: l_inp_rec.category_rcn_rsn := OKS_ENTITLEMENTS_PUB.G_RESOLUTION;
1638: l_inp_rec.compute_option := OKS_ENTITLEMENTS_PUB.G_BEST ;
1639: l_inp_rec.dates_in_input_tz := 'N' ;
1640:
1641: oks_entitlements_pub.get_react_resolve_by_time(

Line 1638: l_inp_rec.compute_option := OKS_ENTITLEMENTS_PUB.G_BEST ;

1634: l_inp_rec.severity_id := p_severity_id ;
1635: l_inp_rec.request_date := p_request_date ;
1636: l_inp_rec.time_zone_id := l_server_timezone_id ;
1637: l_inp_rec.category_rcn_rsn := OKS_ENTITLEMENTS_PUB.G_RESOLUTION;
1638: l_inp_rec.compute_option := OKS_ENTITLEMENTS_PUB.G_BEST ;
1639: l_inp_rec.dates_in_input_tz := 'N' ;
1640:
1641: oks_entitlements_pub.get_react_resolve_by_time(
1642: p_api_version => 1.0,

Line 1641: oks_entitlements_pub.get_react_resolve_by_time(

1637: l_inp_rec.category_rcn_rsn := OKS_ENTITLEMENTS_PUB.G_RESOLUTION;
1638: l_inp_rec.compute_option := OKS_ENTITLEMENTS_PUB.G_BEST ;
1639: l_inp_rec.dates_in_input_tz := 'N' ;
1640:
1641: oks_entitlements_pub.get_react_resolve_by_time(
1642: p_api_version => 1.0,
1643: p_init_msg_list => FND_API.G_TRUE,
1644: p_inp_rec => l_inp_rec,
1645: x_return_status => x_return_status,