DBA Data[Home] [Help]

APPS.MTL_CC_TRANSACT_PKG dependencies on FND_MSG_PUB

Line 74: FND_MSG_PUB.ADD;

70: FND_MESSAGE.SET_TOKEN('ROUTINE',
71: 'MTL_CC_TRANSACT_PKG.CC_TRANSACT ',TRUE);
72:
73: --Bug 4171757- Added the below statement to capture messages in the calling program
74: FND_MSG_PUB.ADD;
75: --End of fix for Bug 4171757
76:
77: --Bug 4171757 -Added the following for messages in the INV debug file.
78: IF (l_debug = 1) THEN

Line 91: FND_MSG_PUB.ADD;

87: IF (v_profile_value = 2 AND TxnDate < TRUNC(SYSDATE)) THEN
88: FND_MESSAGE.SET_NAME('INV', 'INV_NO_PAST_TXN_DATES');
89:
90: --Bug 4171757- Added the below statement to capture messages in the calling program
91: FND_MSG_PUB.ADD;
92: --End of fix for Bug 4171757
93:
94: --Bug 4171757 -Added the following for messages in the INV debug file.
95: IF (l_debug = 1) THEN

Line 113: FND_MSG_PUB.ADD;

109: IF (v_period_id = 0) THEN
110: FND_MESSAGE.SET_NAME('INV', 'INV_NO_OPEN_PERIOD');
111:
112: --Bug 4171757- Added the below statement to capture messages in the calling program
113: FND_MSG_PUB.ADD;
114: --End of fix for Bug 4171757
115:
116: --Bug 4171757 -Added the following for messages in the INV debug file.
117: IF (l_debug = 1) THEN

Line 133: FND_MSG_PUB.ADD;

129: NOT (v_open_past_period) THEN
130: FND_MESSAGE.SET_NAME('INV', 'INV_NO_PAST_TXN_PERIODS');
131:
132: --Bug 4171757- Added the below statement to capture messages in the calling program
133: FND_MSG_PUB.ADD;
134: --End of fix for Bug 4171757
135:
136: --Bug 4171757 -Added the following for messages in the INV debug file.
137: IF (l_debug = 1) THEN

Line 730: FND_MSG_PUB.ADD ;

726: WHEN OTHERS THEN
727: --Bug 4171757 -Throwing the error message "Transaction Failed " to the user if an exception is raised.
728:
729: FND_MESSAGE.SET_NAME('INV','INV_FAILED');
730: FND_MSG_PUB.ADD ;
731:
732: --End of fix for Bug 4171757
733:
734: --Bug 4171757 -Added the following for messages in the INV debug file.