how can i add two interfaces in one summary view

Certified Associate Developer

if(
'recordType!{3a147a0e-d35e-4fa0-96f7-d91590fdf68d}NZP Maintenance.fields.{b3c7019a-c216-42e6-b725-b7c67abec412}requestType'="Medical",
rule!NZP_DASH_MaintenanceSummaryView(maintenance: rv!record),
rule!NZP_DASH_MaintenanceSummaryViewForPen(maintenance: rv!record)
)


  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to mdqudrathullahs4011

    Sure. You just need to reference the record field like in the record title configuration:

    This is the name of the field

    'recordType!{3a147a0e-d35e-4fa0-96f7-d91590fdf68d}NZP Maintenance.fields.{b3c7019a-c216-42e6-b725-b7c67abec412}requestType'

    This is the value of that field in a specific record data structure

    rf!record['recordType!{3a147a0e-d35e-4fa0-96f7-d91590fdf68d}NZP Maintenance.fields.{b3c7019a-c216-42e6-b725-b7c67abec412}requestType']

Children