DBA Data[Home] [Help]

APPS.ARP_CLAS_PKG dependencies on FND_API

Line 42: x_return_status := FND_API.G_RET_STS_ERROR;

38: if ( dummy >= 1 ) then
39: fnd_message.set_name('AR','AR_CUST_DUP_INTERNAL_LOCATION');
40: --app_exception.raise_exception;
41: FND_MSG_PUB.ADD;
42: x_return_status := FND_API.G_RET_STS_ERROR;
43: x_msg_count := 1;
44: x_msg_data := 'AR_CUST_DUP_INTERNAL_LOCATION';
45: return;
46: end if;

Line 119: RAISE FND_API.G_EXC_ERROR;

115: FND_MESSAGE.SET_TOKEN( 'VALUE',
116: NVL( TO_CHAR(
117: l_org_id ), 'null' ) );
118: FND_MSG_PUB.ADD;
119: RAISE FND_API.G_EXC_ERROR;
120: END;
121:
122: --
123: check_unique_inv_location( p_inventory_location_id => p_inventory_location_id, x_return_status => x_return_status, x_msg_count => x_msg_count, x_msg_data => x_msg_data, l_org_id => l_org_id );

Line 124: if x_return_status <> FND_API.G_RET_STS_SUCCESS then

120: END;
121:
122: --
123: check_unique_inv_location( p_inventory_location_id => p_inventory_location_id, x_return_status => x_return_status, x_msg_count => x_msg_count, x_msg_data => x_msg_data, l_org_id => l_org_id );
124: if x_return_status <> FND_API.G_RET_STS_SUCCESS then
125: return;
126: end if;
127: --
128:

Line 134: RAISE FND_API.G_EXC_ERROR;

130: MO_GLOBAL.validate_orgid_pub_api( l_org_id,'N',l_return_status);
131: EXCEPTION
132: WHEN OTHERS
133: THEN
134: RAISE FND_API.G_EXC_ERROR;
135: END;
136: insert into po_location_associations (
137: location_id,
138: last_update_date,

Line 258: x_return_status := FND_API.G_RET_STS_ERROR;

254: if ( l_dummy >= 1 ) then
255: fnd_message.set_name('AR','AR_CUST_INT_REQ_LINES_EXIST');
256: FND_MSG_PUB.ADD;
257: --app_exception.raise_exception;
258: x_return_status := FND_API.G_RET_STS_ERROR;
259: x_msg_count := 1;
260: x_msg_data := 'AR_CUST_INT_REQ_LINES_EXIST';
261: return;
262: end if;