How to load a interface with record type object in Appian 19.4

Certified Senior Developer

HI , 

I wanted to display a single record of Record type object on loading of interface . For example i have Employee record object, User has to see their record on loading of screen .

can we achieve without recordLink . 

  Discussion posts and replies are publicly visible

Parents Reply
  • +1
    Certified Senior Developer
    in reply to sugasanr0001

    Then it is more question of how to structure your form and process than a real display issue.
    1.) if you leave a form via submit, you leave the form and it is realoading the initial status from scratch. (basically spoken) -> perhaps try a search button on the same form without submitting it and just switching via showwhen conditions between the different views (perhaps take a local variable with a bool value as identifier of the content to show.
    2.) if a submit is necessary, save your search data in a rule input, bring it into your process and refill it afterwards again as initial content of your search. perhaps you can create an if clause with "isnull()" check for values in your rule input. If there is any, take them and search, if not take your current not loaded situation.

Children