How to show integration object to user

Certified Senior Developer

Hello Everyone I am new into appian. I have used an integration object which shows me different vaccination centers available near by me and type of vaccination and availability and all the other things. I want to show this result to user in proper way in interface that this are the vaccination center name and type of vaccine in a proper way. But I dont know how to show integration object in interface and how to show the result in proper way like all vaccine center name then type of vaccine in that hospital. Please help me 

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

     Call the integration object in the interface and use the data in the grid.

    a!localvariables(

    local!data: rule!CVMS_vaccinationcenter_INT(district_id:ri!distid,date:ri!date),

    a!gridField(
              data:local!data,
              columns:{
                 a!gridColumn(
                    label:"Center Id",
                    value:fv!row.center_id
                 ),
               a!gridColumn(
                  label:"Center Name",
                  value:fv!row.name
                )

    ....................

             }

    )

    )

  • 0
    Certified Senior Developer
    in reply to Prin18

    Done the same way you said but it is not showing can you please see and tell me what i need to add or change.

    Can you please see and tell me what i need to change

Reply Children