---------------------------------------------------------------------------------
| 02/06/02 09:50 BATCH GLOBAL PARAMETERS ST BGP |
| Menu...: Student Earnings Rpt Gen Version: 99/10/17 |
| Process: XJAR01 Process Type: Batch |
| Created On: 02/05/02 By: Changed On: 02/06/02 By: |
|------------------------------------------------------------------------------|
| 1 Default Menu ID....: |
| 2 Description........: Student Earnings Rpt |
| 3 VOC Synonyms.......: 1: |
| 4 Release Status.....: R Releasable |
| 5 Release Modules....: 1: 2: 3: |
| 6 * Tech Doc.........: 1: Feb 05 2002 01:18pm |
| 7 Component Type.....: M Main |
| 8 Catalog Disposition: L Local |
| 9 Review Process Only: No |
| 10 Jobstat Cycles.....: |
| 11 Use Bar Graph......: Yes |
| 12 Uses Standard I/O..: Yes |
|----------------------------- Entry Argument List ----------------------------|
| 13 Argument Name Argument Description |
| 1: AL.YEAR Year student worked |
| 2: |
|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX|
---------------------------------------------------------------------------------
| 02/06/02 09:57 REPORT DIMENSIONS ST RDIM |
| Menu: Student Earnings Rpt Process: XJAR01 |
| |
|------------------------------------------------------------------------------|
| 1 Report Type....: V Variable |
| 2 Min/Max Columns: 1 132 |
| 3 Min/Max Lines..: 13 63 |
| 4 Top/Left Margin: 1 1 |
|------------------------------------------------------------------------------|
| 5 Number of Header Lines.......: 3 |
| 6 Number of Footer Lines.......: 0 |
| 7 Number of Column Header Lines: 3 |
| 8 Number of Column Data Lines..: 3 |
| 9 Controlling Data Column Line.: 1 |
| 10 Column Totals Level specifications Roll-up Header Detail Page |
| Description of Level Level Lines Lines Break |
| 1: |
| 2: |
| 3: |
| 4: |
| |
|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX|
---------------------------------------------------------------------------------
| 02/06/02 10:00 REPORT TEXT CONSTANTS ST RTX |
| Menu: Student Earnings Rpt Process: XJAR01 |
| |
|------------------------------------------------------------------------------|
| 1 Use Lin Col Jst Text String |
| 1: H 1 1 L \D |
| 2: H 1 2 C Student Earnings Report |
| 3: H 1 3 R \P3 |
| 4: H 2 1 L \T |
| 5: |
| 6: |
| 7: |
| 8: |
| 9: |
| 10: |
| 11: |
| 12: |
| 13: |
| 14: |
| 15: |
| 16: |
|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX|
---------------------------------------------------------------------------------
| 02/07/02 08:24 REPORT ELEMENT CHARACTERISTIC ST REC |
| Menu: Student Earnings Rpt Process: XJAR01 |
| |
|------------------------------------------------------------------------------|
| Disp Conv |
| 1 * Data Element Name Use Size Just Lin Col Sep Tot String |
| 1: X.CNTRT.STU.ID CD 8* L 1 1 2 |
| 2: VAR1 CD 20* L 1 2 2 |
| 3: X.CNTRT.YEAR CD 4 L 1 3 2 |
| 4: ID 10 R |
| 5: LAST.NAME 25 L |
| 6: FIRST.NAME 15 L |
| 7: MIDDLE.NAME 15 L |
| 8: X.CNTRT.DEPT CD 6 L 1 4 2 |
| 9: X.CNTRT.AWARD.TYPE CD 3 L 1 5 2 |
| 10: X.CNTRT.AWARD CD 10 R 1 6 2 1 |
| 11: X.CNTRT.CAMPUS CD 1 L 1 7 2 |
| 12: |
| 13: |
| 14: |
| 15: |
|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX|
---------------------------------------------------------------------------------
| 02/06/02 10:04 BATCH PROCESS OVERVIEW ST BPO |
| Process: XJAR01 Student Earnings Rpt |
| Changed by: Changed On: 02/06/02 Last Gen Version: 99/10/17 |
|------------------------------------------------------------------------------|
| 1 * Data Element Name Ref Only Global/Local |
| 1: X.CNTRT.STU.ID Yes G Global |
| 2: VAR1 Yes G Global |
| 3: X.CNTRT.YEAR Yes G Global |
| 4: ID Yes G Global |
|------------------------------------------------------------------------------|
| 2 * Basic and Envision Statements |
| 1: V.X.CNTRT.YEAR = AL.YEAR |
| 2: |
| 3: FOR_EACH SELECTED X.CNTRT.STU.ID |
| 4: V.VAR1 = '' |
| 5: V.ID = V.X.CNTRT.STU.ID |
| 6: FOR_EACH REFERENCED ID |
| 7: V.VAR1 = V.LAST.NAME:', ':V.FIRST.NAME:' ':V.MIDDLE.NAME[1,1] |
| 8: END_EACH ID |
| 9: PRINT_DETAIL |
| 10: END_EACH X.CNTRT.STU.ID |
|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX|
Information in the Data Element Name area was entered in the REC screen.
Batch Process Code
V.X.CNTRT.YEAR = AL.YEAR
AL.YEAR was entered in BGP.
V.X.CNTRT.YEAR was entered in REC.
*
FOR_EACH SELECTED CNTRT.STU.ID
V.VAR1 = ''
V.ID = V.X.CNTRT.STU.ID
FOR_EACH REFERENCED ID
V.VAR1 = V.LAST.NAME:', ':V.FIRST.NAME:' ':V.MIDDLE.NAME[1,1]
END_EACH ID
PRINT_DETAIL ITEMIZING X.CNTRT.DEPT, X.CNTRT.AWARD.TYPE, X.CNTRT.AWARD, X.CNTRT.CAMPUS
Add each multivalued field to this line,
using the ITEMIZING keyword.
END_EACH CNTRT.STU.ID
PRINT_TOTAL LEVEL 1
Add the total's level number to the TOT field in the REc Screen.
the REC screen. The help for this field states, "Enter totals
level sequence number where this element's data is summed."
More BPO Batch Process Code
Sample CodeSample REC Info