Oss note 870991 Error while changing selection screen error.

When i try to implement oss note I need to change the selection text of program J_1I_QER_EFILE.
A selection text IND . But when i try to delete or rename it it shows me an error ' Delimitation text IND is an original text and cannot be deleted or renamed'
Please advice.Thanx in advance..

Try translating the texts before renaming/deleting.
Regards
Karthik D

Similar Messages

  • Alv is not appearing in the same Selection Screen

    Hi people..
    First time using  cl_gui_docking_container.
    I have a problem, my alv is not appearing in the same Selection Screen.
    is there somethign wrong with my code? it doesnt even show a dump or catch.
    Regards
    DATA: lo_dock TYPE REF TO cl_gui_docking_container,
           lo_cont TYPE REF TO cl_gui_container.
    DATA: gr_table      type ref to cl_salv_table,
           gr_functions  type ref to cl_salv_functions,
           gr_display    type ref to cl_salv_display_settings,
           gr_columns    type ref to cl_salv_columns_table,
           gr_column     type ref to cl_salv_column_table,
           gr_sorts      type ref to cl_salv_sorts,
           gr_agg        type ref to cl_salv_aggregations,
           gr_filter     type ref to cl_salv_filters,
           gr_layout     type ref to cl_salv_layout,
           color         type lvc_s_colo,
           key           type salv_s_layout_key.
       SELECT * INTO TABLE tbl_datos_items FROM zsd_micros_bd.
    CHECK lo_dock IS INITIAL.
      CREATE OBJECT lo_dock
           EXPORTING
             repid = sy-cprog
             dynnr = sy-dynnr
             ratio = 70
             side  = cl_gui_docking_container=>dock_at_bottom
             name  = 'DOCK_CONT'.
         IF sy-subrc <> 0.
           MESSAGE 'Error in the Docking control' TYPE 'S'.
         ENDIF.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( )

    Hi ,
    First you have to create you own screen ( dynpro )  with a screen number ( 0101 for exemple )  , you need to pu a custom control in it , name the custom control ( lo_cont )
    For the screen created you need to create a module for the PBO , in this module you sould put you code for displaying the liste :
    Module STATUS_0101 output.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( ).
    Endmodule.
    and give the screen number when calling  lo_dock 
    CREATE OBJECT lo_dock 
           EXPORTING
             repid = sy-cprog
             dynnr = '0101'.
    tested
    Regards

  • Error Message in selection screen Status bar is getting truncated

    Hi Guys,
    Error Message in selection screen Staus bar is getting truncated (full message is not getting displayed).... can anybody tell me how to reslove this

    Hi
    Maimum we can give the error message length is 50 char. If you give more than that it will get truncated.
    What you can do this split 50 and 50 like that you can give 200 chnars.
    Data : Text1 type char50
              Text2 type char50
    If sy-surc ne 0.
    Message Text1 Text2  TYPE "E'' or 'S'
    endif.

  • I get an error while changing modules pop up when opening Lr. There is no import button to use and if I try to load the default catalog I get the error message again essentially making Lr completely unusable for me! please help

    When launching Lr i get the initial screen to come up followed by an "error while changing modules" pop up. I have uninstalled and re-downloaded, followed all the suggested trouble shooting fixes and still nothing. When the app starts it has the basic info boxes but without any options in them (i.e. no import button or any buttons at all for that matter).All my other creative cloud apps seem to be working fine but Lr won't. Please help

    Ah, see, you said you had done it differently before.
    > and I tried to add a toolbox button by navigating to AcroPDF.dll.
    You'll need to reinstall Reader if the libraries aren't registered. You can't register them manually.
    Perhaps if you posted some of your code (where it creates the objects, etc.) we might be able to give you some more advice. You're sure you aren't trying to use anything outside of the AxAcroPDFLib.AxAcroPDF class?

  • Throwing error msg in selection screen

    Hi all,
    I want to throw one error message in selection screen .
    This message is of more than 1000 chars.   and i want to show these 1000 chars in  a pop up window and when i press 'TICK' mark, it should stay only in the selection screen . It should not go to the output screen and it should not leave the transaction either..
    Can anyone help me in this by providing the coding for this..
    Regards,
    Shanthi

    Hi Shanthi,
    Your requirement is fulfilled by standard SAP message processing. Through message maintenance (TCode SE91), you define a message with a long text.
    Let us say the message class is ZSHANTHI and the message number is 025. Besides the message short text you defined say 'Something wrong with &. Refer Long Text', un-check the checkk-box 'Self Explanatory', choose this message number and click on 'Long Text' button on the application toolbar. You will get long text editor and you can compose your 1000 lines or even 1000 pages story there.
    Now let us see what you need to do in the report program. Your requirement is 'Issue the error message. When user hits Tick, display long text in a modal window and later stay in the same selection screen'.
    You just issue this message in AT SELECTION-SCREEN event as:
    MESSAGE e025(ZSHANTHI) WITH 'requirement'.
    The error message will display on the status bar and when user hits the message X button, the long text with your story will appear in a modal box and still selection screen stays.
    If your client is adamant in having only 'Tick' mark (this sucks me), you can add DISPLAY LIKE 'S' addition to the above message statement. But this addition works only 4.7 upwards.
    If you want to  issue this error message in list processing events like START-OF-SELECTION, then, you need to issue the following statements:
    MESSAGE s025(ZSHANTHI) WITH 'still weird requirement'.
    Note the message type 'S' above.
    LEAVE LIST-PROCESSING.
    Hope this helps.
    Regards
    Suresh Radhakrishnan

  • Budget Exceeded error while changing in Account Assignment

    Hi,
    The user is facing an error while changing the Accounts assignment category to "Assets" in a PR. The PR was created with AAC as "U" for all the line items. The user is changing that to "A". After that he provides the asset number then the error is coming as below:
    Item 010 Order 0809/A15 budget exceeded
    Message no. BP604
    Diagnosis
    In document item 010 Order 0809/A15, budget for fiscal year 2010 was exceeded by 6,630.00 INR.
    The valuation price for that particular line item is Rs 6630.00. I have not changed the other line items.
    Need the suggestion.
    JK

    I think there some settings in Budgeting, n Finance people are more familiar with those settings. Normally, if u craete a Purchasing doc. PR or PO or GR/ IR from MM side, with account assnt., the relevant budget()which is created for that commitment item) will updated with the document value. There may be settings with delivery date or so. check with your FI guys
    umakanth

  • Error while changing modules

    On a Mac, did digital download from B&H. Has never worked because error while changing modules. Did EVERY step in forums. Nothing. Still under manufacturers warranty, need to talk to actual customer rep but only gives me option to post question on forum. So far this is more than annoying to have to deal with.

    Hi Atul Saini.
    It is unbelievable how miserable the ADOBE support is.
    Iam sorry - but Iam awaiting answers, as we are paying
    since nearly a month and Lightroom does not work at all.
    Can you help or what is happening?
    Thanks.
    Really angry.
    Julia Ufer
    2014-09-05 21:50 GMT+02:00 Jeff A Wright <[email protected]>:
        Error while changing between modules
    Jeff A Wright
    <https://forums.adobe.com/people/JeffAWright?et=watches.email.outcome>
    marked Atul_saini123
    <https://forums.adobe.com/people/Atul_saini123?et=watches.email.outcome>'s
    reply on Error while changing between modules
    <https://forums.adobe.com/thread/1566317?et=watches.email.outcome> as
    helpful. View the full reply
    <https://forums.adobe.com/message/6703771?et=watches.email.outcome#6703771>

  • Error while changing between modules

    Dear Know-it-All out there.
    Iam a Newbie - Middlebie Photosop User , so to keep it short.
    We just installed CC with Lightroom & PS. The problem „Error while changing between modules“.
    is occurring while starting Lightroom and the program cannot be used properly.
    There seems no chance to create a catalog properly, the Library just
    does not open any menu which it should do.
    Adobe Support could not work it out either so roar, their suggestions was
    to restart in safety mode / deleting library 5plist / plus many more
    little stuff which actually did not help.  This is already the second installation ,
    same problem as with the first. We are working on a IMac 2.9GHz, i5, 8GB 1600Mh, OSX 10.9
    Any ideas? Thank you so much and kind regards.
    Julia

    Hi Atul Saini.
    It is unbelievable how miserable the ADOBE support is.
    Iam sorry - but Iam awaiting answers, as we are paying
    since nearly a month and Lightroom does not work at all.
    Can you help or what is happening?
    Thanks.
    Really angry.
    Julia Ufer
    2014-09-05 21:50 GMT+02:00 Jeff A Wright <[email protected]>:
        Error while changing between modules
    Jeff A Wright
    <https://forums.adobe.com/people/JeffAWright?et=watches.email.outcome>
    marked Atul_saini123
    <https://forums.adobe.com/people/Atul_saini123?et=watches.email.outcome>'s
    reply on Error while changing between modules
    <https://forums.adobe.com/thread/1566317?et=watches.email.outcome> as
    helpful. View the full reply
    <https://forums.adobe.com/message/6703771?et=watches.email.outcome#6703771>

  • Qa33 selection screen error

    I think i found an error in the selection screen for transaction QA32/QA33. I want to check the inspection lots that have no UD, but already have some stock postings. I use qa32 or qa33. I added two field using dynamic selection:
    - unrestricted use stock > 0
    - valuation code = empty
    I've two inspection lot that meet the requirements 10000000613 start date (12-07-2010) and 10000000779 (start date 15-09-2010). If I leave the inspection date fields empty i only get the first inspection lot (1..613). If I fill in start date 01-01-2010 and end date 16-09-2010 I still get only the first lot. If I fill in start date 01-04-2010 and end date 16-09-2010 I see both lots.
    Isn't this a bit strange?
    Regards,
    Maarten

    Increase the maximum number of hits, (or remove it entirely), in your first search when you search with no inspection start date.
    The work list has a weird quirk about it.  The maximum number of hits doesn't seem to necessarily relate to the number of records it displays on the screen but the number of records it initially considers.  I'm not sure exactly what it uses to grab the initial set of records but it is as if it grabs a maximum number based on creation date range first, and than applies other criteria.  So if your creation date range actually has 5000 records in it, and your maximum number of records is only 3000, it only applies the other selection criteria to the first 3000 records of the 5000.  So any matching records in that extra 2000 will be ignored and not displayed. 
    If you set max number to 10,000, then all 5000 records are considered and the records in that extra 2000 records are found and displayed.
    FF

  • Error while Changing Vendor

    Dear all
            I am getting the below error while changing the vendor master.
    "Tax code 1 must be numerical
    Message no.AR144  "

    go to XK02 and check what tax maintained in Tax Number 1 field of Tax Information tab in Control Data Screen for the Vendor..
    Thx
    Raju

  • Hi. My phone screen broke and I had it replaced from a phone shop. The guy said that while changing the screen and phone was blocked. It is now disabled for like 23,000,000 minutes and I can't restore it cause I dont have all the data sync to my computer.

    Hi. My phone screen broke and I had it replaced from a phone shop. The guy said that while changing the screen and phone was blocked. It is now disabled for like 23,000,000 minutes and I can't restore it cause I dont have all the data sync to my computer. Is there anything I can do or can Apple do something if  I give them the  correct password?

    As you had the iPhone opened by an unauthorised repairer ( Apple do not replace screens on iPhone 4)
    Apple will not provide any service or support
    Take it back to the "phoneShop" and tell them to fix it
    You have no other alternatives
    or try this
    http://support.apple.com/kb/HT1212

  • Error message in Selection Screen

    Hi
    reference no (p_ref) is in my selection screen.
    If this field contains special characters (\ / : * ? " |, ) system must prompt  error message in selection screen. How to do this. Pls help me
    Regards
    Anbu

    after input form the user
    use if condtion
    and validate the field and through message.........
    Reward IF........
    Regards
    Anbu
    Edited by: Anbu B on Jun 17, 2008 8:04 AM
    Edited by: Anbu B on Jun 17, 2008 8:06 AM

  • Error while receiving by HTTP (error code: 400, error text: ICM_HTTP_CONNECTION_FAILED

    Hi experts,
    I have a big issue in production server,
    the Queues are stuking in smq2 " command to tRFC/qRFC: execute LUW again"
    if i am reprocess or press F6 it is going manually.
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">CLIENT_RECEIVE_FAILED</SAP:Code>
      <SAP:P1>400</SAP:P1>
      <SAP:P2>ICM_HTTP_CONNECTION_FAILED</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText><html><head><title>Application Server Error</title> <style type="text/css"> body { font-family: arial, sans-serif;} </style> </head> <BODY text="#172972" link="#808080" vlink="#808080" alink="#8e236b" bgcolor=white leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"> <table height="61" width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td background="http://xidist:8000/sap/public/icman/img/bluebar_tile.gif" height="30"><table> <tr> <td width=5></td> <td width=20% nowrap><font face=arial size="-1" color=white>SAP NetWeaver Application Server </font></td><td width=75% align="right" nowrap><font face=arial size="-1" color="white"><a href="http://help.sap.com/">Help </font></td><td width=5% nowrap></font></td> </tr></table> </td><td rowspan=2 width=122 height=61 valign=top><img src= "http://xidist:8000/sap/public/icman/img/theme.jpg" width=122 height=61 border=0 alt="SAP"></td> </tr><tr><td background="http://xidist:8000/sap/public/icman/img/graybar_tile.jpg" height="31">  </td></tr> </table> <br><br> <table width=800> <tr><td width=50 nowrap> </td><td> <H2><b>404 Resource not found</b></H2><br>Partner not reached<br><br><hr> <table border="0"> <tr><td>Error:</td><td>-20</td></tr> <tr><td>Version:</td><td>7000</td></tr> <tr><td>Component:</td><td>ICM</td></tr> <tr><td>Date/Time:</td><td>Wed May 14 15:50:24 2014 </td></tr> <tr><td>Module:</td><td>icxxconn.c</td></tr> <tr><td>Line:</td><td>2341</td></tr> <tr><td>Server:</td><td>xidist_GXI_00</td></tr> <tr><td>Error Tag:</td><td>{004654a1}</td></tr> <tr><td>Detail:</td><td>Connection request from (110/28816/0) to host: xidist, service: 50000 failed (NIESERV_USED) EX-T110, U28816, 001 PIAFUSER, 10.1.57.50, 15:50:24, M0, W1, , 1/0</td></tr> </table> <p></p> </td></tr></table> <table><tr><td width=50 nowrap></td> <td nowrap><FONT SIZE=-1><a href="http://www.sap.com/">&copy; 2001-2009, SAP AG</a></FONT> </td></tr></table> </body></html></SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while receiving by HTTP (error code: 400, error text: ICM_HTTP_CONNECTION_FAILED)</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    Regards,
    Kiran polani

    Dear Sriram Ramani,
    in ths case some scenarios are working good. proxy to soap, idoc to soap and jdbc to proxy, proxy to jdbc all are working with out error.
    but my problem is in Soap to RFC case..
    for all RFC communication channels are working but some time it is throwing RFC_COMMUNICATION_ERROR and messages are stucks in smq2 with retry.
    when i check with retry error with in sxmb_moni log showing ICM_HTTP_CONNECTION_FAILED with error code 400.
    not for all signals for few signals for some time..
    Why it is happening i can't understand.
    in repository it is saying Repsitory object hmi failed and address already in use.
    is there any problem with loading IR objects.
    Please suggest me good suggestion for this type of issue what can do for this to resolve.
    Regards,
    Kiran Polani

  • Getting the error: Error while receiving by HTTP error code: 110

    Hi,
    I have developed an interface which actually gets data from SCM system and in BPM to gets additional data from R/3. There are five synchronous call to this R/3 to get different sets of data. I am using only one communciation channle from BPM to R/3. The interface works perfectly OK in the development system. When the interface is migrated to the test system I found that the four calls work perfectly fine while the last call error out as below and the J2ee server goes down:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">CLIENT_RECEIVE_FAILED</SAP:Code>
      <SAP:P1>110</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while receiving by HTTP (error code: 110, error text: )</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    Any input/help will be appreciated. I have tried increasing timeout/connection alive time but still not get resolved.
    Thanks in advance,
    Sushma

    Hi Prateek,
    Thanks. But this note I have checked before and this seems not related. I actually found out the system logs in SM21 and saw the "Operating system call recv failed (error no. 10054)". What I did then is I seach notes related to this error and found a numebr of SAP notes. And I have informed the Basis guys to look into the notes and the system logs. They are working on this and they are deleting the old messages which have errored out. They are suspecting the system memory or too many old messages would have caused this issue.
    If you have any knowledge of why this error would have occurred please let me know.
    Thanks,
    Sushma

  • Sync encountered an error while syncing. Unknow error

    I keep on getting the following error message: "Sync encountered an error while syncing. Unknown error. Sync will automatically retry this action." Also, at this time, my bookmarks are useless: I lost all my bookmarks and I cannot add any new ones.

    Problems with bookmarks and history not working properly can be caused by a corrupted places.sqlite database file.
    You can check for problems with the places.sqlite database file in the Firefox Profile Folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file

Maybe you are looking for