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: 

function module

Former Member
0 Kudos

hi

i am using a funtion module as below but i dont want the convert to upper case part in this funtion module as its pop up is also displaying a check box which says convert to upper case lettters i dont want this to be shown can any one sugges how to hide this or

suggest some other similar funtion module .

CALL FUNCTION 'POPUP_TO_SEARCH_VALUE'

EXPORTING

TEXTLINE1 = text-f02

TITEL = text-f01

VALUELENGTH = 30

IMPORTING

ACTION = w_action

VALUE = w_value

EXCEPTIONS

TITEL_TOO_LONG = 1

OTHERS = 2.

regards

nishant

2 REPLIES 2

Former Member
0 Kudos

Hi

Please check FM

RLB_SRTV_SEARCH_TEXT_POPUP

C14C_POPUP_FOR_SEARCH

or

ALV_POPUP_TO_SEARCH2

RK_POPUP_LIST_SEARCH_SMALL

Try creating your own FM whic seems like the best option.

Regards,

Arun

Former Member
0 Kudos

Hi,

Just use:-

CALL FUNCTION 'SWA_STRING_TO_UPPERCASE'

EXPORTING

input_expression = fspell

preserve_existing_capitals = ' '

IMPORTING

output_expression = fspell

EXCEPTIONS

expression_truncated = 1

OTHERS = 2

.

I hope this helps,

Regards

Raju Chitale