DBA Data[Home] [Help]

APPS.QP_MODIFIERS_ISETUP_IMP dependencies on FND_GLOBAL

Line 686: 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);

682:
683:
684: FOR t in 1..x_msg_count LOOP
685: x_msg_data := oe_msg_pub.get( p_msg_index => t, p_encoded => 'F');
686: 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);
687: END LOOP;
688:
689: EXCEPTION
690: WHEN FND_API.G_EXC_ERROR THEN

Line 695: 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;

691:
692: X_return_status := FND_API.G_RET_STS_ERROR;
693: --Get message count and data
694: --dbms_output.put_line('err msg 1 is : ' || x_msg_data);
695: 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;
696:
697: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
698:
699: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 707: 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;

703: p_encoded => 'F'
704: );
705: --Get message count and data
706: --dbms_output.put_line('err msg ' || k ||'is: ' || x_msg_data);
707: 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;
708: end loop;
709:
710:
711: WHEN OTHERS THEN

Line 721: 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;

717: p_encoded => 'F'
718: );
719: --Get message count and data
720: --dbms_output.put_line('err msg ' || k ||'is: ' || x_msg_data);
721: 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;
722: end loop;
723:
724: END;
725: