399: BEGIN
400: if (p_put_away_strategy_id is not null) then
401: select name
402: into x_put_away_strategy_name
403: from wms_strategies
404: where strategy_id = p_put_away_strategy_id;
405:
406: end if;
407:
415:
416: if (p_pick_strategy_id is not null) then
417: select name
418: into x_pick_strategy_name
419: from wms_strategies
420: where strategy_id = p_pick_strategy_id;
421:
422: end if;
423: