Gridify peculiarity!

Drawing some frames in a grid.
Select the rectangle frame tool.
Draw a rectangle top left of the page margin to bottom right.
Press the up arrow to make more frames in a grid
Results are normal
Now
Select the rectangle frame tool.
Draw a rectangle bottom left of the page margin to top right.
Press the up arrow to make more frames in a grid
What happens for you?

Yep - pretty weird. Going to file a bug report
Please feel free too https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Similar Messages

  • OPEN Dataset - Peculiar problem

    Hello experts!
    I am facing a peculiar problem with ABAP keyword OPEN DATASET.
    I have a directory to which I am adding new files using OPEN DATASET FOR OUTPUT.. this works perfectly fine in the Consolidation system. But the same thing does'nt work in the Production system! It return SY-SUBRC = 8
    After reading several other posts on SDN and other forums, the following causes were touted.
    1) Path incorrect 
    2) No Authorization
    But upon checking, neither of the wo are possible because the path is maintained properly and the authorizations at OS level are given (R/W) to this folder. Moreover, the user has S_DATASET auth object!!
    Then I read somewhere else that having multiple Application Servers could be a possible cause and that running the code as a background job would be afix.. Is it so?
    Even if it is, the application is in ABAP Web Dynpro and is launched from the portal.. hence launching it as a background job is not an option... Any solutions?????
    Any help on this would be appreciated...
    Thanks in advance, Amith

    Hi,
    Yes this is true that if we are having the multiple application server then this kind of error occures if your specified directory is not mapped on the alll the avaiable sAP application servers.
    I guess when ever you are running your application then system will pick the appkication server based on the present load. Hence if your directory is not mapped in that application server then you wil get this kind of issues,
    so i guess check with you basis team that spctified path is avaiable in all the application server.

  • Peculiar object creation

    Hello all,
    I had a quick question regarding a peculiar call to construct a new object. I have a couple of example classes (deliberately not checked for clarity or consistency), one of which extends the other. The call shouldn't work, but I'm just not sure why.
    Here's the classes:
    public abstract class A
            public A () {}
            public A (int a, int b){}
    public class B extends A
            public B (int r)
            public B (int r, int w)
                    super (r, w);
    }And here's the call (exists in some test class):
    B t = (new B(1)).new B(1);What's wrong with this picture? Can the second new even be used in this fashion? (Note the period - it's "supposed" to be there)
    P.S. This is my first day on the Sun forums!

    KrazyKaiju wrote:
    B t = (new B(1)).new B(1);What's wrong with this picture? Can the second new even be used in this fashion? (Note the period - it's "supposed" to be there)
    P.S. This is my first day on the Sun forums!By doing new B().new B() you're trying to create an instance of a class called B which is inside B: needless to say, you can't do that.
    This is possible however:
    public class Test {
        public static void main(String[] args) {
            Outer.Inner i = new Outer().new Inner();
    class Outer {
        class Inner {
    }

  • Peculiar Issue :RFx line item issue in SAP Sourcing

    Greetings of the day ,
    We  are trying to ADD line items in an RFx , when i click on ADD button in the Line items TAB ,the timer just revolves and nothing happens , no line item gets added , It's  a  Very  peculiar issue since it's an standard SAP  Functionality .
    I've  checked net weaver logs  and every possible corner  in the system , but  unfortunately nothing  worked
    PS:  We are  able  to ADD  line  items in Auctions .
    NOTE : Please  refer to the attachment
    Regards,
    Harsh Mundel
    [email protected]

    Hello,
    Can you review Units of measure in master data? you need to have one unit of measure with "No Dimension" unit category and check it as Primary Category.
    let me know if it works
    Regards

  • I have encountered a peculiar problem in MM01 material master upload.

    I have encountered a peculiar problem in MM01 material master upload. The
    BDC program uploads data using Session method. The problem is when i
    process the session in foreground mode the data uploads successfully, but
    when i process it in background mode it gives the following errors in the
    log.
    'Control Framework: Fatal error - GUI cannot be reached'.
    'Runtime error RAISE_EXCEPTION has occurred'.
    When i debugged the program i found that this error is encountered when
    data is being input in 'Purchase Order text' editor of MM01 transaction.
    There is no problem with the BDC recording or the program as i could see.
    The only problem what i believe is the system is unable to call the text
    editor for inputting purchase order text data in background mode.

    Hi
    Try uploading a BAPI it would be better
    http://www.saptechies.com/mm01-upload-using-bapi/
    Regards
    Shiva

  • Peculiar problem in SU01

    Hi SAP Gurus,
    We are facing a strange problem with transaction SU01 in our recently upgraded ECC 6.0 system.
    The system was previously ECC 5.0.
    When we try to reset the password for a user from the 'change password' option in the initial screen of SU01,it is just not working.After entering the password when we hit then enter key or press the 'tick' button, the screen just does not go and the password does not get reset as well.
    However, if we go into change option for a user in SU01 and go the logon data tab and enter the new password for that particular user, that works and the password is reset for the user.
    I have seen such a peculiar problem for the first time. If anybody has faced this before and has happened to resolve it, would be great if you could help us with the solution.
    Regards,
    Santosh Bhat

    > I have seen such a peculiar problem for the first time. If anybody has faced this before and has happened to resolve it, would be great if you could help us with the solution.
    I have seen this 3 times already, here in the forum.
    One of them was on [_Feb 2, 2009. 9:01 AM_|http://forums.sdn.sap.com/search.jspa?threadID=&q=%22Feb2%2C20099%3A01AM%22&objID=f208&dateRange=last90days&numResults=15&rankBy=10001]
    Other search terms will work as well, but not be as precise...
    Cheers,
    Julius

  • Peculiar problem in oracle 10g  on AIX 5.3.0 With Check constraints

    Hi Every One,
    I am facing peculiar problem in oracle 10.2.0.1.0,AIX 5.3.0. I created table with check constraints like this
    create table test1 (name nvarchar2(1),check (name in('Y','N')));
    SQL> create table test1 (name nvarchar2(1),check (name in('Y','N')));
    Table created.
    SQL> insert into test1 values ('Y');
    1 row created.
    SQL> COMMIT;
    SQL> select from test1 where name = 'Y';* Why this statement is n't working
    no rows selected
    SQL> select * from test1;
    N
    Y
    ANOTHER INTERSTING ONE IS
    SQL> select * from test1 where name in('Y'); Why this statement is n't working
    no rows selected
    SQL> select * from test1 where name in('Y','Y'); it's working
    N
    Y
    SQL> select * from test1 where name in('','Y'); it's working
    N
    Y
    SQL> select * from test1 where name in('7','Y'); it's working
    N
    Y
    Like
    SQL> select * from test1 where name like 'Y'; it's not working
    no rows selected
    I created a table without check constraints
    SQL> create table test2 (name nvarchar2(1));
    Table created.
    SQL> insert into test2 values ('Y');
    1 row created.
    SQL> select * from test2;
    N
    Y
    SQL> select * from test2 where name ='Y'; it's working
    N
    Y
    SQL> select * from test2 where name like 'Y'; it's working
    N
    Y
    Database Details
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET WE8MSWIN1252
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    PARAMETER VALUE
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 10.2.0.1.0
    Why it's happening. Whehter check constraint is valid or not in Equallity operator and like and in .
    Whereever we using single character column with check constraint,it's working with Equality operator and like and in.
    IT'S WORKING FINE WITHOUT CHECK CONSTRAINTS.WE HAVE TWO AIX MACHINES WITH ORACLE10G.THE SAME PROBLEM OCCURING IN TWO MACHINES
    PLEASE HELP ME .
    THANK YOU,
    WITH REGARDS,
    N.VINODH

    h
    Edited by: user3266490 on Dec 3, 2008 2:30 AM

  • I have a Power MAC G5 dual 2ghz that has a peculiar problem.  The monitor will not report until the machine is stopped and started 5 or 6 times.  Once booted it will restart without problem if done so from the apple menu.  Swapped out all hardware

    My Power MAC G5 has a peculiar problem.  The monitor fails to report until the machine is started and shut down 5 or 6 times.  Once it has booted it can be restarted without incident from the Apple menu.  I have swapped out all of the hardware.  Monitor, Memmory,Video Card and reset the PRAM.  After resetting the PRAM it booted on the first attempt and I thought it was solved.  But the next day it was back to starting and stopping until the Monitor came on.  Does anyone have a suggestion?  Thanks

    It could be a bad PRAM battery corrupting your PRAM.  Typically when I have monitor issues on startup it is a bad PRAM battery.
    Texas Mac Man's PRAM, battery, PMU tutorial - https://sites.google.com/site/macpram/mac-pram-nvram-cuda-pmu-battery-tutorial
    Apple's PRAM reset directions - http://docs.info.apple.com/article.html?artnum=2238
    If you have a digital multimeter you can check the condition of your present battery.  It should read at least 3.2V if it is the 3.6V half-AA battery type.  A new battery provides 3.67 Volts DC. A bad battery provides under 3.2 Volts DC.  Ideally this should be measured while the battery is under load; added recommendation from Hans777:
    >I have recently found out that an exhausted battery will still indicate >3.6 V with a high internal resistance VM.
    >
    >Checking incircuit: powercord disconnected press PMU reset button for >about 5 sec before measuring.
    >
    >Checking outside: load the battery with a 1500 Ohm resistor when measuring.
    Alternatively, test the battery while it is still in the computer.
    If the battery is more than 5 years old, especially if you totally disconnect the computer from the power regularly, or have left it unplugged for several months at one time, it is likely the battery is dead.
    Sometimes you have to do a more intensive reset of hardware management:
    [Resetting Cuda/PMU on Power Mac G5, Power Mac G4, Power Macintosh G3|http://support.apple.com/kb/HT1939]
    [How to reset the SMU on a Power Mac G5 (Late 2004) or Power Mac G5 (Late 2005)|http://support.apple.com/kb/HT1436]
    [iMac G5: How to Reset the SMU|http://support.apple.com/kb/HT1767]

  • One peculiarity

    I have seen that whenever I give "!" (Exclamation mark) as value in input field which is defined as mandatory in the selection screen, SAP ignores it and gives error message.If you provide any other special character as input, there's no problem.. why this peculiarity?

    hi,
    Previously in R/2, ! had the functionality of SPACE. Don't know whether this property has been inherited into the new version or not.
    Secondly,
    in screen painter when you are creating screen elements, there's an attribute NO TEMPLATE when activated the characters such as ! ? _ also can be used which otherwise initiate special functions in SAP.
    With respect to special functionality this was my observation, it might be helpful to you...
    One such special function (for u201C!u201D)  Can be seen in BSPs.
    Starting and Ending a BSP Application  (ref. to SAP Library)
    Use
    URL parameters can be used to inform the BSP runtime environment to start or end a BSP application (corresponds to the OK code u201C/nu201D in SAP GUI) To do this, the Query String parameter sap-session cmd is added to the URL and the HTTP request is sent to the server.
    To be compatible with SAP Internet Transaction Server (ITS) and the SAP Enterprise Portal (SAP EP), you can also use ~SAP Session cmd.
    For a list of all system-specific URL parameters that have a special use in the BSP application environment, see System-Specific URL Parameters.
    Procedure
    The following commands are supported:
    open: Restarts a BSP application that is running. The application is started if it is not running already. To be compatible with the Internet Transaction Server (ITS), the following abbreviated format is supported, whereby the page name is replaced by an exclamation mark (u201C!u201D):
    Thanks
    Sharath

  • Peculiar problem in LDB ADA with company code selection

    <h5>Hello Colleagues, </h5>
    Faced a peculiar problem with company code selections in LDB ADA. Entered depreciation area, dep posting perios, lower and higher value of company code and would like to except few companies from selections. On pressing extension button, error message "Depreciation area 01 is not defined in chart of depreciation" is popping up and not allowing to provide exceptions for company codes. But working well in development systems. We are using ECC 6.0 systems and in both systems we have same lines of code for SAPDBADA.
    During debug, found that in development system, control coming to initial statements after PAI event. But in other systems, control skips few initial commands after PAI and directly jumps to later commands. Due to this FNAME parameter in PAI subroutine setting with '*' in other systems and 'BUKRS' in dev system.
    Could anybody give me some thoughts of why system behaving differently?
    Thanks and Regards,
    Prasanth

    Some - or most? - ODBC driver, especially MS for SQLServer and Access, don't support these advanced JDBC features.
    Like the messages says: they are optional features, and the driver doesn't implement them.
    A good news:
    you don't need them.
    Just go through your ResultSets only forward by next(), and do all inserts, updates and deletes with executeUpdate() and SQL commands.

  • A peculiar problem in BBPSTART

    Hi Guys,
    I am working in SRM since last 3 years and was a part
    of 2 implementations.I am doing customizations on an
    SRM 4.0 server for training purposes.In the process
    I have came accross a very peculiar problem in the
    BBPSTART transaction.In the screen after user logs
    in, if he/she clicks any link e.g. Shop, in the
    middle another session opens.The shop screen is
    never displayed.
    Has anyone seen this problem before? I was trying to
    find a note on this, but couldn't.Please
    suggest a solution for this.
    Regards
      Amitabh

    Hi,
      You need to verify your TWPURLSVR table entries.
    Pls refer the foll thread:
    EBP 5.0 (SRM server) on internal ITS
    BR,
    Disha.
    PLs reward points for helpful asnwers.

  • Peculiar behaviour in picking file from FTP in File-IDoc scenario

    Dear XI Expert,
    I have successfully completed configuration of FTP --> XI --> IDoc scenario. I have noticed a peculiar behaviour in picking the file from FTP. I placed a file on FTP and activated File Adapter with poll interval '60' secs and processing mode as 'Archive'. For the first time it has picked the file with expected behaviour and IDoc got posted to SAP successfully. But when I placed file for the second time and when refreshed the FTP directory, immediately file got archived without waiting for 60 secs. But in sxi_monitor I could not see any activity of processing this scenario. Surprise is that, file got archived in target directory. This goes on and on... without registering any activity of processing the message in Message monitoring.
    In adapter monitoring it shows the message as described below:
    <i>History:
    2006-05-09 22:57:25 : Processing started
    2006-05-09 22:57:25 : Error: Processing interrupted due to error: FTPEx: No such file
    2006-05-09 22:57:24 : Processing started
    2006-05-09 22:57:24 : Error: Processing interrupted due to error: FTPEx: No such file</i>
    For your information my SAP XI system is on SP16.
    Please find below the parameters of sender adapter:
    <i>Quality of service: Exactly once
    Poll interval: 60 secs
    Processing mode: Archive
    Connect Mode: Per File Transfer
    Transfer Mode: Binary</i>
    Can anybody help me out in resolving such a problem in this scenario?

    Hi Jayakrishnan,
    Thanks for your reply.
    Once again the same problem is noticed. i.e., for the first time when file adapter is activated the file got picked, activities were logged in monitoring and IDoc got posted to destination system. For the second time when file is placed, before 60 secs got completed the file is picked and archived in the target directory. No activities in monitoring are logged.
    I have tried it checking the message at adapter level, but it is showing 'No results' (even in the case of successful pick of the file for the first time, not even it is showing other file adapters).
    I was not able to understand where the problem could lie?
    Regards,
    Suraj Kumar

  • Peculiar behaviour of a query !!!

    Hi
    Have a peculiar issue with one of my user -
    A query is executed at the db level is hung from 1.30 PM IST to 4.30 PM IST and
    the same query executes in seconds post 4.30 PM IST.
    +"An application is down daily during early hours EST and its up automatically after 4:30 PM IST.+
    +A query does'nt run at that time but the same Query is working fine after 4:30 IST to fetch the results and display."+
    What could be the possible reasons for such an behaviour of an query/application?
    Findings from my end -
    Generated explain during 1.30 - 4.30 pm ist and after 4.30 pm ist - No difference noticed.
    Query is running fine in dev and qa.
    No major changes made except unix team has made a DIMM replacement recently in prod.
    Regards
    DBA

            PX                                                                                                                                    Wait Time
      SID  SID  SERIAL# ORA USER     MACHINE               STATUS   LOGON_TIME         MODULE            COMMAND    Waiting for                   (Seconds)
      243         35214 ARQ_APP      schlw005              INACTIVE 01:01:24 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20888
      244         33606 PRC_APP      SOFTTEKGE\STKMY05284  INACTIVE 16:52:40 24-AUG-10 PL/SQL Developer  NONE               SQL*Net message from client      157852
      248         31905 CIA_APP      schlw005              INACTIVE 01:01:25 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20887
      258         35263 ARQ_APP      schlw006              INACTIVE 11:32:42 23-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client      328608
      260           337 LVMSOUSER    tnsp01826             INACTIVE 05:50:36 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client          80
      275         59915 SAM_APP      tnsp01826             INACTIVE 02:06:43 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client        2835
      277         54769 MSO_APP      gpsd023d              INACTIVE 10:36:37 25-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client      159176
      278         44661 ARQ_APP      schlw006              INACTIVE 08:49:54 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       78966
      279         30674 ARQ_APP      schlw005              INACTIVE 01:01:21 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20891
      282          3258 LVMSOUSER    tnsp01826             INACTIVE 02:13:41 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client         660
      284         43634 MSO_APP      PSAMER\SCGVLDV15PSGE  INACTIVE 14:19:28 24-AUG-10 ASizeQueue1.exe   NONE               SQL*Net message from client          20
      285         36069 CIA_APP      schlw005              INACTIVE 01:01:27 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20885
      286          9410 ARQ_APP      schlw006              INACTIVE 11:32:44 23-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       77875
      290         64610 LVMSOUSER    tnsp01819             INACTIVE 05:32:56 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client         178
      292         43190 PPW_APP      SOFTTEKGE\STKMY02439  INACTIVE 15:00:59 26-AUG-10                   NONE               SQL*Net message from client       55250
      293         41994 LVMSOUSER    tnsp01819             INACTIVE 02:51:29 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client         145
      303          9906 LVMSOUSER    tnsp01826             INACTIVE 02:13:43 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client        3534
      306         17290 SYS          tsgsp01503            INACTIVE 06:25:08 27-AUG-10 rman@tsgsp01503 (TNS NONE            SQL*Net message from client        1226
                                                                                        V1-V3)
      307         59667 MSO_APP      tnwp04113             INACTIVE 00:50:48 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       82375
      308         28200 ARQ_APP      schlw005              INACTIVE 01:01:21 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20891
      312         63896 SPT_APP      tnsp01819             INACTIVE 01:12:28 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       19190
      316         53964 LVMSOUSER    tnsp01819             INACTIVE 02:51:31 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client         178
      320         60237 ARQ_APP      schlw006              INACTIVE 08:55:46 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       78656
      323         17306 MSO_APP      tnwp04112             INACTIVE 02:25:33 26-AUG-10                   NONE               SQL*Net message from client          15
      336         57045 ARQ_APP      schlw005              INACTIVE 01:01:20 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client        2368
      337         53462 MSO_APP      PSAMER\TSGWP00891     INACTIVE 06:38:32 27-AUG-10 orddrw32.exe      NONE               SQL*Net message from client         424
      338         21534 SPT_APP      SATHIC-PCS0179        INACTIVE 05:41:15 27-AUG-10 Oracle SQL Developer PL/SQL EXECUTE  SQL*Net message from client        4096
      342         45576 CIA_APP      schlw005              INACTIVE 01:01:27 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20885
      344         32553 ARQ_APP      schlw006              INACTIVE 09:21:53 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       77148
      351         15019 MSO_APP      gpsd025d              INACTIVE 16:52:31 23-AUG-10                   NONE               SQL*Net message from client       76529
      353         10951 ARQ_APP      schlw006              INACTIVE 11:32:42 23-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       77461
      357         19421 SSO501836470 SATVCC-PCS29498       INACTIVE 06:39:38 17-AUG-10 SQL Developer     NONE               SQL*Net message from client      860645
      359         54328 SPT_APP      SATHIC-PCS0179        INACTIVE 05:40:54 27-AUG-10 SQL Developer     PL/SQL EXECUTE     SQL*Net message from client        1122
      362         11722 ARQ_APP      schlw006              INACTIVE 08:47:49 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       79238
      367         26337 PPW_APP      SOFTTEKGE\STKMY02439  INACTIVE 15:01:03 26-AUG-10                   SELECT             SQL*Net message from client       56906
      371         24065 ARQ_APP      schlw006              INACTIVE 08:32:07 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       80013
      375         28388 MSO_APP      tnwp04113             INACTIVE 07:56:33 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       33463
      376         29500 TSE_APP      PSAMER\NYSCHA13PSGE   INACTIVE 11:45:08 24-AUG-10 vb6.exe           NONE               SQL*Net message from client        3071
      377         39083 ARQ_APP      schlw005              INACTIVE 01:01:20 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20892
      378         18493 ARQ_APP      schlw006              INACTIVE 08:30:29 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       80343
      379         45633 PRC_EAI      gpsd023d              INACTIVE 15:09:23 25-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client        7878
      380         34065 MSO_APP      PSAMER\TSGWP00891     INACTIVE 02:17:07 27-AUG-10 orddrw32.exe      NONE               SQL*Net message from client         813
      381         55914 PRC_APP      gpsd025d              INACTIVE 06:49:24 27-AUG-10                   NONE               SQL*Net message from client           3
      383         49394 MSO_APP      PSAMER\SCGVLDV14PSGE  INACTIVE 14:16:24 24-AUG-10 ASizeQueue1.exe   NONE               SQL*Net message from client          20
      384         46410 NIR_APP      PSAMER\TNWP04017      INACTIVE 06:22:40 27-AUG-10 w3wp.exe          NONE               SQL*Net message from client          22
      385          6233 ARQ_APP      schlw006              INACTIVE 08:42:02 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       79386
      386         64769 MSO_APP      PSAMER\TSGWP00891     INACTIVE 03:55:46 27-AUG-10 orddrw32.exe      NONE               SQL*Net message from client       10426
      388         41602 ARQ_APP      schlw006              INACTIVE 09:21:54 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       77022
      389         58831 MSO_APP      PSAMER\TSGWP00891     INACTIVE 06:48:12 27-AUG-10 orddrw32.exe      NONE               SQL*Net message from client          77
      397         43630 LVMSOUSER    tnsp01819             INACTIVE 05:32:54 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client         163
      400         62339 ARQ_APP      schlw006              INACTIVE 09:16:57 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       77326
      402          8283 ARQ_APP      schlw006              INACTIVE 08:36:50 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       79768
      407          4412 ARQ_APP      schlw006              INACTIVE 08:42:02 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       79461
      410         40080 LVMSOUSER    tnsp01826             INACTIVE 05:50:34 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client        3470
            PX                                                                                                                                    Wait Time
      SID  SID  SERIAL# ORA USER     MACHINE               STATUS   LOGON_TIME         MODULE            COMMAND    Waiting for                   (Seconds)
      416         45596 SAM_APP      schlw005              INACTIVE 01:01:16 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20896
      421         58122 ARQ_APP      schlw005              INACTIVE 01:01:20 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client        2425
      424         59346 ARQ_APP      schlw006              INACTIVE 12:08:11 25-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       80446
      425         32760 ARQ_APP      schlw006              INACTIVE 08:53:44 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       78742
      426         22752 MSO_CMB      PSAMER\SCGVLDV15PSGE  INACTIVE 14:20:05 24-AUG-10 CombinationQueue.exe NONE            SQL*Net message from client          26
      430          2006 SAM_APP      tnsp01819             INACTIVE 01:07:36 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client         137
      432         63852 ARQ_APP      schlw006              INACTIVE 14:10:35 24-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       80374
      436         16435 MSO_APP      gpsd025d              INACTIVE 16:52:30 23-AUG-10                   NONE               SQL*Net message from client           6
      442         44324 NIR_APP      PSAMER\TNWP04017      INACTIVE 06:47:44 27-AUG-10 w3wp.exe          NONE               SQL*Net message from client           5
      444         63735 ARQ_APP      schlw006              INACTIVE 09:16:56 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       77409
      448         47232 ARQ_APP      schlw006              INACTIVE 09:06:03 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       78026
      450         34890 ARQ_APP      schlw005              INACTIVE 01:01:20 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client        2151
      451         36355 HOT_ADMIN    tsgsp01503            INACTIVE 22:46:16 15-AUG-10 emagent@tsgsp01503 ( NONE            SQL*Net message from client          53
                                                                                       TNS V1-V3)
      452          1123 ARQ_APP      schlw006              INACTIVE 08:36:50 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       79692
      455         50524 ARQ_APP      schlw006              INACTIVE 11:32:41 23-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client      328610
      458         16436 ARQ_APP      schlw006              INACTIVE 11:32:42 23-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       78146
      460          8422 MSO_APP      gpsd023d              INACTIVE 10:36:31 25-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client      159181
      463         54816 SYS          tsgsp01503            INACTIVE 06:25:08 27-AUG-10 rman@tsgsp01503 (TNS NONE            SQL*Net message from client          10
                                                                                        V1-V3)
      468         32257 MSO_APP      PSAMER\TSGWP00891     INACTIVE 02:25:03 27-AUG-10 orddrw32.exe      NONE               SQL*Net message from client         813
      469          7614 ARQ_APP      schlw006              INACTIVE 09:06:03 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       78108
      471         58246 BTT_APP      PSAMER\T00627489      INACTIVE 15:47:37 13-AUG-10 BTT.exe           NONE               SQL*Net message from client       78268
      474          2395 ARQ_APP      schlw005              INACTIVE 01:01:21 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20888
      477          7799 ARQ_APP      schlw005              INACTIVE 01:01:20 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client        2423
      478         45166 ARQ_APP      schlw006              INACTIVE 09:10:20 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       77707
      482         17264 CIA_APP      schlw005              INACTIVE 01:01:25 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20887
      488         50488 MSO_APP      PSAMER\TSGWP00891     INACTIVE 03:55:56 27-AUG-10 VisioController.exe  NONE            SQL*Net message from client       10213
      489         25653 CIA_APP      schlw005              INACTIVE 01:01:25 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20887
      490         20069 SPT_APP      tnsp01826             INACTIVE 03:05:13 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client        8020
      492         25833 ARQ_APP      schlw006              INACTIVE 08:32:06 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       80078
      493         59680 MSO_APP      PSAMER\SCGVLDV14PSGE  INACTIVE 06:49:29 27-AUG-10 BomQueueProgram.exe  NONE            SQL*Net message from client           2
      503         61354 ARQ_APP      schlw006              INACTIVE 09:00:11 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       78300
      504         32549 ARQ_APP      schlw005              INACTIVE 01:01:22 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       20890
      505         36802 SYSTEM       bsepdlm2.ae.ge.com    INACTIVE 05:28:46 27-AUG-10 Admin Connection  NONE               SQL*Net message from client        4753
      508           954 DBSNMP       tsgsp01503            INACTIVE 05:16:35 22-JUN-10 emagent@tsgsp01503 ( NONE            SQL*Net message from client          38
                                                                                       TNS V1-V3)
      509         60380 ARQ_APP      schlw006              INACTIVE 08:49:52 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       79030
      510         40208 SAM_APP      schlw006              INACTIVE 02:01:04 27-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       17308
      513         48521 ARQ_APP      schlw006              INACTIVE 11:32:42 23-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       77181
      515         29925 ARQ_APP      schlw006              INACTIVE 09:10:21 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       77626
      522         49851 SPT_APP      SATHIC-PCS0179        INACTIVE 05:41:15 27-AUG-10 Oracle SQL Developer PL/SQL EXECUTE  SQL*Net message from client        4096
      527         36970 MSO_CMB      PSAMER\SCGVLDV14PSGE  INACTIVE 14:15:15 24-AUG-10 CombinationQueue.exe NONE            SQL*Net message from client           6
      535         10196 PRC_APP      SOFTTEKGE\STKMY05284  INACTIVE 18:05:29 24-AUG-10 PL/SQL Developer  PL/SQL EXECUTE     SQL*Net message from client       74332
      543         29238 ARQ_APP      schlw006              INACTIVE 09:00:10 26-AUG-10 JDBC Thin Client  NONE               SQL*Net message from client       78423
      296         40839 DBSNMP       tsgsp01503            ACTIVE   22:46:11 15-AUG-10 emagent@tsgsp01503 ( NONE            Streams AQ: waiting for mess          3
                                                                                       TNS V1-V3)                   ages in the queue
      315         39000 SYS          tsgsp01503            ACTIVE   06:27:23 27-AUG-10 backup archivelog NONE               Backup: sbtwrite2                  1188
      345         46680 MSO_CMB      PSAMER\SCGVLDV15PSGE  ACTIVE   06:47:07 27-AUG-10 CombinationQueue.exe UPDATE          db file sequential read               0
      352         51633 MSO_CMB      PSAMER\SCGVLDV14PSGE  ACTIVE   06:49:21 27-AUG-10 CombinationQueue.exe UPDATE          SQL*Net message from client           0
      370         28991 SYSTEM       INDGE\703062610L      ACTIVE   05:33:46 27-AUG-10 SQL*Plus          SELECT             SQL*Net message to client             0
      422         45900 SYS          tsgsp01503            ACTIVE   06:27:41 27-AUG-10 backup archivelog NONE               Backup: sbtwrite2                   649
            PX                                                                                                                                    Wait Time
      SID  SID  SERIAL# ORA USER     MACHINE               STATUS   LOGON_TIME         MODULE            COMMAND    Waiting for                   (Seconds)
      439          6507 SPT_APP      SATHIC-PCS0179        ACTIVE   09:43:27 26-AUG-10 SQL Developer     SELECT             db file sequential read               0
      464         12988                                    ACTIVE   11:09:50 07-AUG-10                   NONE               Streams AQ: qmn slave idle w      52456
                                                                                                                    ait
      486         55921 SYS          tsgsp01503            ACTIVE   06:27:29 27-AUG-10 backup archivelog NONE               Backup: sbtwrite2                  1197
      494             1                                    ACTIVE   00:57:58 24-JAN-10                   NONE               Streams AQ: waiting for time        872
                                                                                                                     management or cleanup tasks
      501             1              QMNC                  ACTIVE   00:57:48 24-JAN-10                   NONE               Streams AQ: qmn coordinator     1711915
                                                                                                                    idle wait
      530             3              ARC0                  ACTIVE   00:57:42 24-JAN-10                   NONE               idle                                 88
      532         64509 SYS          tsgsp01503            ACTIVE   06:27:35 27-AUG-10 backup archivelog NONE               Backup: sbtwrite2                   851
      534             3              ARC1                  ACTIVE   00:57:42 24-JAN-10                   NONE               idle                                 55
      542          9234 TBSPT        tsgsp01503            ACTIVE   23:59:57 26-AUG-10                   UPDATE             latch: cache buffers chains           2
      544             1              MMNL                  ACTIVE   00:57:30 24-JAN-10                   NONE               idle                               5464
      545             1              MMON                  ACTIVE   00:57:30 24-JAN-10                   NONE               idle                                315
      546             1              CJQ0                  ACTIVE   00:57:30 24-JAN-10                   NONE               idle                                139
      547             1              RECO                  ACTIVE   00:57:30 24-JAN-10                   NONE               idle                                 24
      548             1              SMON                  ACTIVE   00:57:30 24-JAN-10                   NONE               idle                                105
      549             1              CKPT                  ACTIVE   00:57:29 24-JAN-10                   NONE               idle                                  1
      550             1              LGWR                  ACTIVE   00:57:29 24-JAN-10                   NONE               idle                                  0
      551             1              DBW1                  ACTIVE   00:57:29 24-JAN-10                   NONE               idle                                  2
      552             1              DBW0                  ACTIVE   00:57:29 24-JAN-10                   NONE               idle                                  2
      553             1              MMAN                  ACTIVE   00:57:29 24-JAN-10                   NONE               idle                              17089
      554             1              PSP0                  ACTIVE   00:57:29 24-JAN-10                   NONE               idle                                137
      555             1              PMON                  ACTIVE   00:57:29 24-JAN-10                   NONE               idle                              61920
    123 rows selected.

  • Peculiar results from a simple looking query.

    I’ve stumbled upon a peculiar result when querying Oracle which I have not experienced with other DBMS. Consider this example:
    create table atable(field varchar(20))
    insert into atable values ('This is a test')
    select field from atable where cast(field as varchar(2))='Th'
    Other DBMS return the single row:
    This is a test
    Oracle 9.2.10, however generates this result:
    Th
    Is this a widely known issue with Oracle? Can I change Oracle’s behaviour by tweaking configuration or applying a patch? Is this a bug?

    The example I posted was obviously contrived – and I agree – yes I could replace the CAST with SUBSTR. In the real context using CAST just seems an obvious choice - and if I can avoid having to manually modify the queries which already use CAST successfully on other DBMS – then that appeals to my laziness. :-)
    I’m finding it tough filing a TAR (what does that stand for?) with Metalink – the website seems to only want users who have a "Support Identifier" - I was not running the SQL on my own server… Any advice – or must I find someone with an existing account to ask on my behalf?
    Steve

  • A peculiar matter about Materialized Views

    Hi ,
    I have created successfully some months ago some MV. Later on , I was made to destroy the database and create a new one , using the DBCA. The peculiar is that whenever i issue the command :
    sql> drop materialized view stat_biox_f_mv;
    Oracle displays the error ORA-12003: the materialized view stat_biox_f_mv does not exist.
    When i issue the command:
    sql>create materialized view stat_biox_f_mv
    build immediate
    refresh start with (sysdate)+(10/1440)
    next (sysdate)+10/1440
    as
    select count(f) N_f,sum(f) Sx_f,round(avg(f),3) x_f,round(stddev(f),3) SD_f,
    round(avg(f)+2*stddev(f),3) Ru_f,round(avg(f)-2*stddev(f),3) Rd_f,
    round(stddev(f)/sqrt(count(f)),3) SE_f,round((100*stddev(f))/avg(f),3) CV_f,
    round(count(f)*((sum(power(f,4))-(power(sum(f),4)/count(f)))/
    (power((sum(power(f,2))-(power(sum(f),2)/count(f))),2)))-3,3) Sk_f,
    round((sum(power(f,2))-(power(sum(f),3)/count(f)))/
    (power(stddev(f),2)*count(f)),3) Sa_f
    from biox
    Oracle displays the error ORA-00955: the object does exist
    Eventually , the object exists or does not...?????
    Thanks , a lot
    Simon

    Have you queried all_objects? Perhaps the materialized view doesn't exist but a table with the same name does. If you do find any objects with that name, drop them.
    SELECT * FROM all_objects WHERE object_name = UPPER('stat_biox_f_mv');
    Have you tried creating this MV with a different name? Does that work?

Maybe you are looking for

  • Using JPanel with JFrame

    I am using a JFrame to encapsulate my program. I want to have a JPanel inside my JFrame to handle all of my 2d displaying (like fillRect() etc...). I used forte to set this up but I am having problems dispaying on the JPanel. Here is my code: here is

  • Which version of BPEL Process Manager should I use for Windows 7

    As the one which I downloaded doesn't work. [http://www.oracle.com/technology/software/products/ias/bpel/index.html |Windows |Download      soa_windows_x86_bpel_101310.zip (356,697,295 bytes) ] I have installed SOA Suite, SOA Suite (11.1.1.2.0) More

  • Moving rules from Mail v1.2.5 to Mail v3.5

    I have just changed from a G4 flat screen iMac running OSX 10.2.8 to a 20" iMac running OSX 10.5.5, and as a result Mail has changed from v1.2.5 to v.3.5. I have managed to transfer the more important e-mails from the old machine to the new without t

  • No more quad core?!?!?

    OMG. I have been waiting 2 years for an update to the Mac mini, only to find that their highest end model will still likely be less powerful than the one I've got. The Mac mini is (or used to be) an awesome alternative to the all-in-one iMac or the s

  • Wrapper classes

    Hola, tengo una duda con las Wrapper classes, �por qu� estas clases a partir de la versi�n 5 (jvm 1.5) aceptan asignaciones directamente? Por ejemplo: (jvm 1.5): Double d = 5.0; (<-- compila) (jvm 1.4): Double d = 5.0; (<-- no compila) Agradecer�a mu