SAP BASIS Interview Questions (51 - 55)
51. What is gateway in SAP?
Gateway is a component that manages communication between SAP systems and external systems using RFC (Remote Function Calls). It acts as a bridge to handle data transfer requests.
For example: When one SAP system calls another system via RFC, the gateway handles that communication.
52. What is SAP startup sequence?
SAP Startup Sequence is the order in which SAP components are started. Sequence are:
- Database starts first.
- SAP Central Services (ASCS) starts.
- Application Server (instances) start.
For example: If database is not up, SAP instance cannot start.
53. How do you start/stop SAP?
SAP can be started/stopped using:
- SAP MMC (Windows) or sapcontrol command (Linux)
- Or using Transaction SM51 / RZ10 (indirect monitoring/config)
Commands (Linux):
- Start → startsap or sapcontrol -nr <inst> -function Start
- Stop → stopsap or sapcontrol -nr <inst> -function Stop
54. What is transport route?
Transport Route defines the path through which transport requests move across systems (like DEV → QA → PROD). It ensures changes are moved in a controlled and proper sequence.
For example: A transport created in DEV moves to QA and then to PROD based on configured transport route (using STMS).
55. What is ChaRM?
ChaRM (Change Request Management) in SAP Solution Manager is used to manage and control changes in SAP systems. It helps track changes from development to production with proper approvals and workflows.
For example: A transport request is approved and moved to production through ChaRM process.