Editor in screen Painter

hello friends,
i hv created text editor in screen painter. when i write some lines in this editor and click on save button. then this text saves temproraly in table. when click on display this text will sees in editor again. upto this it is ok.
but when i run this program again next time, and when i click again on display button i cant get that saved text again. why this happens?
if i want to save this text permenantly then wht's the procedure.
please help me guys.
b'cuz this is an very imp matter for me.
replay as soon as possible.
thanks in advance.
regards,
Vinod.

no u can not save such long data into a table, the solution for this is to create the header-tdname related to the key fields in ur ztable.
like ur ztable has fields f1(key) f2 f3 f4...
now move the value of field f1(key) to header-tdname, so that it can be related to ur ztable field and u can get the same data when u try to retrieve some where else.
<b>Hope this is clear.</b>
Regards
- Gopi

Similar Messages

  • Facing problem with layout editor in screen painter .

    Hi gurus,
    I have installed IDES ECC 6.0 in my home system. Now when I go to layout editor in screen painter, I am getting rows in the screen. As per my knowledge there is an installation problem ..How to rectify that ? Could any one please tell me.
    Thanks & Regards
    Vardhan

    some times SAP Gui behaves like this, in my case i faced this problem many times, some times after shutdown my sap logon pad. and restart the sap , go to se51 , it will open the Screen painter normally. But some cases i uninstalled the Gui, and re installed .then only it opens properly. select all components when installing.

  • How to work with Alphanumeric Editor in Screen Painter?

    Hello Guys,
    I am trying to work on Screen Painter Layout and it's showing me that Graphical Screen Editor is not
    available and continue working with Alphanumeric Editor.I don't know how to work on this.Guys,
    Please let me know why is the message and what can we do about it.
    Thanks in advance,
    Sri

    Somtimes you will get this message if something got screwy with your SAPgui, for me simply closing out of SAPgui and going back in has fixed this issue.  If you do not know for sure that your SAPgui had been installed including the screen painter, then you should start there.  You will need the SAPgui installation executable, either from CDs or a downloaded file.  Run the SAPgui installation, and make sure to select the screen painter as part of the install, i believe it is under "development tools" in previous versions.  In newer versions I believe it is installed by default, but I do no for a fact that it is not this way in earlier releases, such as the 46D gui.
    So for make sure that Screen Painter has been installed with your SAPgui, if you are sure that it had been installed, perhaps it was working fine yesterday, then I would suggest first closing out SAPgui, and going back in, and trying the screen painter, If the problem persists, it may be worth it to reinstall the gui.
    Regards,
    Rich Heilman

  • Error while opening a screen painter

    Hi all,
    I am trying to modify a screen in SE80. But when i am clicking on the screen painter it shows 'EU_SCRP_WN32 : timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'
    Message no. 37033. Please let me know how to resolve this issue. Thanks a lot for your help!
    Regards,
    Priti

    For the Future Problem Facers:
    I too faced the same problem and the below steps helped me.
    Re: SFLIGHT is NOT defined for the current logical database.
    You can check the completeness of the program installation by starting the program gneux.exe locally in the SAPGUI directory (for example, by double-clicking on the program name in the Explorer window).The Layout Editor is displayed with German texts and an empty drawing area for the pseudo screen EUSPDYND 0000.
    If the installation is not complete, an error dialog box provides information regarding the cause of the error, for example, sometimes the DLL eumfcdll.dll is missing after reinstalling the SAPGUI. For example, the eumfcdll.dll DLL was sometimes missing after the SAPGUI was reinstalled.

  • Screen painter error: EU_SCRP_WN32 : timeout during allocate / CPIC-CALL

    Dear all
    When i using SE51 to open any screen , the screen painter can't give me the graphical layout editor and shows the following message:
    EU_SCRP_WN32 : timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'
    Message no. 37033
    Anyone knows what is the problem?
    Detail information :
    SAP GUI Version : 710 for window
    Fatch Level : 11
    thanks for your input.

    Dear All... I had same problem for many mounths... My solution has been the "NAME" of my computer. My name contains a special char ( ì ) and the server didn't answer at my "request" to launch the screen painter SAP.
    So try to change your "PC-Name" without special char (ex: "office") and try again to launch the Screen Painter.
    I'm sorry for my bad english and i hope this reply will be usefull for You.
    Paolo
    ITALIAN VERSION:
    Ciao a tutti, io ho avuto questo problema e non sono riuscito a trovare risposta; nelle innumerevoli ricerche in rete, con colleghi e persone più esperte di me sono riuscito a capire che lo Screen Painter di SAP in realtà è una sorta di "richiesta"  che viene fatta al server. Se il Nome del PC contiene caratteri speciali, il server sembra non rispondere e quindi si va in timeout.
    In pratica ho risolto formattando il PC ed in fase di re-installazione de S.O. ho dato come nome solo il mio nome di battesimo ed ho risolto. Ho dovuto effettuare un Format perchè nonostante avessi cambiato il nome del PC da schermata di Windows, la modifica non sembrava essere effettuata correttamente.
    Ho testato questo problema su diversi computer e il problema si è sempre risolto in questa maniera.
    Spero che questo contributo sia utile a tutti Voi.
    Rimango a disposizione per qualsiasi chiarimento.
    Paolo

  • Error in screen painter

    Hi all,
    I am trying to open layout in screen painter SE51, but i am not able to open it.Instead some editor type screen is opening .
    Also I am getting error ' EU_SCRP_WN32:timeout during allocate/CPIC-CALL:'ThSAPCMRCV''.
    Can anyone please tell me the solution to this problem ?
    Thanks

    hi Meena,
    There some problem with the installation of GUI ... Contact your basis consultant in this regard...
    Regards,
    Santosh

  • How to set Function Code for Radion Buttons in Screen painter

    Hi,
    I have faced problem of grouping 3 radio buttons in screen painter (no graphical editor). How to do it?
    I have checked similiar threads in SDN, but those are for graphical editor.
    Radio Buttons in custom screeen
    http://****************/Tutorials/ABAP/Checkbox/page1.htm
    http://****************/Tutorials/ABAP/Checkbox/page2.htm
    Regards,
    Sukhbold

    Hi,
    U want to create radio button in the selection screen  then u can create like this
    PARAMETERS : c1 AS CHECKBOX USER-COMMAND cd,
    r1 RADIOBUTTON GROUP rad,
    r2 RADIOBUTTON GROUP rad.
    AT SELECTION-SCREEN OUTPUT.
    IF c1 = 'X'.
    LOOP AT SCREEN.
    IF screen-name = 'R1'.
    screen-input = '0'.
    screen-active = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ELSE.
    LOOP AT SCREEN.
    IF screen-name = 'R1'.
    screen-input = '1'.
    screen-active = '1'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    Thanks,

  • Having Problems with my Screen Painter

    Hi,
    I'm new to SAP and I'm still learning. I'm on this part of tutorial wherein I am trying to create a Screen using the Screen Painter. But the problem is, the interface of SAP in the book looks something like this:
    http://www.kodyaz.com/articles/sap-abap-tutorial-alv-grid-cl_gui_alv_grid-screen-painter.aspx
    But my interface looks different. I'm sorry I can't post the picture here but It can be well described. It looks like a "notepad" with horizontal lines.
    Has anyone encountered this kind of screen painter? Hope someone could help me.
    Thanks.

    Hi,
    Do you receive some error like 'Graphical Layout Editor not available 37527'. Does the problem occurs only for some users or for all the users?
    If the issue is for all users, I suggest to check notes 101971 and 204910.                                                                               
    If its for a particular user, please make sure "graphical layout editor" is checked under SE51->munu Utilities/settings->tab ScreenPainter.           
    Hope this info helps,
    Br,
    Javier

  • I am Facing Problem In se51 screen painter?????

    Hi all,
    I am not able to get the tool bar and graphical view in SE51 how can it get the tool bar and graphical view.
    Thanks in Advance
    Sachin Gautam

    Hi Sachin,
    I guess you mean SE51 opens the Classic text view instead of the Graphical layout editor?
    In SE51 check Utilities->Settings->Screen Painter
    The checkbox in front of 'Graphical layout editor' should be checked.
    If it is already checked: try Rich Heilman's post: The Graphical layout editor might be missing
    Was this the answer to your question?
    Message was edited by: Erik Verbeeck

  • GUI Problem in Screen Painter

    Hi All,
    we are using SAP logon 640. In screen painter we are not getting GUI. we are getting the screen in Alphanumeric mode, But not in Graphical mode. How to resolve this problem.
    Thanks in Advance.
    Regards,
    chandra.
    Message was edited by: K Chandra Sekhara Reddy

    Hi k chandra,
    1. I supppose, the alphanumeric
      screen painter comes up.
    2. When it comes up,
       UTILITIES------>SETTINGS
    3. a new window will come
       TICK the chekbox for
       'Graphical Layout Editor'
    4. Then try, it will work.
    5. <b>If still it does not work,
       then another problem could be
       SAP GUI Installation.
    6. When installting sap gui,
       we have to select the component for
       Screen Painter GUI.</b>
    (Probabably it was not selected when
    installing on your machine)
    7. Then it will come.
    regards,
    amit m.

  • Screen painter

    Hi Experts,
    Can any one solve my problem.
    In screen painter SE51. If I Open Layout editor. It is showing new Screen editor (Just like lines.. as like script text editor).
    I want old editor as it is showing tools like Text, Push Button, Check Button, Input & Out put fields.
    Can any one say the settings regarding this.
    Thanks & Regards,
    Kumar.

    Hi Monarch,
    There is no problem with  your GUI or SAP Server, its all because of settings.
    To switch back to Graphical Editor, do the following.
    1) Go to SE51.
    2) Select Menu Utilities -> Settings
    3) Choose Screen Painter Tab
    4) Check the Graphical Layout editor Checkbox
    5) Save and close the Settings.
    Now you will see the Graphical editor the next time you press the Layout button.
    Regards
    Karthik D

  • Issues in Screen Painter

    Hi All,
       The Screen painter (SE51) is not displaying with Graphical Layout editor,though i have selected the Graphical Layout editor check box (From Utilities->Screen Painter> set the Graphical Layout Editor check box also marked ) .
       Though i am not able to get Graphical layout editor instead i am getting the alphanumeric editor only.
      Can anyone please suggest or give a solution for this will be appreciable.

    In case if u r not getting the Graphical Painter after installing the GUI Patch.
    Contact you basis person and ask him to open a port suppying information to GUI at front end. It needs to be done at SERVER end.
    Check the RFC - EU_SCRP_WN32 destination in SM59.
    Perform a "Test Connection": if the connection doesn't work maybe there is an issue in the connection between the presentation server and the application server.
    Check if there is a firewall that blocks the port used by the RFC.
    I have the same problem if I use a VPN connection to logon. The graphical screen-painter does not work...
    Hope this will give you some help in resolving the issue.
    If it still persists pl. write back to me.
    Darshan
    <i><b>**Pl. reward points and close the thread if your problem gets resolved.</b></i>

  • Customer Control in screen painter in Module pool - work like container?

    Customer Control option in screen painter in Module pool - work like container?
    is it true? How?
    Is like any work area or what?
    what is the excat use of that option?
    regards.

    Hello,
    In screen painter ,custom control is used to define the control area on the screen.Just click on that and make your own container area.When you create an ALV grid or TEXT EDITOR or any other control,it will get attached to the screen in that area through the custom container.
    Name the container area as say '<b>CONTAINER</b>'.(in capitals.)
    When you actually create the custom conatiner programatically,you should give the container area name.ie.
    Data : cont type ref to cl_gui_custom_container.
    Create object cont
    exporting
    parent = '<b>CONTAINER</b>'.
    Now,this container that you created-cont is attached to the screen in the area defined by CONTAINER.
    Regards,
    Beejal
    **Reward if this helps

  • GUI In screen Painter not working .plz help me.

    I have Installed SAP ABAP trail version 7.01 .
    I have Installed The GUI 6.40 forntend.
    It is working fine, BY using this I can connect to system, do pogrraming .
    But when click on layout button of any screen it show a msg " No response from some file .exe ( like ginit.exe I am not remembering the name exactly) and then it shows line edditor instead of graphical editor.
    And I want graphical editor.
    While Installing GUI there were lot of check boxes where there but I hecked the check box for GUI only beacuse I was not knowing anything about the rest, do I need to reintall it and selecte some more check box to fix the problem.
    I really dont know what should do, If anyone have any suggestion please let me know.
    Good answers will be appriciated.
    Thank you in advance.

    Hi, When you install the SAPGUI you can choose the GUI component. Check you have selected the 'Screen Painter* in the Installation. No need to uninstall the SAPGUI. Just Re-install the GUI with the Screen Painter component. It will solve your problem. Thks.
    Rgds,
    Jey

  • Problems in screen painter

    Hi,
    whenever i used to open my screen painter for editing layout its giving me only alpha screen even i have checked the option in utilities or unchecked tell me what should be the problem

    Hi,
    Go to menu Utilities of screen painter
    User specific settings
    Select the tab Screen painter
    Select the check box Graphical layout editor.
    Hope your problem will be solved.
    <b>Reward if helpful.</b>

Maybe you are looking for

  • Mail Attachments

    Two things. I can't seem to drag a file attachment from my Desktop to an email for sending. It simply flies back! The other thing - I inadvertently entered the wrong file from a list via the Attach button and tried to delete it or get rid of it by dr

  • Why do some emails I get don't wrap within the window?

    I receive an email from a particular sender using an iPhone, that shows each paragraph as one extremely long line and refuses to wrap in my Thunderbird view window. I open the same email in other clients, including my mobiles, and it wraps nicely. As

  • Using 6230i with CA-53 Cable on PC

    Hello - I've been using Nokia PC Suite with a CA-42 cable to hook up a 6610i. I've just changed to a 6230i so purchased a CA-53 cable. But when going through the connection procedure, the computer (Windows XP) doesn't recognise a connection and I get

  • Bug in LCD 9?

    Using LiveCycle Designer 9 (Acrobat 9 standard), Windows 7 platform My form is set as dynamic, and the subform is set as Flowed – Western Text.  When  I move an object (say a button) from one location to another by  dragging it, the code for that obj

  • Setting Still Image Durations in Premiere Elements 8

    I've been using Premiere Elements 4 for awhile and never did find a solution to a simple problem.   Now I can't see any improvements worth anything in version 8 either. I have, say, 100 jpgs.  I want to create a slide show with, to start with, a cons