dutchy0513
IS-IT--Management
Working in Crystal 10xi with Oracle database 9g connecting with Oracle server.
I have a report using a stored procedure, in which there are multiple images, one each in the Page Header and Group Header sections for 3 separate claim forms. The layout is:
PHa, PHb and PHc – with suppression to only print for the correct claim form by service type:
If {claims_proc.service_type} = "OPT"
Then false // print
else true // suppress print
GH1a, GH1b and GH1c – with suppression as above.
Da, Db and Dc – with suppression as above, plus a limit of lines per page, depending on the claim type. The 3 claim types have different break points:
If {claims_proc.service_type} = "OPT" Then
(If ({##Rows4PageBreak} < 6 and
{claims_proc.claim_index} <> Next ({claims_proc. claim_index }))
OR (remainder({##Rows4PageBreak},6) = 0)
Then True // insert page break
Else False // no break
Else False
The fields in the Details section overlay the image in the Group Header. The report can be multiple pages due to the number of lines and I need both of the images to print on each page. The header image prints on all pages, but the group image does not. I see no difference in their set up. I have tried changing the image to not Keep Together and adjusted the size of the image to verify it is not too long for a page, to no avail.
Can you give me a clue as to where I should look next? Thanks.
I have a report using a stored procedure, in which there are multiple images, one each in the Page Header and Group Header sections for 3 separate claim forms. The layout is:
PHa, PHb and PHc – with suppression to only print for the correct claim form by service type:
If {claims_proc.service_type} = "OPT"
Then false // print
else true // suppress print
GH1a, GH1b and GH1c – with suppression as above.
Da, Db and Dc – with suppression as above, plus a limit of lines per page, depending on the claim type. The 3 claim types have different break points:
If {claims_proc.service_type} = "OPT" Then
(If ({##Rows4PageBreak} < 6 and
{claims_proc.claim_index} <> Next ({claims_proc. claim_index }))
OR (remainder({##Rows4PageBreak},6) = 0)
Then True // insert page break
Else False // no break
Else False
The fields in the Details section overlay the image in the Group Header. The report can be multiple pages due to the number of lines and I need both of the images to print on each page. The header image prints on all pages, but the group image does not. I see no difference in their set up. I have tried changing the image to not Keep Together and adjusted the size of the image to verify it is not too long for a page, to no avail.
Can you give me a clue as to where I should look next? Thanks.