Running nested scripts in "Display only mode"

Hi,
I have a deployment script that calls scripts nested. Is it possible to run these having e.g echo set on in order to display everything being executed, without actually executing it against the database?
Hope my question makes sense
Regards
Peter

What you could try is to disconnect before running them, then each statement will failed with "Not connected"
disconnect
set echo on
@c:/download/utlsampl
SQL> disconnect
Disconnected from Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
With the Partitioning option
JServer Release 9.2.0.8.0 - Production
SQL> set echo on
SQL> @c:/download/utlsampl
SQL> DROP TABLE LSC_EMP CASCADE CONSTRAINTS;
SP2-0640: Not connected
SQL> DROP TABLE LSC_DEPT CASCADE CONSTRAINTS;
SP2-0640: Not connected
SQL>
SQL> CREATE TABLE LSC_DEPT
  2  (
  3     DEPTNO INTEGER constraint DEPTNO_NOT_NULL NOT NULL,
  4     DNAME  VARCHAR(14),
  5     LOC    VARCHAR(13)
  6  );
SP2-0640: Not connected
SQL>
SQL> alter table LSC_DEPT add constraint DEPT_PRIMARY_KEY primary key (DEPTNO);
SP2-0640: Not connectedHTH
Laurent

Similar Messages

  • Background Job Still Running - Data Can Be Displayed Only Msg Populated in Maintain Versions (OKEQ) Screen

    Hi,
    I try to create 2013 FY in "Setting for Each FY" in OKEQ - Maintain Versions unfortunately I have created Null FY, try to delete Null FY on the time it will ask Job schedule, I have cancelled the job & reopen Maintain Versions (OKEQ) screen on the time system populated the msg "Background Job still running - Data can be displayed only"
    In Settings for Each FY screen there is no New Entries button, all FY are blocked status, changes was not allowed.
    How can I resolve it.
    Waiting for your valuable suggestions.
    Regards,
    Nageswar.

    Dear Rajneesh Saxena
    Thanks for your prompt reply.
    Yes you are correct, on the time of deletion it will ask Background Job Process, for immediate deletion must & should select "NO".
    While "Settings for Each FY" screen populates message "Background Job Still Running - Data Can Be Displayed Only" open  screen in display mode enter the command "=KILL" in command bar press enter, then you will allow to changes get New Entries button also.
    Problem is solved
    Regards,
    Nageswar.

  • CUF in display only mode ?

    Hi,
    Is it possible to have a CUF in display only mode ?
    In BBP_CUF_BADI_2  method modify screen ?
    If yes : how ?
    Kind regards,
    Yann

    Hi Yann,
    Sorry for the missunderstood.
    I 'd a look on the standard call to the BADI.
    The table ET_FIELDS is populated by default  with input = display = 'X' before the BADI call.
    So be carefull to <u>modify</u> existing entries in table ET_FIELDS, and not to <u>insert</u> additional entries in this table.
    Your code should be something like:
    LOOP AT ET_FIELDS into wa_fields.
    ELSEIF wa_fields-fieldname = 'ZREFEDI'.
    wa_fields-xdisplay = 'X'.
    wa_fields-xinput = ''.
    endif.
    MODIFY ET_FIELDS form wa_fields index sy-....
    ENDLOOP.
    try it and tell me.
    vadim

  • Applescript Studio Beginner - Run a script and display a window

    Hi,
    I am new to applescript studio ; I found out how to make an application displaying a window with a progress bar.
    How can I start running a script without displaying any window, and at some time in the script, run the "awake from nib" handler that will call the display of the progress bar ?
    Thanks,
    Nicolas

    Nicolas Silvestre wrote:
    How can I start running a script without displaying any window, and at some time in the script, run the "awake from nib" handler that will call the display of the progress bar ?
    The "awake from nib" handler is called automatically when your nib file gets loaded, you don't call it yourself. I suppose you could go thru the pain of putting your window into a separate nib file and then have your script load the nib file when you're ready... but that's not the easiest way to do it and you probably don't need to do this for your situation.
    All you really need to do is go into Interface Builder, select your window object and uncheck the checkbox in the "Window Attributes" pane that says "Visible At Launch". The "awake from nib" will still be called at it's normal time and your window will be loaded but it will not be displayed.
    Then you can do whatever other scripting you need to do... and when you're ready to display your window you simply call:
    show window "yourWindowsAppleScriptName"
    You can do your initial scripting at the beginning of "awake from nib" and then call "show window" at the tail end of "awake from nib" if that works for you. But you don't have to have the "show window" call in your "awake from nib"... you can call it later on in some other handler if you need to.
    Steve

  • Is it possible to run a script when changing Yoga modes?

    I'm currently working with a vendor of Restaurant reservation software and they have a customer that would like to implement the Yoga 13 for a chain of hotels. However, due to the fact that the software requires Silverlight, it's necessary to run a script so that they can use Google Chrome and have the software keyboard pop up automatically when a text field is entered or touched. 
    I can easily run the script at login and manually unload it when done, but since Lenovo already has software (Lenovo Transition) that can trigger things when the Yoga changes modes, is there some sort of developer tool or a system-wide event that can be used to automatically load and unload the script on mode change?
    Please let me know, some Yoga sales could depend on this....and I love the Yoga.

    Well, I'm looking for a means to activate a script through the active corners, I'm not asking any questions about the script itself, so I did not think it should be posted in the AppleScript categoriy, but sure, I'll give it a go.
    (New thread in AppleScript: http://discussions.apple.com/thread.jspa?threadID=2534773&tstart=0)
    Message was edited by: Max Ocklind

  • Disable a group of check boxes when we open a page in the display only mode

    Hi all,
           I need help in making a group of checkboxes display only when i open it in the display mode. I have made the following coding for it,butits not working.Can you help.
    MODULE disable_indicator OUTPUT.
      IF action_type = display_only.
        LOOP AT SCREEN.
          IF screen-name = INDICATOR_SET_OVERDUE_ITEM'.
            screen-input = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
        ELSE.
          LOOP AT SCREEN.
          IF screen-name = 'INDICATOR_SET_OVERDUE_ITEM'.
            screen-input = 1.
            MODIFY SCREEN.
           RETURN.
          ENDIF.
          ENDLOOP.
      ENDIF.
    ENDMODULE.                 "

    Hi  Kushaal Choudri,
    Chek out in Debug mode if first IF condition is triggering or not ?? Also assign Screen Group if u want to disable multiple fileds at a time and use it in IF condition...
    MODULE DISABLE_INDICATOR OUTPUT.
      IF ACTION_TYPE = 'DISPLAY_ONLY'. ==> Put it between Single Quote and check the CASE as it's case sensitive...
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'INDICATOR_SET_OVERDUE_ITEM'.
            SCREEN-INPUT = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSE.
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'INDICATOR_SET_OVERDUE_ITEM'.
            SCREEN-INPUT = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDMODULE.                    "disable_indicator OUTPUT
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7

  • Need to get display only mode in ess

    Hello experts,
    What settings should I use so that on the ESS Personal Profile the users get a display only profile with a details button on the right as shown in the image. Currently the details only show up when somebody is maintaining the PERNR from the ECC system. Speedy help would be greatly appreciated.

    I have maintained the table V_T588MFPROPC as you told, earlier this table was empty.
    GBDAT is filed name for Date of Birth.
    So I found out GBDAT in standard table V_T588MFPROPS and maintained our earlier table exactly like that. In my case country grouping is 99.
    But after maintaining, there is no options to check as read only.
    There are some checkbox which is not in english.
    Please check the attachments and tell me what to do.

  • SM13 in "display only " mode

    Hello,
    Is it possible to restrict tcode SM13 to provide display only access ?
    If so, how can this be achieved?
    Thank you for your response.

    Hi
    I do not think, as already mentioned, that you can meet your requirement, only through the standard authorization checks.
    What you maybe can do, it to create a transaction variant through transaction SHD0. In here you are able to disable function keys, menus.
    When you have created this variant, you can create a transaction code for it in SE93.
    --  But please notice that access to this new transaction also requires access to SM13.
    So what you need to do is to create to transaction variant as a display only variant that you activate as the default variant in for SM13, and a new one without any deactivation of functionality that you assign to a new transaction code created in se93.
    --  Not an easy straight forward way of acheiving your requirement but it can do the trick  -  and please remember that the assignment of default transaction variant to transaction code needs to be performed in all clients/systems, as this is not ordinary customising
    Regards
    Morten Nielsen.

  • How to make computer run in closed clamshell (display closed) mode without having an external display

    i want to listen song closing my display how to do it any idea???????????

    You can run a MacBook Pro with its display closed with the aid of any of several third-party hacks that prevent sleep, InsomniaX being one. If you put your closed and still-running Mac into a padded sleeve, backpack or carrying case that prevents it from ventilating itself, it will overheat and cook itself and/or cause a fire. Therefore, I strongly recommend against using any of the anti-sleep hacks, and if you do so, you do it at your own risk.
    A MBP is not an iPod. If you want an iPod, get an iPod.

  • How to restrict transaction PE03 (HR: Features)  to display only mode?

    We have a situation where a set of users need access to transaction PE03 to display HR Features. However they should not be changing any feature through it.
    The only auth objects that are checked for this transaction seem to be s_tcode and p_tcode. As both this objects are checked during transaction start, there does not seem to be any check for display/change access.
    Appreciate any inputs.....Thanks!

    > I was wondering if we could find an appropriate user exit and put in some custom code for checking the display/change access of the user. However, I am yet to find an exit to do this.
    Just had a quick glance at the program and couldn't find anything fast either... that could say more about my abap reading skills than the program structure
    I suggest you have an abaper look at it to see if it's easier to build a read-only copy of PE03 or create a report that delivers the same information. To find out if any user exit is available you could also give the HR forum a go.
    Jurjen

  • How do I get steam games to run on my thunderbolt display instead of the macbook screen

    I can't get steam to run on my thunderbolt display, only the Macbook display...??

    ''Be patient, most of us are volunteers.''
    That webpage doesn't have a Favicon image.
    Come up with an image that you want and pick an extension [https://addons.mozilla.org/en-US/firefox/search/?q=Favicon&appver=15.0.1&platform=windows that inserts a Favicon or changes the Favicon].

  • How to set Display Only for some records in CAT2 Worklist

    Hi,
    I have a requirement to modify an attributes for some records in the Worklist of CAT2.
    We have an external system where we book our time. Weekly we import data from that external system into CATSDB using BAPI for every single employee.
    We would like when the user wants to modify his time sheet to be able to add/modify all records except those which were imported from the external system. Which means that those records should be in Display only mode / grayed out / before release.
    Is there any user exit or BADI that could help to modify that attribute and that will be triggered before displaying the Worklist ?
    Please advise !
    Thanks,
    Stefan

    I've solved the problem.
    First I've added customer field in CI_CATSDB structure and when I am importing the data I am populating that field with 'X', which means that this is record from the external application.
    I've created enhancement implementation in Function group->CATS, screen->2003 MODULE->D2000_MODIFY_LOOP, subroutine->modify_d2000_loop where I am checking the field mentioned above if it is 'X' I am modifying the screnn-output = off.
    It works, thak you for your help.
    Regards,
    Stefan

  • Displays only 500 rows on the Reports

    Hello All,
    We recently upgraded from 10g to 11.1.1.6.0 and I am running in to a issue with one of the report. When I run a report, it displays only 500 rows of data but not all the records. Could someone let me knoe which field should we change in the instanceconfig file to resolve this issue
    Thanks

    Check these
    http://docs.oracle.com/cd/E25178_01/bi.1111/e10541/answersconfigset.htm#CIHJGAAH
    http://www.clearpeaks.com/blog/oracle-bi-ee/%E2%80%9Cmaximum-total-number-of-cells-in-pivot-table-exceeded%E2%80%9D-error
    Pls mark if helps

  • ZForm only opens is 'read only" mode - but WDR_TEST_ADOBE, runs fine

    Dear readers,
    I am working on an Adobe form, now ZForm only opens is 'read only" mode - but when i run WDR_TEST_ADOBE, it runs fine and it is interactive and I am able to click on the buttons.
    I compared the form from WDR_TEST_ADOBE, and changed the layout to ZC1, and run the Web dynpro script. After activating and running the webdynpro, I see that it is still acting strange and none of the input fields are accepting input.
    There seems to be nothing wrong with the ADS or live cycle designer.
    Some setting in my Webdynpro is preventing this form from being displayed correctly.
    When I attach the form - "WDR_TEST_ADOBE_SIMPLE" from the WD - WDR_TEST_ADOBE, and test my WD, The form is being displayed as read only.
    which again leaves to the conclusion that the something is not right in the WD.
    ~Any suggestions are appreciated, thanks

    Also in the interface properties under sfp,
    when I change the interface type from
    "ABAP dictionary based interface" to
    "XML schema based interface".
    All the entries under Form interface->Import parameters get wiped out, and I have to enter them again.
    Also below is the system information.
    Software   ComponRelease   Level  Highest SupportShort Description of Software Co
    SAP_ABAP           700        0017     SAPKA70017     Cross-Application Component
    SAP_BASIS          700       0017     SAPKB70017     SAP Basis Component
    SAP_HR            600        0040     SAPKE60040     Human Resources
    and I am doing development on HR box, could this be causing trouble, bcos as per below link
    http://help.sap.com/saphelp_nw70/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm from here goto: WebDynpro ABAP Development in Detail->Integration->Integrating Forms->Forms with ABAP Dictionary Based Interface. 
    As of NetWeaver 7.0 SPS10 we strongly recommend you use ZCI forms with an XML interface only. Because additional central features have been added in subsequent SPs (input help and dropdown list boxes), we generally recommend that you always use the most up-to-date Support Package for Web Dynpro ABAP.
    Edited by: Neha Sharma on Feb 1, 2010 11:21 AM
    Edited by: Neha Sharma on Feb 1, 2010 11:25 AM
    Edited by: Neha Sharma on Feb 1, 2010 11:27 AM

  • "Device Manager is running in read-only mode because you are running it on a remote computer" when local

    Hello - since configuring a Windows Web Server 2008 R2 x64 to be hardened for an internet-facing deployment I receive this:
    "Device Manager is running in read-only mode because you are running it on a remote computer."
    when entering Device Manager.
    I have tried reversing the changes I have made, such as:
    - Re-adding Client for Microsoft Networks
    - Re-enabling NetBIOS over TCP-IP
    - Re-adding File and Printer Sharing
    - Disabling the Windows Firewall in all profiles (public, domain, private)
    I get no joy. It looks like a Microsoft ballsup. I'll try and use Process Monitor to have a look. Google returns only 1 page for this error.
    Luke

    Got it.
    After my changes to DHCP and static IPs the machine picked up the IP address of another server on my little home LAN. The hostname in IPCONFIG was different to the actual server computer name and so this led Device Manager to think the connection and the
    local machine were different.
    What an odd and infuriating problem. My thoughts on this are that Microsoft should be more verbose with error messages and their causes. For example, displaying the values of the assertion would help diagnose a problem; "The host-name www02.farm.brand.com
    that you are connecting from does not match the local host-name rest01.dev.farm.brand.com. Connections from remote computers can only use Device Manager in read-only mode; some options will be disabled."
    When troubleshooting, the main thing on an engineer's mind is "what has led Windows to its [unexpected] conclusion?"
    Luke

Maybe you are looking for