What is the exact meaning for Screen Texts, GUI Status & GUI Titles

What is the exact meaning for Screen Texts, GUI Status & GUI Titles and where we can find in SAP.
What is called as these : Screen Texts, GUI Status & GUI Titles
Kindly let me know.
Akshtiha.

Hi Akshitha,
<b>Screen text</b>:They are labels that you can display beside your selection-screen parameters/select-options.. from the ABAP editor, use the menu option Go to> Text Elements>Selection Texts.
<b>GUI STATUS</b>:go through this link
http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba99935c111d1829f0000e829fbfe/content.htm
<b>gui title</b>:The GUI status and GUI title are interface elements of screens. You create both of them using the Menu Painter in the ABAP Workbench. On screens, GUI statuses of type dialog status are used.
Thanks
Vikranth Khimavath

Similar Messages

  • What is the exact mean of  classname.class.

    what is the exact mean of classname.class. what situations it will be use ful . how to use . give me one example .

    Each class, interface, or enum loaded into the JVM has an associated Class object. This contains a lot of information about the class in question, including lists of fields and methods. <classname>.class gives you a reference to the Class object of the class mentioned.
    See the java.lang.Class javadocs for all the things you can do with a Class object.
    For example:
    theImage = new ImageIcon(MainClass.class.getResource("item.png"));to retrieve an image file from the directory containing the MainClass class file.

  • What is the exact syntax for calling remote function module.

    Hi to all
    1.....what is the exact syntax for calling remote function module.?
    Thanks and regards,
    k.swaminath reddy

    hi
    good
    Lets do simple example where you will first create a RFC in one server (say A) and create normal program in othere server (say B). Finally you will call the RFC in A from B.
    Do the following steps for creating RFC in server A.
    1. log on to server A
    2. go to se37
    3. Edit -> function groups-> create function group and give the function group name (say ZGRP).
    4. create a FM ( say Z_TEST_RFC) in se37 providing the function group which is created just now.
    5. go to attribute tab -> choose remote-enabled module from processing type.
    so that your FM will become RFC.
    6. provide the import parameter in import tab.
    we will provide only two import parameters.
    - parameter name : P_NUM1, typing: TYPE, associated type : I & check the pass value (all the parameters of RFC must pass by value).
    - parameter name : P_NUM2, typing: TYPE, associated type : I & check the pass value
    7. provide the export parameter in export tab.
    parameter name : P_SUM, typing: TYPE, associated type : I & check the pass value
    8. write the given simple code in source code tab.
    FUNCTION Z_TEST_RFC.
    P_TOT = P_NUM1 + P_NUM2.
    ENDFUNCTION.
    Do the following steps for creating ABAP program which will call the RFC in server B.
    1. se38 - > creat a program.
    2. write the given simple code.
    data tot type i.
    call function 'Z_TEST_RFC' destination 'XXXXXX'
    exporting
    p_num1 = 10
    p_num2 = 15
    importing
    p_tot = tot.
    write tot.
    please note that XXXXXX is RFC connection which is avialable in sm59 transaction in server A.
    -go to sm59 - > abap connection (list of RFC connection configurations are avialable). choose server B connection and replace it of XXXXXX in the code.
    finally you can execute the normal abap program that will call the RFC and display the result.
    reward point if helpful.
    thanks
    mrutyun^

  • What is the exact protocol for ejecting Time Machine disk from USB?

    I have an external drive that I connect and use for Time Machine. When I'm done, I eject the drive and Finder disappears. I pull the USB connector and the OS complains that I did not eject the drive properly.
    I've seem the other threads, and I'm afraid I'm going to get a lot of discussion and no answer. So here's a simple question:
    What is the exact protocol for closing Time Machine and disconnecting the USB cable to the drive without getting a complaint from the OS?
    Thanks
    Mike

    Drag the icon to the trash or highlight it and use the eject button or highlight it and use Command+e.

  • HT1535 what does the cloud mean for my movies

    For my ipad, I have a few movies I want on it.  Most of my movies have a cloud in the corner and I do not want them on my ipad.  What does the cloud mean?

    Go to Settings>iTunes and App Store>Show All>Videos>Off. The movies with the cloud icon are movies in the cloud and they should disappear when you do what I posted.

  • What is the exact functionality for ASCS and SCS?

    I have some simple questions about ASCS and SCS:
    1) what is the difference between ASCS and SCS (they are all central instances services). What is the functionality of each?
    2) What is the rule to distribute them on a clustered system , e.g.MSCS?
    Thanks for your clarification.

    1. http://scn.sap.com/docs/DOC-25454
    2. I have never done cluster installation
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a0b86598-35c5-2b10-4bad-890edeb4c8f2
    Just now found this discussion post
    Re: For new ABAP HA - with ASCS, Central instance still needed?

  • What's the exact mean of "Dependency Hint"?

    i have read all of the articles about "Dependency hint",but i still don't know how and when to use it!
    is it used for the master detail table?
    i have add the dependency hint for a detail table ,but there is no affection!
    thanks!

    Each class, interface, or enum loaded into the JVM has an associated Class object. This contains a lot of information about the class in question, including lists of fields and methods. <classname>.class gives you a reference to the Class object of the class mentioned.
    See the java.lang.Class javadocs for all the things you can do with a Class object.
    For example:
    theImage = new ImageIcon(MainClass.class.getResource("item.png"));to retrieve an image file from the directory containing the MainClass class file.

  • What's the exact trigger for when updating/inserting/deleting data from one DB to another DB which contains same info?

    Hi guys,
    I have created a copy of the AdventureWorks2012 DB called AdventureWorks2012_new on the same instance.
    I have created the following trigger below but my friend who is a DBA told me that this is not correct and I should be using the inserted table when creating this trigger. I would like AdventureWorks2012_new DB to be updating/inserting/deleting data from
    the same tables that have been updated/inserted/deleted in the AdventureWorks2012 DB. How exactly should I do this for all the tables in the whole database ? What I have written below is just for one of the tables, is there a quicker way to do it for all tables
    in this DB so that it performs the actions mentioned above, automatically ? Help would be greatly appreciated so I can understand how this works, thanks
    CREATE TRIGGER [HumanResources].[tr_HumanResources_AfterUpdate]
    ON [AdventureWorks2012].[HumanResources].[Department]
    AFTER UPDATE
    AS
    BEGIN
    SET NOCOUNT ON;
    UPDATE AdventureWorks2012_new.HumanResources.Department
    SET Name = t2.Name,
    GroupName = t2.GroupName,
    ModifiedDate = t2.ModifiedDate
    FROM AdventureWorks2012.HumanResources.Department AS t2
    INNER JOIN AdventureWorks2012_new.HumanResources.Department AS t1
    ON t2.DepartmentID = t1.DepartmentID
    END

    For insert it's easy:
    CREATE TRIGGER [HumanResources].[tr_HumanResources_AfterInsert]
    ON [AdventureWorks2012].[HumanResources].[Department]
    AFTER INSERT
    AS
    BEGIN
    SET NOCOUNT ON;
    Insert INTO AdventureWorks2012_new.HumanResources.Department
    (DepartmentID, Name, GroupName, ModifiedDate)
    SELECT DepartmentID, Name, GroupName, ModifiedDate
    FROM Inserted;
    END
    I didn't verify column names, so you may need to make sure to use correct column names for that table.
    Setting replication is a bit advanced topic although BOL is clear and you may start here
    http://technet.microsoft.com/en-us/library/ms151198.aspx
    If it will be complicated for you, you can ask extra questions in the MSDN Replication forum.
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • What is the best program for converting text PDF documents to audio files?

    Hi all, I'm looking for a program (cost is not a factor, I'm looking for the highest functionality) that will convert PDF files (text, often scanned documents) to audio files, preferably ones that are able to have the recordings saved.

    Podner is very good.
    http://www.splasm.com/products/productpodner.html
    12 PowerBook Mac OS X (10.4.2)

  • What's the best app for screen recording?

    The topic pretty much says it all.
    I need a MacPro app that records (to video) mouse cursor
    movements, button states, and etc. so that real-time
    tutorials and presentations can be delivered and distributed
    over the internet.
    Here's is one of my previous jobs for reference and to get
    us on the same page:
    ftp://ftp.newtek.com/pub/LightWave/LW9/ShaderIntro_Quicktime.mov
    Additionally you may need to install this codec:
    http://www.techsmith.com/download/codecs.asp
    Is there anything out there that will do this on the Mac?
    Thanks in advance guys!

    Snapz Pro is the best screen capture utility period. At the moment it is not a Universal Binary, but it was updated to run on Intel Macs. ASW is working on a major update for Snapz that will be a UB.
    Here is an indication of how Snapz performs on a Mac Pro under Rosetta {http://www.machinima.com/article.php?article=459}

  • What is the exact meaning of Dragging with(out) Drag Lock?

    I am new to Mac and I tried several ways to get known the difference. But what I see is that there is no difference between these two settings, anyone can explain to me? Thanks in advance.

    Below is my understanding of how this works :
    a. Sessions are "lite/local". Hence are stored in the KJS. If this KJS goes down/crashes, the session info is lost.
    b. This scenario is applicable when we have more than 1 KJS engine. The session info' is stored in the KXS engine and will be shared among all the KJS engines. (Here I am assuming that the iAS is Not clustered). If any of the KJS engines fail, the session info is not lost, but if the KXS crashes, then the session info is lost.
    c. This is in a clustered environment. The session info is stored in the Primar KXS and will be regularly backed up to the Backup KXS (assuming a backup has been configured). So, if any of the KJS engines fails, session info is still available in the KXS engine. If the Primary KXS crashes, then the backup assumes primary and this engine will have all the session info, so we do have a proper failover.
    Hope that helps.
    Cheers,
    Vasanth

  • What is the exact meaning of the Slider control's SmallChange property

    Here is the definition from MSDN:
    "Gets or sets a Value to
    be added to or subtracted from the Value of
    a RangeBase control."
    "For example, when the user taps the track of a custom scrollbar control, the Value property
    would increase or decrease by the value of SmallChange."
    After I set SmallChange = 1, when I move the slider between 0 and 100, the value can be anything (e.g. 65.5810815512).  I thought it the change would multiples of SmallChange (i.e. integer).
    Could anyone shed some light on this property?
    Hong

    SmallChange doesn't work with slider. SmallChange works with keyboard. If you want in multiples of 1 (or SmallChange) then you can write your code in ValueChanged event. For multiples of 1 then you can try following code
    Private Sub MySlider_ValueChanged(sender As Object, e As RoutedPropertyChangedEventArgs(Of Double)) Handles MySlider.ValueChanged
    Dim value As Integer = e.NewValue
    MySlider.Value = value
    End Sub
    Gaurav Khanna | Microsoft .NET MVP | Microsoft Community Contributor

  • What is the exact meaning of snapshot?

    in pattern Transfer Object Assembler, TransferObjectAssembler (usually a stateless session bean) produces a snapshot of the model at the time of construction and collects the data to a access object, my question is how can it be sure that the models in different business object may not change while you are collecting them together especially the model changes frequently?
    thanks,
    linubert

    Hmm, snapshots--we covered this in my graduate class on distributed systems. For a good overview (although rather tough reading), try this paper by Leslie Lamport (one of the God's of distributed systems). In general, these types of problems are HARD and alot of research in distributed computing covers these kinds of things:
    http://research.microsoft.com/users/lamport/pubs/chandy.pdf

  • What is the exact meaning of PAYLOAD?

    It is appearing here all the time.
    Who can give an exact definition?
    Thanks!

    Hi Jennifer,
    just have a look at this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/b6/0b733cb7d61952e10000000a11405a/content.htm
    to see how XI messages are build
    (their structure) 
    and you will know where's the payload section
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • What are the "EXACT" requirements for Yosemite install on iMac 5.1 (fails on wk 27 2007 build with OS X.6.8)??

    My iMac seems to meet all of the stated requirements
    Ie: Mid 2007 or newer, 2GB RAM, 50+GB HD space, OS X.6.8. Yet it gives an error of "Cannot install Yosemite on this computer" after attempting an update/install. No other useful information is given and just re-presents the same system requirements over and over with no help.

    Yosemite requires an iMac 7,1 or higher, while yours is:
    Introduced
    September 2006
    Discontinued
    August 2007
    Model Identifier
    iMac5,1

Maybe you are looking for