To generate the business layer, run the following statement:
begin
<applicatie code>_sct_generate.run('&&bubs_usr', '&&bubs_user_role‘,’&&bubs_user_reader_role');
end;
/
The generation process checks all parts of the business layer to see if changes should be made. This takes approximately 2 to 5 seconds per business object. For large systems this can be slow and hinder the development process. Therefore you can use the following call:
begin
<applicatie code>_sct_generate.run('&&bubs_usr', '&&bubs_user_role‘,’&&bubs_reader_role', 'PATROON');
end;
/
For example consider the following statement to update all business objects with ‘project_saldo_vnr’ in the name:
begin
bubs_sct_generate.run(user, user || '_USER', user ||'_READER', 'project_saldo_vnr');
end;
/