Previous Next

REMOVE-SUPER-PROCEDURE( ) method
Dissociates a super procedure file from a procedure file or from the current ABL session. Returns FALSE for a Web service procedure.
Note:
Return type:
Applies to:
 
Syntax 
REMOVE-SUPER-PROCEDURE ( super-proc-hdl  )
super-proc-hdl
A handle to the super procedure.
Note:
If super-proc-hdl is not a valid procedure handle or is not currently a super procedure of the local procedure or of the current ABL session, the AVM does not report a run-time error.
REMOVE-SUPER-PROCEDURE returns FALSE if super-proc-hdl is not a valid handle. Otherwise, it returns TRUE.
The following code fragment dissociates a super procedure from the current procedure:
 
THIS-PROCEDURE:REMOVE-SUPER-PROCEDURE(my-super-proc-hdl).
The following code fragment dissociates a super procedure from a procedure file other than the current procedure:
 
local-proc-hdl:REMOVE-SUPER-PROCEDURE(my-super-proc-hdl).
The following code fragment dissociates a super procedure from the current ABL session:
 
SESSION:REMOVE-SUPER-PROCEDURE(my-super-proc-hdl).

Previous Next
© 2013 Progress Software Corporation and/or its subsidiaries or affiliates.