cancel
Showing results for 
Search instead for 
Did you mean: 

re:gui

Former Member
0 Kudos

hi

any body tell me about the use of gui(Graphical user interface) in reports

vinoth.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vinod

<u><b>Welcome to sdn community</b></u>

SAPgui is the GUI client in SAP R/3's 3-tier architecture of database, application server and client. It is software that runs on a Microsoft Windows, Apple Macintosh or Unix desktop, and allows a user to access SAP functionality in SAP applications such as mySAP ERP and SAP Business Information Warehouse (now called SAP Business Intelligence).

<u><b>SAP GUI family</b></u>

SAP GUI for the Windows environment

SAP GUI for the Java(TM) environment

SAP GUI for HTML / Internet Transaction Server (ITS)

Requires Internet Explorer as a browser; other browsers such as Firefox are not officially supported by SAP.

<u><b>SAP GUI releases</b></u>

Release Release date Features

1.0 -->First "GUI" for SAP software; no graphical elements like checkboxes,

radiobuttons and icons

1.1-->Field length indicated by background colors; fast paths in menus

2.0-->New GUI for Windows 3.1; System and Application Toolbar added; icons in

System Toolbar

2.1-->New graphical elements: checkboxes, radiobuttons, group boxes and push

buttons on screen

3.0-->Table control introduced; icons added to buttons

3.1-->Windows95-look with flat buttons; tabstrip control and ABAP List Viewer

(ALV) introduced

4.0-->Screens contain more information to reduce navigation

4.5-->Active X elements introduced; ALV is now based on grid control

4.6D-->GUI is re-designed; multiple-areas are introduced to reduce need for screen

changes

6.40-->Unicode support extended; accessibility and usability improved

Check this link

http://www.sapdesignguild.org/resources/r3_history.asp

http://help.sap.com/saphelp_nw04s/helpdata/en/66/bc7aab43c211d182b30000e829fbfe/content.htm

<u><b>Report to Change the GUI status during run time</b></u>

SET PF-STATUS 'MAIN' of Program 'RCS11001'.

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = Equip
IMPORTING
output = Equip.

SELECT stlnr INTO eqst-stlnr FROM eqst WHERE equnr IN Equip.


SELECT SINGLE idnrk INTO stpo-idnrk FROM stpo
WHERE stlnr EQ eqst-stlnr.

CALL FUNCTION 'RFC_DISPLAY_BILL_OF_MATERIAL'
EXPORTING
bom_action = '1'
bom_application = ' '
material = stpo-idnrk
plant = '2001'
bom_alternative = ' '
change_number = ' '
valid_from = ' '
revision_level = ' '
bom_type = ' '
skip_first_screen = 'x'
IMPORTING
function_code = l_test
TABLES
sap_field_data = sap_field_data
dms_class_data = dms_class_data.



ENDSELECT.


IF fn_code EQ 'F03' "Back
OR fn_code EQ 'F15'
OR fn_code EQ 'F12'.

SUBMIT zpm_rimara20 VIA SELECTION-SCREEN.

ENDIF.

Check this link too

http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba3ae35c111d1829f0000e829fbfe/frameset.htm

Reward all helpfull answers

Regards

Pavan