Screen debug after save command in cj20n

dear scn,
when my ps user save any project in cj20n in my dev server, screen automatically go in debug mode...

You might have a break-point set for a specific ABAP statement or standard FM, for example. When the debugger opens, go to the Breakpoints tab and check if there are any.

Similar Messages

  • LabVIEW ofter hangs for seconds after save, run command, creating variables, etc.

    Dear users,
    my LabVIEW installation often hangs after common commands such as Save, Run, after creating variables (the label is draw directly, then after few seconds the variable and the wire is created), etc.
    LabVIEW 14.01f (32bit)
    Windows 7 64bit
    The same version of LabVIEW on Windows 7 on other computers runs smoothly. Only that particular super-new and high-performance Lenovo laptop drives everybody in the team crazy.
    Any suggestions, what should I check, please?

    Other reasons for such delays can be network drives that are currently disconnected or point to resources not currently available on the network. Or installed printers pointing to printers not currently available. And last but not least system drives that are trashed with large amounts of files in important system locations.
    While the first reasons can be fixed by removing such drives and printers altogheter, the last point only really is fixable by a clean reinstallation of Windows. And no it's not just LabVIEW that usually gets affacted but just about any application when accessing the file system, for instance very noticable when opening the file select dialog in any application.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Remain on Infotype screen after save

    I have a created a custom infotype 9xxx and now I have a requirement that user are allowed to saved changes on infotype 9xxx thru PA30 and it has to remain on infotype 9xxx screen instead of jumping out to PA30 screen after saved.
    Is this possible?
    Is it is a config somewhere or we have to handle it technically ?
    because I have checked other standard infotypes like 0024 ,, in which it is not coming out after save.

    About IT0024 if integration with PD is switched on this infotype has different logic in comparison with other PA infotypes.
    This is why after saving the record it does not exit to the PA30 for example.
    I suggest to leave it as it is because such behavior is the standard one (to leave the detail screen after saving the record).

  • ALV - Validate Data after User-Command (SAVE)

    Hi Everbody !
    I created a quite nice editable ALV-Grid, that works almost fine.
    The only problem I have and don't understand is the valditation in the PAI-Module of my dynpro, e.g. at the 'SAVE'-Command, if the 'ENTER'-Button wasn't pushed before.
    In case of an error, the protocol shows up, but the false entry in alv is overwritten by the old content.
    I call the method  MY_ALV->CHECK_CHANGED_DATA.
    What have i to do then?
    Can anybody explain this to me?
    Thanks a lot!
    Sabrina

    Hi!
    Thanks for the immediate reply!
    The Data-Changed-event is not the problem:
    i registered it that way and implemented the handling inclusive error-protocoll.
        CALL METHOD my_ALV_->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_ENTER.
    the user has to push 'ENTER' to check the changed data on one rush.
    But if the user only pushes 'SAVE' or something beyond the alv-toolbar, the pai-module will be processed.
    So, i get the method alv->CHECK_CHANGED_DATA, to check the entries.
    That works well, the protocoll is displayed, but the wrong entry in Alv (which is normally marked as error) is overwritten by the old, correct content.

  • Where does an abap program get stored after save?

    Where does an abap program get stored after save? ...plzz tell
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 11:28 AM

    this program download the code to presentation server
    Analyse this code.
    CHECK IT IN DEBUGGING
    REPORT zdownload_source MESSAGE-ID zabap.
    TABLES: trdir.
    SELECT-OPTIONS: repo FOR trdir-name.
    PARAMETERS: path(60) TYPE c DEFAULT 'C:\programs\'.
    DATA: BEGIN OF tabsource OCCURS 10,
          source(72) TYPE c,
          END OF tabsource.
    DATA: BEGIN OF tabtext OCCURS 50,
          tab LIKE textpool      ,
          END OF tabtext.
    DATA: BEGIN OF tabrdir OCCURS 100,
          rdir LIKE trdir,
          END OF tabrdir.
    DATA: filename LIKE rlgrap-filename,
          mode TYPE c VALUE ' ',
          rdirrows TYPE i,
          sourcerows TYPE i,
          rc TYPE i,
          length TYPE i.
    FIELD-SYMBOLS: <p>.
    DATA: ok TYPE i VALUE 0,
          fail TYPE i VALUE 1.
    AT SELECTION-SCREEN.
      DATA: i TYPE i.
      DESCRIBE TABLE repo LINES i.
      IF i <= 0.
        SET CURSOR FIELD repo.
        MESSAGE i001 WITH 'se message class'.
      ENDIF.
    START-OF-SELECTION.
      CONDENSE path NO-GAPS.
      length = strlen( path ).
      SUBTRACT 1 FROM length.
      ASSIGN path+length(1) TO <p>.
      IF <p> <> '\'.
        ADD 1 TO length.
        ASSIGN path+length TO <p>.
        <p> = '\'.
      ENDIF.
      SELECT * FROM trdir
              INTO TABLE tabrdir
              WHERE name IN repo.
      DESCRIBE TABLE tabrdir LINES rdirrows.
      CHECK rdirrows > 0.
      LOOP AT tabrdir.
        MOVE tabrdir TO trdir.
        PERFORM download_sourse USING rc.
        CHECK rc = ok.
    *    PERFORM download_textpool USING rc.
      ENDLOOP.
      write :/ sy-dbcnt , ' number of programs downloaded'.
    *&      Form  download_sourse
    *       text
    *      -->P_RC  text
    FORM download_sourse USING  rc.
      rc = fail.
      CLEAR: tabsource, filename.
      REFRESH: tabsource.
      READ REPORT trdir-name INTO tabsource.
      DESCRIBE TABLE tabsource LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = PATH
          string2         = TRDIR-NAME
          string3         = '.ABA'
       IMPORTING
         string          = FILENAME
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    WRITE: 'AAAA'.
      ENDIF.
      CONDENSE filename NO-GAPS.
      PERFORM download TABLES tabsource USING filename rc.
    ENDFORM.                    " download_sourse
    *&      Form  download_textpool
    *       text
    *      -->P_RC  text
    FORM download_textpool USING    p_rc.
      rc = fail.
      CLEAR: tabtext, filename.
      REFRESH: tabtext.
      READ TEXTPOOL trdir-name INTO tabtext LANGUAGE sy-langu.
      DESCRIBE TABLE tabtext LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = path
          string2         = trdir-name
          string3         = '.TXT'
       IMPORTING
         string          = filename
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      PERFORM download TABLES tabtext USING filename rc.
    ENDFORM.                    " download_textpool
    *&      Form  download
    *       text
    *      -->P_TABTEXT  text
    *      -->P_FILENAME  text
    *      -->P_RC  text
    FORM download TABLES   tabtext
                          USING filename
                           rc.
      rc = fail.
      CALL FUNCTION 'WS_DOWNLOAD'
       EXPORTING
    *     BIN_FILESIZE                  = ' '
    *     CODEPAGE                      = ' '
         FILENAME                      = filename
         FILETYPE                      = 'ASC'
         MODE                          = 'MODE'
    *     WK1_N_FORMAT                  = ' '
    *     WK1_N_SIZE                    = ' '
    *     WK1_T_FORMAT                  = ' '
    *     WK1_T_SIZE                    = ' '
    *     COL_SELECT                    = ' '
    *     COL_SELECTMASK                = ' '
    *     NO_AUTH_CHECK                 = ' '
    *   IMPORTING
    *     FILELENGTH                    =
        TABLES
          data_tab                      = TABTEXT
    *     FIELDNAMES                    =
    *   EXCEPTIONS
    *     FILE_OPEN_ERROR               = 1
    *     FILE_WRITE_ERROR              = 2
    *     INVALID_FILESIZE              = 3
    *     INVALID_TYPE                  = 4
    *     NO_BATCH                      = 5
    *     UNKNOWN_ERROR                 = 6
    *     INVALID_TABLE_WIDTH           = 7
    *     GUI_REFUSE_FILETRANSFER       = 8
    *     CUSTOMER_ERROR                = 9
    *     OTHERS                        = 10
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF sy-subrc <> 0.
        WRITE: / sy-subrc, ' message declare '.
      ENDIF.
      rc = sy-subrc.
    ENDFORM.                    " download
    regards.
    santhosh reddy
    <REMOVED BY MODERATOR>
    Edited by: Santhosh Reddy on Feb 13, 2008 6:48 PM
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 12:00 PM

  • FW "not responding" after every command

    I'm renaming and relinking a series of button instances from the document library. I change the button name, "not responding" appears at the top of the screen. After a few seconds, I add the link in the properties panel, "not responding." After a few more seconds, I indicate target in the properties panel, "not responding." I can only enter one command at a time then wait for FW to go from not responding to accepting the command.
    Also, when I save, FW shows "not responding" at the top of the screen for a few seconds before accepting the save.
    Why is it doing this?
    I'm in FW CS5, Windows 7. I have 8g of RAM.

    Okay, here are two shots of my Task Manager when FW was "not responding." This happened in both cases when I hit ctrl-F12 to preview all pages. I was not saving, just previewing. The not-responding state lasted about 10 seconds.

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

  • Error message"Could not complete the Save command......

    Sometimes when I open Photoshop CS6 (cloud version) and I try to save my work I wil get an error message: "Could not complete the save command because the document is currently being saved in the background. Please try the operation again after the Save Command has finished" Well the background save never finishes and I end up having to restart Photoshop and lose all my work. Any ideas. I am running Windows 7, core i& quad procewssor and 12 gigs of ram.
    Thx

    Hi Chris!
    Yes. I did that after the first time it happened and then it happened again.  Here is my system info:
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3073 MHz
    Built-in memory: 12279 MB
    Free memory: 6264 MB
    Memory available to Photoshop: 10996 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 6800 Series
    Display: 1

  • My screen darkens after 1 minute and turns off after 3.  All of a sudden, now, after the screen shuts down, it comes right back on????

    My screen darkens after 1 minute and then turn off after 3 minutes (energy saver).  Now, all of a sudden, after it shuts down it comes right on???

    thank you so much sir... i am very thank ful to u... it was an breath taking moment ... i was almost dead as it didnt work

  • Increment and Save command

    The "Increment and Save" command in After Effects serves the fundamental need in professional creative work of preserving the various development stages of a job. Cinema 4D and other pro software packages also have this. Illustrator should too.

    Autosaviour Pro auto saves your Adobe Illustrator artwork
    and they have incremental backups.

  • User Exit or BADI for MIRO after save

    Hi
    I want to show a message in MIRO once the invoice document is create but I am unable to find a user exit or BADI after save of the MIRO transaction.
    Please guide me in this aspect.
    Regards

    try to run the below codes in a new program,it can help you to find all user exits of a t-code:
    TABLES : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    TABLES : tstct.
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
    IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
    AND object = 'PROG'
    AND obj_name = tstc-pgmna.
    MOVE : tadir-devclass TO v_devclass.
    IF sy-subrc NE 0.
    SELECT SINGLE * FROM trdir WHERE name = tstc-pgmna.
    IF trdir-subc EQ 'F'.
    SELECT SINGLE * FROM tfdir WHERE pname = tstc-pgmna.
    SELECT SINGLE * FROM enlfdir WHERE funcname =
    tfdir-funcname.
    SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
    AND object = 'FUGR'
    AND obj_name EQ enlfdir-area.
    MOVE : tadir-devclass TO v_devclass.
    ENDIF.
    ENDIF.
    SELECT * FROM tadir INTO TABLE jtab
    WHERE pgmid = 'R3TR'
    AND object = 'SMOD'
    AND devclass = v_devclass.
    SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu AND
    tcode EQ p_tcode.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
    WRITE:/(95) sy-uline.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    WRITE:/(95) sy-uline.
    LOOP AT jtab.
    SELECT SINGLE * FROM modsapt
    WHERE sprsl = sy-langu AND
    name = jtab-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 sy-vline,
    2 jtab-obj_name HOTSPOT ON,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    ENDLOOP.
    WRITE:/(95) sy-uline.
    DESCRIBE TABLE jtab.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
    GET CURSOR FIELD field1.
    CHECK field1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.

  • Screen black after MacBook Air

    I installed MacBook Air & Pro Update 2.0 on my 2012 13" MacAir and I find that sometimes when the Air is idle and the screen blanks (energy saver) it stays black and doesn’t tuen on again when I press a key. The only way to recover is a power cycle.
    This happened twice. I turned off the option to turb off the screen when idle only enabling the scree saver and it hasn't happened since.
    So there is an issue with the energy saver after applying this update.
    Anybody seen this???

    Yes, happens to me.  And other bad things.
    I read somewhere that Apple has pulled the update.  Too late for those of us that installed it and are having problems.

  • Screen distortion after upgrading to mavericks os

    I own a late 2011 MBP 13". Last week I upgraded to Mavericks and regret it ever since. Firstly, it's become unbelievably slow. Secondly, and most importantly my screen resolution is now distorted and completely messed up. Immediately I suspected if Mavericks had screwed some setting. So I looked up Google for screen distortion after upgrading to Mavericks. The results were surprising! There are many apple discussions going on about the same thing. After reading most of them, as suggested in almost all threads, I took my laptop to the service station. The initial response given to me was that they suspected a hardware issue. All threads had indicated what to expect so I was not surprised. I explained to them clearly that there are discussions revolving around this topic and many users have been affected because of this. I even showed / shared the links of the various discussions on this topic. The service station in India asked for more time to investigate further. In the mean time I contacted the Indian call centre to report this problem. The service station reverted after their investigation that my logic board was corrupted and needed replacement. Phew!!! The cost of replacement is as good as buying a new MBP. It's really amusing because my MBP is less that 2 years old and unfortunately I do not have extended warranty.
    Has anyone facing the same issue been able to convince apple that this is a mavericks issue? Does even apple recognize this as an issue in the first place? Does apple expect people to blindly invest in hardware just because they have released a new OS?
    These and many more questions....
    Expecting answers!!!
    Not a good start to 2014

    The startup disk may need repairing ...
    Restart your Mac while holding down the Command + R keys.
    From there you should be able to access the built in utilities in OS X Recovery

  • Is it possible to view photos on a computer screen immediately after while I'm shooting.

    Is it possible to view photos on a computer screen immediately after while I'm shooting? I have the cord to attach camera to laptop, but have not been able to view until I do a download. My camera is a Rebel XT 350D.
    Thanks Terri

    It is possible. I do it at every shoot I do that involves big groups because the bigger screen (17" laptop) shows whether everyone is in a good pose. 
    It is called "tethered capture". I use Adobe Light Room 5. Attach a USB cable, start LR and select Tethered Capture. From there it is automatic and everything the camera sees, your laptop does. This method, which may not be the only way, also saves a copy to my laptop.
    There are also powered USB cables which allow you to move the laptop up to 70 feet away. If that was needed of course but active USB cable are good for shorter distances because they are more error free and very fast.
    BTW, LR5 is a pretty nice post processing, professional level, program for the rest of your image requirements.
    EOS 1Ds Mk III, EOS 1D Mk IV EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 70-200mm f2.8 L IS II, Sigma 120-300mm f2.8 EX APO
    Photoshop CS6, ACR 8.7, Lightroom 5.7

  • Safari hanging on save command

    I am a long time MAC user but not a techie.
    I have a problem with Safari producing the beach ball on a save command with several open tabs and windows, There is no warning. I prowl the net for articles then later read an save or send or erase. I have 8Gbs for this reason. I have tried all other browsers but except for this daily problem, Safari is the best for me. Quitting Safari after getting the "not responding" sign does not help. I have to restart the system and it will work for a while.
    Is there anything I can do? I have the lengthy error report if I don't get a crash while saving.
    Thank you.
    Model Name: iMac
    Model Identifier: iMac10,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 3.06 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 3 MB
    Memory: 8 GB
    Bus Speed: 1.07 GHz
    Boot ROM Version: IM101.00CC.B00
    SMC Version (system): 1.52f9
    Serial Number (system): W8943CG9B9U
    Hardware UUID: 6F9BDD6E-EB4D-5E9C-BE09-7BA36D54E18C

    HI and welcome to Apple Discussions...
    If you updated to Safari 5 and this started happening after the update, it's possible you have third party Safari add-ons that aren't compatible with Safari 5.
    Go here for trouble shooting 3rd party plugins or input managers which might be causing the problem. Safari: Add-ons may cause Safari to unexpectedly quit or have performance issues
    If third party plugins aren't the issue, go to ~/Library/Caches/com.apple.Safari and move the "cache.db" file to the Trash. Relaunch Safari and try File/Save. If that didn't help, try troubleshooting the Safari .plist file.
    Go to the Safari Menu Bar, click Safari/Preferences. Make note of all the preferences under each tab. Quit Safari. Now go to ~/Library/Preferences and move this file com.apple.safari.plist to the Desktop.
    Relaunch Safari and see if that makes a difference. If not, move the .plist file back to the Preferences folder. If Safari functions as it should, move that .plist file to the Trash.
    And repair disk permissions...
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn

Maybe you are looking for

  • How do I wipe Win 8.1 64 from a SSD to clean install Win 7 64?

    My HHD crashed on my Pavilion m6. Laptop was out of warranty, so I decided to go with a SSD. I only had a copy of Win 8 to install, so I could use my laptop while waiting for a copy of Win 7 Home Premium OEM from Amazon. Within that week I had the ne

  • New (unused) 2G Nano registers 1.89G of content!

    I have a brand new 2G Nano that when connected to iTunes creates an error message something along the lines of "Unable to update 'the nano' because there is not enough space for the content of the library. The iTunes library has only 895 MB of conten

  • How Proxy execute when message reach to application System

    Hi all,      I have problem that. In my scenario PI pick the file from FTP and send to ECC using proxy. And that proxy creates an inbound delivery in ECC. The problem is that how can I know that which message will create which inbound delivery? And i

  • When Firefox 4 is running it seems to slow my whole Mac down

    When multiple apps are open everything slows down. This never happened with Firefox 3.6. Even when I quit Firefox it takes it almost a minute to close. I have a Mac Book Pro with Snow Leopard OSX 10.6.7 Often when I try to do something (Any app) the

  • Activation of DSO failing frequently in process chain..

    Hello Friends.. I need your ppl experience and help, in investigating an issue, we have a process chain, in which the activation of DSO is failing frequently, i have checked the log messages..but it gives no clue, it just displays the message that  "