on 2007 Jul 19 12:04 PM
I am facing problem in Smart Forms.
I have all the required data in my internal tables. i need to go to new page for every new customer: Generally how to implement such basic requirements. Are
there no facilities given. I think This a common requirement.
I'm almost 2 hours busy with it in order to make a new pag
for every new customer.
Regards
Ilhan
Hi
In the Table Window Create a LOOP for the CUstomers data ITAB
In that loop create PROGRAM LINES and declare a counter (v_cnt, v_lines) and write the code
and increase the counter
describe table itab lines v_lines.
v_cnt = v_cnt + 1.
and create a COMMAND and in that give the condition
v_lines < v_cnt.
and check the checkbox GOTO NEW PAGE and give the page name.
this will fire New page for each customer
<b>Reward points for useful Answers</b>
Regards
Anji
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Create a Condition element inside the loop and Check it there and give next page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should include a conditional element which checks if the current loop pass is a new customer or not.
In that element, you should include an explicit page-break code element.
Regards,
Ravi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
69 | |
10 | |
8 | |
7 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.