DBA Data[Home] [Help]

APPS.GME_MOBILE_LOVS dependencies on GME_PARAMETERS

Line 2271: * on hand. If the GME parameters is not set we call master LoV directly

2267:
2268:
2269: /* Bug#5663458
2270: * Created the following procedure. This procedure is to get subinventoried that have
2271: * on hand. If the GME parameters is not set we call master LoV directly
2272: */
2273: PROCEDURE Subinventory_OnHand_LoV(
2274: x_sub_lov OUT NOCOPY t_genref
2275: , p_organization_id IN NUMBER

Line 2284: FROM gme_parameters

2280: )
2281: IS
2282: CURSOR c_get_locind IS
2283: SELECT subinv_loc_ind
2284: FROM gme_parameters
2285: WHERE organization_id = p_organization_id;
2286:
2287: l_ind NUMBER(1) := 0;
2288: BEGIN

Line 2577: * on hand. If the GME parameters is not set we call master LoV directly

2573: END Locator_LoV;
2574:
2575: /* Bug#5663458
2576: * Created the following procedure. This procedure is to get locators that have
2577: * on hand. If the GME parameters is not set we call master LoV directly
2578: */
2579: PROCEDURE Locator_OnHand_LoV(
2580: x_locators OUT NOCOPY t_genref
2581: , p_organization_id IN NUMBER

Line 2591: FROM gme_parameters

2587: )
2588: IS
2589: CURSOR c_get_locind IS
2590: SELECT subinv_loc_ind
2591: FROM gme_parameters
2592: WHERE organization_id = p_organization_id;
2593:
2594: l_ind NUMBER(1) := 0;
2595: BEGIN