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 229: PA_EVENT_PVT.CHECK_MDTY_PARAMS2

225: END IF;
226:
227: -- Validating mandatory input parameters-2
228:
229: PA_EVENT_PVT.CHECK_MDTY_PARAMS2
230: (p_pm_event_reference => p_event_in_rec.p_pm_event_reference
231: ,p_pm_product_code => p_pm_product_code
232: ,p_project_number => p_event_in_rec.p_project_number
233: ,p_event_type => p_event_in_rec.p_event_type

Line 337: If PA_EVENT_PVT.check_create_event_ok

333: END IF;
334:
335: -- Calls check_create_event_ok function
336:
337: If PA_EVENT_PVT.check_create_event_ok
338: (P_pm_product_code =>p_pm_product_code
339: ,P_event_in_rec =>p_event_in_rec
340: ,P_project_currency_code =>l_project_currency_code
341: ,P_proj_func_currency_code =>l_projfunc_currency_code

Line 376: PA_EVENT_PVT.VALIDATE_FLEXFIELD

372: --Validating Flexfields
373: IF (p_event_in_rec.p_desc_flex_name IS NOT NULL)
374: AND (p_event_in_rec.p_desc_flex_name <> PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR)
375: THEN
376: PA_EVENT_PVT.VALIDATE_FLEXFIELD
377: ( p_desc_flex_name => p_event_in_rec.p_desc_flex_name
378: ,p_attribute_category => p_event_in_rec.p_attribute_category
379: ,p_attribute1 => p_event_in_rec.p_attribute1
380: ,p_attribute2 => p_event_in_rec.p_attribute2

Line 978: WHEN pa_event_pvt.pub_excp

974: THEN
975: ROLLBACK TO create_event;
976: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
977:
978: WHEN pa_event_pvt.pub_excp
979: THEN
980: ROLLBACK TO create_event;
981: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
982: PA_EVENT_PUB.PACKAGE_NAME

Line 1053: WHEN pa_event_pvt.pub_excp

1049: ( p_encoded => l_encoded
1050: ,p_count => p_msg_count
1051: ,p_data => p_msg_data );
1052:
1053: WHEN pa_event_pvt.pub_excp
1054: THEN
1055: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1056: PA_EVENT_PUB.PACKAGE_NAME
1057: :='(event_reference='||p_event_in_rec.p_pm_event_reference||')'||PA_EVENT_PUB.PACKAGE_NAME||'PUBLIC';

Line 1102: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

1098: --Name: update_event
1099: --Type: procedure
1100: --Description: This API updates an existing event or a set of existing events
1101: --
1102: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
1103: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1104: -- PA_EVENT_PVT.check_update_event_ok
1105: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
1106: -- pa_events_pkg.update_row

Line 1103: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2

1099: --Type: procedure
1100: --Description: This API updates an existing event or a set of existing events
1101: --
1102: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
1103: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1104: -- PA_EVENT_PVT.check_update_event_ok
1105: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
1106: -- pa_events_pkg.update_row
1107: --

Line 1104: -- PA_EVENT_PVT.check_update_event_ok

1100: --Description: This API updates an existing event or a set of existing events
1101: --
1102: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
1103: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1104: -- PA_EVENT_PVT.check_update_event_ok
1105: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
1106: -- pa_events_pkg.update_row
1107: --
1108: --

Line 1105: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD

1101: --
1102: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
1103: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1104: -- PA_EVENT_PVT.check_update_event_ok
1105: -- PA_EVENT_PVT.VALIDATE_FLEXFIELD
1106: -- pa_events_pkg.update_row
1107: --
1108: --
1109: --

Line 1234: PA_EVENT_PVT.check_mdty_params1

1230: END IF;
1231:
1232: -- Validating mandatory input parameters-1
1233:
1234: PA_EVENT_PVT.check_mdty_params1
1235: ( p_api_version_number =>p_api_version_number
1236: ,p_api_name =>p_api_name
1237: ,p_pm_product_code =>p_pm_product_code
1238: ,p_function_name =>'PA_EV_UPDATE_EVENT'

Line 1332: PA_EVENT_PVT.CHECK_MDTY_PARAMS2

1328: END IF;
1329:
1330: -- Validating mandatory input parameters-2
1331: /*Commenting out this call as the event reference is not a mandatory parameter.bug 3118781
1332: PA_EVENT_PVT.CHECK_MDTY_PARAMS2
1333: ( p_pm_event_reference => p_event_in_rec.p_pm_event_reference
1334: ,p_pm_product_code => p_pm_product_code
1335: ,p_project_number => p_event_in_rec.p_project_number
1336: ,p_event_type => p_event_in_rec.p_event_type

Line 1362: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID

1358: END IF;
1359:
1360: --Call to validate the event_id or convert the event reference to event_id.
1361: --If the validation fails then terminate further validation for this record.
1362: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID
1363: (P_pm_product_code =>P_pm_product_code
1364: ,P_pm_event_reference =>p_event_in_rec.P_pm_event_reference
1365: ,P_event_id =>p_event_in_rec.P_event_id)
1366: ='N'

Line 1504: If PA_EVENT_PVT.check_update_event_ok

1500: ,x_log_level => 5);
1501: END IF;
1502:
1503: -- Calls check_update_event_ok function
1504: If PA_EVENT_PVT.check_update_event_ok
1505: (P_pm_product_code =>p_pm_product_code
1506: ,P_event_in_rec =>p_event_in_rec
1507: ,P_project_currency_code =>l_project_currency_code
1508: ,P_proj_func_currency_code =>l_projfunc_currency_code

Line 1544: PA_EVENT_PVT.VALIDATE_FLEXFIELD

1540: --Validating Flexfields
1541: IF (p_event_in_rec.p_desc_flex_name IS NOT NULL)
1542: AND (p_event_in_rec.p_desc_flex_name <> PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR)
1543: THEN
1544: PA_EVENT_PVT.VALIDATE_FLEXFIELD
1545: ( p_desc_flex_name => p_event_in_rec.p_desc_flex_name
1546: ,p_attribute_category => p_event_in_rec.p_attribute_category
1547: ,p_attribute1 => p_event_in_rec.p_attribute1
1548: ,p_attribute2 => p_event_in_rec.p_attribute2

Line 2829: WHEN pa_event_pvt.pub_excp

2825: THEN
2826: ROLLBACK TO Update_event;
2827: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2828:
2829: WHEN pa_event_pvt.pub_excp
2830: THEN
2831: ROLLBACK TO Update_event;
2832: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2833: PA_EVENT_PUB.PACKAGE_NAME

Line 2903: WHEN pa_event_pvt.pub_excp

2899: ( p_encoded => l_encoded
2900: ,p_count => p_msg_count
2901: ,p_data => p_msg_data );
2902:
2903: WHEN pa_event_pvt.pub_excp
2904: THEN
2905: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2906: PA_EVENT_PUB.PACKAGE_NAME
2907: :='(event_reference='||p_event_in_rec.p_pm_event_reference||')'||PA_EVENT_PUB.PACKAGE_NAME||'PUBLIC';

Line 2954: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

2950: --Type: procedure
2951: --Description: This API deletes an existing event or a set of existing events
2952: --
2953: --Called subprograms:
2954: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
2955: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
2956: -- PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
2957: -- PA_EVENTS_PKG.DELETE_ROW
2958: --

Line 2955: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2

2951: --Description: This API deletes an existing event or a set of existing events
2952: --
2953: --Called subprograms:
2954: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
2955: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
2956: -- PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
2957: -- PA_EVENTS_PKG.DELETE_ROW
2958: --
2959: --

Line 2956: -- PA_EVENT_PVT.CHECK_DELETE_EVENT_OK

2952: --
2953: --Called subprograms:
2954: --Called subprograms: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
2955: -- PA_EVENT_PVT.CHECK_MDTY_PARAMS2
2956: -- PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
2957: -- PA_EVENTS_PKG.DELETE_ROW
2958: --
2959: --
2960: --

Line 3007: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

3003: END IF;
3004:
3005: ---Validating mandatory input parameters-1
3006:
3007: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
3008: ( p_api_version_number =>p_api_version_number
3009: ,p_api_name =>p_api_name
3010: ,p_pm_product_code =>p_pm_product_code
3011: ,p_function_name =>'PA_EV_DELETE_EVENT'

Line 3037: PA_EVENT_PVT.CHECK_MDTY_PARAMS2

3033: END IF;
3034:
3035: -- Validating mandatory input parameters-2
3036: /*Commenting out this call as the event reference is not a mandatory parameter.bug 3118781
3037: PA_EVENT_PVT.CHECK_MDTY_PARAMS2
3038: ( p_pm_event_reference => p_pm_event_reference
3039: ,p_pm_product_code => p_pm_product_code
3040: ,p_project_number => NULL
3041: ,p_event_type => NULL

Line 3068: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID

3064: l_pm_event_reference :=p_pm_event_reference;
3065: l_event_id_out:=p_event_id;
3066: --Validation of event_id or pm_event_reference and conversion to event_id
3067:
3068: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID
3069: (P_pm_product_code =>P_pm_product_code
3070: ,P_pm_event_reference =>l_pm_event_reference
3071: ,P_event_id =>l_event_id_out)
3072: ='N'

Line 3085: -- Calling check_delete_event_ok in pa_event_pvt package

3081: ,x_msg => 'Calling check_delete_event_ok'
3082: ,x_log_level => 5);
3083: END IF;
3084:
3085: -- Calling check_delete_event_ok in pa_event_pvt package
3086:
3087: If PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
3088: (P_pm_event_reference =>l_pm_event_reference
3089: ,P_event_id =>l_event_id_out) ='N'

Line 3087: If PA_EVENT_PVT.CHECK_DELETE_EVENT_OK

3083: END IF;
3084:
3085: -- Calling check_delete_event_ok in pa_event_pvt package
3086:
3087: If PA_EVENT_PVT.CHECK_DELETE_EVENT_OK
3088: (P_pm_event_reference =>l_pm_event_reference
3089: ,P_event_id =>l_event_id_out) ='N'
3090: Then
3091: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.G_MSG_LVL_ERROR)

Line 3166: WHEN pa_event_pvt.pub_excp

3162: ( p_encoded => l_encoded
3163: , p_count => p_msg_count
3164: , p_data => p_msg_data );
3165:
3166: WHEN pa_event_pvt.pub_excp
3167: THEN
3168: ROLLBACK to delete_event;
3169: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3170:

Line 4010: PA_EVENT_PVT.CHECK_MDTY_PARAMS1

4006: END IF;
4007:
4008: --Validating mandatory input parameters-1
4009:
4010: PA_EVENT_PVT.CHECK_MDTY_PARAMS1
4011: ( p_api_version_number =>p_api_version_number
4012: ,p_api_name =>p_api_name
4013: ,p_pm_product_code =>p_pm_product_code
4014: ,p_function_name =>'PA_EV_DEL_EVENT_OK'

Line 4040: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID

4036: END IF;
4037:
4038: l_event_id:=p_event_id;
4039: --Validation of event_id or pm_event_reference and conversion to event_id
4040: If PA_EVENT_PVT.CONV_EVENT_REF_TO_ID
4041: (P_pm_product_code =>P_pm_product_code
4042: ,P_pm_event_reference =>l_pm_event_reference
4043: ,P_event_id =>l_event_id)
4044: ='N'