cancel
Showing results for 
Search instead for 
Did you mean: 

How to storing data temporary in Tab control

Former Member
0 Kudos

Hi Experts,

We want to store the data for temporary purpose (similar as save as draft) the data is to be pick from tabstrip.This feature required so that when the user fill the form and in between connection breaks, than he does not have to fill the completer form agian. He will start from thouse entries which he has not filled earlier.

We are using the webdynpro application, can any body guide us how to solve this problem.

Thanks in advance,

Vijai

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi ,

Whenever you bind a UI element with a context variable , the same thing happens..

What do you mean by connection breaks .. by the way ?

Regards

Bharathwaj..

Former Member
0 Kudos

hi bharathwaj,

Thank u for reply, connection breaks.... means Internet disconnection, than again they need to fill the form. For that we need to store the data temporally.

In our project we are navigating form one tab to another tab.At that time how the data will be stored temporally.we have some frontend validations also which should perform at the end of the tabstripts.

thank u,

vijai

Former Member
0 Kudos

Hi,

when u say Internet disconnection, that means the application itself will be closed or destroyed,

So you need to start all over again,

Hence We can not provide temporary storage by using Application Context,

The only way to retain data even after application is closed, until the process is completed is to use <b>Java Database storage,</b>

Create a table for all the data for all tabs

So save data entered on one tab in a JAVA table when u go to any other tab.

& delete the data from table when process gets completed.

So in that case u need to check if data is there in the table when application is started, so if data is there, that means prev attempt was not completed and fetch the data and fill the context for the user with old data.

Its just an idea for your kinda requirement,

Regards

Deepak