Book a Demo

Author Topic: ArchiMate_ApplicationFunction - set abstract flag to true  (Read 3366 times)

naxx

  • EA Novice
  • *
  • Posts: 13
  • Karma: +0/-0
    • View Profile
ArchiMate_ApplicationFunction - set abstract flag to true
« on: February 15, 2017, 10:43:20 pm »
Hello,
How I can set abstact flag to true for ArchiMate_ApplicationFunction?
Method SetAbstract not work.

Thanks for your answers.

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: ArchiMate_ApplicationFunction - set abstract flag to true
« Reply #1 on: February 15, 2017, 10:57:41 pm »
Have you checked the documentation?
It says:
   
Quote
String
Notes: Read/Write
Indicates if the element is Abstract (1) or Concrete (0).

So the following code (vbscript) should work

Code: [Select]
myApplicationFunction.Abstract = "1"
myApplicationFunction.Update

Geert