Journal has not created

Hello

I have a file of installation command:

@rem *************************************************************************
@rem This script is used for the installation of WebLogic Server as a Windows Service.
@rem
@rem to create your own script start for your domain, just put the
name of the @rem to your server SERVER_NAME variable, then call this script from your
@rem directory of the domain.
@rem
@rem This script sets the following variables before installing
@rem WebLogic Server as a Windows Service:
@rem
@rem WL_HOME - the root directory of your WebLogic installation
@rem JAVA_HOME - location of the version of Java used to start WebLogic
@rem server. This variable should point to the root of a directory
installation of JDK @rem and will be set by the installer for you.
@rem, see Oracle Fusion Middleware System Configurations supported
@rem (http://www.oracle.com/technology/software/products/ias/files/fusion_certification.html)
@rem for an updated list of virtual machines supported taken Java.
@rem PATH - adds the JDK and directories WebLogic to the system path.
@rem CLASSPATH - adds the JDK and WebLogic jars to the classpath.
@rem
@rem other variables that takes of the installSvc are:
@rem
@rem WLS_USER - username admin for starting the server
@rem WLS_PW - password in clear text to the server startup
@rem ADMIN_URL - if this variable is set, the server has started will be a
@rem managed server and will turn to the url (i.e.
@rem                http://localhost:7001 ) as the server admin.
@rem PRODUCTION_MODE - true for servers in production mode, false for
@rem development
@rem JAVA_OPTIONS - Java command line options for the server. (These
@rem will be marked at the end of the JAVA_VM and MEM_ARGS)
JAVA_VM - java arg @rem specifying the virtual machine to run.  (i.e. - Server)
@rem-client, etc.)
@rem MEM_ARGS - variable to override the standard memory arguments
@rem to java
@rem
@rem
@rem MAX_CONNECT_RETRIES - number of attempts to make the Windows Service will check
@rem if you start the Weblogic Server. If this variable
@rem is specified with the HOST and PORT, the Windows Service will be
@rem wait for the Weblogic Server is started.
@rem HOST - the IP address of the Weblogic Server
@rem PORT - where the WebLogic Server is listening to Port number requests
@rem
jDriver for Oracle users @rem: this script assumes that native libraries
@rem required for jDriver for Oracle have been installed in the right
@rem location and that your system path variable has been set correctly.
@rem
@rem for more information, see "Managing Server Startup and Shutdown for Oracle WebLogic Server"
@rem (@DOCSWEBROOT/START/overview.htm).
@rem *************************************************************************

off @echo
SETLOCAL

@rem check if SERVER_NAME is defined
: check_server_name
If not set (SERVER_NAME
@echo you need set before SERVER_NAME
@echo installation of WebLogic Server as a Windows Service
output/b 1
)

@rem check if DOMAIN_NAME is set
: check_domain_name
If not set (domain_name
@echo you need set before domain_name
@echo installation of WebLogic Server as a Windows Service
output/b 1
)

@rem check if USERDOMAIN_NAME is set to
: check_userdomain_home
If not set (USERDOMAIN_HOME)
@echo you must set before USERDOMAIN_HOME
@echo installation of WebLogic Server as a Windows Service
output/b 1
)

@rem check if SERVICE_DESCRIPTION has the value
: check_server_name
If not set (SERVICE_DESCRIPTION)
Set SERVICE_DESCRIPTION = "WebLogicServer.
)


Set WL_HOME = C:\Oracle\Middleware\Oracle_Home\wlserver
Call "% WL_HOME%\common\bin\commEnv.cmd".

@rem check that the WebLogic classes are where we expect they are
: checkWLS
If exist checkJava goto '% WL_HOME%\server\lib\weblogic.jar '.
ECHO the WebLogic Server not found in the directory % WL_HOME%\server.
ECHO Please edit your script so that the variable WL_HOME points
echo to the WebLogic installation directory.
end goto

@rem check that java is where we expect it to be
: checkJava
If exist runWebLogic goto '% JAVA_HOME%\bin\java.exe '.
echo the JDK was found in the directory % JAVA_HOME %.
ECHO Please edit your script so that the variable JAVA_HOME
echo points to the location of your JDK.
end goto

: runWebLogic

@rem the service load dll file, so the JAVA_VM * must * be correct
If exist (%JRE_HOME%\bin\client)
Set JAVA_VM =-customer
) ElseIf exist (%JRE_HOME%\bin\server)
Set JAVA_VM =-Server
) ElseIf exist (%JRE_HOME%\bin\jrockit)
Set JAVA_VM =-jrockit
)

: noResetJavaVM
If not "MEM_ARGS %" == "" goto noResetMemArgs
MEM_ARGS =-Xms32m-Xmx200m set

: noResetMemArgs

@echo we

set the classpath = % WEBLOGIC_CLASSPATH %; CLASSPATH %

@echo ***************************************************
@echo * to start WebLogic Server, use the password *.
@echo * assigned the user to the system.  The system *.
@echo * username and password must also be used for *.
@echo * access the WebLogic Server console from a web *.
@echo * browser.                                       *
@echo ***************************************************

REM * define the command-line for the service runs in created FMV

off @echo

If "% ADMIN_URL" == "" goto runAdmin
@echo we
CMDLINE = value "%%%d MEM_ARGS JAVA_VM % JAVA_OPTIONS %-classpath \"%CLASSPATH%\ " »-Dweblogic.name=%server_name%-Dweblogic.Management.username=%WLS_USER% - Dweblogic.management.server=\"%ADMIN_URL%\ '- Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE%-Dweblogic. Stdout=C:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain\stdout.log

-Dweblogic.stderr=C:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain\stderr.log

-Djava.Security.policy=\"%WL_HOME%\server\lib\weblogic.Policy\"weblogic. Server '.
end goto

: runAdmin
@echo we
CMDLINE value = "% JAVA_VM % MEM_ARGS % JAVA_OPTIONS %-classpath \"%CLASSPATH%\ " ' - Dweblogic.Name=%SERVER_NAME%-Dweblogic.management.username=%WLS_USER%-Dweblogic. ProductionModeEnabled = % PRODUCTION_MODE % Dweblogic. Stdout=C:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain\stdoutA.log

-Dweblogic.stderr=C:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain\stderrA.log

-Djava.Security.policy=\"%WL_HOME%\server\lib\weblogic.Policy\"weblogic. Server '.

: complete
REM * implemented extrapath for win32 and win64 platform separately
Set WLSVC_EXE_TO_USE = wlsvcx64
If '% WL_USE_X86DLL' is 'true')
Set EXTRAPATH=%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\32\oci920_8
Set WLSVC_EXE_TO_USE = wlsvc
)

If '% WL_USE_IA64DLL' is 'true')
Set EXTRAPATH=%WL_HOME%\server\native\win\64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\64\oci920_8
Set WLSVC_EXE_TO_USE = wlsvc64
)

If '% WL_USE_AMD64DLL' is 'true')
Set EXTRAPATH=%WL_HOME%\server\native\win\x64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\x64\oci920_8
Set WLSVC_EXE_TO_USE = wlsvcx64
)

REM * install service
'% WL_HOME%\server\bin\%WLSVC_EXE_TO_USE%' - install - ServiceName: 'wlsvc domain_name % _ % SERVER_NAME %' - delay: 120000 - svcdescription: '% SERVICE_DESCRIPTION' - javahome: 'JAVA_HOME %' - execdir: '% USERDOMAIN_HOME' - maxconnectretries: '% MAX_CONNECT_RETRIES' - host: "%" HOST - port: '%port%' - extrapath: "% EXTRAPATH" - password: "% WLS_PW" - cmdline: CMDLINE %

ENDLOCAL

======================================================================================================================================================

Then I run the service with the command of the launcher file, but the journal of stdou.log and stderr.log files are not created...

echo off

SETLOCAL

Set DomainName = base_domain

Set USERDOMAIN_HOME = C:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain

Define SERVER_NAME = SOPSECURITY1

Set PRODUCTION_MODE = true

Set JAVA_OPTIONS=-Dweblogic.Stdout="c:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain\stdout.txt»-Dweblogic.Stderr="c:\Oracle\Middleware\Oracle Home\user_projects\domains\base_domain\stderr.txt.

set ADMIN_URL = https://AdminServer:7002

MEM_ARGS =-Xms40m-Xmx250m set

call "C:\Oracle\Middleware\Oracle_Home\wlserver\server\bin\installSvc.cmd".

ENDLOCAL

Any idea?

Thank you

DOM
======================================================================================================================================================

Path includes the space:-Dweblogic. Stderr = "c:\Oracle\Middleware\Oracle Home\user_projects\domains\base_domain\stderr.txt"

Tags: Fusion Middleware

Similar Questions

  • Why Vista WMP can't play .asf files and why MS has not created a fix for this?

    Why Vista WMP can't play .asf files and why MS has not created a fix for this?

    Hi pdaamckechnie,

    The ASF Format (Advanced Systems) is the preferred Windows Media file format. With Windows Media Player, if the appropriate codecs are installed on your computer, you can play audio content, video content, or both, that is compressed with a wide variety of codecs and that is stored in an .asf file.

    You can check the link below for more information on the types of media files that supports Windows Media Player
    Information on the types of media files that supports Windows Media Player
    http://support.Microsoft.com/kb/316992

    See the link below for more information on codecs.
    Codecs: Frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows-Vista/codecs-frequently-asked-questions

    Please post back and let us know if it helped to solve your problem.

    Kind regards
    KarthiK TP

  • The ADMIN user has not created in my Apex 4.1 installation

    No matter how many times I run apxchpwd.sql, I can't my admin login page to tell me anything except "Invalid credentials." When I checked APEX_040100.wwv_flow_fnd_user, I found that the table was empty. There is no line for ADMIN at all, so there is nothing to apxchpwd.sql update. What can I do to add the user? I use HTTP Server and modplsql, not Apex listener. Thank you.

    Near the top of your Setup log file is show "Procedure with a new installation." or "Do an upgrade installation."?

    If it is an upgrade installation, it does not create the ADMIN user. Maybe delete all versions of the TOP before installing the new version, as a previous version was perhaps not setup correctly.

  • specific App password has not created

    I am trying to create a specific app password.  I go to security on appleid.apple.com, I click on edit, I click on generate the password, I see a password, I copy and paste into the app, I need to and it does not work.  I try to select done first then paste, it doesn't seem to work.    I click on view history, and I do not see the specified password.  I tried 4 times now.  For each test, I received an email saying that a specific app password has been generated.  Can anyone suggest what could go wrong?

    This seems to just have been a temporary problem, as passwords appeared now and work.

  • Shortcuts in the desktop or the Start Menu has not created

    Hello

    We use vWorkspace 7.2. and AppPortal for access applications on 2003 TS in transparent window mode. All published applications are accessible from the thick client or VDI computers. When I assign an application to vWorkspace folder, the icon appears correctly in AppPortal. Problem starts when I attribute the same request to "Remote Desktop files", in this case no entries are created, nor to the desktop or the Start Menu or any other option. When I change AppPortal to work in integrated desktop mode all entries are properly created.

    There are already a ticket about this Quest (CaseID:887952) support. After many hours of phone calls from the Technical Department explained what I need is available only when all of the TS Office are published. I find it hard to believe that I did the same thing easily with other 3rd party broker connection software. What is your experience, do you have "Remote Desktop Folder" work without providing complete desktop TS?

    Best regards

    Adrian Tonina

    Adrian,

    AppPortal is designed to run on your client computer of the end user and is able to show the shortcuts in the user interface or on the desktop of the client operating in desktop integrate mode (DI).  When running in mode of DI, only applications that are designated for the integration of office will have shortcuts created on the client for desktop/menu start.  You can specify in the properties of a managed application, Desktop Integration step.  Note that only applications that are assigned to the Connector vWorkspace records will be created through AppPortal.

    Applications that are assigned to the Standard and customized remote office records are created through our configuration of the Shell (pnshell) module, and their shortcuts are created on the remote (TS or VDI) desktop computers.  If configured properly, you will see them on the entire desktop of the remote session.

    -Adam

  • Integration of BBM to update status when the user has not created BBM

    Hello

    We have integrated the update of the status of BBM in our application.

    When the user opens the application they are requested permission to allow the application to access the BBM.

    Then, there is an alert message which says that BBM implemented is necessary to connect to the app with options to cancel or continue.

    If a user cancels out of the aler, they can always proceed through the app, but when they get to the point where they can hit a link to update their status, that nothing is happening.

    I want to know how to do is that if somebody hits cancel rather than implementation of surveys BBM can we set a flag to hide the update status BBM feature?

    Seems a bit odd to require someone to set up BBM but let them still cancel and run the application.  Aware that this should be handled but don't know where to do

    BBM must be installed before an application can complete the BBM registration process.  If they cancelled out of this process, you will get a value of successful registration.  You must activate the features BBM of your application after a successful registration.

    We still allow the user to run the application, because they may not want to configure BBM, but continue to use the application.

  • Additions of mass has not created

    Hello

    I'm having a problem now as one of our user facing problem while creating massive additions
    Here are the logs:
    Payables: Version : 12.0.0
    
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    
    APMACR module: Mass Additions Create
    +---------------------------------------------------------------------------+
    
    Current system time is 10-APR-2012 10:03:02
    
    +---------------------------------------------------------------------------+
    
    **Starts**10-APR-2012 10:03:05
    **Ends**10-APR-2012 10:03:48
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    
    
    +---------------------------------------------------------------------------+
    Executing request completion options...
    
    Output file size: 
    0
    
    +------------- 1) PRINT   -------------+
    Disabling requested Output Post Processing.  Nothing to process.  The output of the request is zero byte.
    +--------------------------------------+
    
    
    Finished executing request completion options.
    
    +---------------------------------------------------------------------------+
    Concurrent request completed successfully
    Current system time is 10-APR-2012 10:03:49
    the user declares that all the procedures have been followed to create massive additions but it failed with the error above
    does anyone know how to fix it?

    THX

    Salvation;

    Please check below which could be useful for your question:

    Troubleshooting Guide for massive additions creates [ID 133597.1]

    Respect of
    HELIOS

  • Do not compile... Its taking too long... Package has not created...

    Hello

    I ran the code below... But it's not not compiling... Compile time is too long... I used Toad like sqlplus.
    FUNCTION comparison_schtype(
    p_flag          IN VARCHAR2 DEFAULT ' ',
    p_amc_code      IN VARCHAR2 DEFAULT ' ',
    p_schtype       IN VARCHAR2 DEFAULT ' ',
    p_location      IN VARCHAR2 DEFAULT ' ',
    p_month         IN VARCHAR2 DEFAULT ' ',
    p_scheme        IN VARCHAR2 DEFAULT ' ',
    p_distributor   IN VARCHAR2 DEFAULT ' ',
    p_invsegment    IN VARCHAR2 DEFAULT ' ')
    RETURN mfdex_tt_sch_c_schtype PIPELINED AS
    query_result    q_result.query_res;
    dw_query_result    q_result.query_res;
    
    BEGIN
    
     v_max_month := mfdex_utilities_pkg.get_max_month(p_amc_code);
    
     if p_location <> ' ' then
      v_location := chr(39)||p_location||chr(39);
     else
       v_location := p_location ;
     end if;
    
     if p_month <> ' ' then
      v_month := p_month;
     else
       v_month :=v_max_month ;
     END IF;
    
        IF UPPER(p_amc_code) <> 'ALL' THEN
    
            PLP_MFDEX_SELECT(
                  p_flag,
                  chr(39)||p_amc_code||chr(39),
                  v_location,              p_invsegment,              v_max_month,              p_schtype,
                  p_scheme,              p_distributor,              ' ',              ' ',
                  'SCHEME_TYPE',              query_result);
    
          ELSE
    
            PLP_MFDEX_SELECT(
                  p_flag,              ' ',              v_location,              p_invsegment,
                  v_max_month,              p_schtype,              p_scheme,              p_distributor,
                  ' ',              ' ',              'SCHEME_TYPE',              query_result);
          END IF;
          
         -- PLP_MFDEX_SELECT(
                --  p_flag,              ' ',              v_location,              p_invsegment,
                --  v_max_month,              p_schtype,              p_scheme,              p_distributor,
                --  ' ',              ' ',              'SCHEME_TYPE',              dw_query_result);
    
           LOOP
               FETCH query_result
                INTO   schtype,        clgassets,       sales,        red,
                       trxns,           folios,          netswitch,    divreinv,
                       avgage,          avgassets,       siti_amt,     soto_amt,
                       newsip,          totalsip,        sipaverage,   sipfailed,
                       sipceased,      sipaum;
                       
            PLP_MFDEX_SELECT(
                  p_flag,              ' ',              location,              p_invsegment,
                  v_max_month,              p_schtype,              p_scheme,              p_distributor,
                  ' ',              ' ',              'SCHEME_TYPE',              dw_query_result);
            LOOP
               FETCH dw_query_result
                INTO   schtype,        dw_clgassets,       dw_sales,        dw_red,
                       dw_trxns,           dw_folios,          dw_netswitch,    dw_divreinv,
                       dw_avgage,          dw_avgassets,       dw_siti_amt,     dw_soto_amt,
                       dw_newsip,          dw_totalsip,        dw_sipaverage,   dw_sipfailed,
                       dw_sipceased,      dw_sipaum;
    
             END LOOP;
                  EXIT WHEN query_result%NOTFOUND;
                 sum_clgassets          := sum_clgassets + clgassets;
                    sum_sales              := sum_sales + sales;
                    sum_red                := sum_red + red;
                    sum_trxns              := sum_trxns + trxns;
                    sum_folios             := sum_folios + folios;
                    sum_netswitch          := sum_netswitch + netswitch;
                    sum_divreinv           := sum_divreinv + divreinv;
                    sum_avgage             := sum_avgage +  avgage;
                    sum_avgassets          := sum_avgassets + avgassets;
                    sum_siti_amt           := sum_siti_amt + siti_amt;
                    sum_soto_amt           := sum_soto_amt + soto_amt;
                    sum_newsip             := sum_newsip + newsip ;
                    sum_totalsip           := sum_totalsip + totalsip ;
                    sum_sipaverage         := sum_sipaverage + sipaverage;
                    sum_sipsfailed         := sum_sipsfailed + sipfailed;
                    sum_sipsceased         := sum_sipsceased + sipceased;
                    sum_sipaum             := sum_sipaum + sipaum;
    
                    sum_dw_clgassets          := sum_dw_clgassets + dw_clgassets;
                    sum_dw_sales              := sum_dw_sales + dw_sales;
                    sum_dw_red                := sum_dw_red + dw_red;
                    sum_dw_trxns              := sum_dw_trxns + dw_trxns;
                    sum_dw_folios             := sum_dw_folios + dw_folios;
                    sum_dw_netswitch          := sum_dw_netswitch + dw_netswitch;
                    sum_dw_divreinv           := sum_dw_divreinv + dw_divreinv;
                    sum_dw_avgage             := sum_dw_avgage + dw_avgage;
                    sum_dw_avgassets          := sum_dw_avgassets + dw_avgassets;
                    sum_dw_siti_amt           := sum_dw_siti_amt + dw_siti_amt;
                    sum_dw_soto_amt           := sum_dw_soto_amt + dw_soto_amt;
                    sum_dw_newsip             := sum_dw_newsip + dw_newsip ;
                    sum_dw_totalsip           := sum_dw_totalsip + dw_totalsip ;
                    sum_dw_sipaverage         := sum_dw_sipaverage + dw_sipaverage;
                    sum_dw_sipsfailed         := sum_dw_sipsfailed + dw_sipfailed;
                    sum_dw_sipsceased         := sum_dw_sipsceased + dw_sipceased;
                    sum_dw_sipaum             := sum_dw_sipaum + dw_sipaum;
                    
          CASE WHEN dw_clgassets = 0 THEN tot_clgassets := 0; ELSE tot_clgassets:=ROUND(clgassets/dw_clgassets*100); END CASE;
          CASE WHEN dw_sales = 0 THEN tot_sales := 0; ELSE tot_sales:=ROUND(sales/dw_sales*100); END CASE;
          CASE WHEN dw_red = 0 THEN tot_red := 0; ELSE tot_red:=ROUND(red/dw_red*100); END CASE;
          CASE WHEN dw_trxns = 0 THEN tot_trxns := 0; ELSE tot_trxns:=ROUND(trxns/dw_trxns*100); END CASE;
          CASE WHEN dw_folios = 0 THEN tot_folios := 0; ELSE tot_folios:=ROUND(folios/dw_folios*100); END CASE;
          CASE WHEN dw_netswitch = 0 THEN tot_netswitch := 0; ELSE tot_netswitch:=ROUND(netswitch/dw_netswitch*100); END CASE;
          CASE WHEN dw_divreinv = 0 THEN tot_divreinv := 0; ELSE tot_divreinv:=ROUND(divreinv/dw_divreinv*100); END CASE;
          CASE WHEN dw_avgage = 0 THEN tot_avgage := 0; ELSE tot_avgage:=ROUND(avgage/dw_avgage*100); END CASE;
          CASE WHEN dw_avgassets = 0 THEN tot_avgassets := 0; ELSE tot_avgassets:=ROUND(avgassets/dw_avgassets*100); END CASE;
          CASE WHEN dw_siti_amt = 0 THEN tot_siti_amt := 0; ELSE tot_siti_amt:=ROUND(siti_amt/dw_siti_amt*100); END CASE;
          CASE WHEN dw_soto_amt = 0 THEN tot_soto_amt := 0; ELSE tot_soto_amt:=ROUND(soto_amt/dw_soto_amt*100); END CASE;
          CASE WHEN dw_newsip = 0 THEN tot_newsip := 0; ELSE tot_newsip:=ROUND(newsip/dw_newsip*100); END CASE;
          CASE WHEN dw_totalsip = 0 THEN tot_totalsip := 0; ELSE tot_totalsip:=ROUND(totalsip/dw_totalsip*100); END CASE;
          CASE WHEN dw_sipaverage = 0 THEN tot_sipaverage := 0; ELSE tot_sipaverage:=ROUND(sipaverage/dw_sipaverage*100); END CASE;
          CASE WHEN dw_sipfailed = 0 THEN tot_sipfailed := 0; ELSE tot_sipfailed:=ROUND(sipfailed/dw_sipfailed*100); END CASE;
          CASE WHEN dw_sipceased = 0 THEN tot_sipceased := 0; ELSE tot_sipceased:=ROUND(sipceased/dw_sipceased*100); END CASE;
          CASE WHEN dw_sipaum = 0 THEN tot_sipaum := 0; ELSE tot_sipaum:=ROUND(sipaum/dw_sipaum*100); END CASE;
    
              PIPE ROW(mfdex_rt_sch_c_schtype (schtype,
                '<a href=f?p='||NV('APP_ID')||':141:'||V('APP_SESSION')||'::NO:RP,141,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                '<a href=f?p='||NV('APP_ID')||':142:'||V('APP_SESSION')||'::NO:RP,142,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                '<a href=f?p='||NV('APP_ID')||':143:'||V('APP_SESSION')||'::NO:RP,143,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                '<a href=f?p='||NV('APP_ID')||':144:'||V('APP_SESSION')||'::NO:RP,144,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                '<a href=f?p='||NV('APP_ID')||':145:'||V('APP_SESSION')||'::NO:RP,145,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                 tot_clgassets,clgassets,dw_clgassets,
                 tot_sales,sales,dw_sales,
                 tot_red,red,dw_red,
                 tot_trxns,trxns,dw_trxns,
                 tot_folios,folios,dw_folios,
                 tot_netswitch,netswitch,dw_netswitch,
                 tot_divreinv,divreinv,dw_divreinv,
                 tot_avgage,avgage,dw_avgage,
                 tot_avgassets,avgassets,dw_avgassets,
                 tot_siti_amt,siti_amt,dw_siti_amt,
                 tot_soto_amt,soto_amt,dw_soto_amt,
                 tot_newsip,newsip,dw_newsip,
                 tot_totalsip,totalsip,dw_totalsip,
                 tot_sipaverage,sipaverage,dw_sipaverage,
                 tot_sipfailed,sipfailed,dw_sipfailed,
                 tot_sipceased,sipceased,dw_sipceased,
                 tot_sipaum,sipaum,dw_sipaum));
    
               END LOOP;
       
                  l_string :=
                'Grand Total;ClgAssetsT='
             || TO_CHAR ( (sum_clgassets), '999G999G999G999G990')
             || ';ClgAssetsA='
             || TO_CHAR ( (sum_dw_clgassets), '999G999G999G999G990')
             || ';
                                 SalesT='
             || TO_CHAR ( (sum_sales), '999G999G999G999G990')
             || ';SalesA='
             || TO_CHAR ( (sum_dw_sales), '999G999G999G999G990')
             || ';
                                 RedT='
             || TO_CHAR ( (sum_red), '999G999G999G999G990')
             || ';RedA='
             || TO_CHAR ( (sum_dw_red), '999G999G999G999G990')
             || ';
                                 TrxnsT='
             || TO_CHAR ( (sum_trxns), '999G999G999G999G990')
             || ';TrxnsA='
             || TO_CHAR ( (sum_dw_trxns), '999G999G999G999G990')
             || ';
                                 FoliosT='
             || TO_CHAR (ROUND (sum_folios), '999G999G999G999G990')
             || ';FoliosA='
             || TO_CHAR (ROUND (sum_dw_folios), '999G999G999G999G990')
             || ';
                                 NetSwitchT='
             || TO_CHAR (ROUND (sum_netswitch), '999G999G999G999G990')
             || ';NetSwitchA='
             || TO_CHAR (ROUND (sum_dw_netswitch), '999G999G999G999G990')
             || ';
                                 DivReinvT='
             || TO_CHAR (ROUND (sum_divreinv), '999G999G999G999G990')
             || ';DivReinvA='
             || TO_CHAR (ROUND (sum_dw_divreinv), '999G999G999G999G990')
             || ';
                                 AvgAgeT=-;AvgAgeA=-;
                                 AvgAssetsT='
             || TO_CHAR (ROUND (sum_avgassets), '999G999G999G999G990')
             || ';AvgAssetsA='
             || TO_CHAR (ROUND (sum_dw_avgassets), '999G999G999G999G990')
             || ';
                                 SITI AmtT='
             || TO_CHAR (ROUND (sum_siti_amt), '999G999G999G999G990')
             || ';SITI AmtA='
             || TO_CHAR (ROUND (sum_dw_siti_amt), '999G999G999G999G990')
             || ';
                                 SOTO AmtT='
             || TO_CHAR (ROUND (sum_soto_amt), '999G999G999G999G990')
             || ';SOTO AmtA='
             || TO_CHAR (ROUND (sum_dw_soto_amt), '999G999G999G999G990')
             || ';
                                 NewSIPT='
             || TO_CHAR (ROUND (sum_newsip), '999G999G999G999G990')
             || ';NewSIPA='
             || TO_CHAR (ROUND (sum_dw_newsip), '999G999G999G999G990')
             || ';
                                 TotalSIPT='
             || TO_CHAR (ROUND (sum_totalsip), '999G999G999G999G990')
             || ';TotalSIPA='
             || TO_CHAR (ROUND (sum_dw_totalsip), '999G999G999G999G990')
             || ';
                                 SIPAverageT='
             || TO_CHAR (ROUND (sum_sipaverage), '999G999G999G999G990')
             || ';SIPAverageA='
             || TO_CHAR (ROUND (sum_dw_sipaverage), '999G999G999G999G990')
             || ';
                                 SIPFailedT='
             || TO_CHAR (ROUND (sum_sipsfailed), '999G999G999G999G990')
             || ';SIPFailedA='
             || TO_CHAR (ROUND (sum_dw_sipsfailed), '999G999G999G999G990')
             || ';
                                 SIPCeasedT='
             || TO_CHAR (ROUND (sum_sipsceased), '999G999G999G999G990')
             || ';SIPCeasedA='
             || TO_CHAR (ROUND (sum_dw_sipsceased), '999G999G999G999G990')
             || ';
                                 SIPAuMT='
             || TO_CHAR (ROUND (sum_sipaum), '999G999G999G999G990')
             || ';SIPAuMA='
             || TO_CHAR (ROUND (sum_dw_sipaum), '999G999G999G999G990')
             || ';';
    
          IF query_result%ISOPEN THEN
    CLOSE query_result;
    END IF;
    
    IF dw_query_result%ISOPEN THEN
    CLOSE dw_query_result;
    END IF;
    return;
    exception
    when others then
    htp.p('Error: '||sqlerrm);
    
    END comparison_schtype;
    Please, someone let me know how to solve this problem...

    Thank you

    Jaya...

    Published by: JayaShan on April 6, 2010 10:34

    Hello

    Visit ask Tom-Ora-04021 and look

    SELECT sid||','||serial# username,
     2         status,
     3         MODULE,
     4         osuser,
     5         client_info,
     6         TO_CHAR(logon_time,'DD-MON-YY HH:MI:SSSS') loged_on
     7  FROM v$session
    

    * 009 *.

  • Qosmio G35-AV600: using Recovery CD I get partition not created error

    I recently ordered a recovery for my Qosmio G35-AV600 disc, because I started in safe mode to clear an alleged threat. Silly me! I forgot the password because I constantly use the fingerprint reader. Well, at the time where, that drives recovery came, I had remembered a password and access I.

    The thing is I always want to format the laptop, but I get partition not created not errors. Is it because the laptop hard drive has SATA or RAID capabilities, or because of the so-called Qosmio player. * If I could format the hard drive, I would not be able to use the laptop Qosmio mode? *

    I searched here and even contacted the customer service and have not found a definitive answer. Customer support's solution was to send to an authorized repair shop. My experience with computer repair shops, is that if the problem is not hardware related, they simply reformat the disks. I could do it myself if I could get help with this "partition has not created" or the partition not deleted"errors.

    Hello

    I agree with you and I also think that this has nothing to do with the hardware failure.
    But who knows, if you started the operating system in safe mode then we shouldn't exclude the hardware problem (IE. HARD DRIVE).

    However, the restore CD contains already all the drivers and you n t need to install SATA or RAID drivers.

    In my opinion, there are bad RAID settings in the BIOS!
    Please check the settings in the BIOS on the third page.

    If you know n t that mean simple settings, you open the user manual and check RAID chapter in the user manual.

    In addition, this could be useful:
    http://support.toshiba-tro.de/KB0/TSB6901K60006R01.htm

  • My iPhoto 9.5.1 is not create events

    My iPhoto has not created events since the beginning of 2015. Is there something I can do?

    It is important the photos in the library? You get an error message?  What is it?

    As a test of launch iPhoto with the hold Option key and create a new test library.  Import photos and a test to see if the same problem persists. T it?

  • Receive error message "not created Direct 3D engine" when starting of Driving simulator 2012

    Original title: Direct 3D engine has not created

    When you start Driving simulator 2012 I get this message. Help, please!

    Thank you.

    Hello

    Update the video card drivers and check

    How to manage devices in Windows XP

    Hope this information helps.

  • did not create host login password: computer application password. Impossible to get on computer

    new computer windows 7 Home premium, used only a few times in a couple if weeks. has not created a password for the connection of the home screen.

    homescreen requires now despite not having a password. Failed to get on the computer.

    have tried different passwords that I use elsewhere as e-mail etc. ; tried to use my name to logon as password; tried to connect without any password and just pressing eter (as I have done before) but does not. Please help, very anxious

    Hey Ezzy-1801.

    The default password is "admin".
    Try so I see that you said that you have already tried a few, but it's worth a shot.
    Otherwise, because we will not bypass password, you have the installation disc with your PC?
    You said you only used a few times, if you insert the installation disc and repair windows file, the same as re - install, you'll be at square one but no lock.
    I hope it was useful, in addition, you can create a password reset disk, the instructions are below, if you do not run this question once again :)
    I hope that was helpful. Thanks for posting of Microsoft Answers!
  • Error message - "Could not create the security default policy"

    I just reinstalled Acrobat X on a new computer (upgrade to Acrobat 8).  Now, when I open a file in Acrobat X, I get a message error that says "could not create the default security policy."   How can I fix? Pourrait

    Hi dawlaw,

    There is a bug in Adobe software. Acrobat X pro and standard both install properly if any other Adobe product was already installed, but both disrupts the installation (do not create the AppData\Security subdirectories) if another product from Adobe that has not created AppData\Security directories has been installed first. Adobe has only been tested installation on machines that never had other Adobe products installed. They do not consider that other Adobe products can already installed.

    (Alternative 1 (safer) - (a) uninstall all Adobe control panel products, b) then delete (or rename) the directories \AppData\Local\Adobe and \AppData\LocalLow\Adobe \AppData\Roaming\Adobe - Adobe never cleans these directories after uninstall. (c) make an own Acrobat x pro or standard installation before you reinstall any other Adobe product.

    Solution 2 - copy \AppData\Local\Adobe\Acrobat\10.0\Security and \AppData\LocalLow\Adobe\Acrobat\10.0\Security from another machine that works.

    Kind regards

    Nicos

  • Creating a new Bootstrap document does not create required dependent files.

    I work on a Mac under OS X Yosemite (10.10.4) and Dreamweaver CC 2015. I followed all the items available on how to implement a new startup as well as verified document for issues known in Dreamweaver and looked through the Dreamweaver forum.

    I need some advice regarding the creation of a new Bootstrap document in Dreamweaver CC 2015. I followed using Dreamweaver's article "Working with the Bootstrap Files" (https://helpx.adobe.com/dreamweaver/using/bootstrap.html). I followed the instructions precisely to create a new Bootstrap document without any pre-built model extra. I used the "create a new" option in the Startup dialog box tab new document, does not make use an available pre-built, made a minor change to the width in pixels of the screen of medium size under the Customize menu and click on the create"" button. Dreamweaver then prompted me to save the associated CSS file that I saved as "styles.css" in the "css" folder file root of my newly defined site. Dreamweaver has not created a new CSS file called 'styles.css' in the location I've just specified, has not added any dependent Bootstrap files in the folder root of the site except "bootstrap.css" (added in the "css" folder) and left me confused as to how to get started with this feature. Please let know us if there are additional configuration steps or things to watch during the creation of a new "bootstrap" page/site. It's frustrating because I'm eager to try this new potentially important feature. I thank you in advance for any help, you can give me.

    Hi Nancy,.

    Thanks for your comments. Everything you said is true, but it does not directly concern the question I had.

    It was a conflict more profound by which I had a wrong folder in my hard drive that had the same name as the hard drive itself. This prevents any local dependent files open in Dreamweaver: https://forums.adobe.com/message/5633342#5633342#5633342 I assume that the file was somehow created when I updated my OS before installing the latest version of Dreamweaver.

    In addition, this can cause problems when you set up a new boot environment and have prevented the necessary being created dependent files as I said originally. The files are added to your local disk with a status of 'read only' applied to the primary Bootstrap CSS file to prevent replacement.

    Thank you for your help and have a great day!

  • Windows Journal is not open previously created templates or create new ones with pilot writer Ledger

    I used the driver Journal editor to create templates of forms I fill out frequently or that I frequently have to annotate Office documents.

    Recently the newspaper stopped opening these templates and I'm also able to create new models. I can still write normal notes on the default 'paper' line. When you try to open previous models, the newspaper stops working and gives me a message to indicate that the program has stopped working and Windows will close the application, and let me know if a solution is found.

    I uninstalled the driver of editor of Journal and the touch interface and Windows Journal and re-installed everything new + fix the driver of the writer. Well, none of this has solved the problem.

    Other advice would be highly appreciated, since I have now come back to fill in forms by hand again once and then their scan to computer.

    Kind regards

    Gerhard.

    Gerhard,

    What exactly happens when you try to open previously created templates?

    You can create a new one and use it?

    chk this link.

    http://www.7tutorials.com/using-Windows-Journal-beyond-basics

Maybe you are looking for

  • a mid-2012 MAC Pro requires upgrade...

    I inherited a middle 2012 3.2 GHz Quad Core Intel Xeon with 12 GB of RAM; an ATI Radeon HD 5770 1024 MB... I need to upgrade, but I'm not a computer MAC guy, but I think I can max 32 GB of RAM and don't know if I can updated my graphics card... Can a

  • Pavilion DV6 monitor via HDMI, Windows 7

    My Pavilion DV6 no longer shows the sign to display on the external monitor at the beginning upward. I found that if I open Notepad to display the sign on screen and then close it without signature on it then transfers the sign on screen to screen an

  • p6627c (ABA): install graphics card

    Can I upgrade my graphical desktop HP pavilion AMD Radeon R7240 graphics card? I followed the instructions in the manual, but it is not seen to register in the Device Manager when it is installed. Can anyone help?

  • OfficeJet Pro L7780 lost the ability to duplex print

    Just applied the 'Solution' for a digitization apparently resulting from 8.1 Windows upgrade problem.  So now I can scan once again (Yes!). But now I can not apply the ability to automatic printing on both sides.  When I try to configure the printing

  • Is there a fix for my new Windows 7 Enterprise 64-bit does not recognize my Wireless Intellimouse Explorer as being a Microsoft product?

    Just upgraded my system from Windows XP to Windows 7 Enterprise 64-bit.  Now, my system does not recognize my Wireless Intellimouse Explorer as being a Microsoft product.  Looks like the system has loaded a driver of default mouse with limited functi