DBA Data[Home] [Help]

APPS.INV_ITEM_ORG_ASSIGN_CP dependencies on FND_MSG_PUB

Line 1397: FND_MSG_PUB.Initialize;

1393: );
1394: END IF;
1395:
1396: -- initialize the message stack
1397: FND_MSG_PUB.Initialize;
1398:
1399: -- get the max batch size from the profile option;
1400: -- default it to 1000 if the profile option is not defined.
1401: l_max_batch_size := NVL( TO_NUMBER

Line 2079: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

2075: END IF;
2076: x_retcode := RETCODE_ERROR;
2077:
2078: WHEN OTHERS THEN
2079: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2080: THEN
2081: FND_MSG_PUB.Add_Exc_Msg
2082: ( G_PKG_NAME
2083: , 'Item_Org_Assignment'

Line 2081: FND_MSG_PUB.Add_Exc_Msg

2077:
2078: WHEN OTHERS THEN
2079: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2080: THEN
2081: FND_MSG_PUB.Add_Exc_Msg
2082: ( G_PKG_NAME
2083: , 'Item_Org_Assignment'
2084: );
2085: END IF;

Line 2087: x_errbuff := FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE);

2083: , 'Item_Org_Assignment'
2084: );
2085: END IF;
2086: x_retcode := RETCODE_ERROR;
2087: x_errbuff := FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE);
2088:
2089: END Item_Org_Assignment;
2090:
2091: