Home » Applications » Oracle Fusion Apps & E-Business Suite » Ar_receipt_api_pub.Create_cash Unexpected Error (R12.1.1)
Ar_receipt_api_pub.Create_cash Unexpected Error [message #473537] Mon, 30 August 2010 02:00 Go to next message
deepak3arora
Messages: 32
Registered: October 2009
Location: chandigarh
Member
Hello All,

I am getting an error in Ar_receipt_api_pub.Create_cash.
Its returning message count=2 return status =U

and the messages its returning are : AR and FND

what do AR and FND message signify?

and How can i solve this problem?

Thanx in Advance,
Deepak
Re: Ar_receipt_api_pub.Create_cash Unexpected Error [message #473555 is a reply to message #473537] Mon, 30 August 2010 04:50 Go to previous message
Alien
Messages: 292
Registered: June 1999
Senior Member
Hi,

I usually use the following procedure to retrieve messages from the stack (you appear to have 2):

set serveroutput on;

declare
v_msg varchar2(2000);
v_idx number;
begin
for i in 1..fnd_msg_pub.count_msg loop
    fnd_msg_pub.get(i,'F',v_msg,v_idx);
    dbms_output.put_line(to_char(i)||' '||v_msg);
end loop;
end;


You have to initialize the message api first. Either by setting p_init_msg_list to 'T', or by calling 'fnd_msg_pub.initialize;' before calling the api.

Regards,

Arian
Previous Topic: GL date, 31-MAR-10, is not in an open or future-enterable period (merged)
Next Topic: BOM Operational Routing Table
Goto Forum:
  


Current Time: Sun May 05 02:49:49 CDT 2024