InterviewSolution
| 1. |
What Do You Understand By The Term Destination Used In Rfc? |
|
Answer» CALL FUNCTION RemoteFunction DESTINATION Dest EXPORTING The field 'Dest' can be either a literal or a variable. Its value is a LOGICAL destination (for example, "CRM110") known to the local SAP SYSTEM. Logical destinations are defined using transaction SM59 and the corresponding data is stored in standard database table RFCDES. The remote function call concept, for example, allows you to access a function module in an R/3 System from an ABAP program in a CRM System. If you want to read Sales Order’s Delivery Status record from your R/3 System’s database, create a remotely callable function module in the R/3 ENVIRONMENT which RETRIEVES Sales Order’s Delivery Status record. Call this function from your CRM System using a remote function call and listing the destination for the target R/3 System: CRM System: Client CALL FUNCTION RemoteFunction DESTINATION Dest EXPORTING The field 'Dest' can be either a literal or a variable. Its value is a logical destination (for example, "CRM110") known to the local SAP System. Logical destinations are defined using transaction SM59 and the corresponding data is stored in standard database table RFCDES. The remote function call concept, for example, allows you to access a function module in an R/3 System from an ABAP program in a CRM System. If you want to read Sales Order’s Delivery Status record from your R/3 System’s database, create a remotely callable function module in the R/3 environment which retrieves Sales Order’s Delivery Status record. Call this function from your CRM System using a remote function call and listing the destination for the target R/3 System: CRM System: Client |
|