Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
I have added one column issubscribed to an existing infotable with the following code.
result.AddField({name : "isSubScribed", baseType : "BOOLEAN"});
column added successfully, and when i run that service i got this output which is in attached image. after that i created one mashup for that service also and when i run that mashup am unable to see that column at all on view mashup. i want to to show that column issubscribed on mashup with check boxes and when i check that box that row will get selected and event will be triggered or another service should execute.
Solved! Go to Solution.
Hi @KSM was the datashape also updated? Esp. the DataShape assigned to the Infotable and the one assigned to the output of your service needs to be aware of the new column that you have added to the DataShape used for your Infotable.
Hi @KSM was the datashape also updated? Esp. the DataShape assigned to the Infotable and the one assigned to the output of your service needs to be aware of the new column that you have added to the DataShape used for your Infotable.
Hi Sushant,
Thx for your reply,
Issue get resolved, the field name that mentioned in the datashape and in the service must be the same.