Dear Experts,
I am having an internal table having data:
CARRID | CONNID | FLDATE | PRICE | CURRENCY |
---|---|---|---|---|
DL | 1111 | Mar 18, 2013 | 611.01 | USD |
DL | 1111 | Mar 19, 2013 | 611.01 | USD |
DL | 2222 | Mar 18, 2013 | 556 | USD |
DL | 2222 | Mar 19, 2013 | 556 | USD |
DL | 3333 | Mar 18, 2013 | 578 | USD |
DL | 3333 | Mar 19, 2013 | 876 | USD |
.
My requirement is at every change in CONNID, the CONNID details should print in next new page.ie separate three pages with details of CONNID.
Page 1
CARRID | CONNID | FLDATE | PRICE | CURRENCY |
---|---|---|---|---|
DL | 1111 | Mar 18, 2013 | 611.01 | USD |
DL | 1111 | Mar 19, 2013 | 611.01 | USD |
Page 2
CARRID | CONNID | FLDATE | PRICE | CURRENCY |
---|---|---|---|---|
DL | 2222 | Mar 18, 2013 | 578 | USD |
DL | 2222 | Mar 19, 2013 | 876 | USD |
Page 3
CARRID | CONNID | FLDATE | PRICE | CURRENCY |
---|---|---|---|---|
DL | 3333 | Mar 18, 2013 | 611.01 | USD |
DL | 3333 | Mar 19, 2013 | 611.01 | USD |
For achieving this I have done:
Select the data section of Data view for the table.
Goto object and under that select pagination. There we will have conditional break and edit button against it. Click on the EDIT button, we will get a
script editor, In that click plus button and then click Insert Sample Expression button and then select CONNID. A statement will automatically come,
which will say something like Data[-1].connid ne data.connid . Then select Before radio button for BREAK and for TO select Top of Next Page. Then say OK.
Activate and execute the form.
But page breaking at condition is not happening. Complete internal table data is getting printed without conditional page break.
Please let me know anything else I need to do apart from steps mentioned above.
Thanks in Advance,
Arun.