Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
I have an issue while binding the output of my service to the dropdown widget.
This is my service below when I execute it by clicking on 'play' button it gives me my desired output.
let alldata = Things["Paitent_Data_Table"].GetDataTableEntries();
let params = {
t: alldata /* INFOTABLE */,
columns: "Paitent_Name" /* STRING */
};
// result: INFOTABLE
result = Resources["InfoTableFunctions"].Distinct(params);
but when I add this service to the 'data tab' in mashup builder and when I expand all data tab of this service I am not getting data over there. but this is happening only for this service the other services are working properly.
Solved! Go to Solution.
Can u check if u have defined a Datashape for the output infotable
Can u check if u have defined a Datashape for the output infotable
Thank very much for your response sir. It is working now. I didn't saw that small mistake.