Not able to SAVE changes in Graphical Screen Editor

Hi All,
I am not able to SAVE the changes which i do in SE51 using the Graphical Screen Editor.
I get the below message:
"EU_SCRP_WIN32 :connection to ctxprdcgy016.pcacorp.net"
If i use my ID on my colleagues system I am able to SAVE the changes without any error.
I am using Citrix Client to connect to remote server.
PLease if anyone has any solution

Hi
If the connectivity speed is too slow, then you will get this error. Since you are Citrix connectivity, you will log on to client network using remote log on. This will make your connectivity slow.
There is a note for this problem and note no is  Note 133903 - Upgrade of graphical Screen Painter.
https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=133903
Please go through below threads
Screen painter error: EU_SCRP_WN32 : timeout during allocate / CPIC-CALL
Error EU_SCRP_WN32 Time out
Shiva

Similar Messages

  • I am not able to save changes of gadgets in my Blogger blog

    When I am in the edit layout of my blog:
    http://www.blogger.com/rearrange?blogID=5691124119466167227
    and I move a gadget up or down and then hit the 'save' button, the save gets locked up and I have to exit and the change is not saved.
    I see in the lower left hand corner a javascript:void(0) message, which I assume is an error message pop up. I am hoping this might be enough information to tell you what could be causing the javascript message and if it is the reason my attempts to save changes on my blog are unsuccessful.
    I have Windows XP and use a desk top Dell Inspiron 530 computer. Thank you very much. I appreciate your help.
    I have already submitted this question to "Blogger", but they haven't replied.

    You don't have a copy of it on your backup of your downloads and you've checked your computer's hard drive for it ? What you can re-download will show under the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage on your computer's iTunes. If other films show there but not that one and it's still in your country's iTunes store then check to see if it's hidden : http://support.apple.com/kb/HT4919
    If it's not hidden and it's still in your country's store then you can try contacting iTunes Support and see if they wil grant you a re-download : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Iam not able to get the GUI  Graphical Layout editor

    Dear Freinds
             can any body let me know what are the support package which has to be applied
    to get the Graphical layout editor...........when iam trying to select the Graphical layout editor in Screen painter ( it is givin error) .........as the Gui is not being properly installed.
    could anyone letme know which patchi have to apply.
    regards
    vamsi

    Dear Vamsi,
    You can contact your Basis team. They would need to apply a patch so that you wan view the GUI Layout Editor.
    graphical screen painter layout not working
    Regards,
    Naveen.

  • Not able to save changes in VB Project properties under debugging.

    
    I am unable to save Run64BitRuntime property=FALSE for my SSIS VB Project under debugging. I change it, rebuild, save and reopen. Then I check the change I made and it shows reverted to TRUE. What is causing this
    ITProTek

    Hi ITProTek,
    As far as I know, it is by design.
    The Run64BitRuntime project property applies only at design time, for the SSIS packages that really don't make use of the 64-bit processor, the SSIS project property
    Run64BitRuntime can be set to False.
    Reference:
    https://social.msdn.microsoft.com/Forums/en-US/e91d6b6e-207e-4370-84dd-00016de602ab/setting-run64bitruntime-debugging-property-to-false-is-not-deploying?forum=sqlintegrationservices
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/63323b27-0c08-4d8d-bff3-b67a3d5296dc/ssis-2012-run64bitruntime-defaults-to-true?forum=sqlintegrationservices
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Not able to get changed values in the SAVE EVENT in ServHPartnerDet view

    Hi Experts,
    I am new CRM WEB IC, i have requirement like need to access four IBASE fields from BupaIbaseDetail and need to display those fiedls in ServHPartnerDet view. I am able display the fields and its values in the target view. But when user press change button and changes those four fields and press save button not able get the changed values in to the SAVE EVENT.Anyone please help me in this.
    IBHEADER , IBASEADDRESS  are the CONTEXT NODE CREATED in target view. I have binded IBHEADER to CuCoIbase custom controller and getting four fields data from IBASEADDRESS. below is the code for CREATE_CONTEXT_NODES.
    METHOD create_ibaseaddress.
      DATA:
        model        TYPE REF TO if_bsp_model,
        coll_wrapper TYPE REF TO cl_bsp_wd_collection_wrapper,
        entity       TYPE REF TO cl_crm_bol_entity,              "#EC *
        entity_col   TYPE REF TO if_bol_entity_col.             "#EC *
      model = owner->create_model(
          class_name     = 'ZL_CRM_IC_SERVHPDET_CN00'
          model_id       = 'IBaseAddress' ).                    "#EC NOTEXT
      ibaseaddress ?= model.
      CLEAR model.
      coll_wrapper =
        ibheader->get_collection_wrapper( ).
    TRY.
          entity ?= coll_wrapper->get_current( ).
        CATCH cx_sy_move_cast_error.
      ENDTRY.
      IF entity IS BOUND.
        TRY.
            entity_col = entity->get_related_entities(
                            iv_relation_name = 'FirstLevelComponent' ).
          CATCH cx_crm_genil_model_error.
        ENDTRY.
        TRY.
            entity ?= entity_col->get_current( ).
          CATCH cx_sy_move_cast_error.
        ENDTRY.
        CLEAR entity_col.
        IF entity IS BOUND.
          TRY.
              entity_col = entity->get_related_entities(
                              iv_relation_name = 'ComponentAddress' ).
              ibaseaddress->set_collection( entity_col ).
            CATCH cx_crm_genil_model_error.
          ENDTRY.
        ENDIF.
      ENDIF.
    ENDMETHOD.

    Code i have written in the CREATE_CONTEXT_NODE method for my custom context nodes( IBHEADER,IBASEADDRESS).
    this  CREATE_IBHEADER some data related to IBASE header then from this reading the IBASEADDRESS contextnode fields for displaying in the ServHPartnerDet. It is working fine but After changing the four fields values in the ServHPartnerDet view and trying to save, then context is not reading the new values it gives the old values only.
      TRY.
          lr_coll_wr = ztyped_context->ibaseaddress->get_collection_wrapper( ).
          IF lr_coll_wr IS BOUND.
            lr_entity ?= lr_coll_wr->get_current( ).
          ENDIF.
        CATCH cx_crm_genil_model_error.
      ENDTRY.
      CALL METHOD lr_entity->if_bol_bo_property_access~get_property_as_value
        EXPORTING
          iv_attr_name = 'BUILDING'
        IMPORTING
          ev_result    = lw_building.
    the building has got result of old value no the new value.
    method CREATE_IBHEADER.
        DATA:
          model        TYPE REF TO if_bsp_model,
          coll_wrapper TYPE REF TO cl_bsp_wd_collection_wrapper,
          entity       TYPE REF TO cl_crm_bol_entity,    "#EC *
          entity_col   TYPE REF TO if_bol_entity_col.    "#EC *
        model = owner->create_model(
            class_name     = 'ZL_CRM_IC_SERVHPDET_CN01'
            model_id       = 'IBHEADER' ). "#EC NOTEXT
        IBHEADER ?= model.
        CLEAR model.
    bind to custom controller
      DATA:
          cuco TYPE REF TO cl_crm_ic_cucoibase_impl,
          cnode TYPE REF TO cl_bsp_wd_context_node.
      cuco ?= owner->get_custom_controller(
            'CuCoIbase' ).                                      "#EC NOTEXT
      cnode ?=
        cuco->typed_context->ibaseheader.
      coll_wrapper = cnode->get_collection_wrapper( ).
      ibheader->set_collection_wrapper( coll_wrapper ).
    endmethod.

  • Not able to save file changes on HCP Web IDE

    Hi
    i am not able to save the file changes on my HANA XS Application created on HCP Trail Account using Wed IDE. This problem does not occur always but now it has become frequent. On click of save button waiting icon comes up and then after minutes it shows error message as Error while Saving.
    I normally use HCP Web IDE platform for all development work.
    My Account ID : i314165trial
    Can anybuddy tell me what is the issue as this is will hamper the development process.

    Check the permissons on the folder and drive, not just on the file.

  • Have a trial version, am not able to save a document after I've made changes.  Why is that?

    Have a trial version, am not able to save a document after I've made changes.  Why is that?

    Hi,
    if you use Adobe Reader to view your PDFs you cannot save any changes by default.
    To do this you need at least Adobe Acrobat to add additional Rights (aka Usage Rights aka Reader Extensions) to your PDF.

  • OLAP Variable in DTP - Not able to save the selection

    Hi Guru's
    We are on BI 7.0 and supportpack 13. I am facing an issue with the OLAP variable in DTP filter . I am not able to save the selection/filter  within DTP via OLAP variable. I am able to test the values of the OLAP variable within DTP screen (just like in infopackage) , but when i save it, it does not appear in the selection.
    Have any of u faced this issue? I searched for SAP notes , but could not find any matching this issue. Could u please help?
    Thanks & regards

    Hi Voodi,
    Thanks for ur response. But i have checked that too. I am not saying that the value need to appear in selections screen. The filter in DTP is not showing a check tick mark and also no variable is found even though i had saved it and activated the DTP.
    I also checked running thisDTP and checked the selections in the header of the monitor. No selection is shown there.
    Thanks

  • Not able to save more than 2000 characters

    Databse - SQL server 2000
    I am using jdbc to save some text in sql server 2000 database. column is of type ntext.
    If text is more than 2000 character, i am getting an error.
    I tried changing the connection setting to sendstringparameterasunicode=false. After setting this property i am able to save more than 2000 characters, but i am not able to save some special characters. eg - . I am not able to save “abc” but i can save "abc". So it is not recongnizing the double quotes in the first scenario.
    Amit
    Edited by: rushtoamit on Feb 22, 2010 8:48 AM

    No idea. But it isn't a java nor jdbc (general problem.)
    Thus if you are seeing something that tells you it is too big it either comes from the driver or the database.
    So your solutions are
    1. Use a different database and driver
    2. Use a different driver
    3. Modify your code

  • CS5 not able to save workspaces or edit preferences

    Hey guys,
    After installing CS5 yesterday I quickly found out that in all of the programs I am not able to save my work space or edit preferences.  Basically what happens is I will say "save workspace" and a blank box pops up which says save workspace, but then that is it... its basically frozen because I can not get past this prompt.
    Now when I try to change my preferences on the clipboard to take off PDF preferences, I see a square that minimizes quickly to the bottom right of the program and then the program is left frozen, (nothing can be clicked on) and the only way to exit is to end the process.
    According to some other people this may be caused due to a flaw in the installer which makes it so I do not have access to read // write preferences.  There seemed to be a solution for some mac users by changing system files so that anyone can update them.  But I can not seem to find the same files they are editing on my windows 7.
    Can some one please try to help me out.
    Thank you so much
    M

    Do you have any custom display setting such as large fonts or resolution? If so, set them back to Windows defaults.
    Bob

  • Xcode 4.2 not ask to save changes

    Why xcode 4.2 will not ask: "to save changes or not", for example when I delete \ altering anything in the StoryBoard and elsewhere? Wen I close xcode, it's just save any changes I did, but I do not want to do this. That's bad, I can do any modifications in my project and then just hit close button and it's will be saved without any warning messages, but if i do not want to save?

    Llessur999 wrote:
    KT is pointing you to the very first first preference, Xcode > Preferences > General > Auto-save.
    No he isn't.  Those links just go the introductory pages, which say nothing about this.  As usual for him.
    There is no preference for this in Xcode, which is probably WHY THIS GUY ASKED.
    This situation is a lot worse than simply not asking to save a file.  Lion is deleting work.
    Last night I typed a non-trivial paragraph of code into a source file.  And saved it.  I hit Command-S after every line of code, no exaggeration.  A few minutes later, I was scrolling up and down madly looking for it and couldn't find it.  In case I accidentally put it in the wrong file, I searched the whole project for a string I knew I'd used.  Nowhere to be found.
    Suddenly Xcode presents a dialog complaining that it couldn't autosave the file because it had been modified externally.  Did I want to "revert", or save what was in the editor?
    I've been seeing these dialogs on both my machines intermittently for weeks.  Same versions of everything on each system: OS, dev tools.  Same project.  Usually I opt to save what's in the editor, thinking that it must be the correct version.  Well now I know otherwise.  I hit "Revert", and the block of code magically reappeared on my screen.
    No, there was nothing else running that could've deleted code.  At least, not anything visible.
    But it occurred to me that this might be Lion file-management crap gone seriously and dangerously wrong.  And now that other people are reporting the same thing, it looks like that suspicion is being borne out.

  • Not able to save data in pa30 action infotype in production

    Hi,
    In my organization users are not able to save data in SAP HR  pa30 action info type in production.
    It is gets hanged and throws run time error after run long time .
    in ST22 it will give below error:
    Runtime Errors   TSV_TNEW_PAGE_ALLOC_FAILED
    Information on where terminated
        Termination occurred in the ABAP program  "SAPLRHAS"   in "FILL_STRU_TURBO"
        The main program was "MP000000 ".
        In the source code you have the terminated point in line 759
        of the (Include) program "LRHASF00".
    Thanks and regards,
    Tarun

    Hi,
         Pls check your relationship of reporting postions and set up relationship A002 and also check organization relationship
        otherwise take help form ABPERs and debug and partiuclar prorgram and where and witch object its throwing
        error found out.
    Regrads,
    Tarun

  • Not able to save bindings when calling bindings.getOperationBinding("update") in customized method.

    Hi All,
    I'm new to ADF and trying to learn it.
    I'm using JDev version 11.1.1.6.0.
    My use case is mention below :
    1. I've created 2 Bounded task flows and calling one task flow from another task flow using task flow call activity.
    2. In child task flow, i've created view activities with Train component. View activities have text fields, radios buttons, tables etc which can be filled by user.
    3. I want to save the page data to payload if I move to next view activity using Next button or by train bar.
    To accomplish this scenario, I'm calling a customized actionListener on click of Next button/Train Stop Bar in which I'm using below mention code :
    BindingContext bindingContext = BindingContext.getCurrent();
    BindingContainer bindings = bindingContext.getCurrentBindingsEntry();
    OperationBinding obj = bindings.getOperationBinding("update");
    if(obj != null){
         obj.execute();
         if(!obj.getErrors().isEmpty()){
              System.out.println("Not able to save data......");
         else{
              System.out.println("able to save data......");
    But I'm not able to save page data to payload/bindings. If i close the window using browser close button and move back to previous train stop in which i've filled the data, the data get lost and all the text fields/Radio button become empty.
    If I use Save button provided by Oracle BPM, then I'm able to save it. and data reflected even after if i close the window using browser close button.
    So I also try to use the below acode but did not get any success :
    FacesContext fctx = FacesContext.getCurrentInstance();
    Application app = fctx.getApplication();
    ELContext elContext = FacesContext.getCurrentInstance().getELContext();
    InvokeActionBean invokeActionBean = (InvokeActionBean)app.getELResolver().getValue(elContext, null,  "invokeActionBean");
    invokeActionBean.setAction(actionEvent);
    invokeActionBean.action();
    Can somebody please let me know, what am I doing wrong here or if I'm missing anything.
    Any pointers/suggestions for its resolution are welcome.
    Thanks in advance.

    Hi Timo,
    Yes, it is the same binding which is called from BPM Save button.
    I did not use the debugger but i tried to print the OperationBinding object which was showing me proper binding for update.
    Even when i tried to print the return value of invokeActionBean.action(); method, it print the proper string "closeTaskFlow".
    So if I see it logically, then I'm just trying to call the methods of InvokeActionBean from my customized method.
    If methods of InvokeActionBean not being accessed, or if it was not getting called, then it should not print the "closeTaskFlow" as return value.
    I only want to save page data into bindings once I'll move away from page precisely on moving next.
    If there is any other work around for this issue, please let me know.
    I've also tried to use Explicit/Implicit save points provided by ADF but that did not work too.

  • Not able to save a newly created Data Model in BI Publisher.

    Hello everyone,
    I was trying to create a new Report (my very first report) in BI Publisher. I created a new Data Model and a Data Set. But I am not able to save the Data Model and thus not able to proceed to the report. There's no error shown. Same happens with reports too.
    Kindly provide me with a solution.
    Regards
    Ash
    Edited by: 902739 on 28-Dec-2011 01:02

    You should have a group called 'XMLP_ADMIN' in your repository and administrator or the user you are using should be part of that group. Look into paint.rpd for all these.

  • Not able to save report output in a text file and RTF file

    I am using Oracle Developer6.0 . I am facing problem with reports. I am invoking reports from form using run_product.
    1. I could not able to save the report in text file . Whenever i try to save the report output in a text file.It gives dump and application get closed.
    2. In RTF format , it execute the query which i have given at the design time while creating a report . But while running i am passing query either through lexical parameter or passing value of where criteria user parameters. It display the output for the specified value. But when i save this report output in rtf file . It execute design time query and save that in a rtf file.
    If any body is having any idea about it . Please let me ASAP . It is very urgent for me.
    Thanks in advance

    Try the following:
    Do not generate the report to .rep file, but rename/copy the .rdf file to .rep file and execute it.

Maybe you are looking for