DBA Data[Home] [Help]

APPS.IBY_PAYMENT_DOC_PUB_PKG dependencies on FND_MESSAGE

Line 128: fnd_message.set_name('IBY', 'IBY_INV_PMT_DOC');

124: where payment_document_id = p_payment_document_id;
125: EXCEPTION
126: WHEN NO_DATA_FOUND THEN
127:
128: fnd_message.set_name('IBY', 'IBY_INV_PMT_DOC');
129: fnd_msg_pub.add;
130:
131: print_debuginfo(l_module_name, 'Error:: Invalid Payment Document',G_LEVEL_STATEMENT);
132:

Line 144: fnd_message.set_name('IBY', 'IBY_PMT_DOC_LOCKED');

140: print_debuginfo(l_module_name, 'Last Issued Document Number::'||l_last_issued_num,G_LEVEL_STATEMENT);
141:
142:
143: if(l_pmt_instruction_id is NOT NULL) then
144: fnd_message.set_name('IBY', 'IBY_PMT_DOC_LOCKED');
145: fnd_message.set_Token('INSTR_ID', l_pmt_instruction_id);
146: fnd_msg_pub.add;
147:
148: print_debuginfo(l_module_name, 'Payment Document '||p_payment_document_id ||

Line 145: fnd_message.set_Token('INSTR_ID', l_pmt_instruction_id);

141:
142:
143: if(l_pmt_instruction_id is NOT NULL) then
144: fnd_message.set_name('IBY', 'IBY_PMT_DOC_LOCKED');
145: fnd_message.set_Token('INSTR_ID', l_pmt_instruction_id);
146: fnd_msg_pub.add;
147:
148: print_debuginfo(l_module_name, 'Payment Document '||p_payment_document_id ||
149: 'is locked by Instruction -'||l_pmt_instruction_id,G_LEVEL_STATEMENT);

Line 157: fnd_message.set_name('IBY', 'IBY_INV_DOC_NUMS');

153:
154: if(p_from_doc_num 155: p_to_doc_num>l_last_avail_num) then
156:
157: fnd_message.set_name('IBY', 'IBY_INV_DOC_NUMS');
158: fnd_msg_pub.add;
159:
160: print_debuginfo(l_module_name, 'Provided document numbers are OUT OF RANGE',G_LEVEL_STATEMENT);
161:

Line 177: fnd_message.set_name('IBY', 'IBY_PMT_DOC_NUM_USED');

173: and used_document_number between p_from_doc_num and p_to_doc_num
174: and document_use in ('SPOILED', 'ISSUED', 'UNUSED_VOIDED', 'SETUP', 'VOID' , 'OVERFLOW', 'PRINTED'));
175:
176: if(l_used =1) then
177: fnd_message.set_name('IBY', 'IBY_PMT_DOC_NUM_USED');
178: fnd_msg_pub.add;
179:
180: print_debuginfo(l_module_name, 'USED DOCS: One or more document numbers are already used',G_LEVEL_STATEMENT);
181:

Line 209: fnd_message.set_name('IBY', 'IBY_DOC_NUM_USED');

205: AND pmt.paper_document_number BETWEEN p_from_doc_num and p_to_doc_num);
206:
207:
208: if(l_used =1) then
209: fnd_message.set_name('IBY', 'IBY_DOC_NUM_USED');
210: fnd_msg_pub.add;
211:
212: print_debuginfo(l_module_name, 'PMTS: One or more document numbers are already used',G_LEVEL_STATEMENT);
213: