cancel
Showing results for 
Search instead for 
Did you mean: 

What tcode do I use to run report RHXSTR00

Former Member
0 Kudos

Hi

Please tell me What tcode do I use to run report RHXSTR00?

Cheers

B

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Goto tcode SE38 and run the report RHXSTR00.

BR,

Disha.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi BP,

The tcode for the report RHXSTR00 is RE_RHXSTR00.

You can find the tcode for any report by writing a small code if you are a technical person. I mean if you are an ABAP Programmer. You can use the following sample code to get the tcode of any report program.

REPORT zreptcode.

TABLES: tstc.

DATA: w_tcode TYPE tcode.

SELECT tcode

INTO w_tcode

FROM tstc

WHERE pgmna EQ 'RHXSTR00'.

ENDSELECT.

Write: w_tcode.

Execute the above code and check. Sorry forgot to say TSTC is the table where you can find the tcode of any report program.

Reward points if useful!!!

Cheers,

Ramalakshmi Challa.

Former Member
0 Kudos

Hi BP,

The tcode for the report RHXSTR00 is RE_RHXSTR00.

You can find the tcode for any report by writing a small code if you are a technical person. I mean if you are an ABAP Programmer. You can use the following sample code to get the tcode of any report program.

REPORT zreptcode.

TABLES: tstc.

DATA: w_tcode TYPE tcode.

SELECT tcode

INTO w_tcode

FROM tstc

WHERE pgmna EQ 'RHXSTR00'.

ENDSELECT.

Write: w_tcode.

Execute the above code and check.

Reward points if useful!!!

Cheers,

Ramalakshmi.