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
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 )
....................
}
)
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
As Harshit Bumb said please refer the document and thread
a!localvariables( local!data:rule!CVMS_vaccinationcenter_INT(district_id:ri!distid,date:ri!date), local!result:index(local!data,"result",{}), local!body:index(local!result,"body",{}), a!gridField( data:local!body, columns:{ a!gridColumn( label:"Vaccination Center Name", value:fv!row.name ) } ))
Default page size is 10.Otherwise provide the number ,How many records you want to display in one page.
pagesize:20, PagingSaveInto:fv!paginginfo
I understood but the problem I am getting is i one row only i am getting all vaccination center name i want to show it in proper manner that this is the vaccination center this is is the vaccine available here and available slot. But i am getting all center name in one row only. How can i show vaccination center name in different rows
See here in center name i am getting both names in one row only i want to show it in different row