Skip to content

Instantly share code, notes, and snippets.

@nexocentric
Created March 27, 2017 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nexocentric/1f7087edf126a9315f375c4efba9829c to your computer and use it in GitHub Desktop.
Save nexocentric/1f7087edf126a9315f375c4efba9829c to your computer and use it in GitHub Desktop.
Working with procedures and functions in PL/SQL
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