Application Development and Automation 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: 
Read only

Regarding STMS transaction

Former Member
0 Likes
1,580

Dear all

i want to develop a report for basis module using ref of Tcode STMS, i want get all System list of development client. user execute the report in production and display all development system using RFC.

please give some idea how to do it.

thanks,

abhilash

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,400

Take a look at tables (or test FM TMS_CI_READ_CONFIGURATION)

- TMSMCONF TMS Manager : configuration.

- TMSCDES TMS CI: Destinations

- TMSCSYS TMS CI: Systems

Regards,

Raymond

Dear all

i want to develop a report for basis module using ref of Tcode STMS, i want get all System list of development client. user execute the report in production and display all development system using RFC.

please give some idea how to do it.

thanks,

abhilash

8 REPLIES 8
Read only

ThomasZloch
Active Contributor
0 Likes
1,400

Please confirm or correct me, from the production system, you want to be able to determine the development system(s) in your landscape and also the clients of these development systems?

Thomas

Read only

0 Likes
1,400

yes we want to access production system to development system

abhilash

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,401

Take a look at tables (or test FM TMS_CI_READ_CONFIGURATION)

- TMSMCONF TMS Manager : configuration.

- TMSCDES TMS CI: Destinations

- TMSCSYS TMS CI: Systems

Regards,

Raymond

Read only

0 Likes
1,400

hi Raymond

Thanks for your reply its helps me to find the system but here i want differentiate the system like user want to only display development client or production client because here we have same client in production quality and development.'

eg client 001 system - production

client 001 system - quality

client 001 system - development

please let me know how to differentiate.

thanks

abhilash

Read only

0 Likes
1,400

Use the system variable SY-SYSID.

Read only

0 Likes
1,400

but its gives current system name but my requirement if i m using production then i want to see how many development system i have.

Read only

0 Likes
1,400

Try your luck with function module TMW_GET_SAP_CLIENTS for the domain and systems found via TMS_CI_READ_CONFIGURATION.

The client role is returned in CCCATEGORY (as maintained in T000), "C" would be Configuration (or Development for that matter). If most clients have that setting, you're likely looking at the development system.

I don't know another, simpler indicator "I'm a development system" at this point.

Thomas

Read only

Former Member
0 Likes
1,400

Thanks Thomas, its solved my problem