Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Is there another way to get the code for a snippet and copy it into my script? The snippet to create an infotable from a datashape is not responding when I try to move it over.
Solved! Go to Solution.
var params = {
infoTableName : "InfoTable",
dataShapeName : "yourDataShape"
};
// CreateInfoTableFromDataShape(infoTableName:STRING("InfoTable"), dataShapeName:STRING):INFOTABLE(logErrorAggregateShape)
var result = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape(params);
var params = {
infoTableName : "InfoTable",
dataShapeName : "yourDataShape"
};
// CreateInfoTableFromDataShape(infoTableName:STRING("InfoTable"), dataShapeName:STRING):INFOTABLE(logErrorAggregateShape)
var result = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape(params);
Thanks!! Not sure why some of them won't allow me to add to my script. Maybe I'm due for upgrading to 8.1??
I'm still on 8.0 and it works fine for me. When you click the arrow button it should prompt you to select a DataShape. Does it get that far?
No it doesn't respond at all. The position of my cursor in the script disappears and nothing happens.
Strange... does anything show up in the Application or Script logs? Alternatively, have you tried restarting TomCat? (not sure if that would affect that at all).
I have not tried restarting TomCat (I can). I don' tthink I see anything in the Application logs. Just a bunch of ignores when importing the lab files for the excercises I'm working on.