cancel
Showing results for 
Search instead for 
Did you mean: 

Data Manipulation with DDIC table &HTML table on ITS Page

Former Member
0 Kudos

Hi,

I have <i>three ITS Pages</i>. Retreiving records from DDIC Table and displaying a HTML Table in ITS page2.

Would appreciate if you can throw light on below issue.

When i navigate from ITS Page 3 to ITS Page 2, i save few records to DDIC Table. ITS Page 2 should <b>display UPDATED or SAVED records retreived from DDIC Table onto HTML Table</b>. <i>Currently new SAVED records are now shown.</i> How do i code this on ITS Page 2?

When i return to ITS Page 1 (in same session or next session) i should delete the contents of the DDIC Table. (This is to ensure each time they go to ITS Page 2 from Page 1 -OLD Records are not shown) How do i code this on ITS Page 1?

Appreciate your help.

--

Thanks,

Shankar

Accepted Solutions (0)

Answers (2)

Answers (2)

athavanraja
Active Contributor
0 Kudos

<i>I have three ITS Pages. Retreiving records from DDIC Table and displaying a HTML Table in ITS page2.</i>

are these pages are webgui ones or webrfc ones?

Regards

Raja

Former Member
0 Kudos

Hi Raja,

They were webgui and i have solved on my own.

Thanks,

Shankar K.

Former Member
0 Kudos

Hi shankar,

Here is the code to delete values from a ztable.

data: iztable type table of ztable.

select * into table iztable from ztable.

DELETE ztable FROM TABLE iztable .

write this code in ITS page1 (PBO module).

Try this. All the best.