DBA Data[Home] [Help]

APPS.EGO_DATA_SECURITY dependencies on STANDARD

Line 769: -- for standard API parameter

765: l_return_success CONSTANT VARCHAR2(1) := 'T';
766: l_return_failure CONSTANT VARCHAR2(1) := 'F';
767: l_in_params_rec EGO_CUSTOM_SECURITY_PUB.in_params_rec_type;
768: l_out_params_rec EGO_CUSTOM_SECURITY_PUB.out_params_rec_type;
769: -- for standard API parameter
770: -- l_return_status VARCHAR2(1); --already exist above
771: l_msg_count NUMBER;
772: l_msg_data VARCHAR(2000); -- Bug 9948053, increasing length of variable
773: --********************************************** 8673870 *********************************

Line 836: --standard parameters

832: EGO_CUSTOM_SECURITY_PUB.check_custom_security(
833: p_in_params_rec => l_in_params_rec
834: ,x_out_params_rec => l_out_params_rec
835:
836: --standard parameters
837: ,p_api_version => 1.0
838: ,x_return_status => l_return_status
839: ,x_msg_count => l_msg_count
840: ,x_msg_data => l_msg_data

Line 6374: -- Standard Start of API savepoint

6370: ' - p_commit: '||p_commit
6371: );
6372:
6373: IF FND_API.TO_BOOLEAN(p_commit) THEN
6374: -- Standard Start of API savepoint
6375: SAVEPOINT Create_Role_Mapping_PUB;
6376: END IF;
6377:
6378: IF NOT FND_API.Compatible_API_Call (l_api_version,

Line 6429: -- Standard check of p_commit.

6425: , l_owner
6426: , FND_GLOBAL.Login_id
6427: );
6428:
6429: -- Standard check of p_commit.
6430: IF FND_API.To_Boolean( p_commit ) THEN
6431: COMMIT WORK;
6432: END IF;
6433:

Line 6437: -- Make a standard call to get message count

6433:
6434: x_return_status := FND_API.G_RET_STS_SUCCESS;
6435:
6436: -----------------------------------
6437: -- Make a standard call to get message count
6438: -- and if count is 1, get message info.
6439: -- The client will directly display the x_msg_data (which is already
6440: -- translated) if the x_msg_count = 1;
6441: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get

Line 6637: -- Standard Start of API savepoint

6633: ' - p_init_msg_list: '||p_init_msg_list||
6634: ' - p_commit: '||p_commit
6635: );
6636: IF FND_API.TO_BOOLEAN(p_commit) THEN
6637: -- Standard Start of API savepoint
6638: SAVEPOINT Update_Role_Mapping_PUB;
6639: END IF;
6640:
6641: -- Initialize API message list if necessary.

Line 6706: -- Standard check of p_commit.

6702: ,p_module => l_api_name
6703: ,p_message => 'After updating role mappings'
6704: );
6705:
6706: -- Standard check of p_commit.
6707: IF FND_API.To_Boolean( p_commit ) THEN
6708: COMMIT WORK;
6709: END IF;
6710:

Line 6717: -- Make a standard call to get message count

6713: ,p_message => 'After committing the data'
6714: );
6715: x_return_status := FND_API.G_RET_STS_SUCCESS;
6716:
6717: -- Make a standard call to get message count
6718: -- and if count is 1, get message info.
6719: -- The client will directly display the x_msg_data (which is already
6720: -- translated) if the x_msg_count = 1;
6721: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get

Line 6912: -- Standard Start of API savepoint

6908: ' - p_commit: '||p_commit
6909: );
6910:
6911: IF FND_API.TO_BOOLEAN(p_commit) THEN
6912: -- Standard Start of API savepoint
6913: SAVEPOINT Delete_Role_Mapping_PUB;
6914: END IF;
6915:
6916: -- Initialize API message list if necessary.

Line 6958: -- Standard check of p_commit.

6954: CHILD_OBJECT_ID = l_child_obj_id AND
6955: CHILD_OBJECT_TYPE is null;
6956: END IF;
6957:
6958: -- Standard check of p_commit.
6959: IF FND_API.To_Boolean( p_commit ) THEN
6960: COMMIT WORK;
6961: END IF;
6962:

Line 6970: -- Make a standard call to get message count and if count is 1,

6966: );
6967:
6968: x_return_status := FND_API.G_RET_STS_SUCCESS;
6969:
6970: -- Make a standard call to get message count and if count is 1,
6971: -- get message info.
6972:
6973: FND_MSG_PUB.Count_And_Get
6974: ( p_count => x_msg_count,