Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Error PL/SQL: ORA-00923: FROM keyword not found where expected

KAISSERSep 1 2015 — edited Sep 1 2015

Hello everyone,

I get this error when I generate the code bellow mentioned.

Error computing item default value for page item P1_JORNADA_ANUAL.

ORA-06550: line 42, column 17: PL/SQL: ORA-00923: FROM keyword not found where expected ORA-06550: line 8, column 1: PL/SQL: SQL Statement ignored


Code:


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

DECLARE

  L_EMPRESA B_LISTA_EMPLEADOS.EMPRESA%TYPE;

BEGIN

select  case when ((select EMPRESA

                   from   B_LISTA_EMPLEADOS

                   where  USERNAME = v('APP_USER'))) = 'EMPRESA1'

                then ((select to_char(JORNADA_ANUAL)

                       from B_JORNADAS_Y_RATIOS

                       where  CATEGORIA = ((

                                            select CATEGORIA

                                            from B_LISTA_EMPLEADOS

                                            where USERNAME = v('APP_USER')

                                            ))

                              and EMPRESA = ((

                                              select EMPRESA

                                              from B_LISTA_EMPLEADOS

                                              where USERNAME = v('APP_USER')

                                              ))

                              and ANO = v('P1_ANO')

                              ))

            when ((select EMPRESA

                   from   B_LISTA_EMPLEADOS

                   where  USERNAME = :APP_USER)) = 'EMPRESA2'

                then 'Jornada de EMPRESA2'

            when ((select EMPRESA

                   from   B_LISTA_EMPLEADOS

                   where  USERNAME = :APP_USER)) = 'EMPRESA3'

                then 'Jornada de EMPRESA3'

            else 'Empresa desconocida'

        end

into L_EMPRESA

as Jornada

from B_JORNADAS_Y_RATIOS

group by EMPRESA

RETURN L_EMPRESA;

EXCEPTION

  WHEN NO_DATA_FOUND THEN

  RETURN NULL;

END;

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


Does someone know which or where is the mistake?


Thank you very much.


Regards


This post has been answered by Jagadekara on Sep 1 2015
Jump to Answer

Comments

732615
Can't show you any documentation but i've run both SE1 and EE on VMware without problems. Can't tell if all functionality works on it but the basic ones i used worked.
Absolutley it is.

Have you heard of BIC2GO ?

When I was in OCS we used to cart round a BIC2GO image to help us get up and running when doing POC's with customer data, plug the VMWare into customer network and the client can access all presentation services over there network.
Nicolae Ancuta
Hi,

we have an OBISE1 installed on an Windows XP (OBISE1 is supported only in Windows) on VMWare.
On VMWare you can install virual machines with linux and windows OSs.
It doesn't matter if is an phisical or virtual machine. The OS matters.

Regards
Nicolae
644784
From what I understand, BIC2GO is for development/demo purposes.

My question is for running OBI EE on vmware for the production instance.
rmoff
OBIEE supported platforms doc: http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10417.pdf

If it doesn't specify it then by inference you could say it's not supported. Best to raise an SR to clarify with Oracle if you have to be certain.

As others have said, it certainly works on VMWare - but that's not the same as supported :)
Beat me to it ! , page 30 on that doc link above
1 - 6
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 29 2015
Added on Sep 1 2015
7 comments
9,960 views