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: 

Help required: Register title on 'POPUP_WITH_TABLE_DISPLAY_OK'

Former Member
0 Kudos

Dear All,

Iam using the FM 'POPUP_WITH_TABLE_DISPLAY_OK'.

The title comes as 'Register' on the window though I give the title parameter.

Any reason?

Thanks.

3 REPLIES 3

former_member404244
Active Contributor
0 Kudos

Hi,

try like this

In text-019 give ur title.

CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY_OK'

EXPORTING

ENDPOS_COL = 50

ENDPOS_ROW = 20

STARTPOS_COL = 20

STARTPOS_ROW = 10

TITLETEXT = TEXT-019

TABLES

VALUETAB = I_tab

EXCEPTIONS

BREAK_OFF = 1

OTHERS = 2.

Reward if helpful.

Regards,

Nagaraj

Former Member
0 Kudos

Hi

There is a harcoding of the text "Register" inside the FM. You can check the line 53 of the FM for texttitle '002'. They haven't give the provision for user defined title text with an '&' option may be.

~Ranganath

Reward points for all useful answers !!

Former Member
0 Kudos

Hi

Please use POPUP_WITH_TABLE_DISPLAY it displays the title properly.

The error is because of the text ''Register' for 002. Replacing it by & might have solved the problem however since its standard code ...

Regards

Arun