Application Development 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: 

Urgent!!!

Former Member
0 Kudos

Hi,

I had created a table control on screen (without wizard) which contains the fields on z table, user will enter data in table control and i want to save that data in z table after doing some calculations.

also i want to display that data next time when user tries to view that invoice details. Table control should have scroll bar ... can anybody provide me sample code for this or for similar functionality.

I m working on 4.6b so don't have table control using wizard option.

Thankx

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Check the example programs :

REPORT demo_dynpro_tabcont_loop_at.

REPORT demo_dynpro_tabcont_loop.

Links :

http://members.aol.com/_ht_a/skarkada/sap/table_control/table_control.htm

http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm

Thanks

Seshu

3 REPLIES 3

Former Member
0 Kudos

Hi

see this and do accordingly by looking into a sample program

Check the below links.

just refer to the link below

http://www.sapmaterial.com/tablecontrol_sap.html

step by step procedure with screen shots

http://www.planetsap.com/howdo_a.htm

http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac5135c111d1829f0000e829fbfe/content.htm

http://sap.niraj.tripod.com/id25.html

Also you can see the below examples...

Go to se38 and give demodynpro and press F4.

YOu will get a list of demo module pool programs.

One more T-Code is ABAPDOCU.

YOu can find more examples there.

See the prgrams:

DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement

DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB

http://www.geocities.com/ZSAPcHAT

http://www.allsaplinks.com/files/using_table_in_screen.pdf

Regards

ANJI

Former Member
0 Kudos

Check the example programs :

REPORT demo_dynpro_tabcont_loop_at.

REPORT demo_dynpro_tabcont_loop.

Links :

http://members.aol.com/_ht_a/skarkada/sap/table_control/table_control.htm

http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm

Thanks

Seshu

Former Member
0 Kudos

YOU CAN BO ONE THING IN PBO

DESCRIBE THE IT AND GET THE SIZE OF IT

AND NOW IN TABLE CONTROL SIZE = IT SIZE THEN YOU WILL GET THE SCROLLBAR

OR YOU CAN SEE THE EXAMPLE IN ABAPDOCU->DIALOGMODOLE>COMPLEXSCREEN...

JUST LIKE THIS

CONTROLS <b>flights</b> TYPE TABLEVIEW USING SCREEN 100.

MODULE status_0100 OUTPUT.

<b>DESCRIBE TABLE itab LINES fill.

flights-lines = fill.</b>

ENDMODULE.

PLZ REWARD POINTS IF USE FULL...