"User Login not allowed here"

Here is my layout and the question.

Page layout

Using Dell Sonicwall NSA 2600 firewalls

Two offices connected through the VPN tunnel.

Office 1 Sonicwall LAN IP: 192.168.1.1

Office 2 Soincwall LAN IP: 10.1.1.1

Question:

Created a local user account with full administrator access for the two sonicwalls. The local administrator account gets the following error message when you try to connect to the web interface to web Office FW of the subnet 2 interface 1 office.

"User login has not allowed here"

The default Administrator account is no problem connecting, but the secondary admin account I made to this question. Now, if I use a web browser on subnet 2 to the Office of a local computer secondary admin account has no problem connection on subnet 2 Office.

Any ideas on that?

Looks like you need to activate the user on the VPN connection. This is possible by configuring the VPN and going in the Advanced tab.

Thank you

Kevin Roberts

Tags: Dell Tech

Similar Questions

  • Database trigger - PL/SQL: ORA-00984: column not allowed here

    I am trying to create a trigger that will update a table of audit used when a row is changed. Using a sequence number to assign an identifier unique to each line as it is created. Need to capture the user ID, date modified and action (update), the image of the front line.
    CREATE SEQUENCE emp_audit_seq START WITH 10;                
    Create table emp (
       empno       NUMBER(4)      Primary Key,
       ename       VARCHAR2(10),
       job            VARCHAR2(9),
       mgr           NUMBER(4),
       hiredate     DATE,
       sal             NUMBER(7,2),
       comm        NUMBER(7,2),
       deptno       NUMBER(2));
    CREATE TABLE emp_audit   (
         audit_uid          NUMBER(15)      Primary Key,
         change_date          DATE,
         change_user          VARCHAR2(30),
         action                  CHAR(1),
         empno                  NUMBER(4),
         ename                  VARCHAR2(10),          
         job               VARCHAR2(9),
         mgr               NUMBER(4),
         hiredate          DATE,
         sal               NUMBER(7,2),
         comm                  NUMBER(7,2),
         deptno                  NUMBER(2));
    CREATE OR REPLACE TRIGGER trig_emp_audit
      BEFORE UPDATE ON emp
      FOR EACH ROW
    BEGIN
      INSERT INTO emp_audit
        VALUES(emp_audit_seq.nextval, change_date, change_user, action, :old.empno, :old.ename, :old.job, :old.mgr, :old.hiredate, :old.sal, :old.comm, deptno);
    END;
    /
    
    Warning: Trigger created with compilation errors.
    
    SQL> show errors
    Errors for TRIGGER TRIG_EMP_AUDIT:
    
    LINE/COL ERROR
    -------- -----------------------------------------------
    2/3      PL/SQL: SQL Statement ignored
    3/149    PL/SQL: ORA-00984: column not allowed here
    Can someone help to help me find what I'm doing wrong with the trigger?

    Published by: LostNoob on August 25, 2012 14:24

    First of all, when you write an INSERT statement, it is always good for the columns that you insert in the list. Which makes the code easier to follow - you do not have separately pull toward the top of the table definition to know what order of columns is inserted. And it makes the code easier to manage because the declaration become invalid if you add a new column to the table in the future.

    Second, CHANGE_DATE, CHANGE_USER and ACTION are not (probably) functions and are not local variables so it is not supposed to use them in an INSERT statement. You need to write code or to take advantage of the existing functions to fill in these columns. I suppose, for example, that you want to use SYSDATE to fill the CHANGE_DATE and the USER to fill the column CHANGE_USER. My guess is that ACTION must always be a 'U' for UPDATE.

    Thirdly, it seems that you left the: old man on the DEPTNO column.

    Put them all together, you would have something like

    CREATE OR REPLACE TRIGGER trig_emp_audit
      BEFORE UPDATE ON emp
      FOR EACH ROW
    BEGIN
      INSERT INTO emp_audit(
          audit_uid,
          change_date,
          change_user,
          action,
          enpno,
          ename,
          job,
          mgr,
          hiredate,
          sal,
          comm,
          deptno )
        VALUES(
          emp_audit_seq.nextval,
          sysdate,
          user,
          'U',
         :old.empno,
         :old.ename,
         :old.job,
         :old.mgr,
         :old.hiredate,
         :old.sal,
         :old.comm,
         :old.deptno);
    END;
    / 
    

    Justin

  • ORA-00984: column not allowed here, when you try to use a default UDF

    I am wanting to create a table that has a default value of a user-defined function, and because this default is intended to be used in a few different places so I would use a function rather than in the table definition.

    This is my current code that works very well:
    CREATE TABLE DEPT_HIST
    (
      DEPTNO      NUMBER(2) not null,
      DNAME       VARCHAR2(14),
      LOC         VARCHAR2(13),
      SQL_ACTV_C  CHAR(1) not null,
      EFFT_STRT_S TIMESTAMP(6) default SYSTIMESTAMP not null,
      EFFT_END_S  TIMESTAMP(6) default TO_TIMESTAMP('9999/12/30 00:00:00.000000', 'YYYY/MM/DD:HH24:MI:SS.FF6') not null,
      DELT_F      CHAR(1) default 'N' not null
    );
    but I would get something similar to this work:
    CREATE OR REPLACE FUNCTION EOT
       RETURN timestamp
    IS
       Result   timestamp;
    BEGIN
       RETURN (TO_TIMESTAMP ('9999/12/30 00:00:00.000000',
                             'YYYY/MM/DD:HH24:MI:SS.FF6'));
    END EOT;
    /
    
    select eot from dual;
    
    EOT
    ---------------------------------------------------------------------------
    30/DEC/99 12:00:00.000000000 AM
    
    CREATE TABLE DEPT_HIST
    (
      DEPTNO      NUMBER(2) not null,
      DNAME       VARCHAR2(14),
      LOC         VARCHAR2(13),
      SQL_ACTV_C  CHAR(1) not null,
      EFFT_STRT_S TIMESTAMP(6) default SYSTIMESTAMP not null,
      EFFT_END_S  TIMESTAMP(6) default EOT not null,
      DELT_F      CHAR(1) default 'N' not null
    );
    but I get an error of:
      EFFT_END_S  TIMESTAMP(6) default EOT not null,
                                       *
    ERROR at line 8:
    ORA-00984: column not allowed here
    Any ideas? I guess I could use a trigger but not exactly what I'm after.

    Hello

    Sorry; No function defined by the user in the DEFAULT clause.
    From SQL, under "CREATE TABLE Statement" language manual
    http://download.Oracle.com/docs/CD/B28359_01/server.111/b28286/statements_7002.htm#sthref7119

    Restriction on default column values


    A DEFAULT expression cannot contain references to the functions PL/SQL or other columns, the nickname CURRVAL, NEXTVAL, LEVEL, PRIOR and ROWNUM, or date constants that are not completely specified.

    I wouldn't use a trip just for that. If you need a trigger for other reasons, then maybe you can include the definition of this column in the trigger, too, but, in general, avoid triggers when there is an alternative.

  • Error when parsing the file ' value of the 'src' attribute is not valid; must be a URI'.  ERROR (RSC-005) to "Hetgeheimfietsen.epub/OEBPS/toc.xhtml" (line 10, col 10): error while parsing the file ' "ol" element not allowed here; wait for the end-tag of t

    The members of the Forum kan help you

    Validation by using version 3.0.1 EPUB rules.

    ()https://github.com/IDPF/epubcheck( )

    December 9, 2015 15:27:33 THIS

    ---------------------------------------------------

    WARNING (OPF-007) to 'Hetgeheimfietsen.epub/OEBPS/content.opf' (line 2, column 227):

    Re-declaration of prefix reserved "rendition."

    ERROR (RSC-005) to "Hetgeheimfietsen.epub/OEBPS/toc.xhtml" (line 10, col 10):

    Error when parsing the file ' "ol" element not allowed here; waiting for the end-tag of the element or element "li" '.

    WARNING (CSS-007) to "Hetgeheimfietsen.epub/OEBPS/css/idGeneratedStyles_0.css" (line 60, col 2):

    Police made OEBPS/font/CambriaMath.ttc refers to fonts not standard type application/x-police-FTT.

    WARNING (PKG-012) to "Hetgeheimfietsen.epub/OEBPS/De_Alpe_d'Huez-1.xhtml":

    File name contains following non ascii characters: '. You want to change the name of the file.

    WARNING (PKG-012) to "Hetgeheimfietsen.epub/OEBPS/De_Alpe_d'Huez-2.xhtml":

    File name contains following non ascii characters: '. You want to change the name of the file.

    Check the finish with warnings or errors!

    In the file Toc delete the second "ol", as well as closing like Epubcheck duplicate codes

        the one after the other (delete the other)

    1. ORA-00976: virtual specified or operator not allowed here

      Hello

      We had error after upgrade of GR 11, 2, in the insert statement.

      INSERT INTO SDE_TBL_FLEXTRIMSITROUT

      (BRANCHCD,

      SOURCECD,

      CURRENTNO,

      BATCHNO,

      DEPTCD,

      CTL

      INITIATIONDATE,

      AMOUNT,

      ACCOUNT,

      ACCOUNTBRANCH,

      TXNCD,

      DEBITCREDIT,

      LCYEQUIVALENT,

      EXCHRATE,

      VALUEDATE,

      INSTRUMENTNO,

      RELCUST,

      ADDLTEXT,

      TXNMIS1,

      TXNMIS2,

      TXNMIS3,

      TXNMIS4,

      TXNMIS5,

      TXNMIS6,

      TXNMIS7,

      TXNMIS8,

      TXNMIS9,

      TXNMIS10,

      COMPMIS1,

      COMPMIS2,

      COMPMIS3,

      COMPMIS4,

      COMPMIS5,

      COMPMIS6,

      COMPMIS7,

      COMPMIS8,

      COMPMIS9,

      COMPMIS10,

      COSTCODE1,

      COSTCODE2,

      COSTCODE3,

      COSTCODE4,

      COSTCODE5,

      RELATEDACCOUNT,

      RELATEDREF,

      USERREFERENCE,

      ACCTPOSTOVERWRITE,

      EXCHRATEOVERWRITE,

      VALUEDATEOVERWRITE,

      ACCTBALOVERWRITE,

      ITRREFER,

      RefinanceAmount,

      PROCESSID)

      VALUES

      (vBranchCode,

      cCreateNewTrimsITR_rec. APPLSYS,

      ROWNUM,

      nBatchNo,

      cCreateNewTrimsITR_rec. DEPT,

      vCcy,

      To_date (cCreateNewTrimsITR_rec. HOUR, 'YYYYMMDD'),

      nAmount,

      vAccount,

      vAccountBranch, - added by Sibylle

      vTxnCd,

      cDebitCredit,

      nLcyEquivalent,

      nExchRate,

      To_date (cCreateNewTrimsITR_rec. VALUEDATE, 'YYYYMMDD'),

      vInstrumentNo,

      --'      ' || SUBSTR (cCreateNewTrimsITR_rec. ITRREFER, 2, 11),

      vFlxCntry | cCreateNewTrimsITR_rec. APNO,

      vDesc,

      cCreateNewTrimsITR_rec. TRANSOUC,

      RPAD (' ', 9);

      vExpenseMIS,

      vProductMIS,

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 9);

      RPAD (' ', 20);

      cCreateNewTrimsITR_rec. THEIRREF,

      RPAD (' ', 16).

      cActPostOverwrite,

      cExchRateOverWrite,

      cValueDateOverWrite,

      cAcctBalOverWrite,

      cCreateNewTrimsITR_rec. ITRREFER,

      cCreateNewTrimsITR_rec. REFIAMOUNT,

      nFlexOutProcessId);

      Error: ORA-00976: specified virtual or operator not allowed here

      According to the audit, which are a problem in GR 11, 2 with insert query using rownum in values.

      Someone knows how to fix this?

      I wonder why you want to use rownum as a value of insertion? It's not really worth doing an insert without a select statement.

      If you want to use it, it would look like

      Insert into t1 (name, row_num_value)

      Select name

      rownum

      the t2;

      But then you can use an order by clause, on the other it would spoil the rownum order. So an important question is, where is the rownum used for?

    2. ORA-00976: virtual specified or operator not allowed here - (11g)

      This ora error occurs on one of my test environment.

      ORA-00976: virtual specified or operator not allowed here

      This happens in one of the plsql pkg, which has no compilation errors. and works perfectly well in other environments.

      The only difference I noticed is what error in DB, which is 11g - 11.2.0.3
      and other environments that are in good shape is 10g - 10.2.0.5

      Overall of the function where the error is, there is one thing which I suspect (but not sure)
      It is CONNECT BY LEVEL, is used in a query. This could be a problem in 11g?
      If not, any help / troubleshooting tips that will be greatly appreciated. !

      -Thank you,

      I can reproduce your error on my 11.2.0.3 instance. Looks like the bug number 13496250 introduced in the 11.2.0.3.

      John

    3. PL/SQL: ORA-00984: column not allowed here

      Sorry, it's probably easy and I forgot something simple, but it's driving me crazy :-)
      VARIABLE g_fk_deduction      VARCHAR2(30)
      VARIABLE g_fk_empno          NUMBER
      VARIABLE g_before_or_after_flag     CHAR(1)
      VARIABLE g_deduction_amount     NUMBER
      
      BEGIN
        :g_fk_deduction           := '401K';
        :g_fk_empno               := 7369;
        :g_before_or_after_flag     := 'B';
        :g_deduction_amount          := 150.00;
      END;
      /
      BEGIN
        INSERT INTO emp_deductions      (fk_deduction, fk_empno, before_or_after_flag, deduction_amount)
         VALUES               (g_fk_deduction, g_fk_empno, g_before_or_after_flag, g_deduction_amount);
        COMMIT;
      END;
      /
      Error: PL/SQL: ORA-00984: column not allowed here on g_deduction_amount
      in the value clause.
      Any help would be appreciated.

      Table is below:
      CREATE TABLE emp_deductions     (
            fk_deduction            VARCHAR2(30),
            fk_empno                  NUMBER(4),
            before_or_after_flag         CHAR(1),
            deduction_amount            NUMBER(6,2));
      Published by: LostNoob on August 23, 2012 19:06

      rp0428 wrote:
      >
      : g_fk_deduction: = "401k".
      : g_fk_empno: = 7369;
      : g_before_or_after_flag: = 'B ';.
      : g_deduction_amount: = 150.00;
      >
      Why did you put a colon here? Get rid of them.

      They are necessary, since they are declared SQL * more variable.

      The problem for the OP, is that in the clause values in the insert the colon are missing.

      Published by: Mark Williams on August 23, 2012 22:31

      Here is your example requested:

      SQL> create table test (c number);
      
      Table created.
      
      SQL> variable v_c number
      SQL> begin
        2    :v_c := 46;
        3  end;
        4  /
      
      PL/SQL procedure successfully completed.
      
      SQL> begin
        2    insert into test values (:v_c);
        3  end;
        4  /
      
      PL/SQL procedure successfully completed.
      
      SQL> commit;
      
      Commit complete.
      
      SQL> select * from test;
      
               C
      ----------
              46
      
      1 row selected.
      
      SQL>
      
    4. ORA-00984: column not allowed here

      Hi all

      Kindly someone please shed some light on this called error "ORA-00984: column not allowed here?

      I created a table:

      CREATE TABLE JB (ENAME VARCHAR (20));

      Table created.

      Now, if I INSERT:

      INSERT INTO VALUES JB (sintes);

      ORA-00984: column not allowed here

      Why this error, if I insert a number instead of "Sinti", implementation is also possible. No character is not allowed.

      What is the column name in this area, its totally strange to me.

      Please someone help me.

      Thank you and best regards,
      SINTES

      Hello
      Use quotes around Zack:

      INSERT INTO JB VALUES ('Sathik');
      
    5. ORA-02287: sequence number not allowed here

      < police = "Courier New" >
      Hello
      Why do I have this problem?
      Insert an order tab2 select tab2_seq.nextval, eng_cat from (select distinct job_det eng_cat) by 2.

      SQL > r
      1 * insert into tab2_seq.nextval select eng_cat select (separate eng_cat tab2
      Insert in tab2 select tab2_seq.nextval, eng_cat from (select distinct eng_cat from)
      *
      ERROR on line 1:
      ORA-02287: sequence number not allowed here

      Thank you and best regards,
      Human
      < / make >

      It's 'order of 2' which makes it fail. That makes no sense at all?
      Just remove the order by clause, then it works ;-)

    6. The current user is not allowed to call this method. in CF10

      Hi all

      After installing CF10 and our report, I am able to connect to the report.

      After awhile all of a sudden I get the below error and I am unable to connect to our reporting module.

      "" the current user is not allowed to invote this error of method".

      When I checkd surprised newspapers that CF is looking for some files under E:\cf10_final\cfusion\wwwroot\CFIDE\adminapi\accessmanager.cfc

      I don't have E drive in my pc.

      can someone help me to solv the problem? (any patches / workarounds), installed the hotfix7 and mandatory patch in our computer.

      Thanks in advance.

      ------------------------------- logs start---------------------------------------------

      "The current user is not allowed to call this method. «The specific sequence of files included or processed is: C:\inetpub\wwwroot\da-idcsap001_TM\index.cfm, line: 48»

      coldfusion.runtime.CustomException: the current user is not allowed to call this method.

      at coldfusion.tagext.lang.ThrowTag.doStartTag(ThrowTag.java:142)

      at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2799)

      to cfaccessmanager2ecfc974154242$ funcCHECKADMINROLES.runFunction (E:\cf10_final\cfusion\wwwro ot\CFIDE\adminapi\accessmanager.cfc:48)

      at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472)

      at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)

      to coldfusion.runtime.UDFMethod$ ArgumentCollectionFilter.invoke (UDFMethod.java:368)

      at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)

      at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321)

      at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220)

      at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:655)

      at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:444)

      at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:414)

      at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2432)

      to cfdatasource2ecfc1679861966$ funcSETODBCSOCKET.runFunction (E:\cf10_final\cfusion\wwwroot\C FIDE\adminapi\datasource.cfc:814)

      at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472)

      to coldfusion.runtime.UDFMethod$ ReturnTypeFilter.invoke (UDFMethod.java:405)

      to coldfusion.runtime.UDFMethod$ ArgumentCollectionFilter.invoke (UDFMethod.java:368)

      at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)

      at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321)

      at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:518)

      at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:660)

      at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:469)

      at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2373)

      at cfcreateCFDatasource2ecfm667208776.runPage (C:\inetpub\wwwroot\da-idcsap001_TM\createCFDat asource.cfm:41)

      at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244)

      at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:444)

      at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2799)

      at cfsecure_init2ecfm1698353119.runPage (C:\inetpub\wwwroot\da-idcsap001_TM\secure_init.cfm:2 31)

      at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244)

      at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:444)

      at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2799)

      to cfApplication2ecfm465443671.runPage(C:\inetpub\wwwroot\da-idcsap001_TM\Application.cfm:5)

      at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244)

      at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:444)

      at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)

      at coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:33)

      at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:346)

      at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)

      at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)

      at coldfusion.filter.PathFilter.invoke(PathFilter.java:112)

      at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:30)

      at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94)

      at coldfusion.filter.ClientScopePersistenceFilter.invoke (ClientScopePersistenceFilter.java:2 8)

      at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)

      at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)

      at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)

      at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)

      at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)

      to coldfusion. CfmServlet.service (CfmServlet.java:219)

      at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)

      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter (ApplicationFilterChain.j ava: 305)

      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

      at coldfusion.monitor.event.MonitoringServletFilter.doFilter (MonitoringServletFilter.java:42)

      at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)

      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter (ApplicationFilterChain.j ava: 243)

      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:224)

      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:169)

      at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)

      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)

      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)

      at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:928)

      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)

      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:414)

      at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:204)

      to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.jav one: 539)

      to org.apache.tomcat.util.net.JIoEndpoint$ SocketProcessor.run (JIoEndpoint.java:298)

      to java.util.concurrent.ThreadPoolExecutor$ Worker.runTask (ThreadPoolExecutor.java:886)

      to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:908)

      at java.lang.Thread.run(Thread.java:662)

      --------------------End logs------------------------

      Hello

      Solved the problem by installing the latest pathces CF.

      Kind regards

      Phani

    7. ORA-00934: Group feature is not allowed here

      CREATE or REPLACE PROCEDURE First(
      date1 IN Date,
      date2 IN Date
      )
              AS
      
      date3 employee.start_date%TYPE;
      date4 employee.start_date%TYPE;
      
      Begin
      select min(start_date) into date3 from employee where start_date between date1 AND date2;
      END;
      /
      Above procedure is completed successfully

      But when I changed the query to

      Select min (start_date) date3, max (start_date) in date4 of employee where start_date between date1 AND date2.
      then I get the error message
      ORA-00934: Group feature is not allowed here.
      Why this error happens during execution, but on sqlplus query is executed successfully.
      I checked this in oerr ora-00934 but not able to understand what measures should be taken
      select min(start_date)
      ,      max(start_date)
      into   date3
      ,      date4
      from   employee
      where  start_date between date1 AND date2;
      
    8. ORA-01733: virtual column not allowed here

      UPDATE (
      SELECT callingnumber, calledcallzone, b.callzone callzone, b.ndc
                FROM (SELECT DISTINCT SUBSTR (connectedcallingnumber, 3, 3) callingnumber,
                               calledcallzone,rownum 
                          FROM rating_temp
                         WHERE calltype = 0) a,
                     (SELECT *
                        FROM callzone cc
                       WHERE LENGTH (ndc) = 3) b
               WHERE callingnumber = ndc
               )
         SET calledcallzone = callzone-----VIRTUAL COLUMN NOT ALLOWED HERE
      Published by: user8731258 on November 29, 2010 12:45 AM

      Its simple you used SEPARATE in your first view inline. And so you cannot use columns for UPDATE.

    9. ORA-00976 LEVEL, PRIOR or ROWNUM not allowed here in the PO_DOCUMENT_CH package

      Hello

      EBS R12.1
      OEL 5.4

      Operations of requisition and PO doing im but I got error
      ORA-00976 LEVEL,PRIOR, or ROWNUM not allowed here in Package PO_DOCUMENT_CHECKS_PVT Procedure CHECK_REQUISITIONS.
      
      Solution
      
      1. Please check HR Locations setup corresponding to location_id=XXX. For example the Country should be 'KE' instead of 'Kenya'. 
      Compare with that of location_id=YYY which is correct as per FND log. 
      
      select location_id,location_code,country 
      from hr_locations_all 
      where location_id in (142,182); 
      
      2. After changing above setup, please run the SQL again to confirm the value. 
      Note > ORA-00976 error while approving internal requisitions [968651.1 ID]
      is the same thing with my mistake. But it is specific to the country in KENYA. :(
      How can I get my FND journal so that I can see what location_id who got the error?
        1* select location_id,location_code,country from hr_locations_all
      SQL> /
      
      LOCATION_ID LOCATION_CODE COUNTRY
      ----------- ------------- --------
      censored
      
      Im selecting the table but it seems the location and country code are fine.
      
      Please help me resolve this one based on the notes above.
      
      Thanks a lot,
      
      Ms K
      
      Edited by: user_unlimited on Sep 16, 2010 10:28 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

      Salvation;

      Please update thread when you did at the end of reading

      Respect of
      HELIOS

    10. virtual column not allowed here?

      I'm passing the name of a field as a parameter and I want to use this setting in my update like this statement:

      UPDATE WR_MEASURE_VALUE SET p_FieldToUpdate = null, pa_entered_date = sysdate
      WHERE WR_MEASURE_VALUE_OID = v_MeasureValueOID_arr (i);


      p_FieldToUpdate is the field. I get an error stating that the virtual column not allowed here.

      I tried to assign this value to a local variable and got the same thing. What do about it? I didn't create a conditiional for each value that might be stored in p_FieldToUpdate.

      Thank you

      What would you do if it is not good to do?

      Hard coded updated inside THEN incorporate tree ELSE after column_name

    11. PL/SQL: ORA-00934: Group feature is not allowed here

      Hello

      I write a PL/SQL procedure. The structure is like:

      SET SERVEROUTPUT ON;
      CREATE or REPLACE procedure abc

      IS
      v_total_ip_rec number (14);
      v_total_op_rec number (14);
      v_total_rec number (14);


      BEGIN
      SELECT SUM (CASE
      WHEN < condition 1 >
      THEN 1
      0 OTHERWISE
      END
      ) in v_total_ip_rec.
      SUM (CASE
      WHEN < condition 2 >
      THEN 1
      0 OTHERWISE
      END
      ) in v_total_op_rec.
      SUM (1) in v_total_rec
      OF A, B
      WHERE A.Col1 = B.Col1;

      EXCEPTION
      WHILE OTHERS THEN
      raise_application_error (-20001,' an error has occurred - ' |) SQLCODE |' - ERROR - ' | SQLERRM);
      END;


      When I run this procedure it gives me following error:
      "PL/SQL: ORA-00934: Group feature is not allowed here."

      Someone has an idea?

      Any help would be appreciated.

      Thank you.

      Should I have any special role?

      Have you checked if synonyms exist for tables?
      Please check in this order:

      #1-synonymes appropriate
      #2-appropriate privileges
      #3-appropriate roles

    Maybe you are looking for

    • Activity App lost all my data

      All of a sudden my activity App erased all my achievements, training and the latest data without provocation. It won't even keep new activity I am wearing my watch today. I tried restoring a backup without success. I'm absolutely Livid about how betw

    • Satellite A305-S6825: battery

      I have the Toshiba Satellite A305-S6825 and turned on after using it not for about a week. I noticed that the battery has been listed as full of 60%. Is this normal? I thought since I don't use it, it would be about 95%. I'm in the USA, however, cann

    • If they fled ICS

      It's my first smartpone which is not BB. If they fled the update, how long they begin to test ICS legitimately? Or is the the way they test the update of the ICS? Just curious period of what Motorola & AT & T East from one stage to the other. Thank y

    • The printer problem: showing the name of the file: directory: model: title: topic etc.

      Original title: printer problem Whenever I have print a page of Microsoft Office or on the web, I have another print page after him the name of the file: directory: model: title: topic etc.  I rang the manufacturer of the product and said it was a Wi

    • Publish online, which is integrated in Adobe illustrator asset pixelated

      I just tried to post it but when displayed in the browser (release), illustrator (vector full) adobe (placed) imported assets is pixelated so badly:Is there a solution?