DBA Data[Home] [Help]

APPS.CSD_IB_CHOWN_CUHK dependencies on FND_API

Line 20: /* A value of fnd_api.g_true means create the tca */

16: /* description : Procedure to determine whether or not a */
17: /* tca relationship should be created between the */
18: /* new ib owner (subject) and the old ib owner */
19: /* (object) when changing IB ownership */
20: /* A value of fnd_api.g_true means create the tca */
21: /* relationship. Null or any other value (e.g. */
22: /* fnd_api.g_false) means do not create the tca */
23: /* relationship */
24: /*-----------------------------------------------------------------*/

Line 22: /* fnd_api.g_false) means do not create the tca */

18: /* new ib owner (subject) and the old ib owner */
19: /* (object) when changing IB ownership */
20: /* A value of fnd_api.g_true means create the tca */
21: /* relationship. Null or any other value (e.g. */
22: /* fnd_api.g_false) means do not create the tca */
23: /* relationship */
24: /*-----------------------------------------------------------------*/
25: PROCEDURE get_create_tca_rel_flag
26: (

Line 31: x_out_param.return_status := FND_API.G_RET_STS_SUCCESS;

27: p_in_param IN CREATE_TCA_REL_IN_REC_TYPE,
28: x_out_param OUT NOCOPY CREATE_TCA_REL_OUT_REC_TYPE
29: ) IS
30: BEGIN
31: x_out_param.return_status := FND_API.G_RET_STS_SUCCESS;
32: x_out_param.create_tca_rel_flag := FND_API.G_FALSE;
33: END get_create_tca_rel_flag;
34:
35: /*-----------------------------------------------------------------*/

Line 32: x_out_param.create_tca_rel_flag := FND_API.G_FALSE;

28: x_out_param OUT NOCOPY CREATE_TCA_REL_OUT_REC_TYPE
29: ) IS
30: BEGIN
31: x_out_param.return_status := FND_API.G_RET_STS_SUCCESS;
32: x_out_param.create_tca_rel_flag := FND_API.G_FALSE;
33: END get_create_tca_rel_flag;
34:
35: /*-----------------------------------------------------------------*/
36: /* procedure name: get_tca_rel_info */

Line 48: x_out_param.return_status := FND_API.G_RET_STS_ERROR;

44: p_in_param IN TCA_REL_INFO_IN_REC_TYPE,
45: x_out_param OUT NOCOPY TCA_REL_INFO_OUT_REC_TYPE
46: ) IS
47: BEGIN
48: x_out_param.return_status := FND_API.G_RET_STS_ERROR;
49: x_out_param.relationship_type := null;
50: x_out_param.relationship_code := null;
51: END get_tca_rel_info;
52: