ABAYTHON

Tkinter Python Program to get details from Form and feeding to excel sheet

We are getting data via the form and feeding that to excel sheets. Let’s look into it with the below example: import tkinter as tkimport xlwtroot = tk.Tk()# setting the windows sizeroot.geometry(“600×400”)# declaring string variable# for storing detailscid_var = tk.StringVar()cname_var = tk.StringVar()caddr_var = tk.StringVar()cstate_var = tk.StringVar()ccity_var = tk.StringVar()cmobile_var = tk.StringVar()cgender_var = tk.StringVar()cage_var = tk.StringVar()# defining …

Tkinter Python Program to get details from Form and feeding to excel sheet Read More »

Five Important rules to improve the performance of Database access

Output results must be minimum. Please try to use where, having constraints in the query to reduce the data records read from the Database table. Use SELECT colum1, column2 instead of SELECT *From. The performance will be better as only the important columns are selected in the query. Use Joins instead of writing multiple select …

Five Important rules to improve the performance of Database access Read More »

How to find the code location to change the column heading of an ALV List

Determine the structure behind the ALV List by right clicking on the ALV List Determine the Table type for the structure using the Where used option in SAP ABAP Determin the corresponding Program for the Table type using the Where used option in SAP ABAP (Ctrl+Shift+F3) Click a particular program in the results list Click …

How to find the code location to change the column heading of an ALV List Read More »