Is it possible to have multiple actions in one site page?

We are trying to streamline the user experience for the user base in our process. They currently use Tempo, but we are considering the possibility of creating a site for them. The users spend about 90% of their time in the Actions tab, and occasionally they will use Reports and Records. They seldom, if ever use News or Tasks.  We would like to create a site with 3 pages (Actions, Reports & Records) and for them to land basically in the Actions tab. 

The page builder allows 1 item per page, this is not achieving our goal since they need to use 13 actions, 9 records and 11 reports and would like to display all of them in each respective page. 

Is this possible by any workaround or design pattern? Any help will be appreciated. 

Thank you, 

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    For List of Actions in Site:

    ---> Create Wrapper interface------ Ex Code:  a!richTextDisplayField(

                    instructions: "Example",

                    labelPosition: "ABOVE",

                    value: {

                      a!richTextImage(

                        image: a!documentImage(

                          document: a!iconNewsEvent(

                            icon: "PERSON",

                            color: "BLUE"

                          )

                        )

                      ),

                      a!richTextItem(

                        text: cons!Test_ACTIONS[1] & char(

                          10

                        ),

                        style: "STRONG",

                        link: a!submitLink(

                          label: cons!Test_ACTIONS[1],

                          value: cons!Test_ACTIONS[1],

                          saveInto: ri!action

                        )

                      )

                    }

                  )

    ---> Create a Wrapper Process Model , and configure this Wrapper interface as start form, configure respective actions in subprocess.

    ---> Now configure this wrapper process model in site, so you find all the list on actions in one page on site.

     

    For Records:

     ---> You can configure only one Record Entity per on tab in site, so it is not possible to show all 9 records in a site.

     

    For Reports:

    ---> Create a Interface, so you can keep all your 11 Reports in one interface, So we can directly configure this Report in site.

     

    Regards,

    Krishna.

Reply
  • 0
    Certified Senior Developer

    For List of Actions in Site:

    ---> Create Wrapper interface------ Ex Code:  a!richTextDisplayField(

                    instructions: "Example",

                    labelPosition: "ABOVE",

                    value: {

                      a!richTextImage(

                        image: a!documentImage(

                          document: a!iconNewsEvent(

                            icon: "PERSON",

                            color: "BLUE"

                          )

                        )

                      ),

                      a!richTextItem(

                        text: cons!Test_ACTIONS[1] & char(

                          10

                        ),

                        style: "STRONG",

                        link: a!submitLink(

                          label: cons!Test_ACTIONS[1],

                          value: cons!Test_ACTIONS[1],

                          saveInto: ri!action

                        )

                      )

                    }

                  )

    ---> Create a Wrapper Process Model , and configure this Wrapper interface as start form, configure respective actions in subprocess.

    ---> Now configure this wrapper process model in site, so you find all the list on actions in one page on site.

     

    For Records:

     ---> You can configure only one Record Entity per on tab in site, so it is not possible to show all 9 records in a site.

     

    For Reports:

    ---> Create a Interface, so you can keep all your 11 Reports in one interface, So we can directly configure this Report in site.

     

    Regards,

    Krishna.

Children
No Data