Cloning instance = /apex wants login

Hi,
I have cloned the default XE instance on the same machine using the following instructions:
http://www.pgts.com.au/pgtsj/pgtsj0211b.html
Right now I have a working second instance called XETEST.
I can access it via the listener, via sqlnet on port 1521 and http on port 8080. Webdav access works, too.
But when I use http://127.0.0.1:8080/apex, it always prompts me for username/password for the realm XDB.
Creating a new dad to access a specific procedure in the schema HR works fine.
What could cause the login prompt on /apex?
Even creating a new DAD called apex2 didn't work (i have taken the same parameters as the initial APEX dad):
BEGIN
  DBMS_EPG.create_dad (
    dad_name => 'APEX2',
    path     => '/apex2/*');
END;
BEGIN
  DBMS_EPG.set_dad_attribute (
    dad_name   => 'APEX2',
    attr_name  => 'default-page',
    attr_value => 'apex');
  DBMS_EPG.set_dad_attribute (
    dad_name   => 'APEX2',
    attr_name  => 'database-username',
    attr_value => 'ANONYMOUS');
  DBMS_EPG.set_dad_attribute (
    dad_name   => 'APEX2',
    attr_name  => 'document-path',
    attr_value => 'docs');
  DBMS_EPG.set_dad_attribute (
    dad_name   => 'APEX2',
    attr_name  => 'document-procedure',
    attr_value => 'wwv_flow_file_mgr.process_download');
  DBMS_EPG.set_dad_attribute (
    dad_name   => 'APEX2',
    attr_name  => 'document-table-name',
    attr_value => 'wwv_flow_file_objects$');
  DBMS_EPG.set_dad_attribute (
    dad_name   => 'APEX2',
    attr_name  => 'nls-language',
    attr_value => 'american_america.al32utf8');
  --DBMS_EPG.set_dad_attribute (
  --  dad_name   => 'APEX2',
  --  attr_name  => 'request-validation-function',
  --  attr_value => 'wwv_flow_epg_include_modules.authorize');
END;
/Here is the output of the listener:
C:\WINDOWS\system32>lsnrctl status
LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 19-APR-2007 12:43
:19
Copyright (c) 1991, 2005, Oracle.  All rights reserved.
Anmeldung bei (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
STATUS des LISTENER
Alias                     LISTENER
Version                   TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
ction
Startdatum                19-APR-2007 12:42:51
Uptime                    0 Tage 0 Std. 0 Min. 27 Sek.
Trace-Ebene               off
Sicherheit                ON: Local OS Authentication
SNMP                      OFF
Standard-Service           XETEXT
Parameterdatei des Listener C:\oraclexe\app\oracle\product\10.2.0\server\network
\admin\listener.ora
Log-Datei des Listener    C:\oraclexe\app\oracle\product\10.2.0\server\network\l
og\listener.log
Zusammenfassung Listening-Endpunkte...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DAUST3.opal-consulting.de)(PORT=1521
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DAUST3.opal-consulting.de)(PORT=8080
))(Presentation=HTTP)(Session=RAW))
Services ▄bersicht...
Dienst "CLRExtProc" hat 1 Instance(s).
  Instance "CLRExtProc", Status UNKNOWN, hat 1 Handler f³r diesen Dienst...
Dienst "PLSExtProc" hat 1 Instance(s).
  Instance "PLSExtProc", Status UNKNOWN, hat 1 Handler f³r diesen Dienst...
Dienst "XETESTXDB" hat 1 Instance(s).
  Instance "xetest", Status READY, hat 1 Handler f³r diesen Dienst...
Dienst "XETEST_XPT" hat 1 Instance(s).
  Instance "xetest", Status READY, hat 1 Handler f³r diesen Dienst...
Dienst "xetest" hat 1 Instance(s).
  Instance "xetest", Status READY, hat 1 Handler f³r diesen Dienst...
Der Befehl wurde erfolgreich ausgef³hrt.Here is the listener.ora (which I didn't modify much, just changed the DEFAULT_SERVICE_LISTENER to the test instance):
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = PLSExtProc)
      (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
      (PROGRAM = extproc)
    (SID_DESC =
      (SID_NAME = CLRExtProc)
      (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
      (PROGRAM = extproc)
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
      (ADDRESS = (PROTOCOL = TCP)(HOST = DAUST3)(PORT = 1521))
DEFAULT_SERVICE_LISTENER = (XETEXT)Regards,
~Dietmar.

Hi Robert,
excellent that you have "found" my thread. This is good :).
No. FLOWS_020100 is the schema where all APEX
database objects are stored and should be used to log
on to the database for regular APEX usage. The DAD
parameter "database-username" should be set to
ANONYMOUS.I know, I was just trying to narrow down the problem.
After setting a new password on ANONYMOUS and switching the database-username back to ANONYMOUS it worked, too. But I still had to enter the credentials for the ANONYMOUS user in the popup-window again (once per browser session).
It seems like the procedure "apex" is not called directly but the XML DB wants to authenticate the user first. Setting dbms_epg.set_global_attribute('log-level', 7); didn't give me any information.
It seems like something is not right with ANONYMOUS.
Can you run the following SQL statement and see what
status the database user is in?I checked that and unlocked the account previously, too.
Here is the status:
SQL> select username, account_status from dba_users
  2  where username = 'ANONYMOUS';
USERNAME                       ACCOUNT_STATUS
ANONYMOUS                      OPENEven tried to recreate the DAD using the instructions:
alter session set current_schema = XDB;
begin
    dbms_epg.drop_dad('APEX');
    dbms_epg.create_dad('APEX','/apex/*');
    dbms_epg.set_dad_attribute('APEX','database-username','ANONYMOUS');
    dbms_epg.set_dad_attribute('APEX','default-page','apex');
    dbms_epg.set_dad_attribute('APEX','document-table-name','wwv_flow_file_objects$');
    dbms_epg.set_dad_attribute('APEX','document-path','docs');
    dbms_epg.set_dad_attribute('APEX','nls-language','american_america.al32utf8');
    dbms_epg.set_dad_attribute('APEX','document-procedure','wwv_flow_file_mgr.process_download');
    dbms_epg.set_dad_attribute('APEX','request-validation-function','wwv_flow_epg_include_modules.authorize');
end;
commit;.. both for the DAD APEX and also a second DAD APEX2. But it didn't change anything.
Thanks for your support,
~Dietmar.

Similar Messages

  • 11.5.10.2 cloned instance; responsibilities are missing

    11.5.10.2 instance.
    ATG Rollup 3.
    OS: IBM AIX , 5.2.0.0
    Java: 1.3.1
    User logs in. All resps (responsibilities) are displayed. Clicks on 'System Administrator' responsibility. Chooses 'Security/Define' , User define form pops up.
    Queries his own id. Adds a new resp OR end_dates a resp. Clicks on "Navigotor" button on top of the form. He finds his actions (adding or removing resp) were taken care. He closes all form screens. Comes back to homepage (jsp version, main page). Clicks on refresh button of Internet explorer. Changes are not affected. Still he can see old resps. He logs out. Logs in. No use. Still he finds those changes did not take palce. ADDED TO THIS, FOR SOME USERS, 'SYSTEM ADMINISTRATOR' resp is gone.
    BUT, if you login as "/f60cgi/dev60cgibin" , everything is fine. You can see expected changes taken place.
    In short, users resps are missing when one adds or removes resp.
    Any thoughts? Replies are highly appreciated.
    Thanks,
    GKM

    See responses on other forum: 11.5.10.2; Cloned instance. Missing responsibilities

  • Abap wp table stop reason rpc when  u0131 want login as turkish

    hi gurus anyone help me ;
    abap wp table is stopped reason rpc when ı want login turkish language
    please help me ı cant solve this problem..
    trc file: "dev_w4", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Tue Aug 26 05:24:30 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'G:\usr\sap\SPT\DVEBMGS00\exe\dbmssslib.dll' ...
    B  Library 'G:\usr\sap\SPT\DVEBMGS00\exe\dbmssslib.dll' loaded
    B  Version of 'G:\usr\sap\SPT\DVEBMGS00\exe\dbmssslib.dll' is "700.08", patchlevel (0.109)
    B  New connection 0 created
    M sysno      00
    M sid        SPT
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    111
    M intno      20050900
    M make:      multithreaded, ASCII, optimized
    M pid        3468
    M
    M  kernel runs with dp version 229(ext=109) (@(#) DPLIB-INT-VERSION-229)
    M  length of sys_adm_ext is 364 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 4 3468) [dpxxdisp.c   1301]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          15440     (908)
    M  DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1296)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 064B0040, size: 4236528)
    M  DpShMCreate: allocated sys_adm at 064B0040
    M  DpShMCreate: allocated wp_adm at 064B1B30
    M  DpShMCreate: allocated tm_adm_list at 064B5780
    M  DpShMCreate: allocated tm_adm at 064B57B0
    M  DpShMCreate: allocated wp_ca_adm at 06825A40
    M  DpShMCreate: allocated appc_ca_adm at 0682A090
    M  DpShMCreate: allocated comm_adm at 0682B800
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 068AC6B0
    M  DpShMCreate: allocated gw_adm at 068AC6F0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 068AC720
    M  DpShMCreate: allocated wall_adm at 068AC728
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 4 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Tue Aug 26 05:24:31 2008
    M  ThInit: running on host prodeaserver

    M Tue Aug 26 05:24:32 2008
    M  calling db_connect ...
    C  Thread ID:3480
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'G:\usr\sap\SPT\DVEBMGS00\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      110
    C    patchcomment MSSQL: Connect error handling (1053754)
    C  np:(local) connection used on PRODEASERVER
    C  CopyLocalParameters: dbuser is 'spt'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Provider Release:9.00.1399.06
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Cache sizes: header 52 bytes, 20000 names (26880000 bytes), 500 dynamic statements (2728000 bytes), total 29608052 bytes
    C  Using shared procedure name cache PRODEASERVER_SPTSPT_SPT_MEM initialized by another process.
    C  Connected to db server : [PRODEASERVER] server_used : [np:(local)], dbname: SPT, dbuser: spt
    C  pn_id:PRODEASERVER_SPTSPT_SPT
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20080826 052432 PRODEASERVER   

    C Tue Aug 26 05:24:33 2008
    C  The IRow interface is supported by this OLEDB provider
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Tue Aug 26 05:24:43 2008
    I  MtxInit: 4 0 0
    M  SHM_PRES_BUF               (addr: 0B740040, size: 24880128)
    M  SHM_ROLL_AREA          (addr: 788A0040, size: 61440000)
    M  SHM_PAGING_AREA          (addr: 0CF00040, size: 32768000)
    M  SHM_ROLL_ADM               (addr: 08900040, size: 615040)
    M  SHM_PAGING_ADM          (addr: 089A0040, size: 525344)
    M  ThCreateNoBuffer          allocated 324144 bytes for 1000 entries at 08A30040
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 7424 bytes (50 server) at 08A80040
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 4 initializing ....
    X  Using implementation view
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 4, WP_CNT = 17, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 613300C8, size: 101680128, end: 674284C8)
    B  dbtbxbuf: Buffer TABLP (addr: 681300C8, size: 51200000, end: 6B2040C8)
    B  dbexpbuf: Buffer EIBUF (addr: 0F9600D0, size: 4194304, end: 0FD600D0)
    B  dbexpbuf: Buffer ESM   (addr: 178200D0, size: 4194304, end: 17C200D0)
    B  dbexpbuf: Buffer CUA   (addr: 5DA800D0, size: 13312000, end: 5E7320D0)
    B  dbexpbuf: Buffer OTR   (addr: 17C300D0, size: 4194304, end: 180300D0)

    M Tue Aug 26 05:24:44 2008
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.

    S Tue Aug 26 05:24:45 2008
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 0880A8A0
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  creating spool memory service RSPO-RCLOCKS at 18040098
    S  doing lock recovery
    S  setting server cache root
    S  using server cache size 100 (prof=100)
    S  creating spool memory service RSPO-SERVERCACHE at 18040488
    S    using messages for server info
    S  size of spec char cache entry: 165020 bytes (timeout 100 sec)
    S  size of open spool request entry: 1216 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  System page size: 4kb, total admin_size: 20176kb, dir_size: 10028kb.
    A  PXA allocated (address 182F0040, size 600000K)
    A  System name
    A  MSSQL............................SPT........PRODEASERVER.......................................
    A  is used for RFC security.
    A  Sharedbuffer token: 5341...33 (len: 111)====== 4b9d4865cf825700d91be730...
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--


    A Tue Aug 26 05:24:46 2008
    A  ABAP ShmAdm initialized (addr=57A1A000 leng=20955136 end=58E16000)
    A  >> Shm MMADM area (addr=57D821E0 leng=134720 end=57DA3020)
    A  >> Shm MMDAT area (addr=57DA4000 leng=17244160 end=58E16000)
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 1
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 17730 bytes at 08AE0040
    N  SsfSapSecin: putenv(SECUDIR=G:\usr\sap\SPT\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is G:\usr\sap\SPT\DVEBMGS00\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .

    N Tue Aug 26 05:24:47 2008
    N  ===...sucessfully completed.
    N  =================================================

    N Tue Aug 26 05:24:50 2008
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [MSSQL:700.08]):
    B     max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B     min_blocking_factor =   5,  min_in_blocking_factor      =  10,
    B     prefer_union_all    =   1,  prefer_join                 =   1,
    B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B     convert AVG         =   1,  alias table FUPD            =   0,
    B     escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x00,  character encoding          =SBCS / []:X,
    B     use_hints           = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 1
    W    ITS Plugin: Release: 700, [7000.0.111.20050900]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [14]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    C Tue Aug 26 05:25:58 2008
    C  The IRow interface is supported by this OLEDB provider
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 04C90040
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 04C90490
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 04C904C8
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 04C904D4

    B Tue Aug 26 05:25:59 2008
    B  dbmyclu : info : my major identification is 3232235830, minor one 400.
    B  dbmyclu : info : Time Reference is 1.12.2001 01:00:00h GMT.
    B  dbmyclu : info : my initial uuid is DD736A228835A6F18D0E0016E6DE8954.
    B  dbmyclu : info : current optimistic cluster level: 3
    B  dbmyclu : info : pessimistic reads set to 2.

    Hi apache1,
    I'm afraid that this is not enough information for people to assist in solving the problem.  When and where are you receiving this message?  If you provide more details then it will be easier for people to assist you.
    Best Regards,
    Matt

  • Instead of creating multiple Instances I want to create only one Instance.

    Hi Everyone
    Good morning, How are you.
    I have a requirement to transfer files from one location to another location, I am able to do this successfully using FTP Adapters.
    I have some Issues please help any one.
    1) When I deployed my process it is creating one instance for one file transfer, Suppose If I have 50 files in my Get
    directory, After deploy the process 50 instances are creating and 50 Email generating saying files are not tranfered successfully.
    Instead of creating 50 Instances I want to create only one Instance.
    2) When files are not transferd it will fire error mail saying that not success (I want to display all file names(not tranfered files) in my mail , i.e whatever files are not tranfered, need to diplay in mail).
    3) And I am not able to transfer 0 size files, But in BPEL Console Instance is creating for 0 size file also and I am getting Email for success... and In put directory 0 size file is not showing. (Instance is creating and Success Email coming but file is not exists in Put directory)
    Please help me.
    Regards
    Venkat
    Edited by: user10263255 on Oct 1, 2008 8:10 AM
    Edited by: user10263255 on Oct 1, 2008 9:15 AM

    Hi Dharmendra,
    Thanks for your reply.
    I am not able to see any thing about singleton process in mentioned URL.
    Can you please provide me the another URL or please paste here about singleton process .
    Thanks in Advance.
    Regards
    Venkat

  • Cloned instance or not

    Hi,
    How can i now my instance is cloned instance or not.
    Rgs,
    Ram
    Edited by: 891940 on Mar 18, 2013 2:18 AM

    Hi,
    Unfortunately all the source files can be deleted after clone.
    If files were not deleted, then you can go to $ORACLE_HOME/appsutil/clone/data/stage and check the source system name in the file addbhomsrc.xml.
    If all the relevant files are deleted, i do not think oracle maintains list of all previous clone. But you could look for LOGFILE_NODE_NAME,OUTFILE_NODE_NAME columns in FND_CONCURRENT_REQUESTS.
    Thanks

  • I want to have chords played so I can experiment with soloing my guitar. Is there a place to choose chords to be played back in GarageBand? For instance I want a Cmajor 7th chord looped? etc.

    I want to have chords played so I can experiment with soloing my guitar. Is there a place to choose chords to be played back in GarageBand? For instance I want a Cmajor 7th chord looped? etc.

    No extra gear required.
    Open up Logic
    Select 'software instrument' from the New Tracks box (which opens automatically with a new project)
    Select an instrument from the Library (to the right of the Global Tracks field), e.g. piano
    Click on the Tools icon, a drop-down list appears
    Select the Pencil tool
    Click in the Global Tracks area, next to your piano instrument track. A green box of a few bars will open
    Doubleclick on that and then, using the Pencil Tool again, draw your notes for each chord.
    Drag and 'draw' a green bar at the top of Global Tracks, and that's your loop.
    Play it and jam along!

  • Hi my ipad will not connect to the internet, cannot connect to the itunes store? When it connects it shows a symbol that its connected but want login?

    Hi I need help resetting my iPad to connect to the home network, so it will login to itunes...it says its connect, but still want login, don't know if my settings are correct.

    Howdy thuronbey,
    Thank you for using Apple Support Communities!
    Sounds like the internet connection or wifi on the phone is not working correctly. I found this article for you to help troubleshoot the issue. These 2 sections in particular:
    Be sure you're in range of your Wi-Fi router (access point).
    Tap Settings > Wi-Fi and turn Wi-Fi off and on. If your W-Fi setting is dimmed, follow these steps.
    Confirm that your Wi-Fi router and cable or DSL modem are connected to power, turned on, and connected to the Internet. If not, refer to your network administrator or Internet service provider (ISP) for assistance.
    Restart your iOS device.
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected.
    Tap and Forget this Network.
    Try to connect to your desired Wi-Fi network.
    Note: You may need to enter your Wi-Fi password again if your network requires one.
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Update your device to the latest version of software.
    Update your Wi-Fi router to the latest firmware2. For AirPort Base Stations, install updates using the AirPort Utility.
    And this section from down the bottom of the article:
    Unable to access the Internet while connected to Wi-Fi
    If you're using a public or commercial network, you may need to log in or subscribe.
    Check to see if you have a self-assigned IP address:
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected and tap .
    If your IP address is 169.254.xxx.xxx, you may not be able to access the Internet.
    If you do not have a self-assigned IP address, see if other Wi-Fi devices on your network have Internet access.
    If they do not, consult with your network administrator or ISP for further assistance.
    If they do, reset network settings on your device by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including:
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    Both sections from:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    All the best,
    Sterling

  • 11.5.10.2 cloned  instance. Missing responsibilities.

    11.5.10.2 instance.
    ATG Rollup 3.
    OS: IBM AIX , 5.2.0.0
    Java: 1.3.1
    User logs in. All resps (responsibilities) are displayed. Clicks on 'System Administrator' responsibility. Chooses 'Security/Define' , User define form pops up.
    Queries his own id. Adds a new resp OR end_dates a resp. Clicks on "Navigotor" button on top of the form. He finds his actions (adding or removing resp) were taken care. He closes all form screens. Comes back to homepage (jsp version, main page). Clicks on refresh button of Internet explorer. Changes are not affected. Still he can see old resps. He logs out. Logs in. No use. Still he finds those changes did not take palce. ADDED TO THIS, FOR SOME USERS, 'SYSTEM ADMINISTRATOR' resp is gone.
    BUT, if you login as "/f60cgi/dev60cgibin" , everything is fine. You can see expected changes taken place.
    In short, users resps are missing when one adds or removes resp.
    Any thoughts? Replies are highly appreciated.
    Thanks,
    GKM

    Any thoughts?Just kill the user

  • I have no longer got the contacts symbol.  when for instance I want to send a mail....thanks for your help been

    Hello,
    I had to re-initialized my iTouch (ios5.0.1) and since then I have no longer got the contacts symbol. However my contacts are still there when I want to send a email for instance, but I can't add any like before when this app was in.
    Thanks for your help
    Bruno

    Sorry, but I don't know of any other way.  Perhaps you can leave feedback to Apple on this.
    http://www.apple.com/feedback/ipodtouch.html
    B-rock

  • OBIEE 11.1.1.6 SampleApp207: APEX Admin login issue

    Hello,
    I have successfully started the virtual image and all it's associated services.
    As mentioned in the Login Credentials sec. 3.2 of the deployment guide, the APEX credentials of admin/Welcome1# does not work.
    I tried using the apxchpwd.sql to change the admin password but although the script says it completed successfully, I still cannot login with the new password.
    Any idea how to login to APEX on this virtual image?
    Thanks,
    Manish

    edit the apxchpwd.sql
    its probably the wrong apex version, mine was..
    change it to APEX_040000 (you can connect to the database to verify the schema name, if it still doesnt work)
    then run it and it will reset the password..

  • ORA 28817 PLSQL function returned an error . when Access instance apex 4 2

    Hello,
    I have just upgraded from apex 4.1 to apex 4.2. Everything is fine except for this error that I get when I try to access Instance Setting on the Admin App (localhost/apex/apex_admin)
    ORA-28817: PL/SQL function returned an errorWhat could be the problem ?? How can we fix it ..
    I am working on Win server 2012 machine .. apex 4.2 with apex listener 2 deployed on Glassfish 3.1.2.
    Best Regards,
    Fateh

    Hello Fateh,
    we are already aware of that problem, although it is not yet present on our Known Issues webpage. The reason for this error is that the new installation overwrites an instance-wide encryption key. Values in the instance preferences that were encrypted with the old value (the SMTP password and the wallet password) are invalid after the upgrade and decryption causes this error. As a work around, you can use the apex_instance_admin package to overwrite the invalid passwords.
    The following code shows how decryption throws ORA-28817:
    SYS@a411> select apex_instance_admin.get_parameter('SMTP_PASSWORD') from dual;
    select apex_instance_admin.get_parameter('SMTP_PASSWORD') from dual
    ERROR at line 1:
    ORA-28817: PL/SQL function returned an error.
    ORA-06512: at "SYS.DBMS_CRYPTO_FFI", line 67
    ORA-06512: at "SYS.DBMS_CRYPTO", line 44
    ORA-06512: at "APEX_040200.WWV_FLOW_CRYPTO", line 89
    ORA-06512: at "APEX_040200.WWV_FLOW_INSTANCE_ADMIN", line 239You can fix this by entering new passwords:
    SYS@a411> exec apex_instance_admin.set_parameter('SMTP_PASSWORD','my smtp password');
    PL/SQL procedure successfully completed.
    SYS@a411> exec apex_instance_admin.set_parameter('WALLET_PWD','my wallet password');
    PL/SQL procedure successfully completed.
    SYS@a411> select apex_instance_admin.get_parameter('SMTP_PASSWORD') from dual;
    APEX_INSTANCE_ADMIN.GET_PARAMETER('SMTP_PASSWORD')
    my smtp password
    1 row selected.Regards,
    Christian

  • Slim: want login root to console and user to xfce

    Just got Arch installed and running for the first time a couple of days ago.
    I got slim to log in to user and launch xfce ok.
    I cannot seem to get slim to start a console on the same laptop.  If I type console in slim it doesn't accept that.  It will log in as root to xfce if I have that in root's .xinitrc, but I cannot seem to log in as root to console.

    I more of less got this working like I want now.  Instead of using console for login, I use root.  I have the following for my .xinitrc file in root.
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
      for f in /etc/X11/xinit/xinitrc.d/*; do
        [ -x "$f" ] && . "$f"
      done
      unset f
    fi
    # exec gnome-session
    # exec startkde
    # exec startxfce4
    # ...or the Window Manager of your choice
    exec xterm -geometry 227x59 -fg white -bg black
    I have the login command for slim in /etc/slim.conf to be:  login_cmd           exec /bin/bash -login ~/.xinitrc %session
    With this setup I can log in as user, but not console.
    If I use the login command for slim in /etc/slim.conf:  login_cmd           exec /bin/sh /etc/X11/Xsession
    I can login as console but not as a user straight to xfce4.
    EDIT:  Edited -geometry setting as it was extending beyond the deskop.  Got previous setting from another forum post.
    Last edited by David Batson (2011-10-18 20:33:31)

  • My FSG report drill down redirectly to PROD url in the cloned instance

    Hi All,
    Version : R12.1.3
    DB : 11.2.0.3
    My FSG drill down is giving error in my DEV instance ,as the drill down is taking me to wrong url(PRODUCTION)
    Anyone know where to define the hostname for drill down RG.
    Thanks

    Brian:
    Thanks for the reply.
    I found out a simple drop-down list referencing to a conditional MEMBERSET cell (if a then level4 else level 5) works pretty well.
    I do have two questions though:
    1. For LDEP or LALL, it puts the parents on top of the children. Is there anyway to display the children nodes first before their parents? For instance:
    LDEP (2, TOTALFOOTWEAR) gives me:
    RUNNING (LEVEL1)
    Men's Running (LEVEL2)
    Women's Running (LEVEL2)
    WALKING (LEVEL1)
    Men's Walking (LEVEL2)
    Women's Walking (LEVEL2)
    When I really want:
    Men's Running (LEVEL2)
    Women's Running (LEVEL2)
    RUNNING (LEVEL1)
    Men's Walking (LEVEL2)
    Women's Walking (LEVEL2)
    WALKING (LEVEL1)
    2. It took me a while before I realized there is a LDEP function. How did you get LALL LBAS, etc? Is there a complete reference document?
    Thank you! Happy Holidays!
    Brian

  • Incomplete instances for multiuser login giving null pointer exception error

    Hi
    I am facing one problem about Weblogic workflow. We have developed an application
    where number of users logs in simultaneouly.
    When a user logs in, one instance of workflow gets created. So when more than one
    user logs in, that many instanaces gets created. But it gives us the error like "Null
    pointerexception". This is beacuse The instanaces which gets created were not getting
    completed, they are incomplete. And when I delete these incomplete instances and
    try to login one after another user, it works fine. But again when two or more users
    logs in at same time we get the same error.
    Can you please help me out solving this problem.
    Regards,
    Rajesh Patil

    I have just found out that when this error appear, a folder called splash is created in the same directory as my project folder and the application that I just ran has appeared in there and I can run it from the files in that folder. I can't see anywhere in my code which specifies sending these files to a splash folder.
    Does anyone know why this might happen and if this is related to the Null Pointer Exception Error?
    -Mark

  • Responsibilities not visible to user after cloning instance from Production

    Hi,
    In my environment, one of the user is disabled in Production, but he has access in DEV instance. When i clone production onto DEV instance and enable this user, he is not able to see the responisbilities which he is suppose to see.
    I ran the "Synchronize WF LOCAL tables', but still the user is not able to see the responsibility.
    Am i missing anything?
    Thanks,

    Hi,
    Did you try to bounce Apache and see if it helps?
    Please see the suggested solutions in the following threads/docs.
    Responsibility not appearing
    Re: Responsibility not appearing
    Assigned Responsibility Not Visible on Login through AppsLocalLogin.jsp
    Re: Assigned Responsibility Not Visible on Login through AppsLocalLogin.jsp
    Note: 388018.1 - Unable to See a Responsibility in the Navigator After End Date Has Been Removed
    Note: 727638.1 - Unable to See Responsibilities after End Date Is Removed on ATG RUP6
    Note: 406892.1 - Missing/Corrupted User-Role Responsibilities
    Note: 429852.1 - Reactivated User Does Not See Responsibilities
    Regards,
    Hussein

Maybe you are looking for

  • Bugs with graphics Yosemite

    I've just installed Yosemite , and what is that apple ??? I want back to Mavericks

  • None of the apps works. Crashes or not even start.

    I registered today as a student, installed the apps that I need - Lightroom, Photoshop, Premiere, AfterFx, Illustrator - but none of them is working. Photoshop, Premiere, and Illustrator crashes after 2 seconds, and Lightroom doesn´t start. Tryed the

  • Traing help needed for a CS novice!!

    I have recently bought CS5 master collection. I am a total CS novice, meaning I have never used CS before. Is there a training manual??  I have been doing some web & graphic design courses through 'e-careers'. I'm half way through the 'photoshop' cou

  • Maintain number range object for notification (IW20)

    Dear All, Need help. Is there any configuration to "Define Number Range" for Notification Types. I'm using SAP R/3 4.7 While using SPRO, the path is: Plant Maintenance and Customer Service -> Maintenance and Service Processing -> Maintenance and Serv

  • ATC: compliance screening

    hi, when i create delivery note, a message pop up. But the delivery note still able to process, pls advice ATC: compliance screening communication failure with compliance engine no compliance blocks were set delivery should be checked manually