DBA Data[Home] [Help]

APPS.QA_WEB_TXN_API dependencies on FND_API

Line 809: p_commit => FND_API.G_TRUE,

805: -- parent transactions have committed.
806:
807: qa_results_pub.enable_and_fire_action (
808: p_api_version => 1.0,
809: p_commit => FND_API.G_TRUE,
810: p_collection_id => p_collection_id,
811: x_return_status => p_return_status,
812: x_msg_count => x_msg_count,
813: x_msg_data => x_msg_data);

Line 881: -- Return fnd_api.g_true if p_txn is enabled for OAF

877: -- So, we do a hard check here. When there is
878: -- datamodel available, this can be changed to
879: -- select from the db.
880: --
881: -- Return fnd_api.g_true if p_txn is enabled for OAF
882: -- transaction integration; else fnd_api.g_false.
883: -- bso Fri May 20 14:01:25 PDT 2005
884: --
885: --

Line 882: -- transaction integration; else fnd_api.g_false.

878: -- datamodel available, this can be changed to
879: -- select from the db.
880: --
881: -- Return fnd_api.g_true if p_txn is enabled for OAF
882: -- transaction integration; else fnd_api.g_false.
883: -- bso Fri May 20 14:01:25 PDT 2005
884: --
885: --
886: FUNCTION is_workbench_txn(p_txn IN NUMBER)

Line 897: RETURN fnd_api.g_true;

893: qa_ss_const.wip_completion_txn,
894: qa_ss_const.flow_work_order_less_txn,
895: qa_ss_const.flow_line_op_txn,
896: qa_ss_const.osfm_move_txn) THEN
897: RETURN fnd_api.g_true;
898: END IF;
899:
900: RETURN fnd_api.g_false;
901: END is_workbench_txn;

Line 900: RETURN fnd_api.g_false;

896: qa_ss_const.osfm_move_txn) THEN
897: RETURN fnd_api.g_true;
898: END IF;
899:
900: RETURN fnd_api.g_false;
901: END is_workbench_txn;
902:
903: -- Bug 4343758. Oa Fwk Integration Project.
904: -- New API used to get information on mandatory

Line 937: -- Return fnd_api.g_true if p_txn is a mobile txn

933:
934: END get_result_entered;
935:
936: -- Bug 4519559. Oa Fwk Integration Project. UT bug fix.
937: -- Return fnd_api.g_true if p_txn is a mobile txn
938: -- else return fnd_api.g_false
939: -- srhariha. Tue Aug 2 01:37:53 PDT 2005
940:
941: -- Bug 4519558.OA Framework Integration project. UT bug fix.

Line 938: -- else return fnd_api.g_false

934: END get_result_entered;
935:
936: -- Bug 4519559. Oa Fwk Integration Project. UT bug fix.
937: -- Return fnd_api.g_true if p_txn is a mobile txn
938: -- else return fnd_api.g_false
939: -- srhariha. Tue Aug 2 01:37:53 PDT 2005
940:
941: -- Bug 4519558.OA Framework Integration project. UT bug fix.
942: -- Incorporating Bryan's code review comments. Moved the

Line 971: RETURN fnd_api.g_true;

967: qa_ss_const.mob_ser_return_and_move_txn,
968: qa_ss_const.mob_lpn_inspection_txn,
969: qa_ss_const.mob_recv_inspection_txn,
970: qa_ss_const.wms_lpn_based_txn) THEN
971: RETURN fnd_api.g_true;
972: END IF;
973:
974: RETURN fnd_api.g_false;
975:

Line 974: RETURN fnd_api.g_false;

970: qa_ss_const.wms_lpn_based_txn) THEN
971: RETURN fnd_api.g_true;
972: END IF;
973:
974: RETURN fnd_api.g_false;
975:
976: END is_mobile_txn;
977: */
978: