PL/I & Assembler :: RE: Zerodivide raised when divisor is 0.01
Author: Akatsukami Posted: Wed May 11, 2016 11:00 pm (GMT 5.5) I think that ZERODIVIDE is a PL/I condition; the environment distinguishes this from other errors that would cause a S0CB abend to...
View ArticlePL/I & Assembler :: RE: Zerodivide raised when divisor is 0.01
Author: soundarr Posted: Wed May 11, 2016 11:52 pm (GMT 5.5) SOCB (decimal divide exception) was the abend code, but the statements inside ON ZERODIVIDE section were executed.
View ArticleSuggestions & Feedback :: Reply to the post is not updated
Author: Rohit Umarjikar Subject: Reply to the post is not updated Posted: Thu May 12, 2016 12:04 am (GMT 5.5) Team, When I did reply to 'File comparsion - Records are in different Layout' post I don't...
View ArticleDFSORT/ICETOOL :: Join key - Populate Zeros when Unpaired from File 1
Author: rexx77 Subject: Join key - Populate Zeros when Unpaired from File 1 Posted: Thu May 12, 2016 12:22 am (GMT 5.5) I am using Join keys to for the below example. File 1:Code:AAA 10000 BBB 11000...
View ArticleDFSORT/ICETOOL :: RE: Join key - Populate Zeros when Unpaired from File 1
Author: RahulG31 Subject: Reply to: Join key - Populate Zeros when Unpaired from File 1 Posted: Thu May 12, 2016 12:50 am (GMT 5.5) Perhaps you can use 'Overlay' like this:Code:Â JOINKEYS...
View ArticleDFSORT/ICETOOL :: RE: Join key - Populate Zeros when Unpaired from File 1
Author: Bill Woodger Subject: Reply to: Join key - Populate Zeros when Unpaired from File 1 Posted: Thu May 12, 2016 2:18 am (GMT 5.5) RahulG31, I should have coded before fixing the typos on your post...
View ArticleDFSORT/ICETOOL :: RE: Join key - Populate Zeros when Unpaired from File 1
Author: rexx77 Posted: Thu May 12, 2016 2:30 am (GMT 5.5) Thanks Rahul for the solution. This will work. My fellow colleague gave me below logic, this also worked. Code: JOINKEYS FILE=F1,FIELDS=(1,3,A)...
View ArticleDFSORT/ICETOOL :: RE: Join key - Populate Zeros when Unpaired from File 1
Author: Rohit Umarjikar Posted: Thu May 12, 2016 2:35 am (GMT 5.5) Or this may be as per Bill's direction.Code:REFORMAT FIELDS=(F1:1,9,F2:5,5,?)Â Â Â Â Â Â Â Â Â Â SORT FIELDS=COPY...
View ArticleSuggestions & Feedback :: RE: Reply to the post is not updated
Author: Rohit Umarjikar Posted: Thu May 12, 2016 2:40 am (GMT 5.5) My post(s) got deleted because they fall under <very poor suggestion> category, so please ignore this post as there is no way...
View ArticleDFSORT/ICETOOL :: RE: Copy a particular column based on PARM value
Author: brindhamohan Subject: Reply to: Copy a particular column based on PARM value Posted: Thu May 12, 2016 2:56 am (GMT 5.5) ok.. Thanks everyone!
View ArticleDFSORT/ICETOOL :: RE: Join key - Populate Zeros when Unpaired from File 1
Author: rexx77 Posted: Thu May 12, 2016 3:12 am (GMT 5.5) It was copy paste mistake. COPY option was missed while posting.. Thanks Rohit.
View ArticleDFSORT/ICETOOL :: RE: Join key - Populate Zeros when Unpaired from File 1
Author: Bill Woodger Subject: Reply to: Join key - Populate Zeros when Unpaired from File 1 Posted: Thu May 12, 2016 3:25 am (GMT 5.5) And in a topic for typos, the 5Z should be 4Z since the fifth byte...
View ArticleSuggestions & Feedback :: RE: Reply to the post is not updated
Author: Bill Woodger Subject: Reply to: Reply to the post is not updated Posted: Thu May 12, 2016 3:28 am (GMT 5.5) Ah, and it wasn't even me, someone beat me to it :-) I was looking forward to...
View ArticleCOBOL Programming :: RE: Facing xml parser exception 798761
Author: rajesh1183 Subject: Reply to: Facing xml parser exception 798761 Posted: Thu May 12, 2016 10:49 am (GMT 5.5) Can you try searching for invalid character using f p'.' in your XML piece......
View ArticleCOBOL Programming :: RE: File comparsion - Records are in different Layout
Author: Abid Hasan Posted: Thu May 12, 2016 11:18 am (GMT 5.5) Hello, If it is just comparison of data you're looking for - and you want to use COBOL - doable; but requires quite a bit of coding, and a...
View ArticleCOBOL Programming :: RE: File comparsion - Records are in different Layout
Author: Suganya87 Posted: Thu May 12, 2016 12:22 pm (GMT 5.5) Thanks all for your help. If i find any issue while writing the cobol program. Will keep in touch with guys. Thanks for your valuable...
View ArticleDFSORT/ICETOOL :: DFSORT to match two files and write
Author: John F Dutcher Subject: DFSORT to match two files and write Posted: Thu May 12, 2016 5:17 pm (GMT 5.5) I had been believing that the sort below, used to match two files and write out just...
View ArticleDFSORT/ICETOOL :: RE: DFSORT to match two files and write
Author: Abid Hasan Posted: Thu May 12, 2016 6:02 pm (GMT 5.5) Hello, Now this is where things get tad bit tricky. JOINKEYS works by building cartesian joins; and there is an example which explains the...
View ArticleSuggestions & Feedback :: RE: Reply to the post is not updated
Author: mcmillan Posted: Thu May 12, 2016 6:03 pm (GMT 5.5)Quote:My post(s) got deleted No one can actually delete anyone's posts here. They are actually moved to a special forum(Recycle Bin) and we...
View ArticleDFSORT/ICETOOL :: RE: DFSORT to match two files and write
Author: John F Dutcher Subject: Reply to: DFSORT to match two files and write Posted: Thu May 12, 2016 6:40 pm (GMT 5.5) The same manual seems to show with its Example # 3 the scenario I desire, one...
View Article