Search found 1794 matches

by Gregory Martin
April 19th, 2017, 12:30 pm
Forum: Entry
Topic: Creating a Variable to Concat and Export a Daily Data
Replies: 3
Views: 4547

Re: Creating a Variable to Concat and Export a Daily Data

I'm not sure what you mean, but if you're looking to run a PFF file that concatenates and exports data, that is possible. Say you have a menu program, you could write logic like this: execpff ( "Concatenate Data.pff" ,wait); execpff ( "Export Data.pff" ,wait); You would have to e...
by Gregory Martin
April 17th, 2017, 12:15 pm
Forum: Other
Topic: Unexpected ending CSBatch
Replies: 3
Views: 4432

Re: Unexpected ending CSBatch

We've heard of this happening in the past. Can you use the CSPro 7.0 beta and see if it still happens:

http://csprousers.org/beta/

I assume that you have OLD_TABS = Y set in your environment variables?
by Gregory Martin
April 17th, 2017, 12:07 pm
Forum: Entry
Topic: Export using RELATION
Replies: 2
Views: 2827

Re: Export using RELATION

Unfortunately, this is a bug. We'll fix it for CSPro 7.0. It occurs if you export a data item that doesn't have a decimal point and when that item is blank (notappl) in the data file. This happens in your file in V406 and V407. This works: export to f2 case_id (HHEA,HHNUM,M1_LINE(i)), MOD_1B, MOD_1 ...
by Gregory Martin
April 17th, 2017, 11:35 am
Forum: Feature Requests
Topic: Exporting serval value sets
Replies: 2
Views: 3622

Re: Exporting serval value sets

There is no way to do this right now. What most people do is have their first value set include all codes, and then they break up their value sets on the second, third, etc. value sets. So you would have:

Value Set 1: A, B, C, D
Value Set 2: A, B
Value Set 3: C, D
by Gregory Martin
April 13th, 2017, 11:15 am
Forum: Editing
Topic: Batch to catch spesific Case ID
Replies: 10
Views: 12193

Re: Batch to catch spesific Case ID

The batch output will keep any inconsistent or dirty data, but it will make your sure that your data is structurally correct. For example, if you have a record that has a maximum number of occurrence of 10, but your data file has a case with 15 occurrences, the batch output will NOT contain 15 occur...
by Gregory Martin
April 12th, 2017, 1:39 pm
Forum: Editing
Topic: Batch to catch spesific Case ID
Replies: 10
Views: 12193

Re: Batch to catch spesific Case ID

You put that code in the application-level PROC, which gets run only one for your whole run. You need to put the code in a PROC that gets run for every case. See below: PROC ABC_QUEST preproc if not RESP_ID in 1 , 3 , 10 , 50 , 97 then skip case ; endif ;
by Gregory Martin
April 11th, 2017, 8:03 pm
Forum: Entry
Topic: Lookup file
Replies: 4
Views: 4809

Re: Lookup file

Wow, that is great sleuthing! I'm glad that you found a solution to the problem.
by Gregory Martin
April 7th, 2017, 1:29 pm
Forum: Tools
Topic: Tools to Direct Change Duplicate ID Number
Replies: 6
Views: 12654

Re: Tools to Direct Change Duplicate ID Number

In addition to what you posted, can you post the batch application that you used to change the IDs? I would like to see the data file with the changed IDs. The dictionary in what you posted, myproj.dcf, has an ID of length 1, but the listing messages that you posted have an ID of length 3, so someth...
by Gregory Martin
April 5th, 2017, 9:19 am
Forum: Tools
Topic: Tools to Direct Change Duplicate ID Number
Replies: 6
Views: 12654

Re: Tools to Direct Change Duplicate ID Number

You can run CSPro batch applications on files that have duplicate IDs, so with logic you could convert the ID. but you have to decide what rules you want to use to generate the new ID. See attached for an example of how to do this. I assume that an ID like 999999 is unused and then assign that to du...