Open RZ10 transaction. Profile is DEFAULT, Choose Extended Maintenance and Click Change Button. Set login/disable_multi_gui_login parameter as 1. If you want to enable multilogin for some of the users; Set the names to login/multi_login_users parameter. If these users are more than one, separate names with comma as XXX,YYY,ZZZ
Yazar arşivleri: mericdonmezer
How to Get Classification Data in SAP ABAP?
If you have a classification as ‘MODEL’ you can read the data as below. You need to join Ausp and Cabn table. DATA: BEGIN OF i_ausp OCCURS 0, atnam LIKE cabn-atnam, objek LIKE ausp-objek, atwrt LIKE ausp-atwrt, atflv LIKE ausp-atflv, END OF i_ausp. CLEAR: i_ausp, i_ausp[]. SELECT cabn~atnam ausp~objek ausp~atwrt ausp~atflv FROM ausp JOIN cabn ON ausp~atinn = cabn~atinn AND ausp~adzhl = cabn~adzhl INTO TABLE i_ausp WHERE ausp~adzhl = ‘0’ AND ausp~klart = ‘001’ AND cabn~atnam = ‘MODEL’.
How to Create Search Help in SAP ABAP?
Firstly open SE11 transaction code, write the search help name that you want to create. Selection method is the table that you reference. QPCD is our example. Dialog type is: “Display Values Immediately” This means when you push search help button, values are displayed immediately. Other options are listed below. You can filter data set“How to Create Search Help in SAP ABAP?” yazısının devamını oku
How to Analyze SAP ABAP Program Performance?
SE30 or SAT transaction codes can be used for Run Time Analysis. You can run the analysis by program and transaction. When your program finishes, turn back and see the results. Net microsec field is sorted by descending. If you double click the line, you can reach the code where you lose time.
How to Find SAPScript code from SAP output?
When you find your SAPScript name, by SE71 transaction code you can edit it.
How to Find SAP ABAP Transaction Text and Table Text?
Transaction code texts are stored in TSTCT table. Table texts are stored in DD02T table. Domain values are stored in DD07T table.
How to Edit SAP Enhancement Project?
Call transaction CMOD Write project name, select components and click change button. First Deactivate the project. Then open Enhancement Assignments. Add the enhancement that you need. Activate the project. Now you can implement the enhancement that you need.
How to Convert Duration Values in SAP ABAP?
CONVERSION_EXIT_TSTRG_OUTPUT function is used for duration conversion. KNVV-PODTG field is an example for this conversion. DATA output(10). CALL FUNCTION ‘CONVERSION_EXIT_TSTRG_OUTPUT’EXPORTINGinput = itab-podtgIMPORTINGoutput = outputEXCEPTIONSOTHERS = 1. REPLACE FIRST OCCURRENCE OF ‘,’ IN output WITH ‘.’ .itab-podtg = output.
How to Get Partners Data from SAP Table?
Partners data are stored in KNVP table. Customer number, sales organization, distrubution channel and division are the selection parameters. DATA lt_knvp LIKE TABLE OF knvp WITH HEADER LINE. SELECT * FROM knvp INTO TABLE lt_knvp WHERE kunnr = i_out-kunnr “Customer Number AND vkorg = p_vkorg “Sales Organization AND vtweg = p_vtweg “Distribution Channel AND spart = p_spart. “Division
How to create and modify Distribution List for SAP email?
SO15 and SO23 transaction codes can be used for creating and modifying Distribution Lists. If you do not see the list, you need to extend Shared Distribution List. You can also use SBWP transaction code. You should open Shared Folders.