Hello, i have a formal business document that i'm generating, which acquires information from various places in ARIS. I only have 1 thing left that i cant figure out how to do.
I want to embed an Excel document/template inside the Word document that i'm generating with the script. The alternative is to store the template on a server with a fixed url and create a link as i have below:
g_ooutfile.BeginTable(100, Constants.C_BLACK, Constants.C_TRANSPARENT, Constants.FMT_LEFT, 0); g_ooutfile.TableRow(); g_ooutfile.TableCellF("Embedded Document", 30, "CoverHeadB"); g_ooutfile.TableCellF("", 70, "TableNormal"); g_ooutfile.OutputLink("See: Name","Link"); g_ooutfile.EndTable("", 100, sFont, 10, Constants.C_BLACK, Constants.C_TRANSPARENT, 0, Constants.FMT_LEFT, 0); g_ooutfile.OutputLnF("\n", "TableNormal");
but then the business users will have more than 1 document, which is not desirable.
Has anyone done this? Is it possible?