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

VIEW_MAINTENANCE_CALL usage

Former Member
0 Likes
1,270

Hi all,

I have a requirement to maintain view V_024 from custom program. I have written following code for that

CALL FUNCTION 'VIEW_MAINTENANCE_CALL'

EXPORTING

action = 'U'

view_name = 'V_024'

Exceptions**

My requirement is when the user clicks the create new entries button i need to show a pop up and based on user selection from pop up the entries in the table has to be altered can we handle this using this function module.

Please Help.

Thanks & Regards,

Anjana Rao

2 REPLIES 2
Read only

vinod_vemuru2
Active Contributor
0 Likes
500

Hi,

I dont think you can achieve this functionality with this FM. Instead, you can think of editable ALV. Display the table data in editable ALV (Ofcourse key fields are not editable). You can add custom buttons to the tool bar and perform your functionality. On clicking SAVE update the backend table accordingly.

Thanks,

Vinod.

Read only

Former Member
0 Likes
500

Thnk You