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 Configuration Set Up

sreeramkumar_madisetty
Active Contributor
0 Likes
497

Hi Friends

I need Configuaration Details for Transaction : PECM_PRINT_CRS.

I need for this tcode how & where the Smart form : HR_ECM_CRS and Driver Program : RHECM_PRINT_CRS are linked for the above tcode.

Regards,

Sree

3 REPLIES 3
Read only

Former Member
0 Likes
452

Hi,

If you check the PECM_PRINT_CRS tcode in SE93,

it's tight to program RHECM_PRINT_CRS.

In Selection Option of the program RHECM_PRINT_CRS_S01

PARAMETER: p_sfname like stxfadm-formname DEFAULT default_sfname NO-DISPLAY.

and the default_sfname is hardcoded to 'HR_ECM_CRS'.

this shows that there is no chance for configuration done in this program and smartform.

copy to Z program and Z smartform for customization.

Read only

Former Member
0 Likes
452

Hi,

with in the code you can find as below (RHECM_PRINT_CRS_D01):

CONSTANTS default_sfname TYPE tdsfname VALUE 'HR_ECM_CRS'.

PARAMETERS:

p_sfname LIKE stxfadm-formname DEFAULT default_sfname NO-DISPLAY.

So the smartform name HR_ECM_CRS is hardcoded and being called accordingly.

Reward points if helpful.

Edited by: Ravi Kumar on Jun 9, 2008 2:56 PM

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
452

Closed.