This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Disable Tasks in Manager by using Permission Groups

How do I disable (or make unavailable) tasks in Manager Menu ?

Parents Reply
  • Hi Markus,

    After playing around for a few days I think I figured out how to work with Object Definitions in the User Interface in Designer.

    Is there a report I can view of Assigned User Interface Forms (with Captions) for each Object definition ?

    It is very tedious to figure out what each form is used for just by looking at the form name.

    Thanks

    Abraham

Children
  • There is no such report. The easiest way is to start from the object definitions. From the list editor you can either open the overview form for each object definition to get a HyperView shape that lists all assigned forms or you add the table relations for the assigned form to the list editor for the object definitions to get a list of assigned forms for each entry in the list.

    To enable the additional table relation in the list editor, use the View menu.

  • HI Markus,

    I was able to get the report via SQL query in ObjectBrowser using DialogSheet Table.

    select
    ds.Caption,ds.SheetName,
    di.ImageName,
    dlf.DialogFormDefinition,dlf.LogicalFormName
    from DialogSheet ds
    join DialogImage di on di.UID_DialogImage = ds.UID_DialogImage
    join DialogLogicalForm dlf on dlf.UID_DialogLogicalForm = ds.UID_DialogLogicalForm

    Thanks

    AJ