Hi Sourabh,
In your table OSFRK_OSUSR_U38_APPLYJOBNEW , it has a foreign key reference to another table. The way a FK works is it cannot have a value in that column that is not also in the primary key column of the referenced table.
You can check your database. See which column that FK is on, and which column of which table it references. You're inserting some bad data.
Let me know if you need a better explanation