DBA Data[Home] [Help]

APPS.PA_EVENT_PUB dependencies on PA_EVENT_PVT

Line 19: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

15: --Name: create_event
16: --Type: procedure
17: --Description: This API creates an event or a set of events.
18: --
19: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
20: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
21: -- PA_EVENT_UTILS.CHECK_VALID_PROJECT
22: -- PA_EVENT_PVT.CHECK_CREATE_EVENT_OK
23: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD

Line 20: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2

16: --Type: procedure
17: --Description: This API creates an event or a set of events.
18: --
19: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
20: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
21: -- PA_EVENT_UTILS.CHECK_VALID_PROJECT
22: -- PA_EVENT_PVT.CHECK_CREATE_EVENT_OK
23: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
24: -- PA_EVENTS_PKG.INSERT_ROW

Line 22: -- PA_EVENT_PVT.CHECK_CREATE_EVENT_OK

18: --
19: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
20: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
21: -- PA_EVENT_UTILS.CHECK_VALID_PROJECT
22: -- PA_EVENT_PVT.CHECK_CREATE_EVENT_OK
23: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
24: -- PA_EVENTS_PKG.INSERT_ROW
25: --History:
26:

Line 23: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD

19: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
20: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
21: -- PA_EVENT_UTILS.CHECK_VALID_PROJECT
22: -- PA_EVENT_PVT.CHECK_CREATE_EVENT_OK
23: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
24: -- PA_EVENTS_PKG.INSERT_ROW
25: --History:
26:
27: -- ============================================================================*/

Line 112: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

108:
109: ---Validating mandatory input parameters-
110:
111:
112: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
113: ( p_api_version_number =>p_api_version_number
114: ,p_api_name =>p_api_name
115: ,p_pm_product_code =>p_pm_product_code
116: ,p_function_name =>'PA_EV_CREATE_EVENT'

Line 209: PA_EVENT_PVT.CHECK_MDTY_PARAMS2

205: END IF;
206:
207: -- Validating mandatory input parameters-2
208:
209: PA_EVENT_PVT.CHECK_MDTY_PARAMS2
210: (p_pm_event_reference => p_event_in_rec.p_pm_event_reference
211: ,p_pm_product_code => p_pm_product_code
212: ,p_project_number => p_event_in_rec.p_project_number
213: ,p_event_type => p_event_in_rec.p_event_type

Line 317: If PA_EVENT_PVT.check_create_event_ok

313: END IF;
314:
315: -- Calls check_create_event_ok function
316:
317: If PA_EVENT_PVT.check_create_event_ok
318: (P_pm_product_code =>p_pm_product_code
319: ,P_event_in_rec =>p_event_in_rec
320: ,P_project_currency_code =>l_project_currency_code
321: ,P_proj_func_currency_code =>l_projfunc_currency_code

Line 356: PA_EVENT_PVT.VALIDATE_FLEXFIELD

352: --Validating Flexfields
353: IF (p_event_in_rec.p_desc_flex_name IS NOT NULL)
354: AND (p_event_in_rec.p_desc_flex_name <> PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR)
355: THEN
356: PA_EVENT_PVT.VALIDATE_FLEXFIELD
357: ( p_desc_flex_name => p_event_in_rec.p_desc_flex_name
358: ,p_attribute_category => p_event_in_rec.p_attribute_category
359: ,p_attribute1 => p_event_in_rec.p_attribute1
360: ,p_attribute2 => p_event_in_rec.p_attribute2

Line 952: WHEN pa_event_pvt.pub_excp

948: THEN
949: ROLLBACK TO create_event;
950: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
951:
952: WHEN pa_event_pvt.pub_excp
953: THEN
954: ROLLBACK TO create_event;
955: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
956: PA_EVENT_PUB.PACKAGE_NAME

Line 1026: WHEN pa_event_pvt.pub_excp

1022: ( p_encoded => l_encoded
1023: ,p_count => p_msg_count
1024: ,p_data => p_msg_data );
1025:
1026: WHEN pa_event_pvt.pub_excp
1027: THEN
1028: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1029: PA_EVENT_PUB.PACKAGE_NAME
1030: :='(event_reference='||p_event_in_rec.p_pm_event_reference||')'||PA_EVENT_PUB.PACKAGE_NAME||'PUBLIC';

Line 1075: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

1071: --Name: update_event
1072: --Type: procedure
1073: --Description: This API updates an existing event or a set of existing events
1074: --
1075: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
1076: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1077: -- PA_EVENT_PVT.check_update_event_ok
1078: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
1079: -- pa_events_pkg.update_row

Line 1076: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2

1072: --Type: procedure
1073: --Description: This API updates an existing event or a set of existing events
1074: --
1075: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
1076: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1077: -- PA_EVENT_PVT.check_update_event_ok
1078: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
1079: -- pa_events_pkg.update_row
1080: --

Line 1077: -- PA_EVENT_PVT.check_update_event_ok

1073: --Description: This API updates an existing event or a set of existing events
1074: --
1075: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
1076: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1077: -- PA_EVENT_PVT.check_update_event_ok
1078: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
1079: -- pa_events_pkg.update_row
1080: --
1081: --

Line 1078: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD

1074: --
1075: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
1076: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1077: -- PA_EVENT_PVT.check_update_event_ok
1078: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
1079: -- pa_events_pkg.update_row
1080: --
1081: --
1082: --

Line 1207: PA_EVENT_PVT.check_mdty_params1

1203: END IF;
1204:
1205: -- Validating mandatory input parameters-1
1206:
1207: PA_EVENT_PVT.check_mdty_params1
1208: ( p_api_version_number =>p_api_version_number
1209: ,p_api_name =>p_api_name
1210: ,p_pm_product_code =>p_pm_product_code
1211: ,p_function_name =>'PA_EV_UPDATE_EVENT'

Line 1305: PA_EVENT_PVT.CHECK_MDTY_PARAMS2

1301: END IF;
1302:
1303: -- Validating mandatory input parameters-2
1304: /*Commenting out this call as the event reference is not a mandatory parameter.bug 3118781
1305: PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1306: ( p_pm_event_reference => p_event_in_rec.p_pm_event_reference
1307: ,p_pm_product_code => p_pm_product_code
1308: ,p_project_number => p_event_in_rec.p_project_number
1309: ,p_event_type => p_event_in_rec.p_event_type

Line 1335: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID

1331: END IF;
1332:
1333: --Call to validate the event_id or convert the event reference to event_id.
1334: --If the validation fails then terminate further validation for this record.
1335: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID
1336: (P_pm_product_code =>P_pm_product_code
1337: ,P_pm_event_reference =>p_event_in_rec.P_pm_event_reference
1338: ,P_event_id =>p_event_in_rec.P_event_id)
1339: ='N'

Line 1477: If PA_EVENT_PVT.check_update_event_ok

1473: ,x_log_level => 5);
1474: END IF;
1475:
1476: -- Calls check_update_event_ok function
1477: If PA_EVENT_PVT.check_update_event_ok
1478: (P_pm_product_code =>p_pm_product_code
1479: ,P_event_in_rec =>p_event_in_rec
1480: ,P_project_currency_code =>l_project_currency_code
1481: ,P_proj_func_currency_code =>l_projfunc_currency_code

Line 1517: PA_EVENT_PVT.VALIDATE_FLEXFIELD

1513: --Validating Flexfields
1514: IF (p_event_in_rec.p_desc_flex_name IS NOT NULL)
1515: AND (p_event_in_rec.p_desc_flex_name <> PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR)
1516: THEN
1517: PA_EVENT_PVT.VALIDATE_FLEXFIELD
1518: ( p_desc_flex_name => p_event_in_rec.p_desc_flex_name
1519: ,p_attribute_category => p_event_in_rec.p_attribute_category
1520: ,p_attribute1 => p_event_in_rec.p_attribute1
1521: ,p_attribute2 => p_event_in_rec.p_attribute2

Line 2788: WHEN pa_event_pvt.pub_excp

2784: THEN
2785: ROLLBACK TO Update_event;
2786: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2787:
2788: WHEN pa_event_pvt.pub_excp
2789: THEN
2790: ROLLBACK TO Update_event;
2791: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2792: PA_EVENT_PUB.PACKAGE_NAME

Line 2861: WHEN pa_event_pvt.pub_excp

2857: ( p_encoded => l_encoded
2858: ,p_count => p_msg_count
2859: ,p_data => p_msg_data );
2860:
2861: WHEN pa_event_pvt.pub_excp
2862: THEN
2863: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2864: PA_EVENT_PUB.PACKAGE_NAME
2865: :='(event_reference='||p_event_in_rec.p_pm_event_reference||')'||PA_EVENT_PUB.PACKAGE_NAME||'PUBLIC';

Line 2912: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

2908: --Type: procedure
2909: --Description: This API deletes an existing event or a set of existing events
2910: --
2911: --Called subprograms:
2912: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
2913: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
2914: -- PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
2915: -- PA_EVENTS_PKG.DELETE_ROW
2916: --

Line 2913: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2

2909: --Description: This API deletes an existing event or a set of existing events
2910: --
2911: --Called subprograms:
2912: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
2913: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
2914: -- PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
2915: -- PA_EVENTS_PKG.DELETE_ROW
2916: --
2917: --

Line 2914: -- PA_EVENT_PVT.CHECK_DELETE_EVENT_OK

2910: --
2911: --Called subprograms:
2912: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
2913: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
2914: -- PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
2915: -- PA_EVENTS_PKG.DELETE_ROW
2916: --
2917: --
2918: --

Line 2965: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

2961: END IF;
2962:
2963: ---Validating mandatory input parameters-1
2964:
2965: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
2966: ( p_api_version_number =>p_api_version_number
2967: ,p_api_name =>p_api_name
2968: ,p_pm_product_code =>p_pm_product_code
2969: ,p_function_name =>'PA_EV_DELETE_EVENT'

Line 2995: PA_EVENT_PVT.CHECK_MDTY_PARAMS2

2991: END IF;
2992:
2993: -- Validating mandatory input parameters-2
2994: /*Commenting out this call as the event reference is not a mandatory parameter.bug 3118781
2995: PA_EVENT_PVT.CHECK_MDTY_PARAMS2
2996: ( p_pm_event_reference => p_pm_event_reference
2997: ,p_pm_product_code => p_pm_product_code
2998: ,p_project_number => NULL
2999: ,p_event_type => NULL

Line 3026: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID

3022: l_pm_event_reference :=p_pm_event_reference;
3023: l_event_id_out:=p_event_id;
3024: --Validation of event_id or pm_event_reference and conversion to event_id
3025:
3026: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID
3027: (P_pm_product_code =>P_pm_product_code
3028: ,P_pm_event_reference =>l_pm_event_reference
3029: ,P_event_id =>l_event_id_out)
3030: ='N'

Line 3043: -- Calling check_delete_event_ok in pa_event_pvt package

3039: ,x_msg => 'Calling check_delete_event_ok'
3040: ,x_log_level => 5);
3041: END IF;
3042:
3043: -- Calling check_delete_event_ok in pa_event_pvt package
3044:
3045: If PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
3046: (P_pm_event_reference =>l_pm_event_reference
3047: ,P_event_id =>l_event_id_out) ='N'

Line 3045: If PA_EVENT_PVT.CHECK_DELETE_EVENT_OK

3041: END IF;
3042:
3043: -- Calling check_delete_event_ok in pa_event_pvt package
3044:
3045: If PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
3046: (P_pm_event_reference =>l_pm_event_reference
3047: ,P_event_id =>l_event_id_out) ='N'
3048: Then
3049: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.G_MSG_LVL_ERROR)

Line 3124: WHEN pa_event_pvt.pub_excp

3120: ( p_encoded => l_encoded
3121: , p_count => p_msg_count
3122: , p_data => p_msg_data );
3123:
3124: WHEN pa_event_pvt.pub_excp
3125: THEN
3126: ROLLBACK to delete_event;
3127: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3128:

Line 3968: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

3964: END IF;
3965:
3966: --Validating mandatory input parameters-1
3967:
3968: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
3969: ( p_api_version_number =>p_api_version_number
3970: ,p_api_name =>p_api_name
3971: ,p_pm_product_code =>p_pm_product_code
3972: ,p_function_name =>'PA_EV_DEL_EVENT_OK'

Line 3998: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID

3994: END IF;
3995:
3996: l_event_id:=p_event_id;
3997: --Validation of event_id or pm_event_reference and conversion to event_id
3998: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID
3999: (P_pm_product_code =>P_pm_product_code
4000: ,P_pm_event_reference =>l_pm_event_reference
4001: ,P_event_id =>l_event_id)
4002: ='N'