Answer Posted / pnprasad
Hardcoding example:
data endstudy;
set endstudy;
if subjid = “xxxxxx” then
discterm = “Death”;
run;
it is known from non-database sources that at study
termination, subject
“xxxxxx” died.
With hardcoding there is no clear audit trail of data
change and CFR 21 – Part 11 controls might be considered
compromised.
Improved Hardcoding example;
data endstudy;
set endstudy;
**** HARDCODE APPROVED BY DR."nnn" AT SPONSOR ON 02/02/2008;
if subjid = “xxxxxx” and “&sysdate” <= “01MAY2005”d then
do;
discterm = "Death";
put “Subject “ subjid “hardcoded to termination reason”
discterm;
run;
For instance, there may be an upcoming data safety
and monitoring board (DSMB) or independent data monitoring
committee (IDMC)meeting where the clinical trial must be
monitored for safety information using the best
available data.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are types of transport files?
What is the use of the %include statement?
Mention the validation tools used in SAS?
how would you create multiple observations from a single observation? : Sas programming
What’s the difference between var b1 – b3 and var b1 — b3?
do you need to know if there are any missing values? : Sas programming
what is sas database server? : Sas-di
Mention what is the difference between nodupkey and nodup options?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
What are the differences between proc means and proc summary?
How do you use the do loop if you don’t know how many times you should execute the do loop?
How to specify variables to be processed by the freq procedure?
Which are the statements whose placement in the data step is critical?
what are 5 ways to perform a table lookup in sas? : Sas-administrator
I have a dataset concat having a variable a b & c. How to rename a b to e & f?