IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Extract the records with a PD field's value greater than 1


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sudhakar84

New User


Joined: 20 Jun 2008
Posts: 25
Location: chennai

PostPosted: Mon Apr 02, 2018 7:26 pm
Reply with quote

I have to extract the records with a PD field which have value greater the 1.
The file is FB file. When I use the below condition it is extracting the records greater then or equal to 1. Could you please let me know why ?

Include cond=(1,8,pd,gt,1)
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Mon Apr 02, 2018 8:23 pm
Reply with quote

sudhakar84,

I would try verifying some of the records manually in HEX-mode if those are really 8 byte packed decimal data starting at position-1.

Can you post some sample data here (in HEX mode)?
Back to top
View user's profile Send private message
sergeyken

Senior Member


Joined: 29 Apr 2008
Posts: 2021
Location: USA

PostPosted: Mon Apr 02, 2018 9:01 pm
Reply with quote

In your output, print the actually extracted fields both in decimal, and hexadecimal formats. One cannot guess about your data without exact details.
Code:
 OUTREC FIELDS=(C'DEC=',1,8,PD,TO=ZD,
                C' HEX=',1,8,HEX)
Back to top
View user's profile Send private message
sudhakar84

New User


Joined: 20 Jun 2008
Posts: 25
Location: chennai

PostPosted: Tue Apr 03, 2018 7:17 am
Reply with quote

The declaration of field in cobol is s9(13)v9(2) comp-3
Back to top
View user's profile Send private message
sergeyken

Senior Member


Joined: 29 Apr 2008
Posts: 2021
Location: USA

PostPosted: Tue Apr 03, 2018 7:44 am
Reply with quote

sudhakar84 wrote:
The declaration of field in cobol is s9(13)v9(2) comp-3

In order to debug or fix your code, you need to check NOT THE FIELD DECLARATION, but THE ACTUAL PHYSICAL VALUE OF THE FIELD to be sorted/selected.
This is classical routine job in programming, known since... 50 years.
Back to top
View user's profile Send private message
sudhakar84

New User


Joined: 20 Jun 2008
Posts: 25
Location: chennai

PostPosted: Tue Apr 03, 2018 9:48 am
Reply with quote

sergeyken wrote:
sudhakar84 wrote:
The declaration of field in cobol is s9(13)v9(2) comp-3

In order to debug or fix your code, you need to check NOT THE FIELD DECLARATION, but THE ACTUAL PHYSICAL VALUE OF THE FIELD to be sorted/selected.
This is classical routine job in programming, known since... 50 years.


I totally understand your point. The problem is that I cannot post data from my organization. that will result in loosing my job icon_sad.gif

Kindly let me know if there is a decimal place of 2, do i need to do any correction in my include condition ?

Include cond=(1,8,pd,gt,1)
Back to top
View user's profile Send private message
dneufarth

Active User


Joined: 27 Apr 2005
Posts: 419
Location: Inside the SPEW (Southwest Ohio, USA)

PostPosted: Tue Apr 03, 2018 10:19 am
Reply with quote

Did you at least view the 8 bytes in HEX and verify they are valid 15 digit numeric values?
Back to top
View user's profile Send private message
dneufarth

Active User


Joined: 27 Apr 2005
Posts: 419
Location: Inside the SPEW (Southwest Ohio, USA)

PostPosted: Tue Apr 03, 2018 10:20 am
Reply with quote

Eliminated dup post.
Back to top
View user's profile Send private message
sergeyken

Senior Member


Joined: 29 Apr 2008
Posts: 2021
Location: USA

PostPosted: Tue Apr 03, 2018 5:57 pm
Reply with quote

sudhakar84 wrote:
The problem is that I cannot post data from my organization. that will result in loosing my job icon_sad.gif

Kindly let me know if there is a decimal place of 2, do i need to do any correction in my include condition ?

Include cond=(1,8,pd,gt,1)

1. You can verify the tested value printed in decimal + hexadecimal by yourself only.

2. I doubt if the exposure of a single 8-byte numeric value (without any context) might violate security policy. For instance:
DEC=1234567890 HEX=0000001234567890C
DEC=9876543210 HEX=0000009876543210C
- does this violate any policy?

Only 1, or 2, or 3 of such numeric values should clarify the issue.

Also, it sounds strange that you debug your not working code with real production data???
Anyway, I recommend you to run a standalone test on limited data to fix this issue alone.


3. Your INCLUDE statement looks fine (but it needs to be coded in caps...)
The only thing I suspect so far: in case your input dataset has RECFM=VB then you need to change the offset by 4:
INCLUDE COND=(5,8,PD,GT,1)
or, for more clarity
INCLUDE COND=(5,8,PD,GT,+1)

In the same manner you might miscalculate the original offset of your field within the record. How do you know the offset is 1? There is no sign of this fact taking into account only the presented information...
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Tue Apr 03, 2018 6:25 pm
Reply with quote

sudhakar84 wrote:
The problem is that I cannot post data from my organization. that will result in loosing my job icon_sad.gif
The problem you mentioned so far is that you see values = 1 in your output, where you expect values only >1. I don't think posting the value '1' that got INCLUDed into your output (in HEX) is so sensitive that you will lose your job.

sergeyken,

The OP mentioned in his very first post that he is working with an FB input.
Back to top
View user's profile Send private message
sudhakar84

New User


Joined: 20 Jun 2008
Posts: 25
Location: chennai

PostPosted: Tue Apr 03, 2018 6:30 pm
Reply with quote

sergeyken wrote:
sudhakar84 wrote:
The problem is that I cannot post data from my organization. that will result in loosing my job icon_sad.gif

Kindly let me know if there is a decimal place of 2, do i need to do any correction in my include condition ?

Include cond=(1,8,pd,gt,1)

1. You can verify the tested value printed in decimal + hexadecimal by yourself only.

2. I doubt if the exposure of a single 8-byte numeric value (without any context) might violate security policy. For instance:
DEC=1234567890 HEX=0000001234567890C
DEC=9876543210 HEX=0000009876543210C
- does this violate any policy?

Only 1, or 2, or 3 of such numeric values should clarify the issue.

Also, it sounds strange that you debug your not working code with real production data???
Anyway, I recommend you to run a standalone test on limited data to fix this issue alone.


3. Your INCLUDE statement looks fine (but it needs to be coded in caps...)
The only thing I suspect so far: in case your input dataset has RECFM=VB then you need to change the offset by 4:
INCLUDE COND=(5,8,PD,GT,1)
or, for more clarity
INCLUDE COND=(5,8,PD,GT,+1)

In the same manner you might miscalculate the original offset of your field within the record. How do you know the offset is 1? There is no sign of this fact taking into account only the presented information...


I found the answer. It should be
INCLUDE COND=(5,8,PD,GT,+100)
Back to top
View user's profile Send private message
sergeyken

Senior Member


Joined: 29 Apr 2008
Posts: 2021
Location: USA

PostPosted: Tue Apr 03, 2018 8:54 pm
Reply with quote

sudhakar84 wrote:
I found the answer. It should be
INCLUDE COND=(5,8,PD,GT,+100)

So, there have been two bugs in the original version of your code...

It always makes sense to run a standalone test specifically on the suspicious data, as suggested in previous replies. In that case you'd discover your problem immediately, without long discussion on this forum, while giving us no meaningful info...

Two major issues were not mentioned:
1) you have RECFM=VB (difficult to guess in advance)
2) you did not mention which sort of "decimal 1" do you mean? It actually must be "decimal 1.00". The format PIC '9(13)V9(2)' COMP-3 is visible ONLY WITHIN the corresponding COBOL code; outside of COBOL it is considered as if it was PIC '9(15)' COMP-3
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 4
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Need help for File Aid JCL to extract... Compuware & Other Tools 23
No new posts Pulling a fixed number of records fro... DB2 2
Search our Forums:

Back to Top