Created
March 27, 2017 18:57
-
-
Save nexocentric/1f7087edf126a9315f375c4efba9829c to your computer and use it in GitHub Desktop.
Working with procedures and functions in PL/SQL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE | |
x VARCHAR2(8); | |
BEGIN | |
x := item_change_mapping_io.iswarehouseitem('01217'); | |
dbms_output.put_line(x); | |
END; | |
var rc refcursor; | |
exec item_change_mapping_io.GetPrimaryGridData(:rc); | |
print rc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment