Try to find way to add rows to table type that not empty without removing content.
CREATE TYPE "TPU"."TYP_ACTION" AS TABLE
("ID" BIGINT CS_FIXED,
"NAME" NVARCHAR(255) CS_STRING)
declare actions "TPU"."TYP_ACTION";
The only way i found is:
actions=select 1 as id, null as name from dummy;
But in this case the previous content of actions will be removed.