There is no GuiXT statement that directly updates a database table, but you can implement an ABAP function module in SAP (transaction SE37) that updates your Z-table and execute this function via the GuiXT "Call"
statement.
What is the difference between checktable and search help
There is a lot of difference between searchhelp and check table. Check table is a master table. Like T000 for client, t001w for company codes, tcurc for currency. When we write code like...
Create a table maintance program for a z table
In transaction SE11, in the attribute tab of your z table check table maintenance check box. Go to SM30 transaction, enter the ztable name and click on maintain button. Here you can enter new...
Take Values from Selection-Screen and Issue Message
My program fills a ztable taking values from the selection-screen. Now, if it a record with the same primary keys , then I need to issue a warning saying that 'Entry for the same combination already...
Generating document numbers automatically
I have ztables and i am running a transaction in SAP that i have created my self. Is it possible to apply a logic so that a unique document number is generated automatically for the created...
SAP Basis FAQ
Automatic CTS Even though SAP does not recommend automatic imports, it is the most practical way of moving transports from a development system to a QA environment or to a special development...
Authorization groups in a Database Table
To enter records in a ztable(custom table), we need to create a table maintenance generator, for which we need the Authorization group and Function group respectively. But how to determine that which...
Difference b/n include structure and append structure
there are three types of adding fields 1. normal structures (WHICH ARE NOTHING BUT INCLUDE STRUCTURES THAT START WITH ".INCLUDE) 2. APPEND STRUCTURES (FOR STANDARD TABLES) (START WITH...
BADI For FB60
Hi Experts, I have a requirement in the Tcode 'FB60'. i have created a ztable for G/L account and its permission, when user enter G/L in FB60 it should validate with the ztable and if not...
FB60 BADI, Enchancement.
Hi I have a requirement in the Tcode 'FB60'. i have created a ztable for G/L account and its permission, when user enter G/L in FB60 it should validate with the ztable and if not permitted it...
Module pool/ updating z tbale and update an empty ztable
I wanted to update the Z table .... Only some 4 fiileds of that table has to be updated... I dont wnat to use table controls... Can anyone help me please...its urgent... I need to update an...
Populate ztable fields in a GuiXT field
Hi Everyone, I created a Guixt field and when I press the F4 button on that field I need to get a pop-up from values in a ztable.. My Code is : inputfield (14,1) "Reason for...
How to access an external database from ABAP via DBLINK (ORACLE)
\tUsing transaction SE11, create a table (ZTABLE) with the same fields as the table in the external database, make sure that the type and lengths of the fields are identical. \tUsing transaction...
ztable field value
Dear help, How to delete ztable field value directly on the screen se16 execution? Thanks,
How can I copy a standard table to make my own z_table.
Go to transaction SE11. Then there is one option to copy table. Press that button. Enter the name of the standard table and in the Target table enter Z table name and press enter.
How to update ztable with minimum fields
If it's a common field you need to modify for all records, put it in a loop and modify it using this workarea. Anyone who's a performance expert-give us a shot if this is incorrect. Using the...
How can I copy a standard table to make my own z_table?
WE CAN CREATE A STRUCTURE LIKE THE SAME STRUCTURE AS DATABASE TABLE AND WE CAN USE SELECT* FROM DATABASE TABLE INTO TABLE ITAB OR INSERT INTO ITAB VALUES DATABASE TABLE
ABAP Interview Questions(recommended)
1. When using Open SQL statements in an ABAP/4 program, you must ensure the following. a) The database system being addressed must be supported by SAP. b) The database tables being addressed must...
ABAP Interview Questions(new)
What is a 'Z' report? Y or Z report refer to customized abap programs written for modules such as mm, sd, pp or fi/co etc. Can we create an ABAP program without using Y or Z? No, this is because...
ABAP Interview Questions
1. How data is stored in cluster table? Each field of cluster table behaves as tables which contains the no. of entries. 2. What are client dependant objects in abap/sap? SAP Script...
ABAP Certification Questions
1. What is the fastest way to move one internal table to another internal table (assuming two tables of similar structure)? a) append lines of table1 to table2. b) loop at table1. Move:...
ABAP Interview Questions by Experts.
Interview Questions related to Reporting How do I add a pushbutton on the application toolbar of report selection screen? How do I indicate progress while executing a program?...
Sample Test Questions on ABAP Programming
1 . What are the 2 boxes in your system for coding for Abap and their logins? Development System & IDES/Sandbox # 2. If I get a problem on a report in Production server how can I modify...