Master Deep Linking in PowerApps: The Ultimate Guide - 2024

Поділитися
Вставка
  • Опубліковано 2 гру 2024

КОМЕНТАРІ • 11

  • @StephMarshall
    @StephMarshall  4 місяці тому

    Code Snippets
    *StartScreen*
    Switch(
    Param("screenname"),
    "Manager",
    ScreenDetails,
    "Admin",
    ScreenGallery,
    "Submitter",
    ScreenDetails,
    ScreenNew
    )
    *OnStart*
    //Deep Linking
    If(
    !IsBlank(Param("ID")),
    Set(
    varThisItem,
    LookUp(
    {LIST NAME},
    ID = Value(Param("ID"))
    )
    );
    Switch(
    Param("screenname"),
    "Submitter",
    Set(
    varFormMode,
    FormMode.View
    ),
    "adminReview",
    Set(
    varFormMode,
    FormMode.Edit
    )
    )
    );
    //Set Tabs
    If(
    Param("screenname") = "Submitter",
    ClearCollect(
    colTab,
    {
    Name: "Employee Details",
    Order: 1
    }
    ),
    ClearCollect(
    colTab,
    [
    {
    Name: "Employee Details",
    Order: 1
    },
    {
    Name: "Department Mgr/Director",
    Order: 2
    },
    {
    Name: "HR",
    Order: 3
    },
    {
    Name: "Notes",
    Order: 4
    }
    ]
    )
    );

  • @pinkiepink1797
    @pinkiepink1797 17 годин тому

    That's useful for me
    and Can i ask about how can I know who holds which position that you assigned on the startscreen? How should I set it?

  • @augustusmokoka1100
    @augustusmokoka1100 4 місяці тому +1

    thank you so much.after months and months struggling with this.The old videos from others dont work anymore

  • @giovanninieto3628
    @giovanninieto3628 3 місяці тому

    God bless your work. :)

    • @giovanninieto3628
      @giovanninieto3628 3 місяці тому

      Works for the most part on what screen the deeplink sends you too. However, I have a vertical gallery and galselected on one screen to view and edit a record. The process in the video is clear but my set-up didn't work with it 100% :(

    • @StephMarshall
      @StephMarshall  3 місяці тому

      If you want to share your code, I can help you with troubleshooting!

  • @Ray-cm5is
    @Ray-cm5is 4 місяці тому

    Great video Steph. Came here from reddit.

  • @buddy2hof
    @buddy2hof 4 місяці тому

    This video really helped me navigate my users to the correct page of my app. I noticed your app has the ability to open past entries. My app has 5 pages that will be shared amongst 3 different departments of my office. All the data the users enter into the app gets saved to a SharePoint list I’ve made for each separate page. Do you have any advice for me on how to make the data entered onto the app reappear when the next user in the workflow clicks the link to the app? Thanks for the great video.

    • @StephMarshall
      @StephMarshall  4 місяці тому

      You can set a refresh of the data set or collect the data on successful form submission. If you give me more details I can whip up a demo 😎