DBA Data[Home] [Help]

APPS.CTO_CUSTOM_CATALOG_DESC dependencies on FND_API

Line 62: | FND_API.G_RET_STS_SUCCESS |

58: | |
59: | - x_return_status is the OUT parameter which should be set |
60: | to one of the following values : |
61: | |
62: | FND_API.G_RET_STS_SUCCESS |
63: | to indicate success |
64: | |
65: | FND_API.FND_API.G_RET_STS_ERROR |
66: | to indicate failure with expected status |

Line 65: | FND_API.FND_API.G_RET_STS_ERROR |

61: | |
62: | FND_API.G_RET_STS_SUCCESS |
63: | to indicate success |
64: | |
65: | FND_API.FND_API.G_RET_STS_ERROR |
66: | to indicate failure with expected status |
67: | |
68: | FND_API.FND_API.G_RET_STS_UNEXP_ERROR |
69: | to indicate failure with unexpected status |

Line 68: | FND_API.FND_API.G_RET_STS_UNEXP_ERROR |

64: | |
65: | FND_API.FND_API.G_RET_STS_ERROR |
66: | to indicate failure with expected status |
67: | |
68: | FND_API.FND_API.G_RET_STS_UNEXP_ERROR |
69: | to indicate failure with unexpected status |
70: | |
71: | Note: This function will be called for each newly |
72: | created configuration |

Line 115: -- FND_API.G_RET_STS_SUCCESS to indicate success

111: -- IMPORTANT : DO NOT ALTER THE VALUE OF cat_element_name . Doing so will
112: -- result in incorrect or inconsistent behaviour.
113: --
114: -- Make sure you set the x_return_status variable to one of the following:
115: -- FND_API.G_RET_STS_SUCCESS to indicate success
116: -- FND_API.FND_API.G_RET_STS_ERROR to indicate failure with expected status
117: -- FND_API.FND_API.G_RET_STS_UNEXP_ERROR to indicate failure with unexpected status
118:
119: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 116: -- FND_API.FND_API.G_RET_STS_ERROR to indicate failure with expected status

112: -- result in incorrect or inconsistent behaviour.
113: --
114: -- Make sure you set the x_return_status variable to one of the following:
115: -- FND_API.G_RET_STS_SUCCESS to indicate success
116: -- FND_API.FND_API.G_RET_STS_ERROR to indicate failure with expected status
117: -- FND_API.FND_API.G_RET_STS_UNEXP_ERROR to indicate failure with unexpected status
118:
119: x_return_status := FND_API.G_RET_STS_SUCCESS;
120:

Line 117: -- FND_API.FND_API.G_RET_STS_UNEXP_ERROR to indicate failure with unexpected status

113: --
114: -- Make sure you set the x_return_status variable to one of the following:
115: -- FND_API.G_RET_STS_SUCCESS to indicate success
116: -- FND_API.FND_API.G_RET_STS_ERROR to indicate failure with expected status
117: -- FND_API.FND_API.G_RET_STS_UNEXP_ERROR to indicate failure with unexpected status
118:
119: x_return_status := FND_API.G_RET_STS_SUCCESS;
120:
121: end user_catalog_desc;

Line 119: x_return_status := FND_API.G_RET_STS_SUCCESS;

115: -- FND_API.G_RET_STS_SUCCESS to indicate success
116: -- FND_API.FND_API.G_RET_STS_ERROR to indicate failure with expected status
117: -- FND_API.FND_API.G_RET_STS_UNEXP_ERROR to indicate failure with unexpected status
118:
119: x_return_status := FND_API.G_RET_STS_SUCCESS;
120:
121: end user_catalog_desc;
122:
123: