SAP FM_CCF_TEXT_GET Function Module for









FM_CCF_TEXT_GET is a standard fm ccf text get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for fm ccf text get FM, simply by entering the name FM_CCF_TEXT_GET into the relevant SAP transaction such as SE37 or SE38.

Function Group: FMYC_DV3
Program Name: SAPLFMYC_DV3
Main Program: SAPLFMYC_DV3
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FM_CCF_TEXT_GET pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'FM_CCF_TEXT_GET'"
EXPORTING
* I_LEDGER = "
* I_WRTTP = "Value Type
* I_CFWRTTP = "Value Type
* I_DPDOCTYPE = "Document Type for Down Payment Carryforward

IMPORTING
E_LEDGER_TEXT = "Description of Ledger
E_WRTTP_TEXT = "Val.Type Name
E_CFWRTTP_TEXT = "Value type for fiscal year change
E_DPDOCTYPE_TEXT = "Document Type for Down Payment Carryforward (Text)
.



IMPORTING Parameters details for FM_CCF_TEXT_GET

I_LEDGER -

Data type: RLDNR
Optional: Yes
Call by Reference: Yes

I_WRTTP - Value Type

Data type: FM_WRTTP
Optional: Yes
Call by Reference: Yes

I_CFWRTTP - Value Type

Data type: CF_WRTTP
Optional: Yes
Call by Reference: Yes

I_DPDOCTYPE - Document Type for Down Payment Carryforward

Data type: FM_CCF_DP_DOCTYPE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FM_CCF_TEXT_GET

E_LEDGER_TEXT - Description of Ledger

Data type: FM_RLDNRT
Optional: No
Call by Reference: Yes

E_WRTTP_TEXT - Val.Type Name

Data type: FM_WRTTPT
Optional: No
Call by Reference: Yes

E_CFWRTTP_TEXT - Value type for fiscal year change

Data type: FM_CCF_CFWRTTPT
Optional: No
Call by Reference: Yes

E_DPDOCTYPE_TEXT - Document Type for Down Payment Carryforward (Text)

Data type: FM_CCF_DP_DOCTYPET
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FM_CCF_TEXT_GET Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_i_ledger  TYPE RLDNR, "   
lv_e_ledger_text  TYPE FM_RLDNRT, "   
lv_i_wrttp  TYPE FM_WRTTP, "   
lv_e_wrttp_text  TYPE FM_WRTTPT, "   
lv_i_cfwrttp  TYPE CF_WRTTP, "   
lv_e_cfwrttp_text  TYPE FM_CCF_CFWRTTPT, "   
lv_i_dpdoctype  TYPE FM_CCF_DP_DOCTYPE, "   
lv_e_dpdoctype_text  TYPE FM_CCF_DP_DOCTYPET. "   

  CALL FUNCTION 'FM_CCF_TEXT_GET'  "
    EXPORTING
         I_LEDGER = lv_i_ledger
         I_WRTTP = lv_i_wrttp
         I_CFWRTTP = lv_i_cfwrttp
         I_DPDOCTYPE = lv_i_dpdoctype
    IMPORTING
         E_LEDGER_TEXT = lv_e_ledger_text
         E_WRTTP_TEXT = lv_e_wrttp_text
         E_CFWRTTP_TEXT = lv_e_cfwrttp_text
         E_DPDOCTYPE_TEXT = lv_e_dpdoctype_text
. " FM_CCF_TEXT_GET




ABAP code using 7.40 inline data declarations to call FM FM_CCF_TEXT_GET

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!