i need to delete the record after the record that has status ='y'
data out;
input source $2. target $2. type $5.;
datalines;
a b temp
b c temp
c b temp
b d perm
;
run;
data out1( drop=type rename=(source=source1 target=target1));
set out(firstobs=2);
run;
data new;
merge out out1;
run;
data new1(keep=status source target type);
length status $10. ;
set new ;
if target1=source and source1 =target and type ='temp'
then status = 'Y';
else status= 'n';
run;
... View more
this never worked earier on the system, now customer is asking for this utility. it is for every one single and group of user. where should i found that logs we did not see any error message poup .
... View more
from where i can get information about Forecast project new product forecast PIPO CPW Financial management form sets like who create, who modify, start date of modification, end date to use them as report in VA
... View more
in FAW need to Know the number that equal the status of error status like 4=submitted 1=created 0=promoted need the number that equal error status.like this
... View more