Creating a Static / Dynamic Stamp isn't overly difficult. But I seem to being having trouble with the script needed to prompt for data entry to complete it. I found / followed a decent YT video on the matter and after creating a basic Static Stamp, started working on the Dynamic Stamp.

Create Dynamic Stamp

After some initial issues with the script, I found that I had missed one symbol; that corrected Adobe was happy and moved forward. And over all, the process works as expected. Only when prompted for entry nothing is placed into the stamp and the other field are not prompted for.

if ((event.source.forReal)&&(event.source.stampName =="#PatientTest")) { this.getField("Patient Name").value = app.response("Patient Name:"); this.getField("Date of Birth").value = app.response("Patient DOB:"); this.getField("Patient ID").value = app.response("Patient ID:"); }

Despite the fact that it isn't working - I'm pretty satisfied with the result thus far. Back to searching why it isn't (seemingly) working.

OP Edited also.