Can you pull information from the injection template to a flow sheet? i.e. Steroids, Antibiotics, etc. If so, would it be able to pull from the medication administration form to populate which injection was given?
nope, unless you modify a form that write to both field simultaneously.
You can populate this information from CPS or EMR histories view
there should be one view setting in the drop down list called: Immunization History View
Immunizations we've got under control. It's just the regular medication administration HTML
what system you have?
CPS or EMR?
CPS12 just update to service pack 10
You will have to modify HTML/JavaScript to inject your own code to insert data into Observations.
As GE form will be updated in the future, I recommend a very "light" injection with your own JavaScript file and a method call on the save event. This way you will have only 2 point to modify with the new version of GE HTML/JavaScript files.
Here is an example how to add the "HEIGHT" observation (using jQuery and $mdObject):
var currentDate = new Date();
var obsDate = (currentDate.getMonth() + 1) + '/' + currentDate.getDate() + '/' + currentDate.getFullYear();
var height = $("#Height").val();
var heightObs = new $mdObject.Observation();
heightObs.name = "HEIGHT";
heightObs.value = height;
heightObs.date = obsDate;
heightObs.save();