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: 

POP UP Window

Former Member
0 Kudos

How to call the pop up window containing radiobuttons??..

In MCTA report when we click on Switch drilldown there appears a pop up window..

I have to create in such manner..How to do this??..

Thanks

Sri

7 REPLIES 7

Former Member
0 Kudos

Use FM K_KKB_POPUP_RADIO3 or K_KKB_POPUP_RADIO2.

hope it helps,

Rajat

Former Member
0 Kudos

Hello Sri,

Radio buttion pop-up i never saw , may be you have to design it , not getting by standard FM .

But there are lot of functions available in SAP which provide you push-button option on pop-up.

Use this function 'C102_POPUP_TO_CONFIRM' .

To add pop-up when you click on 'drilldown' , for this you have to see user interface available for that click.

If you get Radio-butt ion pop-up tell to me also.

0 Kudos

Check once MCTA tcode and check the output.

In output,click on Switch Drilldown pushbutton. U can see the pop up window.

Like that I have to design.

0 Kudos

in se37 > MC_POPUP_TO_MARK_FIELDS > hit where used list, it would be more helpful.

0 Kudos

This message was moderated.

Former Member
0 Kudos

HI Siri ,

Use the function module MC_POPUP_TO_MARK_FIELDS,

for your requirement.

Regards,

Jaya rama kumar

Former Member
0 Kudos

use following function module with provided parameters

MC_POPUP_TO_MARK_FIELDS

Parameters

CALL FUNCTION 'MC_POPUP_TO_MARK_FIELDS'

EXPORTING

I_FIELD_NUMBER_MAX = 1

I_FIELD_NUMBER_MIN = 1

I_MARK_BY_TABLE = TRUE

I_OBJECT_NAME_PLURAL = HLP_TEXT1

I_OBJECT_NAME_SINGULAR = HLP_TEXT2

I_POPUP_TITLE = HLP_TEXT3

IMPORTING

E_MARKED = DE_FLG_MARK

TABLES

T_FIELDS = DE_DRILLDOWN_TAB

T_MARKED_FIELDS = DE_MARK_DRILLDOWN.

variables with foll. values

TRUE = 'X'

HLP_TEXT1 = Characteristics

HLP_TEXT2 = Characteristic

HLP_TEXT3 = Switch drilldown

and finally vvv imp fill up int table DE_DRILLDOWN_TAB[6] with proper value

such as

Domain values s follows

DOMNAME

VTWEG

SPART

MATNR

VKORG

KUNNR

MCPERIOD

ROLLNAME

VTWEG

SPART

MATNR

VKORG

KUNAG

SPBUP

and many more fields in this table

Hope this will help you