Skip to main content
15-Moonstone
July 14, 2018
Solved

after adding a new column in an existing infotable and how should I update that column with data

  • July 14, 2018
  • 1 reply
  • 2623 views

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.

Best answer by supandey

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.

1 reply

supandey5-Regular MemberAnswer
5-Regular Member
July 17, 2018

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.

KSM15-MoonstoneAuthor
15-Moonstone
July 17, 2018

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.

5-Regular Member
July 17, 2018
Indeed