[SOLVED]Two views for one table/model

Hi,

I need to divide adding/updating table into two seperated (or maybe three) screens.

For ex:

table A(field1,field2,field3,field4,field5,field6,field7,field8);

view:

[screen1]:

field1

field2

field3

field4

[screen2]:

field5

field6

field7

field8

and after filling the second screen record would be added.

My question is, how can I seperate one model into two views?

Are they served in the same page (using tabbed views)? If so, I don't see any problem.

If they are served in separate pages, you will need to store them in session.

Thx