‎2008 Mar 31 7:05 AM
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
‎2008 Jun 09 1:47 PM
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.
‎2008 Jun 09 1:54 PM
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
‎2009 Apr 21 9:56 AM