DBA Data[Home] [Help]

APPS.QP_MODIFIERS_ISETUP_IMP dependencies on FND_GLOBAL

Line 684: X_G_MSG_DATA := X_G_MSG_DATA || FND_GLOBAL.NewLine || FND_GLOBAL.NewLine || x_msg_data || ' :: ListHeaderId in the Input XML file is : ' || to_char(mListHeaderId);

680:
681:
682: FOR t in 1..x_msg_count LOOP
683: x_msg_data := oe_msg_pub.get( p_msg_index => t, p_encoded => 'F');
684: X_G_MSG_DATA := X_G_MSG_DATA || FND_GLOBAL.NewLine || FND_GLOBAL.NewLine || x_msg_data || ' :: ListHeaderId in the Input XML file is : ' || to_char(mListHeaderId);
685: END LOOP;
686:
687: EXCEPTION
688: WHEN FND_API.G_EXC_ERROR THEN

Line 693: X_G_MSG_DATA := X_G_MSG_DATA || FND_GLOBAL.NewLine || FND_GLOBAL.NewLine || x_msg_data || ' :: ListHeaderId in the Input XML file is : ' || mListHeaderId;

689:
690: X_return_status := FND_API.G_RET_STS_ERROR;
691: --Get message count and data
692: --dbms_output.put_line('err msg 1 is : ' || x_msg_data);
693: X_G_MSG_DATA := X_G_MSG_DATA || FND_GLOBAL.NewLine || FND_GLOBAL.NewLine || x_msg_data || ' :: ListHeaderId in the Input XML file is : ' || mListHeaderId;
694:
695: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
696:
697: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 705: X_G_MSG_DATA := X_G_MSG_DATA || FND_GLOBAL.NewLine || FND_GLOBAL.NewLine || x_msg_data || ' :: ListHeaderId in the Input XML file is : ' || mListHeaderId;

701: p_encoded => 'F'
702: );
703: --Get message count and data
704: --dbms_output.put_line('err msg ' || k ||'is: ' || x_msg_data);
705: X_G_MSG_DATA := X_G_MSG_DATA || FND_GLOBAL.NewLine || FND_GLOBAL.NewLine || x_msg_data || ' :: ListHeaderId in the Input XML file is : ' || mListHeaderId;
706: end loop;
707:
708:
709: WHEN OTHERS THEN

Line 719: X_G_MSG_DATA := X_G_MSG_DATA || FND_GLOBAL.NewLine || FND_GLOBAL.NewLine || x_msg_data || ' :: ListHeaderId in the Input XML file is : ' || mListHeaderId;

715: p_encoded => 'F'
716: );
717: --Get message count and data
718: --dbms_output.put_line('err msg ' || k ||'is: ' || x_msg_data);
719: X_G_MSG_DATA := X_G_MSG_DATA || FND_GLOBAL.NewLine || FND_GLOBAL.NewLine || x_msg_data || ' :: ListHeaderId in the Input XML file is : ' || mListHeaderId;
720: end loop;
721:
722: END;
723: