DBA Data[Home] [Help]

APPS.QA_WEB_TXN_API dependencies on FND_API

Line 782: p_commit => FND_API.G_TRUE,

778: -- parent transactions have committed.
779:
780: qa_results_pub.enable_and_fire_action (
781: p_api_version => 1.0,
782: p_commit => FND_API.G_TRUE,
783: p_collection_id => p_collection_id,
784: x_return_status => p_return_status,
785: x_msg_count => x_msg_count,
786: x_msg_data => x_msg_data);

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

850: -- So, we do a hard check here. When there is
851: -- datamodel available, this can be changed to
852: -- select from the db.
853: --
854: -- Return fnd_api.g_true if p_txn is enabled for OAF
855: -- transaction integration; else fnd_api.g_false.
856: -- bso Fri May 20 14:01:25 PDT 2005
857: --
858: --

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

851: -- datamodel available, this can be changed to
852: -- select from the db.
853: --
854: -- Return fnd_api.g_true if p_txn is enabled for OAF
855: -- transaction integration; else fnd_api.g_false.
856: -- bso Fri May 20 14:01:25 PDT 2005
857: --
858: --
859: FUNCTION is_workbench_txn(p_txn IN NUMBER)

Line 870: RETURN fnd_api.g_true;

866: qa_ss_const.wip_completion_txn,
867: qa_ss_const.flow_work_order_less_txn,
868: qa_ss_const.flow_line_op_txn,
869: qa_ss_const.osfm_move_txn) THEN
870: RETURN fnd_api.g_true;
871: END IF;
872:
873: RETURN fnd_api.g_false;
874: END is_workbench_txn;

Line 873: RETURN fnd_api.g_false;

869: qa_ss_const.osfm_move_txn) THEN
870: RETURN fnd_api.g_true;
871: END IF;
872:
873: RETURN fnd_api.g_false;
874: END is_workbench_txn;
875:
876: -- Bug 4343758. Oa Fwk Integration Project.
877: -- New API used to get information on mandatory

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

906:
907: END get_result_entered;
908:
909: -- Bug 4519559. Oa Fwk Integration Project. UT bug fix.
910: -- Return fnd_api.g_true if p_txn is a mobile txn
911: -- else return fnd_api.g_false
912: -- srhariha. Tue Aug 2 01:37:53 PDT 2005
913:
914: -- Bug 4519558.OA Framework Integration project. UT bug fix.

Line 911: -- else return fnd_api.g_false

907: END get_result_entered;
908:
909: -- Bug 4519559. Oa Fwk Integration Project. UT bug fix.
910: -- Return fnd_api.g_true if p_txn is a mobile txn
911: -- else return fnd_api.g_false
912: -- srhariha. Tue Aug 2 01:37:53 PDT 2005
913:
914: -- Bug 4519558.OA Framework Integration project. UT bug fix.
915: -- Incorporating Bryan's code review comments. Moved the

Line 944: RETURN fnd_api.g_true;

940: qa_ss_const.mob_ser_return_and_move_txn,
941: qa_ss_const.mob_lpn_inspection_txn,
942: qa_ss_const.mob_recv_inspection_txn,
943: qa_ss_const.wms_lpn_based_txn) THEN
944: RETURN fnd_api.g_true;
945: END IF;
946:
947: RETURN fnd_api.g_false;
948:

Line 947: RETURN fnd_api.g_false;

943: qa_ss_const.wms_lpn_based_txn) THEN
944: RETURN fnd_api.g_true;
945: END IF;
946:
947: RETURN fnd_api.g_false;
948:
949: END is_mobile_txn;
950: */
951: