Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shreyakushw/student-information-management-and-ranking-system
https://github.com/shreyakushw/student-information-management-and-ranking-system
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/shreyakushw/student-information-management-and-ranking-system
- Owner: shreyakushw
- Created: 2024-07-18T11:36:25.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-18T12:28:00.000Z (5 months ago)
- Last Synced: 2024-07-19T16:42:36.154Z (5 months ago)
- Size: 10.4 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Student Information Management and Ranking System
## Introduction
The Student Information Management and Ranking System is an SAP ABAP module pool program designed to manage student information. It provides a user-friendly interface for inputting, storing, and retrieving student data, including student names, IDs, email addresses, and GPAs.## Features
- Input screen for entering student details (Name, ID, Email, GPA).
- Storage of student details in a database table.
- Output screen for displaying stored student information.
- Simple, user-friendly interface.## Screenshots
![Input Screen](screenshots/input_screen.png)
![Output Screen](screenshots/output_screen.png)## Prerequisites
- SAP NetWeaver Application Server ABAP
- SAP GUI## Installation
1. *Clone the Repository:*
```sh
git clone https://github.com/shreyakushw/Student-Information-Management-and-Ranking-System.git2. *Create the Database Table:*
- Open the SAP GUI and go to transaction SE11.
- Create a table named ZSTU20_TABLE1 with the following fields:
- ROLLNO (Student ID)
- FIRSTNAME (Student Name)
- LASTNAME
- DOB (Student DOB)
- ADDRESS (address of the Student)
- MARKS
- Activate the table.3. *Create the Program and Includes:*
- Open the SAP GUI and go to transaction SE80.
- Create a module pool program named SAPMZ____1.
- Create the following includes and add the respective code:
- ZABC1TOP for global data.
- ZABC1O01 for PBO (Process Before Output) modules.
- ZABC1I01 for PAI (Process After Input) modules.
- ZABC1F01 for form routines.