DBA Data[Home] [Help]

APPS.INV_SHORTCHECKEXEC_PVT dependencies on FND_MESSAGE

Line 355: FND_MESSAGE.SET_NAME('INV','INV_SHORT_STATEMENT_NOT_FOUND');

351: WHEN L_Statement_not_found THEN
352: --
353: x_return_status := FND_API.G_RET_STS_ERROR;
354: --
355: FND_MESSAGE.SET_NAME('INV','INV_SHORT_STATEMENT_NOT_FOUND');
356: FND_MSG_PUB.Add;
357: --
358: WHEN OTHERS THEN
359: --

Line 773: FND_MESSAGE.SET_NAME('INV','INV_SHORT_PARAMETER_NOT_FOUND');

769: -- Get the notification recipients from the shortage parameter
770: OPEN L_ShortParam_csr ( p_organization_id );
771: FETCH L_ShortParam_csr INTO L_ShortParam_rec;
772: IF L_ShortParam_csr%NOTFOUND THEN
773: FND_MESSAGE.SET_NAME('INV','INV_SHORT_PARAMETER_NOT_FOUND');
774: FND_MSG_PUB.Add;
775: RAISE FND_API.G_EXC_ERROR;
776: END IF;
777: CLOSE L_ShortParam_csr;

Line 979: -- API, caller should call fnd_message.retrieve and

975: -- TYPE : Private
976: -- Pre-reqs : None
977: -- FUNCTION : This API prepares a shortage message for the given item/org
978: -- and pushes it onto the message stack. After calling this
979: -- API, caller should call fnd_message.retrieve and
980: -- fnd_message.show in order to display the message.
981: -- Parameters:
982: -- IN :
983: -- p_inventory_item_id IN NUMBER (required)

Line 980: -- fnd_message.show in order to display the message.

976: -- Pre-reqs : None
977: -- FUNCTION : This API prepares a shortage message for the given item/org
978: -- and pushes it onto the message stack. After calling this
979: -- API, caller should call fnd_message.retrieve and
980: -- fnd_message.show in order to display the message.
981: -- Parameters:
982: -- IN :
983: -- p_inventory_item_id IN NUMBER (required)
984: -- The inventory item ID which a shortage message should be created for

Line 1006: fnd_message.set_name('INV','INV_SHORTAGE_EXISTS');

1002: EXCEPTION
1003: WHEN OTHERS THEN
1004: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1005: END;
1006: fnd_message.set_name('INV','INV_SHORTAGE_EXISTS');
1007: fnd_message.set_token('ITEM',L_item_conc_segments);
1008: EXCEPTION
1009: WHEN OTHERS THEN
1010: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 1007: fnd_message.set_token('ITEM',L_item_conc_segments);

1003: WHEN OTHERS THEN
1004: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1005: END;
1006: fnd_message.set_name('INV','INV_SHORTAGE_EXISTS');
1007: fnd_message.set_token('ITEM',L_item_conc_segments);
1008: EXCEPTION
1009: WHEN OTHERS THEN
1010: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1011: END PrepareMessage;