Schema name app variable

Is there an app variable for schema name chosen for entity?
I need to use it in after script. For example:

INSERT INTO <%Schema%>.<%Name%> (…) VALUES (…)

Of course <%Schema%> doesn’t work - it’s my desire.

Best regards

You can use

INSERT INTO <%FullName%> (…) VALUES (…)

Regards,

Vladka + TDM Team

Hi Michal,