Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: D2BEA
  • Order by date
  1. D2BEA

    relative

    This is the screen code. CS-HHINFO-CS1-county-EF-ADD-Aft-Procedure. PERFORM COUNTY-CHECK. COUNTY-CHECK. IF HMFN-COUNTY > SPACE move spaces to cl-file, cnty-found MOVE 'COUNTY.TBL ' TO CL-FILE CALL "CNTY-LOC2" USING...
  2. D2BEA

    relative

    Yes, I used exit program and it does go back to the program calling it. Yes, it is finding the county codes Yes, I have testied for invalid-it goes through what seems a loop, like it tests it and states invalid code on the screen, and then it goes to the users screen code field and highlights...
  3. D2BEA

    relative

    It will bring it back to the user field on the screen, but it freezes at that point.
  4. D2BEA

    relative

    Now when it comes bake to the user screen it freezes. Program 1 IF HMFN-COUNTY > SPACE MOVE 'COUNTY.TBL ' TO CL-FILE CALL "CNTY-LOC2" USING HMFN-COUNTY, CNTY-FOUND, HMFN-LOCATION, LOC-FOUND. CANCEL...
  5. D2BEA

    relative

    Yes, at end is not acdeptable according to the compiler. But I am still getting a freeze on the program-I do not know why?
  6. D2BEA

    relative

    I keep getting wrun32 errors (iam using acubench).
  7. D2BEA

    relative

    DOESN'T A RELATIVE FILE USE "INVALID AND NOT INVALID" INSTEAD OF AT END?
  8. D2BEA

    relative

    It is not finding the code the user enters. I put in display and it is reading the tables. I am trying to take what the User enters and check that against a table for verification.
  9. D2BEA

    relative

    I am having problems reading and verifying-what am I doing wrong. one program. PROCEDURE DIVISION using HMFN-COUNTY, HMFN-LOCATION, CNTY-LOC-TABLE, CNTY-LOC-NAME. A000-BEGIN. MOVE SPACES TO countys...
  10. D2BEA

    checking for duplicates and rewrite (cont.)

    I WANT TO THANK ALL OF YOU THAT HELPED ME. I REALLY APPRECIATE IT. Thank you!
  11. D2BEA

    checking for duplicates and rewrite (cont.)

    Okay, I ran the program with different variations searching on: '999999999' and got 1281 '123456789' and got 13 on all ssn with a count of all '999999999' got 1280 on all ssn with a count of all '123456789' got 12 on all ssn's without specifiying a certain ssn and apprently it does not include...
  12. D2BEA

    checking for duplicates and rewrite

    iT IS NOT CATCHING ALL THE DUPLICATE SSN#'S- EXAMPLE I HAVE 20 '123456789' SSN'S BUT ONLY A FEW ARE FOUND.
  13. D2BEA

    checking for duplicates and rewrite

    tHEY ARE JUST FOR ME-HOW MANY RECORDS WERE READ.
  14. D2BEA

    checking for duplicates and rewrite

    Here is the code. FD NEW-HHMF-FILE LABEL RECORDS IS STANDARD VALUE OF FILE-ID IS '\FDPSYS\TABLES\DATA\NEWHMFI.DAT'. 01 NEW-HHMF-REC. 03 NEW-HHMF-KEY PIC X(09). 03 FILLER PIC X(2039). FD ERROR-FILE LABEL RECORDS IS...
  15. D2BEA

    checking for duplicates and rewrite

    aCUTALLY IT DID NOT CATCH ALL THE DUPLICATES. examples: I have 3 duplicate ssn# with all 4's I have 20 duplicate ssn#'s with 123456789
  16. D2BEA

    checking for duplicates and rewrite

    iT DID NOT REWRITE THE RECORD.
  17. D2BEA

    checking for duplicates and rewrite

    tHANKS, THAT WORKED, BUT IT DID NOT CATCH THE FIRST DUPLICATE SSN#. DID I MISS SOMETHING?
  18. D2BEA

    checking for duplicates and rewrite

    i HAVE BOTH HM-SSN AND HM-SSN-2, HM-SSN-2 IS A SHORTER VERSION OF HM-SSN, I JUST DECIDED TO MOVE THE DATA INTO THE NWMAST-DATA-2 WORKING STORAGE FILE INSTEAD OF THE NEWMAST-DATA. tHE SR-OCCURS IS WHAT YOU HAD ME PUT IN, I JUST CALLED IT SR-OCCURS INSTEAD OF SORT-OCCURS.
  19. D2BEA

    checking for duplicates and rewrite

    I TRIED THE PERFORM VARYING STATEMENT AND IT GIVES ME AN ERROR OF SUBSCRIPT OUT OF RANGE ON THE HM-SSN-2 (SR-OCCURS) = SPACES POINT. PERFORM VARYING SR-OCCURS FROM 1 BY 1 UNTIL HM-SSN-2(SR-OCCURS) = SPACES OR SR-OCCURS > 23...
  20. D2BEA

    checking for duplicates and rewrite

    i AM STILL GETTING THE SAME ERROR IN THE SAME SECTION. iT DOES NOT LIKE THE HM-SSN(SR-OCCURS). C103-SSN. DISPLAY 'IN C103-HELP'. DISPLAY 'HM-SSN=' HM-SSN(SR-OCCURS) MOVE HM-SSN(SR-OCCURS) TO ER-ORG-SSN. COMPUTE B-IDX = B-IDX + 1...

Part and Inventory Search

Back
Top