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: 

How to create Dashboard for PM to get details

Former Member
0 Kudos

Dear Gurus,

kindly let me know how can i write a Z program to display the screen as below image.. i want to display at least one box "Work Order Scheduling" .

after that i make it interactive report and when i click on 'My Order Schedule' button in Work Order Scheduling box, it went to IW38 tcode.

I am confused to create below screen. please help.

Thanks & Best Regards,

ADIL.

4 REPLIES 4

Former Member
0 Kudos

Hi,

1. you can use dialog to create blocks with buttons in each block. easy to progress.

2. you can use ALV block function split nine blocks. create six lines in each block with button icon.

  • REUSE_ALV_BLOCK_LIST_INIT
  • REUSE_ALV_BLOCK_LIST_APPEND
  • REUSE_ALV_BLOCK_LIST_DISPLAY

Thanks,

Yawa.

raymond_giuseppi
Active Contributor
0 Kudos

What is your exact problem, creating Boxes and Pushbutton Elements, can you elaborate on your requirement ?

(Application Development on AS ABAP, ABAP Programming Tools, ABAP Workbench Tools, Screen Painter, Screen Elements.)


Regards,

Raymond

0 Kudos

Hi,

You can implement it using Screen Painter and Module Pool Programming.

Regards

Nida

Former Member
0 Kudos

Thanks a lot for all.. by your suggestions i reached the requirement and done it as below.

Thanks again.

 

MODULE USER_COMMAND_0100 INPUT.
CASE sy-ucomm.
WHEN 'CREATE'.
call transaction 'IW21'.
WHEN 'CHANGE'.
call transaction 'IW22'.
WHEN 'LIST'.
call transaction 'IW28'.
WHEN 'CREATE1'.
call transaction 'IW31'.
WHEN 'CHANGE1'.
call transaction 'IW32'.
WHEN 'LIST1'.
call transaction 'IW38'.
ENDCASE.
ENDMODULE.                 " USER_COMMAND_0100  INPUT