Edit Pre-entries (Lookup file)
Posted: October 1st, 2015, 10:13 am
Hello everyone,
I am facing some difficulties with editing entries which are created by an external dictionary (information from the last year). How am I able to edit pre-entries, because cspro always changes them back the way they were before in my external file? Is it also possible to see it in the data when an enummerator (we're using android tablets) edited a pre-entry?
It is a roster with business assets (machines) and it should be possible to edit the entries from last year, because there might have occured faults during data entry last year.
PROC F1AM
preproc
if loadcase(PRE_ENTRIES_REGU_BA_MA_DICT, LISTING) = 1 then
numeric i;
do i = 1 while i <= count(PRE_ENTRIES_REGU_BA_MA_DICT.PRE_ENTRIES_REGU_BA_MA_REC)
F1AM (i) = MA_F1AM (i) ; //Machine Name
F1BM (i) = MA_F1BM (i) ; //Acquistion year
F1C1M (i) = MA_F1C1M (i) ; //Quantity last year, which is followed by a question concerning the current quantity
F1DM (i) = MA_F1DM (i); //Ownership status
F1E1M (i) = MA_F1E1M (i) ; // Value of machince last year, which is followed by a question concerning the current value
enddo;
endif;
Thank you very much in advance for your help
Philipp
I am facing some difficulties with editing entries which are created by an external dictionary (information from the last year). How am I able to edit pre-entries, because cspro always changes them back the way they were before in my external file? Is it also possible to see it in the data when an enummerator (we're using android tablets) edited a pre-entry?
It is a roster with business assets (machines) and it should be possible to edit the entries from last year, because there might have occured faults during data entry last year.
PROC F1AM
preproc
if loadcase(PRE_ENTRIES_REGU_BA_MA_DICT, LISTING) = 1 then
numeric i;
do i = 1 while i <= count(PRE_ENTRIES_REGU_BA_MA_DICT.PRE_ENTRIES_REGU_BA_MA_REC)
F1AM (i) = MA_F1AM (i) ; //Machine Name
F1BM (i) = MA_F1BM (i) ; //Acquistion year
F1C1M (i) = MA_F1C1M (i) ; //Quantity last year, which is followed by a question concerning the current quantity
F1DM (i) = MA_F1DM (i); //Ownership status
F1E1M (i) = MA_F1E1M (i) ; // Value of machince last year, which is followed by a question concerning the current value
enddo;
endif;
Thank you very much in advance for your help
Philipp