Pls Help Checks in data entry

Discussions about CSEntry
Post Reply
ikwamena
Posts: 11
Joined: July 17th, 2014, 2:08 pm

Pls Help Checks in data entry

Post by ikwamena »

I am new to cspro and have designed a form that have the variables - T1,T2,P1,P2 in a roster i want to sum T1&T2 as entry for variable T3 andd P1 & P2 to P3 in the roster of five ocurence. I then want to sum T3 & P3 to TP.
T3 , P3 and TP will come as protected field.
Pls my intention is to see T3,P3 & TP autocalculated & protected.
manojsoni
Posts: 23
Joined: November 22nd, 2012, 11:55 pm
Location: Jaipur, India

Re: Pls Help Checks in data entry

Post by manojsoni »

This logic will help you out.

Proc P3
Preproc
P3=P1+P2;
Noinput;


Proc T3
Preproc
T3=T1+T2;
Noinput;

Proc TP
Preproc
TP=P3+T3;
Noinput;


Manoj Soni, India
m9jiihmr@gmail.com
ikwamena
Posts: 11
Joined: July 17th, 2014, 2:08 pm

Re: Pls Help Checks in data entry

Post by ikwamena »

Thanks manoj soni, i tried the codes it gives me an error wen i compile it.
"the error reads Postproc clause expected...
Gregory Martin
Posts: 1796
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: Pls Help Checks in data entry

Post by Gregory Martin »

Manoj's code looks okay. Are you putting each section of logic into the appropriate PROC for the three fields? If you're still having a problem, perhaps you can upload all your logic and we can take a look at it.
ikwamena
Posts: 11
Joined: July 17th, 2014, 2:08 pm

Re: Pls Help Checks in data entry

Post by ikwamena »

Thanks Gregory , I have attached the application for your assistance. In section B, I want to added permanent males to females that will be total permanent and should be protected field without entry. I want to do the same for the temporary male and female to have total temporary. Then then the grand auto computed. The grand to should be equal to E1. (the total persons employed)
Attachments
BusinessRegister.zip
(14.99 KiB) Downloaded 330 times
manojsoni
Posts: 23
Joined: November 22nd, 2012, 11:55 pm
Location: Jaipur, India

Re: Pls Help Checks in data entry

Post by manojsoni »

Hi

I have sent a compressed file .rar. Unzip the file and you will find a file named BusinessRegister.ent.app

Replace this file in your application. And see , it should work.

Also see , where did I put the logic.

Manoj
Attachments
File to replace.rar
(507 Bytes) Downloaded 343 times
ikwamena
Posts: 11
Joined: July 17th, 2014, 2:08 pm

Re: Pls Help Checks in data entry

Post by ikwamena »

thanks very much... it worked
can you recommend any training for me to learning more on CSPRO checks
manojsoni
Posts: 23
Joined: November 22nd, 2012, 11:55 pm
Location: Jaipur, India

Re: Pls Help Checks in data entry

Post by manojsoni »

We are doing a workshop on cspro on August 19-22 , 2014 see the link below.

http://www.phfi.org/component/jcalpro/view/176/456

Ask about it, if any query.
Thanks
Manoj
Post Reply