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: 

Custom Screen in VF21 - Invoice Listing

Former Member
0 Kudos

Hi All,

I have to show pop screen with data on saving invoice list - VF21 and from POP-Screen user will select/Unselect rows. The pop screen will contain list of invoice in current invoice list document. The invoices which user will de-select should be deleted from Invoice list.

My question is how we can show custom pop screen in VF21 and can delete rows (Invoices in list). Please assist.

Thanks & Regards,

Rajesh

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi All,

I have implemented the solution for above recuirtment, so thought of sharing the experience.. In our requirement we need to show couple of custom pop-up window on saving the standard transaction.

Solution: We can create one function group and in this  FG we have created screen (as per requirement) and FM to transfer data b/w custom screen and standard SAP code.

We created a implicit enhancement in standard code and called the FM which in turn calls  the custom screen. The FM parameters are used to transfer data from point we have created implicit ehancement and custom screen.

To refer to approch used, you can check with FM - POPUP_TO_CONFIRM_STEP. Which used to give popup screen. The FM is calling screen :

CALL SCREEN 100 STARTING AT ....

                                ENDING AT...

On same lines we designed our solution..

Regards,

Rajesh.

1 REPLY 1

Former Member
0 Kudos

Hi All,

I have implemented the solution for above recuirtment, so thought of sharing the experience.. In our requirement we need to show couple of custom pop-up window on saving the standard transaction.

Solution: We can create one function group and in this  FG we have created screen (as per requirement) and FM to transfer data b/w custom screen and standard SAP code.

We created a implicit enhancement in standard code and called the FM which in turn calls  the custom screen. The FM parameters are used to transfer data from point we have created implicit ehancement and custom screen.

To refer to approch used, you can check with FM - POPUP_TO_CONFIRM_STEP. Which used to give popup screen. The FM is calling screen :

CALL SCREEN 100 STARTING AT ....

                                ENDING AT...

On same lines we designed our solution..

Regards,

Rajesh.