Calling an Child Interface from Parent Interface

My Child Interface has Submit and Cancel Button. It has File Upload functionality. Below are the 2 Rule Inputs it has:

  • Cancel Rule Input (Type Boolean)
  • excelData Rule Input (Type Document)

I have a Parent Interface which uses Navigation, in one of the Navigation link I need to have this Child Interface appear. I was using rule!Child Interface, but its asking me to pass 2 parameters. Can you please help me on how I can pass those 2 parameters from Parent Interface?

Regards,

Mahesh

  Discussion posts and replies are publicly visible

Parents Reply
  • Hi Mike,

    Below are the parameters for my 2 buttons on the child Interface, please advise if you notice anything off here. Process Model for the child Interface works fine when I have tested it.

    a!buttonWidget(
    label: "Cancel",
    value: true,
    saveInto: ri!Cancel,
    submit: true(),
    style: "OUTLINE"
    ),
    a!buttonWidget(
    label: "Submit",
    value: false,
    saveInto: ri!Cancel,
    submit: true(),
    style: "OUTLINE"
    )

Children
No Data