DBA Data[Home] [Help]

APPS.GMDRTVAL_PUB dependencies on GMD_DEBUG

Line 894: gmd_debug.put_line(' Rt step id is null and Rt step no = '||pxRoutingStep_no);

890:
891: x_return_status := 'S';
892: IF pxRoutingStep_id IS NULL THEN
893: IF (l_debug = 'Y') THEN
894: gmd_debug.put_line(' Rt step id is null and Rt step no = '||pxRoutingStep_no);
895: END IF;
896: /* User needs to pass the routing_id and step no */
897: OPEN get_routingStep_id(pRouting_id,pxRoutingStep_no);
898: FETCH get_routingStep_id INTO pxRoutingStep_id;

Line 905: gmd_debug.put_line(' RT step id is not null = '||pxRoutingStep_id);

901: END IF;
902: CLOSE get_routingStep_id;
903: ELSE
904: IF (l_debug = 'Y') THEN
905: gmd_debug.put_line(' RT step id is not null = '||pxRoutingStep_id);
906: END IF;
907:
908: OPEN get_routingStep_no(pxRoutingStep_id);
909: FETCH get_routingStep_no INTO pxRoutingStep_no;

Line 955: gmd_debug.put_line(' In Check_routing_override_exists() with Rt Step id = '||p_RoutingStep_id);

951:
952: BEGIN
953: IF (p_routingstep_id IS NOT NULL) THEN
954: IF (l_debug = 'Y') THEN
955: gmd_debug.put_line(' In Check_routing_override_exists() with Rt Step id = '||p_RoutingStep_id);
956: END IF;
957:
958: OPEN Cur_check_step(p_routingstep_id);
959: FETCH Cur_check_step INTO X_temp;

Line 968: gmd_debug.put_line(' In Check_routing_override_exists() '

964: END IF;
965: CLOSE Cur_check_step;
966:
967: IF (l_debug = 'Y') THEN
968: gmd_debug.put_line(' In Check_routing_override_exists() '
969: ||' after check in Recipe Step level ');
970: END IF;
971:
972: -- bug 1856832. Check step/mat in addition to above check of rtg step

Line 983: gmd_debug.put_line(' In Check_routing_override_exists() '

979: END IF;
980: CLOSE Cur_check_step2;
981:
982: IF (l_debug = 'Y') THEN
983: gmd_debug.put_line(' In Check_routing_override_exists() '
984: ||' after check in Recipe Mat level ');
985: END IF;
986:
987: END IF;