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: *

  1. nixie21

    COBOL numberic conversion S999V99

    Think I found the problem. The file is in EBCDIC, I have to convert the values to ASCII. Thanks
  2. nixie21

    COBOL numberic conversion S999V99

    Yes, from a file and correctly defined. The value of 0050{ is showing as 30 30 35 30 7B - is this what you needed?
  3. nixie21

    COBOL numberic conversion S999V99

    Doing a straight display without moving or changing the field at all shows 00511- which means that the file is not being read correctly by COBOL? I cant get mediafire to display my screenshot of the file, but the value in the file looks like - 0050{ Cobol does a read and then a display without...
  4. nixie21

    COBOL numberic conversion S999V99

    Ok, I am working on a HP-UX machine (if that matters) I read the record and for a test did this: i-fine-amt pic S999V99 sum-amt-vl pic 9(3)v99 move i-fine-amt to sum-amt-vl. display i-fine-amt " " sum-amt-vl. The display is: 00511- 00511 How can i-fine-amt = 00511- if defined as...
  5. nixie21

    COBOL numberic conversion S999V99

    I have a input file with values defined as S999V99. In the input file one field shows as 0050{ I move this to a field defined as S999V99 I display this field in my program and it looks like 00511- If I say sign is trailing, I get the same result. How do I deal with this? Thanks
  6. nixie21

    String numeric value into pipe delimited without leading zeros?

    OK, I got it... I did this 01 ws-hold-fine2 pic 999.99. 01 ws-hold-fine3 pic x(6). Then I did move ws-hold-fine to ws-hold-fine2. if ws-hold-fine2 (1:1) = '0' move ws-hold-fine2 (2:5) to ws-hold-fine3 else...
  7. nixie21

    String numeric value into pipe delimited without leading zeros?

    Maybe I am missing something? 01 ws-hold-fine2 pic zz9.99. Say the value is 10.00 The below code will look like AAAAA|SDSSSS| 10.00| The spaces is killing me!!! THANKS move zeros to ws-hold-fine2. move ws-hold-fine to ws-hold-fine2...
  8. nixie21

    String numeric value into pipe delimited without leading zeros?

    How can I do this? I have a value defined pic 999.99 (or even zz9.99). If the value is 60.00 I need to string the value as |60.00| How do I do that in my string command? I always get |060.00| or | 60.00| Thanks so much!
  9. nixie21

    Cobol unstring - is it possible 2 different delimiters?

    My code did work, the 1st unstring was delimited by a space. The 2nd was delimited by 2 spaces. Thanks!
  10. nixie21

    Cobol unstring - is it possible 2 different delimiters?

    Thanks for the replies. I was able to get it to work with the following code: move 0 to ws-pos1. unstring c-addr delimited by ' ' into pacc-house-no count in ws-pos1. add 1 to ws-pos1. unstring c-addr delimited by ' ' into...
  11. nixie21

    Cobol unstring - is it possible 2 different delimiters?

    Here is my problem. I have a file the field in question looks like this 13 main st 134 red rd 2 main road 952A north land I want the 1st part in one field and the 2nd in another. I can not do unstring delimited by ' ' because the second field will only have the 1st word. I then tried this...
  12. nixie21

    SAV ccapp, trying to email Brazil?????

    Thanks for your help as I think I know what happened. My son was using Emule (P2P) I have read now that some people with ZA have had the same problem. It seems that some emule users set the P2P to use 'email' ports and ZA mistakes a request for a file as outgoing mail... Thanks for your help...
  13. nixie21

    SAV ccapp, trying to email Brazil?????

    Not sure, the computer is usually very safe. I contacted my ISP and they said it sounded very fishy as that is not thier IP. Thanks
  14. nixie21

    SAV ccapp, trying to email Brazil?????

    The last couple of days, zonealarm is alerting me that ccapp is trying to transmit email to an ip in brazil ANY IDEAS Msg = email client program Symantec User session is trying to transmit emails ccapp.exe destination = 200.195.88.163:SMTP I have scanned with SAV, a squared, trojan hunter...
  15. nixie21

    Symantec corporate 10.0.1.1000 EXTREMELY fast scan???

    I have under fily types, all types checked with no exclusions, also to scan compressed files. I believe these were the default settings. the thottle is low (I never changed it) I have found (symantec website) that others have this problems as well (2-3 people I saw) But no response on what...
  16. nixie21

    Symantec corporate 10.0.1.1000 EXTREMELY fast scan???

    I installed this and when I run a FULL scan (all files) it is taking less than 7 minutes. On version 9 it took about a 1/2 hour..... I have confirmed that I am scanning ALL files. I also ran a custom scan just to make sure BOTH drives were to be scanned and that also took less than 7 minutes...

Part and Inventory Search

Back
Top