Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Comapring the screens/ table control

Former Member
0 Likes
567

Hi Experts,

As v hv SE39 to compare the programs,

Do we hv any T.code/facility (like the same above) to compare the 2 screens / table controls?

thanq.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
536

Hi,

Table Control:-

These are the screen elements used to display tabular data they can be called

as screen tables( like STEP LOOP).To use table control we have to create it on the screen using SCREEN PAINTER(SE51) and declare a control variable of TYPE TABLEVIEW using CONTROLS statement in the ABAP program. We have to use LOOP .. ENDLOOP statement in both PBO and PAI with or without AT int_table parameter. IF AT int_table parameter is not used than we have to place a MODULE call between the LOOP...ENDLOOP statement to fill the screen table rows from the ABAP program in PBO and program our own scrolling functions

using OK_CODE field.

Having a parallel loop(at screen table rows & int table rows) by using parameter

AT int_table makes the ABAP code simple.

A special structure of type CXTAB_CONTROL is used to set/get various

attributes of table control at runtime like CURRENT_LINE ,TOP_LINE.

For more information check the following link:

http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dbac3735c111d1829f0000e829fbfe/frameset.htm

Regards,

Bhaskar

Hi,

Table Control:-

These are the screen elements used to display tabular data they can be called

as screen tables( like STEP LOOP).To use table control we have to create it on the screen using SCREEN PAINTER(SE51) and declare a control variable of TYPE TABLEVIEW using CONTROLS statement in the ABAP program. We have to use LOOP .. ENDLOOP statement in both PBO and PAI with or without AT int_table parameter. IF AT int_table parameter is not used than we have to place a MODULE call between the LOOP...ENDLOOP statement to fill the screen table rows from the ABAP program in PBO and program our own scrolling functions

using OK_CODE field.

Having a parallel loop(at screen table rows & int table rows) by using parameter

AT int_table makes the ABAP code simple.

A special structure of type CXTAB_CONTROL is used to set/get various

attributes of table control at runtime like CURRENT_LINE ,TOP_LINE.

For more information check the following link:

http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dbac3735c111d1829f0000e829fbfe/frameset.htm

Regards,

Bhaskar

3 REPLIES 3
Read only

Former Member
0 Likes
537

Hi,

Table Control:-

These are the screen elements used to display tabular data they can be called

as screen tables( like STEP LOOP).To use table control we have to create it on the screen using SCREEN PAINTER(SE51) and declare a control variable of TYPE TABLEVIEW using CONTROLS statement in the ABAP program. We have to use LOOP .. ENDLOOP statement in both PBO and PAI with or without AT int_table parameter. IF AT int_table parameter is not used than we have to place a MODULE call between the LOOP...ENDLOOP statement to fill the screen table rows from the ABAP program in PBO and program our own scrolling functions

using OK_CODE field.

Having a parallel loop(at screen table rows & int table rows) by using parameter

AT int_table makes the ABAP code simple.

A special structure of type CXTAB_CONTROL is used to set/get various

attributes of table control at runtime like CURRENT_LINE ,TOP_LINE.

For more information check the following link:

http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dbac3735c111d1829f0000e829fbfe/frameset.htm

Regards,

Bhaskar

Read only

Former Member
0 Likes
536

Hi,

I am not aware any standard transaction available to compare two screens/table controls.

You may need to do manually to compare ...

Regards,

Ferry Lianto

Read only

0 Likes
536

ThanQ.

I did it manually.

Anyways, thanq.