DBA Data[Home] [Help]

APPS.PO_TERMS_SV dependencies on FND_API

Line 683: -- FND_API.G_TRUE if p_terms_rec1 and p_terms_rec2 have the same terms

679: -- Record containing second set of terms and conditions
680: --IN OUT:
681: --OUT:
682: --x_same_terms
683: -- FND_API.G_TRUE if p_terms_rec1 and p_terms_rec2 have the same terms
684: -- and conditions within the scope
685: -- FND_API.G_FALSE if any of the terms and conditions between two records
686: -- differs within the scope
687: --x_comparison_result

Line 685: -- FND_API.G_FALSE if any of the terms and conditions between two records

681: --OUT:
682: --x_same_terms
683: -- FND_API.G_TRUE if p_terms_rec1 and p_terms_rec2 have the same terms
684: -- and conditions within the scope
685: -- FND_API.G_FALSE if any of the terms and conditions between two records
686: -- differs within the scope
687: --x_comparison_result
688: -- For each term in p_terms_rec1 and p_terms_rec2, if the value is the
689: -- same, 'Y' will be put into the corresponding entry in

Line 708: x_same_terms := FND_API.G_TRUE;

704:
705: l_api_name CONSTANT VARCHAR2(50) := 'compare_terms_conditions';
706:
707: BEGIN
708: x_same_terms := FND_API.G_TRUE;
709:
710: IF (p_comparison_scope IN (G_COMPARISON_SCOPE_GLOBAL,
711: G_COMPARISON_SCOPE_ALL)) THEN
712:

Line 740: x_same_terms := FND_API.G_FALSE;

736: x_comparison_result.note_to_vendor_eq = 'N' OR
737: x_comparison_result.note_to_receiver_eq = 'N' OR
738: x_comparison_result.shipping_control_eq = 'N') THEN
739:
740: x_same_terms := FND_API.G_FALSE;
741: END IF;
742:
743: END IF; -- scope IN ('GLOBAL', 'ALL')
744:

Line 767: x_same_terms := FND_API.G_FALSE;

763: x_comparison_result.bill_to_location_id_eq = 'N' OR
764: x_comparison_result.ship_to_location_id_eq = 'N' OR
765: x_comparison_result.ship_via_lookup_code_eq = 'N') THEN
766:
767: x_same_terms := FND_API.G_FALSE;
768: END IF;
769:
770: END IF; -- scope IN ('LOCAL', 'ALL')
771: