Name
BPEL.BPEL.script_source_update — Updates an existing script in BPEL repository
Synopsis
| 
              BPEL.BPEL.script_source_update
            ( | in scp_id int , | 
| in url varchar , | |
| in 
content
   any ); | 
Parameters
scp_id
int the ID of the BPEL script to be updated with new source
url
varchar the URL to the script source
content
any as an alternative this is to specify script source directly.
Return Types
This function does not return a value
Description
                BPEL.BPEL.script_source_update
     is used to update the script source of an already uploaded script. The script must be in edit mode in order to do that. The URL and content parameters works as in script_upload.
Examples
Example 24.645. Simple example
	  SQL> BPEL.BPEL.script_source_update (1, 'file:/LoanFlow.bpel', null);
          Done. -- 10 msec.
      
        