DBA Data[Home] [Help]

APPS.CS_CONTRACT_BILLING dependencies on FND_MSG_PUB

Line 1516: Fnd_msg_pub.Count_And_get(p_count => l_count,

1512: Procedure Print_Error IS
1513: l_count number;
1514: l_msg varchar2(2000);
1515: begin
1516: Fnd_msg_pub.Count_And_get(p_count => l_count,
1517: p_data => l_msg,
1518: p_encoded => 'F');
1519: if l_count = 0
1520: then

Line 1528: l_msg := fnd_msg_pub.get(I,'F');

1524: FND_FILE.PUT_LINE( FND_FILE.LOG, l_msg);
1525: else
1526: For I in 1..l_count
1527: loop
1528: l_msg := fnd_msg_pub.get(I,'F');
1529: FND_FILE.PUT_LINE( FND_FILE.LOG, l_msg);
1530: end loop;
1531: end if;
1532: FND_MSG_PUB.initialize;

Line 1532: FND_MSG_PUB.initialize;

1528: l_msg := fnd_msg_pub.get(I,'F');
1529: FND_FILE.PUT_LINE( FND_FILE.LOG, l_msg);
1530: end loop;
1531: end if;
1532: FND_MSG_PUB.initialize;
1533: Exception
1534: when others then
1535: FND_FILE.PUT_LINE( FND_FILE.LOG, SQLERRM );
1536: End Print_Error;