Hello,
I Created my first BRF+ Application and manage to call even the Catalog. Now I want to open it in Display Mode.
I would expect that it could be achieved as follows but that is NOT the case
l_cat_maint_mode = if_fdt_wd_constants=>gc_catalog_mmode_no_maint.
l_enable_structure_change = abap_false.
io_ui_execution->execute_catalog_browser(
EXPORTING
iv_id = <catalog_id> " ID
* iv_timestamp = " Timestamp
iv_maintenance_mode = l_cat_maint_mode " Catalog Maintenance Mode
* iv_enable_structure_change = ABAP_TRUE " True: Enables Structure Change
iv_enable_structure_change = l_enable_structure_change
).
Any suggestions? Where would I find the documentation on those IF's, Classes, Methods, Parameters => so short the API.
Dont see much documentation in the objects itself.
So far seems to me a very nice framework.
Dirk