Calling a package and giving it input parameters
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-12-23 10:05 AM
Hi All,
I need to call a package using Blue Prism. I need to give it an input parameter of Item ID. I can run this on SQL navigator and return results but unable to using Blue Prism. What format is required for Blue Prism.
@Harish Mogulluri Thanks for the reply. The requirement is just to pass the dynamic value to the package and run. We then then need the output to be in Blue Prism. What is the format that is required to do this? (Is this possible with out creating a stored procedure) It executes a PL/SQL block.
Declare
req Clob := '{"ItemID":"12345678","splitRawAct":"0"}';
resp Clob;
Begin
resp := dbo.pkg_order_Transaction.get_order_history (req);
dbms_output.put_line (resp);
End;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-12-23 11:40 PM
Hi Gary Mannion
I would create a stored procedure and pass the input parameter to that stored procedure in blu prism. YOu can use Blue Prism SQL VBO to perform these action.
Not sure whether the requirement is to just pass dynamical value in the package. Can you give more information like what is the file type and any other information which is relevant.
If I answered your query. Please mark it as the Best Answer
Harish Mogulluri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
15-12-23 12:50 AM
Hi gary Mannion,
Instead of creating the package may be use this code in text file and read the text file iand pass into Blue Prism and try whether SQL VBO will work with this code.
If it is working then you will get response in Blue Prism itself.
If I answered your query. Please mark it as the Best Answer
Harish Mogulluri
