Well I have an dynamic variable
private_table_name VARCHAR2(100) := 'test';
test is the name of the table.
Now I want to insert into the table with this satatement.
INSERT INTO private_table_name VALUES (employee_rec.employee_id, concaternate_employee_name(employee_rec.employee_id), employee_rec.salary * 1.10);