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: 

rename sy-repid

Former Member
0 Kudos

Good morning to averybody

i don't add a lot od record into tables T180? My question is possible change the value of sy-repid like

replace "pgm1" with "xxxx" into sy-repid?

Thanks a lot for your support

bye

4 REPLIES 4

Former Member
0 Kudos

Hi,

try this.

GOTO se38-> give program name-->

Goto->Program tab->rename--> give new name-> click

This changes ur program name

Former Member
0 Kudos

Hi,

We Cannot change the value of sy-repid.

Thanks,

Nithya

awin_prabhu
Active Contributor
0 Kudos

Hi friend,

No sy-repid cannot be changed directly as u mentioned like below,

REPLACE 'zclass1' with 'xxxx' into sy-repid.

Generally we copy sy-repid to another variable and use that for comparsions.

data: var_id TYPE sy-repid.

var_id = sy-repid.

if var_id = 'ztest'.

endif.

Thanks..

Edited by: Sap Fan on Feb 26, 2009 3:09 PM

Edited by: Sap Fan on Feb 26, 2009 3:11 PM

Former Member
0 Kudos

Thanks