cancel
Showing results for 
Search instead for 
Did you mean: 

regarding repeated employee numbers in smartforms

Former Member
0 Kudos

hi experts,

i have developed a smartforms in which i am showing seperate employees

on seperate pages,everything is coming correct now what i want that

for individual employees 4 to 5 line items are there for this the number

of employees number are repeated like this

employee no claims details

1002 1000

1002 3500

1002 4000

1002 2500

1002 1100

here i want like this

employee no claims details

1002 1000

- 3500

-- 4000

- 2500

- 1100

instead of repeated employee number i want only single time...

plz help me how to do this.

Edited by: RAJAT on Sep 15, 2008 5:22 AM

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

solved by own

Former Member
0 Kudos

Hi,

In your loop node... give the employee number field name and select the check box under the event on sort begin...

You get the event node under the loop node...

there you create the text node to display only the employee number...

Create another text node after the event node to display the other details.

regards

padma

Former Member
0 Kudos

Hi Rajat,

Create 4 to 5 line types in the table of the smartform.Use the even on sort begin...for the employee no claims .

Regards,

Sravanthi

Former Member
0 Kudos

hi ,

u store the employee number in a variable, say temp_emp .... before printing line item check whether

temp_emp is equal to emp_num .... if it is equal then in the variale print_value put '-' , and print that in text element .... whenever u get new emp number ... temp_emp willl not be equal to emp_num than assign that num to temp_emp and in the variable print_value put that emp num ....

Hope it will help ............

Edited by: ganesh prasad on Sep 15, 2008 7:14 AM