Not able to pass value from parent interface to child interface?

Hi Team,

I have 2 interface one is parent and another is child interface.

From child interface i am submitting the form and found that value is not passing from child to parent.

I am using same rule input for both parent and child.

help me on this to get the solution.

Thanks,

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    Can you provide some screenshot / code of your way of implementation ?

    Also, did you try to test the interfaces individually, as in does the rule input gets updated in the parent / child interfaces

  • PARENT INTERFACE

    rule!RLM_section_updateAssignee(
    requestId: ri!requestId,
    buttonValue: ri!buttonValue,
    requestData: ri!requestData,
    comments: ri!comments
    )

    CHILD INTERFACE

    a!paragraphField(
    label: "Comment",
    instructions: "(" & 255 - len(ri!comments) & ")",
    value: ri!comments,
    saveInto: a!save(ri!comments,save!value),
    refreshAfter: "KEYPRESS",
    readOnly: false()
    ),

    I want to pass the comment value from child to parent which I am going to use in process model.

    I have test interface individually and it is working fine, but value is not passing from child interface

Reply
  • PARENT INTERFACE

    rule!RLM_section_updateAssignee(
    requestId: ri!requestId,
    buttonValue: ri!buttonValue,
    requestData: ri!requestData,
    comments: ri!comments
    )

    CHILD INTERFACE

    a!paragraphField(
    label: "Comment",
    instructions: "(" & 255 - len(ri!comments) & ")",
    value: ri!comments,
    saveInto: a!save(ri!comments,save!value),
    refreshAfter: "KEYPRESS",
    readOnly: false()
    ),

    I want to pass the comment value from child to parent which I am going to use in process model.

    I have test interface individually and it is working fine, but value is not passing from child interface

Children