I have a question about service contracts. What is the
method to change a ac_sc_msg_type that has been already
defined in the system.
Example, I like to change...
foo := acs_sc_msg_type.new (
msg_type_name => 'foo_name',
msg_type_spec => 'foo_var:string'
);
to
foo := acs_sc_msg_type.new (
msg_type_name => 'foo_name',
msg_type_spec => 'foo_var1:string,foo_var2:string'
);
Is there a function that can be used to do this easily?
Thanks for any tips.