Took exception (WWV-01801)

Can someone explain to me what the following error message means (and how to resolve it):
Took exception (WWV-01801)
I get this error message when I attempt to edit a dynamic page. It only happens on one particular page that I am editing.
Any help would be greatly appreciated....

Yes, I too have encountered this.
Currently it is not accepting very long html code. I got it with around 26KB.

Similar Messages

  • Dynamic Pages Error Took exception (WWV-01801)

    I have a dynamic page which I can save (and it runs fine). When I try to edit it, I get the error:
    Took exception (WWV-01801)
    This isn't very descriptive. Where can I start looking?

    It appears to be a bug in Portal.
    If I shrink down the size of my PL/SQL segment in the dynamic page, all is fine.
    This ultimately limits the size of PL/SQL blocks in a dynamic page. It would be nice if Portal should warn you about this.

  • WWV-06900 and WWV-01801 Portal errors on 9i

    Anyone having grief with these errors: 'Unable to show menus in level 1 (WWV-06900)' and 'Took exception (WWV-01801)' while accessing some of the application components in Portal should beware of changing the 'SYS' password on the database after installation. I had to reenable the O7_DICTIONARY_ACCESSIBILITY=TRUE flag in the initSID.ora and also recompile all the invalid objects in the 'PORTAL30' schema to get things going again for a client. Seems to be a bug that should supposedly be fixed by RDBMS v9.

    Hello everybody. Excuse me,please.
    I found this errors too. Then I logined to oracle database follow this steps
    sqlplus portal30/portal30@oracle
    SQL>select object_name , object_type ,status
    from user_objects
    where status = 'INVALID';
    OBJECT_NAME OBJECT_TYPE STATUS
    WWSBR_CORNER_CTX_INDX INDEX INVALID
    WWSBR_DOC_CTX_INDX INDEX INVALID
    WWSBR_PERSP_CTX_INDX INDEX INVALID
    WWSBR_THING_CTX_INDX INDEX INVALID
    WWSBR_TOPIC_CTX_INDX INDEX INVALID
    WWSBR_URL_CTX_INDX INDEX INVALID
    WWUTL_API_APPTRANSPORT PACKAGE BODY INVALID
    WWUTL_EXPORTIMPORT_TOOLS PACKAGE BODY INVALID
    WWV_UTLBUILD PACKAGE BODY INVALID
    9 rows selected.
    I use Oracle Internet Application Server 1.0.2.1 (portal 3.0.9) for Windows 2000 and Oracle9i Database for Windows 2000.
    Before days ago I could create portal applications and it's fine but today it had errors "Error: Unable to show menus in
    level 1 (WWV-06900)" and " Took exception (WWV-01801)" . First I thinked somes stored packages in database not fine ,
    then I queried 'object_name' and had results above. Next I upgrade portal 3.0.9 --> 3.0.9.8.2 because I hope
    somes packages in portal 3.0.9.8.2 script will replaced to invalid packages but it's not. After I upgrade to portal
    3.0.9.8.2 I still found errors "Error: Unable to show menus in
    level 1 (WWV-06900)" and " Took exception (WWV-01801)" . Please help me.
    Chugraphong Chaiyawong
    Computer Center ,Khon Kaen University,Thailand.
    Tel.+66.43.348601 ext 126

  • Cant create applications, cant edit schemas

    Whenever I try to create an application, I get the errormessage "Took exception (WWV-01801)". On the creation-page in the combobox there is no schema to choose. Also, on the schema-creation-page there is no posibility to create a schema. So how can I create schemas and then create applications?
    Thanx
    Herb

    Hi,
    The application combo box which is displayed when you create an application is nothing but all the schemas on which the portal user has MANAGE privilege. Hence ,the combo box that appears is blank and clicking on OK throws up the error.
    Make sure the portal user you are logged on as has the right privileges on a schema on which an application can be built.
    This was a bug and this has been fixed in the new portal release 9.0.2 where in the create application link or screen itself will not appear incase the portal user doesnt have any schemas on which to base his application. Till then you would have to make sure there is atleast one schema on which he has manage.
    Thanks,
    Anu

  • Report to display a picture from a blob column

    hi all
    i have a problem :please help
    environment: oracle AS 10.1.2.0.2 portal version 10.1.4
    i have a slq report:
    select field1,field2...,,
    decode(cd.photo, empty_blob(),
    '<img src="MYCS.show_img?p_field=IMG&p_rowid=NO_CHILD_PIC">',
    decode(cd.SOURCE, 'MAIN',
    '<img src="MYCS.show_img?p_field=CHILD&p_rowid='||mycs_lib.url_encode(cd.rid)||'" width=160 height=120>',
    '<img src="MYCS.show_img?p_field=CHILDARCH&p_rowid='||mycs_lib.url_encode(cd.rid)||'" width=160 height=120>')
    ) "PHOTO"
    from MYCS.mycs_child_details_v cd
    where cd.id like :child_id
    adn ...
    The last field on the (select statement) is a photo(blob type)
    NB:MYCS.mycs_child_details_v is a view
    trying to create the report i get the following Error:
    unable to describe SQL statement. Please correct it (WWV-13010)
    Took exception (WWV-13005)
    ORA-00942: inconsistent datatypes: expected - BLOB wwv-11230
    This report runs without any errors on portal 3.0.9 9i AS
    i dont understand what could be wrong here?
    is BLOB datatype not supported by/on portal?
    is the other way i can display this picture(s)?

    Jean,
    See this thread:
    How can I upload/display image within a record ?
    Sergio

  • Help: Portal calendar error when using wwctx_api.get_user

    Hi,
    I am trying to create a calendar based on some table data and results should be specific to portal user logged in. So I have created following query but it does not filter the data based on the user logged in. I have checked and there are no issues on data side.
    select
    a.EVENT_START_DT the_date,
    a.EVENT_NAME the_name,
    ( ) the_name_link,
    null the_date_link,
    null the_target,
    null the_intermedia
    from TBL_EVENTS a
    where a.Event_Status = 0
    and a.event_personal = 1
    and a.event_recorded_by = (select entryid FROM ods.CT_UID where upper(ATTRVALUE) = upper(wwctx_api.get_user))
    order by a.event_id desc
    Failing above I also tried other way using bind variable and then passing the page paramater (selecting system variables USER_NAME) to the bind variable
    Select a.EVENT_START_DT the_date,
    a.EVENT_NAME the_name,
    ( ) the_name_link,
    null the_date_link,
    null the_target,
    null the_intermedia
    from TBL_EVENTS a
    where a.Event_Status = 0
    and a.event_personal = 1
    and a.event_recorded_by = (select entryid FROM ods.CT_UID where upper(ATTRVALUE) = upper(:username))
    order by a.event_id desc
    However it still dont work.
    Can anyone please give me any suggestion or way to resolve this.
    Any help much appriciated.
    Thanks
    Ganesh

    Hi,
    I am storing OID user id but I am comparing as follows
    select
    a.EVENT_START_DT the_date,
    a.EVENT_NAME the_name,
    ('' ) the_name_link,
    null the_date_link,
    null the_target,
    null the_intermedia
    from TBL_EVENTS a
    where a.Event_Status = 0
    and a.event_personal = 1
    and a.event_recorded_by = (select entryid FROM ods.CT_UID where upper(ATTRVALUE) = upper(portal.wwctx_api.get_user)
    order by a.event_id desc
    but this comes with following error
    Unable to describe SQL statement. Please correct it (WWV-13010)
    Took exception (WWV-13005)
    ORA-01001: invalid cursor (WWV-11230)
    ORA-00921: unexpected end of SQL command (WWV-11230)
    Failed to parse as CCMPORTAL - select a.EVENT_START_DT the_date, a.EVENT_NAME the_name, ('http://portal.ccm.ac.uk/portal/page/portal/TMC/STAFFPORTAL/COLLEGE_SERVICES/COLLEGE_CALENDAR/Event%20Manager/Tab_Update?meventid=##A.EVENT_NAME##' ) the_name_link, null the_date_link, null the_target, null the_intermedia from TBL_EVENTS a where a.Event_Status = 0 and a.event_personal = 1 and a.event_recorded_by = (select entryid FROM ods.CT_UID where upper(ATTRVALUE) = upper(portal.wwctx_api.get_user) order by a.event_id desc
    I then tried creating bind variable as follows
    select
    a.EVENT_START_DT the_date,
    a.EVENT_NAME the_name,
    ('' ) the_name_link,
    null the_date_link,
    null the_target,
    null the_intermedia
    from TBL_EVENTS a
    where a.Event_Status = 0
    and a.event_personal = 1
    and a.event_recorded_by = (select entryid FROM ods.CT_UID where upper(ATTRVALUE) = upper(:musername)
    order by a.event_id desc
    and then passing system variable USER_NAME to musername in page parameter settings to the portlet.
    Please advise help
    Thanks
    Ganesh

  • Exception Aggregation help in Bex !

    Hi Experts
        Iam creating a query with date calculations. I have the following calculations in my qry...
    1 . Cycle Time      :  ( Doc Date - Quote sent date) ....I created two replacement path variables and use them in formula.
    2 . Nr of Quotes    :  ( Count of all sales orders with Block L1 & L2) ...I created a CKF for counting the nr of docs then used that CKF in an RKF to filter by block. 
    3 . Avg Tender Time :  ( Nr of Quotes / Doc date - Quote rec Dt) .........Created a formula same as 1 with Quote rec dt instead of Quote sent then created another formula to make 2/3.
        Now when I execute the query Iam getting numbers but
        Cycle Time I took Exception Aggregation as Counter for all detailed values and ref char as Doc Date....Its giving some nr as output...but my question is if I take doc date as Ref char how it gets the calculation from replacement
        Does any one have worked on date calculations as the above situation / any one have any how to's which explaines how to find date calculations with exception aggregations?
    Thanks in advance...

    fixed

  • Error on Basic search portlet in Oracle portal

    I am working on Oracle 10g portal. I uploaded lot of documents and completed indexing as per Oracle guidelines. There are some errors during indexing.Out of 5000 documents 22 are not indexed. When I try to search from a page I get this error. This problem doesn't exist in our development environent where there are only few documents loaded. I have encountered errors in this environment also during index creation.
    Appreciate your help.
    Internal error (WWC-00006)
    An unexpected error has occurred (WWS-32100)
    Unknown Exception (WWC-45131)
    User-Defined Exception (WWV-11230)
    Unexpected error - ORA-20000: Oracle Text error:
    DRG-10599: column is not indexed (WWC-35000)
    ----------------

    Hi,
    What errors did you get during indexing?
    -Ron

  • Authentication role on Windows Satellite not working

    Hi,
    I've configured my satellite servers with the content, imaging and
    authentication role. After
    analyzing traffic between the several sites, all workstations were
    communicating directly with the primary server.
    The client logs on the remote site all show :
    [DEBUG] [04/23/2011 09:17:55.125] [1032] [ZenworksWindowsService] [129] []
    [CommonCasa] [] [ Host: wsuszwl:2645] [] []
    [DEBUG] [04/23/2011 09:17:55.125] [1032] [ZenworksWindowsService] [129] []
    [CommonCasa] [] [ ServiceName: com.novell.zenworks.TMS_TREE] [] []
    [DEBUG] [04/23/2011 09:17:56.000] [1032] [ZenworksWindowsService] [127] []
    [SessionManager] [] [SessionLogonThread signaling TESS event: UserLogin] []
    [DEBUG] [04/23/2011 09:17:56.000] [1032] [ZenworksWindowsService] [127]
    [adminzwl] [SessionManager] [] [OnChange performing change event for session
    396680129, with event: UserLogin] [] []
    [DEBUG] [04/23/2011 09:17:56.000] [1032] [ZenworksWindowsService] [127] []
    [Novell.Zenworks.Tess] [] [EventManager -- EventTrigger for UserLogin has
    been called.] [] []
    [DEBUG] [04/23/2011 09:17:56.000] [1032] [ZenworksWindowsService] [127] []
    [Novell.Zenworks.Tess] [] [EventManager -- EventTrigger for UserLogin has
    been called.] [] []
    [DEBUG] [04/23/2011 09:17:56.000] [1032] [ZenworksWindowsService] [127]
    [adminzwl] [SessionManager] [] [OnChange finished performing change event
    for session 396680129, with event: UserLogin] [] []
    [DEBUG] [04/23/2011 09:17:56.000] [1032] [ZenworksWindowsService] [127] []
    [SessionManager] [] [SessionLogonThread finished signaling TESS event:
    UserLogin] [] []
    [DEBUG] [04/23/2011 09:17:56.140] [1032] [ZenworksWindowsService] [129] []
    [CommonCasa] [] [ObtainAuthToken took exception: -939589602
    System.Exception: -939589602
    at Novell.Casa.Client.Auth.Authtoken.ObtainAuthToken( String sService,
    String sHost, WinLuid luid)
    wsuszwl is the satellite, running Windows 2003 server, ZEN 10.3.3 and WSUS.
    WSUS default port has been changed to 8530. After this exception -939589602
    , the client authenticates to the primary server, correctly following the
    nearest server rules.
    I checked if something was listening on port 2645 on the satellite and it
    was not. On the primary server port 2645 is listening, checked via
    https://server:2645/CasaAuthTokenSvc/
    I've enabled Casa logging on the satellite, below a few lines from that log.
    Am I missing something here? I'm confused, because while configuring the
    authentication role of the satellite, ZCM tells you it's using port 443 for
    authentication. But it seems it's using port 2645?
    And I can't find any ZEN service not running on the satellite. The ZEN
    agent on the satellite shows under Satellite Role Status : Authentication
    Enabling. As if it's trying to enbele the roles, but it's not succeeding.
    I found some stuff while googlng that told me it would not be possible to
    use the authentication role on Windows bases satellites, only on linux
    based. But that was a pretty old article.
    Thanks for any help
    Ron
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenEx- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenInt- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenInt- ServiceName =
    com.novell.zenworks.TMS_TREE
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenInt- HostName =
    wsuszwl:443
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenInt- BufferLength = 0
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenEntryInCache- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenCacheEntry- Key =
    com.novell.zenworks.TMS_TREE@wsuszwl
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenCacheEntry- Keysize = 37
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenCacheEntry-
    CredStoreScope = 16266C0
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenEntryInCache- End,
    pEntry = 0x0
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenFromServer- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenFromServer- Hostname =
    wsuszwl
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenFromServer- port = 443
    [1668-1BB4] [09:15:58] CASA_AuthToken -OpenRpcSession- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -OpenRpcSession- Host = wsuszwl
    [1668-1BB4] [09:15:58] CASA_AuthToken -OpenRpcSession- HostPort = 443
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyMultiToWideAlloc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyMultiToWideAlloc- End, retStatus
    = 00000000
    [1668-1BB4] [09:15:58] CASA_AuthToken -OpenRpcSession- End, pSession =
    05F94F98
    [1668-1BB4] [09:15:58] CASA_AuthToken -BuildGetAuthPolicyMsg- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -BuildGetAuthPolicyMsg- End, pMsg =
    0x5F94FB0
    [1668-1BB4] [09:15:58] CASA_AuthToken -Rpc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -InternalRpc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyMultiToWideAlloc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyMultiToWideAlloc- End, retStatus
    = 00000000
    [1668-1BB4] [09:15:58] CASA_AuthToken -InternalRpc- before
    WinHttpOpenRequest
    [1668-1BB4] [09:15:58] CASA_AuthToken -InvalidCertsFromHostAllowed- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -InvalidCertsFromHostAllowed- End,
    retStatus = 0
    [1668-1BB4] [09:15:58] CASA_AuthToken -SecureFailureStatusCallback- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -SecureFailureStatusCallback- End
    [1668-1BB4] [09:15:58] CASA_AuthToken -InternalRpc- Secure connection
    failure, flags = 10
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyWideToMultiAlloc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyWideToMultiAlloc- End, retStatus
    = 00000000
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyWideToMultiAlloc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyWideToMultiAlloc- End, retStatus
    = 00000000
    [1668-1BB4] [09:15:58] CASA_AuthToken -UserApprovedCert- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -UserApprovedCert- Invalid Cert from
    Host = wsuszwl
    [1668-1BB4] [09:15:58] CASA_AuthToken -InternalRpc- User approved invalid
    certificate from wsuszwl
    [1668-1BB4] [09:15:58] CASA_AuthToken -AllowInvalidCertsFromHost- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -AllowInvalidCertsFromHost-
    X509_ASN_ENCODING
    [1668-1BB4] [09:15:58] CASA_AuthToken -AllowInvalidCertsFromHost- Entered to
    iterate the cert list
    [1668-1BB4] [09:15:58] CASA_AuthToken -AllowInvalidCertsFromHost- End,
    retStatus = 0
    [1668-1BB4] [09:15:58] CASA_AuthToken -InternalRpc- End, retStatus = 0
    [1668-1BB4] [09:15:58] CASA_AuthToken -Rpc- End, retStatus = 0
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenFromServer- Did not
    receive GetAuthPolicy Response data
    [1668-1BB4] [09:15:58] CASA_AuthToken -CloseRpcSession- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -CloseRpcSession- End
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenFromServer- End,
    retStatus = C7FF0020
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenInt- End, retStatus =
    C7FF0020
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenEx- End, retStatus =
    C7FF0020
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenEx- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenInt- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenInt- ServiceName =
    com.novell.zenworks.TMS_TREE
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenInt- HostName =
    wsuszwl:2645
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenInt- BufferLength = 0
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenEntryInCache- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenCacheEntry- Key =
    com.novell.zenworks.TMS_TREE@wsuszwl
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenCacheEntry- Keysize = 37
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenCacheEntry-
    CredStoreScope = 162DAF4
    [1668-1BB4] [09:15:58] CASA_AuthToken -FindAuthTokenEntryInCache- End,
    pEntry = 0x0
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenFromServer- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenFromServer- Hostname =
    wsuszwl
    [1668-1BB4] [09:15:58] CASA_AuthToken -ObtainAuthTokenFromServer- port =
    2645
    [1668-1BB4] [09:15:58] CASA_AuthToken -OpenRpcSession- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -OpenRpcSession- Host = wsuszwl
    [1668-1BB4] [09:15:58] CASA_AuthToken -OpenRpcSession- HostPort = 2645
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyMultiToWideAlloc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyMultiToWideAlloc- End, retStatus
    = 00000000
    [1668-1BB4] [09:15:58] CASA_AuthToken -OpenRpcSession- End, pSession =
    05F94F98
    [1668-1BB4] [09:15:58] CASA_AuthToken -BuildGetAuthPolicyMsg- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -BuildGetAuthPolicyMsg- End, pMsg =
    0x5F94FB0
    [1668-1BB4] [09:15:58] CASA_AuthToken -Rpc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -InternalRpc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyMultiToWideAlloc- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -CopyMultiToWideAlloc- End, retStatus
    = 00000000
    [1668-1BB4] [09:15:58] CASA_AuthToken -InternalRpc- before
    WinHttpOpenRequest
    [1668-1BB4] [09:15:58] CASA_AuthToken -InvalidCertsFromHostAllowed- Start
    [1668-1BB4] [09:15:58] CASA_AuthToken -InvalidCertsFromHostAllowed- End,
    retStatus = 0
    [1668-1BB4] [09:15:59] CASA_AuthToken -InternalRpc- Unable to connect to
    server
    [1668-1BB4] [09:15:59] CASA_AuthToken -InternalRpc- End, retStatus =
    C7FF001E
    [1668-1BB4] [09:15:59] CASA_AuthToken -Rpc- End, retStatus = C7FF001E
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenFromServer-
    GetAuthPolicy Rpc failure, error = C7FF001E
    [1668-1BB4] [09:15:59] CASA_AuthToken -CloseRpcSession- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -CloseRpcSession- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenFromServer- End,
    retStatus = C7FF001E
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenInt- End, retStatus =
    C7FF001E
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenEx- End, retStatus =
    C7FF001E
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenEx- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenInt- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenInt- ServiceName =
    com.novell.zenworks.TMS_TREE
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenInt- HostName =
    zentms1.tmsnet.org:443
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenInt- BufferLength = 0
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindAuthTokenEntryInCache- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindAuthTokenCacheEntry- Key =
    [email protected]
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindAuthTokenCacheEntry- Keysize = 48
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindAuthTokenCacheEntry-
    CredStoreScope = 1638FD4
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindAuthTokenEntryInCache- End,
    pEntry = 0x0
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenFromServer- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenFromServer- Hostname =
    zentms1.tmsnet.org
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainAuthTokenFromServer- port = 443
    [1668-1BB4] [09:15:59] CASA_AuthToken -OpenRpcSession- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -OpenRpcSession- Host =
    zentms1.tmsnet.org
    [1668-1BB4] [09:15:59] CASA_AuthToken -OpenRpcSession- HostPort = 443
    [1668-1BB4] [09:15:59] CASA_AuthToken -CopyMultiToWideAlloc- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -CopyMultiToWideAlloc- End, retStatus
    = 00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -OpenRpcSession- End, pSession =
    05F94ED8
    [1668-1BB4] [09:15:59] CASA_AuthToken -BuildGetAuthPolicyMsg- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -BuildGetAuthPolicyMsg- End, pMsg =
    0x5F94FB0
    [1668-1BB4] [09:15:59] CASA_AuthToken -Rpc- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -InternalRpc- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -CopyMultiToWideAlloc- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -CopyMultiToWideAlloc- End, retStatus
    = 00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -InternalRpc- before
    WinHttpOpenRequest
    [1668-1BB4] [09:15:59] CASA_AuthToken -InvalidCertsFromHostAllowed- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -InvalidCertsFromHostAllowed- End,
    retStatus = 0
    [1668-1BB4] [09:15:59] CASA_AuthToken -InternalRpc- End, retStatus = 0
    [1668-1BB4] [09:15:59] CASA_AuthToken -Rpc- End, retStatus = 0
    [1668-1BB4] [09:15:59] CASA_AuthToken -CreateGetAuthPolicyResp- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespStartElementHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespStartElementHandler-
    End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespStartElementHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespStartElementHandler-
    End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespStartElementHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespStartElementHandler-
    End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespEndElementHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespEndElementHandler-
    End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- End, retStatus =
    00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespEndElementHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespEndElementHandler-
    End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespStartElementHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespStartElementHandler-
    End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- End, retStatus =
    00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespEndElementHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespEndElementHandler-
    End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespEndElementHandler-
    Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthPolicyRespEndElementHandler-
    End
    [1668-1BB4] [09:15:59] CASA_AuthToken -CreateGetAuthPolicyResp- End,
    retStatus = 00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -CreateAuthPolicy- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -DecodeData- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -DecodeData- End, retStatus = 0
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- End, retStatus =
    00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- End, retStatus =
    00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyStartElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConsumeElementData- End, retStatus =
    00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyCharDataHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -AuthPolicyEndElementHandler- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -CreateAuthPolicy- End, retStatus =
    00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -ObtainSessionToken- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenEntryInCache- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenCacheEntry- Key =
    TMS_TREE
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenCacheEntry- Keysize =
    9
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenCacheEntry-
    CredStoreScope = 1638FD4
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenEntryInCache- End,
    pEntry = 0x0
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenEntryInCache- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenCacheEntry- Key =
    TMS_TREE
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenCacheEntry- Keysize =
    9
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenCacheEntry-
    CredStoreScope = 1638FD4
    [1668-1BB4] [09:15:59] CASA_AuthToken -FindSessionTokenEntryInCache- End,
    pEntry = 0x0
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthMechToken- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthTokenIf- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetConfigInterface- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetConfigInterface- End, retStatus =
    00000000
    [1668-1BB4] [09:15:59] CASA_PwdMech -AuthTokenIf_AddReference- Start
    [1668-1BB4] [09:15:59] CASA_PwdMech -AuthTokenIf_AddReference- End, refCount
    = 2
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConfigIf_ReleaseReference- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -ConfigIf_ReleaseReference- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthTokenIf- End, retStatus =
    00000000
    [1668-1BB4] [09:15:59] CASA_PwdMech -AuthTokenIf_GetAuthToken- Start
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- Start
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- Realm = TMS_TREE
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- CredStoreScope =
    1638FD4
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- RealmCredsOnly = 1
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- Username =
    Administrator
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- End, retStatus = 0
    [1668-1BB4] [09:15:59] CASA_PwdMech -EncodeData- Start
    [1668-1BB4] [09:15:59] CASA_PwdMech -EncodeData- End, retStatus = 0
    [1668-1BB4] [09:15:59] CASA_PwdMech -AuthTokenIf_GetAuthToken- End,
    retStatus = C7FD0006
    [1668-1BB4] [09:15:59] CASA_PwdMech -AuthTokenIf_GetAuthToken- Start
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- Start
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- Realm = TMS_TREE
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- CredStoreScope =
    1638FD4
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- RealmCredsOnly = 1
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- Username =
    Administrator
    [1668-1BB4] [09:15:59] CASA_PwdMech -GetUserCredentials- End, retStatus = 0
    [1668-1BB4] [09:15:59] CASA_PwdMech -EncodeData- Start
    [1668-1BB4] [09:15:59] CASA_PwdMech -EncodeData- End, retStatus = 0
    [1668-1BB4] [09:15:59] CASA_PwdMech -AuthTokenIf_GetAuthToken- End,
    retStatus = 00000000
    [1668-1BB4] [09:15:59] CASA_PwdMech -AuthTokenIf_ReleaseReference- Start
    [1668-1BB4] [09:15:59] CASA_PwdMech -AuthTokenIf_ReleaseReference- End
    [1668-1BB4] [09:15:59] CASA_AuthToken -GetAuthMechToken- End, retStatus =
    00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -BuildAuthenticateMsg- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -BuildAuthenticateMsg- End, pMsg =
    0x5F95DE8
    [1668-1BB4] [09:15:59] CASA_AuthToken -Rpc- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -InternalRpc- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -CopyMultiToWideAlloc- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -CopyMultiToWideAlloc- End, retStatus
    = 00000000
    [1668-1BB4] [09:15:59] CASA_AuthToken -InternalRpc- before
    WinHttpOpenRequest
    [1668-1BB4] [09:15:59] CASA_AuthToken -InvalidCertsFromHostAllowed- Start
    [1668-1BB4] [09:15:59] CASA_AuthToken -InvalidCertsFromHostAllowed- End,
    retStatus = 0
    [1668-1BB4] [09:15:59] CASA_AuthToken -InternalRpc- End, retStatus = 0

    Rvd,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Time Capsule & iTunes

    Hi, I just purchased a 2TB time capsule and a MB Air and I am having some issues. I plan on using the TC as backup and also wanted to park my music there to share with the rest of the family since I can not host the files on my 128gb drive
    The backup up is slowww but I expected that from reading different posts but honestly I didn't think it would take 7 hours (801.11n) on a brand new empty laptop. I am hoping that now that it has backed up once it will speed up. My problem is with my music. I copied over all of my files (I will not say how long that took except to say that I have been on shorter camping trips) and then went to my new mac and pointed the library to that folder and then added the files. The airport read time was so slow that iTunes locked up after about 5 minutes. I figured it might be the new mac so I tried a windows machine (which was a direct wired connection to the TC) and an old macbook and all had the same issue. If I can't even grab the meta data from the songs how in the world can I read the song file during play back?
    I have tried rebooting, hard and soft, I have reformatted the drive and put a small amount of songs back (about 25GB) and the same thing happens. So my questions are as follows. Is the TC defective? If not what is the point.. not to be snotty but I can't imagine how a system restore would work, it would take a week. I am thinking about returning it and getting an airport extreme and an external hard drive to attach to it. Would this be faster? I really like the wireless portion I just don't think I can live with these storage speeds.
    Thanks for any advice!

    If you hold down an "option" key while you pull down the Wi-Fi/AirPort menu bar item, what value do you see for "RSSI"?
    By the way, it's not a good idea to use the same disk for Time Machine backups and for other things.  By design Time Machine will eventually consume all available space on its output disk, which will cause problems for other uses.

  • How can I reget the Windows 10 10061 auto upgrade?

    hi pros...
    I install Windows 10 10061 yesterday,
    and then restore to windows 10 10041,
    after that
    I can't cat the Windows 10 10061 autoupdate again,
    I want to reinstall 10061,
    How can I reget the autoupgrade again?
    Thanks

    On Sat, 25 Apr 2015 13:09:27 +0000, david hk129 wrote:
    excerpt:
    For those that did not know, you can switch between slow and fast ring updates in PC Settings > Update and Recovery > Preview Builds. Everyone is on the slow ring, by default. If you want to see the build right as it becomes available, you will want
    to be on the fast ring.
    http://www.winbeta.org/news/windows-10-technical-preview-do-you-prefer-slow-ring-or-fast-ring-poll
     <http://www.winbeta.org/news/windows-10-technical-preview-do-you-prefer-slow-ring-or-fast-ring-poll>excerpt:
    It turns out, there's actually two different upgrade paths for preview builds. The default setting is what Microsoft calls "Slow Ring," with another setting called "Fast Ring."
    http://www.cnet.com/how-to/change-to-the-fast-ring-for-more-frequent-windows-10-preview-updates/
    If you counter by saying those 2 sites are incorrect, I would rather believe them than you.
    If you counter by saying those 2 postings are old and outdated, you will have to produce something that says the contrary.
    Once again, you've totally missed the point, and I'm not going to continue
    this discussion as I'm tired of the childish name calling and personal
    attacks from you.
    Facts:
    1. The OP must have been on the Fast ring or he wouldn't have been
    offered 10061 in the first place.
    2. Your suggestion was to switch from the Slow ring to the Fast ring as a
    solution to his problem.
    3. I pointed out that he had to be on the Fast ring in the first place.
    4. You took exception to that and called me names.
    5. You made the bald, untested statement that rolling back to 10041 put him
    back to the Slow ring.
    6. I actually tested this and proved that this is not the case. A roll back
    from 10061 to 10041 resulted in me still being in the Fast ring.
    7. You post links to two web sites that have stories that have absolutely
    nothing at all to do with whether or not a roll back changes one from the
    Fast ring to the Slow ring. A roll back should put you back in the ring you
    were in prior to the upgrade. Since the OP went from 10041 to 10061
    through Windows Update, he must have been on the Fast ring when still
    running 10041. It stands to reason that a roll back would result in him
    still being in the Fast ring after the roll back is complete.
    It is great that you post here but posting baldly incorrect, untested
    advice based on nothing more than supposition doesn't help anyone when it
    is clearly wrong.
    Paul Adare - FIM CM MVP
    "I am truly free only when all human beings, men and women,
    are equally free." -- Mikhail Bakunin

  • Error when run a dynamic page

    I am using portal 10g. I have a simple test dynamic page to output the page_url:
    <oracle>
    Declare
    myPortlet_rec portal.wwpro_api_provider.portlet_runtime_record;
    myUrl varchar2(32767);
    Begin
    portal.wwpro_api_provider.show_portlet(myPortlet_rec);
    myUrl :=myPortlet_rec.page_url;
    htp.p(myUrl);
    End;
    </oracle>
    It compiles successfuly in portal, but when I click 'run as portlet' link, I got this error:
    Error: Internal error (WWC-00006)
    User-Defined Exception (WWV-11230)
    The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1631499120 (WWC-51000)
    The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1631499120 (WWC-51000)
    The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1631499120 (WWC-51000)
    If I click 'Run', I got 'HTTP 404 not found' page.
    Can anyone tell me what is wrong here? Thanks!

    Thanks for the reply, I will try to clarify things a bit. If I attempt to create a LOV (Shared Component), I get the first error. If I type in the LOV query directly into my field definition's LOV (as opposed to using a Named LOV), I get the report error when I run the page. The 'F_FORMAT_NAME' is a database function NOT in the ASMGR schema, but it has a public synonym...looking at the grants to it, that might be a problem (ASMGR doesn't have execute on it, nor does public), however, when I first started attempting this LOV creation, the call to the function wasn't there.... I will have to re-try it. In the meantime, I got around the problem rather inelegantly by creating a view in the ASMGR schema that pointed to the fields I needed for the LOV.

  • URGENT! (sorry for rudeness) - Error when trying to Expose Application as provider...

    User-Defined Exception (WWV-11230)
    User-Defined Exception (WWV-11230)
    The implementation package is not in a valid state. (WWC-43132)
    This is an application that contains four lov's, three reports and two forms, all of which inherit the apps privs.

    Hi,
    Looks like there are invalid packages in your portal schema. Please connect to the portal schema
    and recompile all the invalid packages.
    You can use this code to pick up the invalid objects. This spools to a file called c.sql. All you have to do is run the c.sql
    file (@c.sql). Rerun the c.sql file until all the objects become valid.
    set head off
    set echo off
    spool c.sql
    Select 'Alter '||
    decode(OBJECT_TYPE,'PACKAGE BODY','PACKAGE','TYPE BODY','TYPE',OBJECT_TYPE)||
    ' "'||OBJECT_NAME||'" COMPILE '||
    decode(OBJECT_TYPE,'PACKAGE BODY','BODY;','TYPE BODY','BODY;',';')
    From user_OBJECTS
    Where STATUS = 'INVALID'
    spool off
    set echo on
    set head on
    Thanks,
    Sharmila

  • Runscriptenf error

    Hi!
    One interesting problem. ZCM 11.2.2, Windows XP, so far on this device 11.2.1 (yeah, will try 11.2.2). I have a small script, nothing much. And some 150 devices where it is running via bundle during user login. And seems to on this one device it does fail. During user login first appear Windows error with ZAC (can't tell more, in events I don't see much), then several times (running script, probably) runscriptenf (in header) error, script is not fulfilled (well, sometimes it does). In agent log I see error (maybe some of these not mean anything, this user is not authenticated into zone, just local user) ...
    [DEBUG] [02/12/2013 08:08:03.252] [712] [ZenworksWindowsService] [42] [] [RemotingService] [] [Unable to save the Credentails into Micasa store and Error Code is: INVALID_PARAM] [] []
    [DEBUG] [02/12/2013 08:08:03.549] [712] [ZenworksWindowsService] [42] [] [CommonCasa] [] [MiCasa.miCASAMergeCache took exception. The error code is: -841] [] []
    [DEBUG] [02/12/2013 08:08:03.784] [712] [ZenworksWindowsService] [36] [] [AssignmentManager] [] [Error returned from Web Service] [] []
    [DEBUG] [02/12/2013 08:08:03.784] [712] [ZenworksWindowsService] [36] [] [AssignmentManager] [] [Error code: 3, Zenworks user is not authenticated.] [] []
    [DEBUG] [02/12/2013 08:08:26.549] [712] [ZenworksWindowsService] [43] [] [BundleManager] [] [ActionSet Data: <ns1:ActionSet Ordered="true" SetID="26bcdf9a14b3ce9f6ebf5a1032030d44" Type="Launch" Version="8" xmlns="http://www.novell.com/ZENworks/Actions/v1.0" xmlns:ns1="http://www.novell.com/ZENworks/Actions/v1.0"><CurrentActionItem>0</CurrentActionItem><Action ContinueOnFailure="false" Enabled="true" Id="97e29b202559a5d34313140aa02c8d69" Type="Run Script Action" Undo="false"><Name>Run Script for Homedir selection</Name><Data><ns1:RunScriptActionHandlerData xmlns="http://www.novell.com/ZENworks/Actions" xmlns:ns1="http://www.novell.com/ZENworks/Actions"><Exec maxTimeToWait="-1" terminateProgram="false"><ns2:Script extension=".cmd" xmlns="http://www.novell.com/ZENworks/Controls" xmlns:ns2="http://www.novell.com/ZENworks/Controls">subst.exe w: h:\
    if %errorlevel% == 0 goto end
    subst.exe w: z:\
    if %errorlevel% == 0 goto end
    subst.exe w: "C:\Documents and Settings\guest"
    :end
    </ns2:Script><ns2:ProgramExecutor arguments="/C" path="C:\WINDOWS\system32\cmd.exe" xmlns="http://www.novell.com/ZENworks/Controls" xmlns:ns2="http://www.novell.com/ZENworks/Controls" /><ns2:AdvancedSettings xmlns="http://www.novell.com/ZENworks/Controls" xmlns:ns2="http://www.novell.com/ZENworks/Controls"><SuccessReturnCode>0</SuccessReturnCode><SuccessReturnCode>1</SuccessReturnCode><Priority>Normal</Priority><RunAs>User</RunAs></ns2:AdvancedSettings></Exec></ns1:RunScriptActionHandlerData></Data><Properties><Name>Impersonation</Name><Value>USER</Value></Properties><Properties><Name>StandaloneName</Name><Value>runscriptenf</Value></Properties><Any><Reqs><ReqsFailAction>false</ReqsFailAction></Reqs><actionUniqueId>95be84d545824da1eaa6e1e138980 d1f</actionUniqueId></Any></Action></ns1:ActionSet>] [] []
    [DEBUG] [02/12/2013 08:08:26.549] [712] [ZenworksWindowsService] [35] [] [ZIconMod] [] [Received exception closing the activityIndicator to user session (2002073): Failed to connect to an IPC Port: The system cannot find the file specified.
    Server stack trace:
    at System.Runtime.Remoting.Channels.Ipc.IpcPort.Conne ct(String portName, Boolean secure, TokenImpersonationLevel impersonationLevel, Int32 timeout)
    at System.Runtime.Remoting.Channels.Ipc.ConnectionCac he.GetConnection(String portName, Boolean secure, TokenImpersonationLevel level, Int32 timeout)
    at System.Runtime.Remoting.Channels.Ipc.IpcClientTran sportSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream)
    at System.Runtime.Remoting.Channels.BinaryClientForma tterSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at (0):
    at System.Runtime.Remoting.Proxies.RealProxy.HandleRe turnMessage(IMessage reqMsg, IMessage retMsg)
    at System.Runtime.Remoting.Proxies.RealProxy.PrivateI nvoke(MessageData& msgData, Int32 type)
    at Novell.Zenworks.NotifyIcon.Remoting.IZenIconUIServ er.CloseActivityIndicator(String guid, String status, String name)
    at Novell.Zenworks.NotifyIcon.Module.ZenNotifyIcon.Cl oseActivityIndicator(Session session, String guid, String status, String name)] [] []
    [DEBUG] [02/12/2013 08:08:26.549] [712] [ZenworksWindowsService] [35] [] [BundleManager] [] [After InstallApp] [] []
    [DEBUG] [02/12/2013 08:08:26.549] [712] [ZenworksWindowsService] [35] [] [BundleManager] [] [inside result != null] [] []
    [DEBUG] [02/12/2013 08:08:26.549] [712] [ZenworksWindowsService] [35] [] [BundleManager] [] [Before calling UpdateLastRunTime(false) ] [] []
    [DEBUG] [02/12/2013 08:08:26.549] [712] [ZenworksWindowsService] [35] [] [BundleManager] [] [UpdateLastRunTime Method False] [] []
    [DEBUG] [02/12/2013 08:08:26.549] [712] [ZenworksWindowsService] [35] [] [BundleManager] [] [After GetLocalStateInfoNovell.Zenworks.AppModule.AppLoca lState] [] []
    [DEBUG] [02/12/2013 08:08:26.549] [712] [ZenworksWindowsService] [35] [] [BundleManager] [] [GetLocalStateRecord :: Current Session ID : 2002073, UserName : guest] [] []
    [DEBUG] [02/12/2013 08:08:26.549] [712] [ZenworksWindowsService] [38] [] [ZIconMod] [] [Received exception adding progress to user session (2002073): Failed to connect to an IPC Port: The system cannot find the file specified.
    Server stack trace:
    at System.Runtime.Remoting.Channels.Ipc.IpcPort.Conne ct(String portName, Boolean secure, TokenImpersonationLevel impersonationLevel, Int32 timeout)
    at System.Runtime.Remoting.Channels.Ipc.ConnectionCac he.GetConnection(String portName, Boolean secure, TokenImpersonationLevel level, Int32 timeout)
    at System.Runtime.Remoting.Channels.Ipc.IpcClientTran sportSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream)
    at System.Runtime.Remoting.Channels.BinaryClientForma tterSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at (0):
    at System.Runtime.Remoting.Proxies.RealProxy.HandleRe turnMessage(IMessage reqMsg, IMessage retMsg)
    at System.Runtime.Remoting.Proxies.RealProxy.PrivateI nvoke(MessageData& msgData, Int32 type)
    at Novell.Zenworks.NotifyIcon.Remoting.IZenIconUIServ er.AddProgress(ITaskSetProgress progress)
    at Novell.Zenworks.NotifyIcon.Module.ZenNotifyIcon.Ad dProgress(Session session, ITaskSetProgress progress)] [] []
    [DEBUG] [02/12/2013 08:08:33.346] [712] [ZenworksWindowsService] [25] [] [ZMD] [] [Finished Processing Command for handler refresh. Result = ERROR] [] []
    [DEBUG] [02/12/2013 08:08:33.346] [712] [ZenworksWindowsService] [25] [] [CLM] [] [After call to ProcessCommand. Result = ERROR] [] []
    [DEBUG] [02/12/2013 08:08:33.346] [712] [ZenworksWindowsService] [25] [] [CLM] [] [After call to ParseArgs. Result = ERROR] [] []
    [DEBUG] [02/12/2013 08:10:18.831] [712] [ZenworksWindowsService] [43] [] [BundleManager] [] [Error Processing Bundle Action for bundle: Homedir select] [] []
    [DEBUG] [02/12/2013 08:10:18.831] [712] [ZenworksWindowsService] [43] [] [BundleManager] [] [Error is: Exception was: Object reference not set to an instance of an object.] [] []
    [DEBUG] [02/12/2013 08:10:18.831] [712] [ZenworksWindowsService] [43] [] [BundleManager] [] [Got exception while processiong the action set - Exception of type 'Novell.Zenworks.AppModule.LaunchException' was thrown.
    at Novell.Zenworks.AppModule.AppActionItem.ProcessAct ion(APP_ACTION launchType, ActionContext context, ActionSetResult previousResults)
    at Novell.Zenworks.AppModule.AppActionItem.ProcessHan dledAction(APP_ACTION launchType, ActionContext context, ActionSetResult previousResults) ] [] []
    [DEBUG] [02/12/2013 08:10:18.831] [712] [ZenworksWindowsService] [43] [] [BundleManager] [] [The launch exception reason is ACTION_SET_FAILURE] [] []
    [DEBUG] [02/12/2013 08:10:18.831] [712] [ZenworksWindowsService] [43] [] [BundleManager] [] [ActionMan.ExceptionString] [] []
    [DEBUG] [02/12/2013 08:10:18.831] [712] [ZenworksWindowsService] [43] [] [BundleManager] [] [!!!!! Failure processing scheduled item !!!!!] [] []
    [DEBUG] [02/12/2013 08:10:18.831] [712] [ZenworksWindowsService] [43] [] [BundleManager] [] [Attempting to retry] [] []
    And it tries several times ... end with error.
    When I disable this script bundle running just zac-error appear during login, don't know why. Devices is setup very similar way. But ... on this device in question is also Microsoft Visual Studio 6 (version before 2005) installed. In other hand ... with ZCM 10 agent installed on same device ... no problem, so ... . Maybe it is not so big problem, but this device is located in lecture room and it (errors) does confuse teachers.
    More thanks, Alar.

    Hi again!
    Add another script-bundle and ... once again same error on these devices. But today "discovered" that on device in question where this error appear during user login, no errors when login with admin account which has the same bundles to run, because bundles is associated with device. So, could it be some access rights issue? Remember, I have cleaned cache and also upgraded agent -- from 11.2.1 to 11.2.2.
    Alar.

  • MQSeries Adapter and adapters in general

    I've tried the MQSeries Adapter and the Siebel Adapter and both give me the
    following exception at runtime through the test harness.
    I have included the com.ibm.mq.MQException class through the jar
    (com.ibm.mq.jar) by setting the CLASSPATH env var in startWeblogic.cmd:
    SET
    CLASSPATH=%CLASSPATH%;"c:\Progra~1\IBM\MQSeries\Java\lib\com.ibm.mqjms.jar";
    "c:\Progra~1\IBM\MQSeries\Java\lib\com.ibm.mq.jar";
    Am I reading this properly, that weblogic cannot find this class?
    Any help would be greatly appreciated. Thanks in advance.
    From the log:
    java.lang.Exception: Adapter took exception:
    <eda>
    <error cnctag="" code="-100" source="process"
    timestamp="2003-03-05T17:21:22Z">NoClassDef exception processing agent
    XDMQEmitAgent: com/ibm/mq/MQException</error>
    <data><?xml version="1.0"?>
    <BusinessComponent bcname="Account"
    boname="Account"
    operation="insert">
    <Field name="Currency Code"
    value="USD"/>
    <Field name="Name"
    value="JDB 5"/>
    </BusinessComponent></data></eda>
    at com.ibi.edaqm.XDLclWorker.document(XDLclWorker.java:181)
    at com.ibi.edaqm.XDLclMaster.document(XDLclMaster.java:605)

    Very excited in what Palm has accomplished in so short a time. I've remained much more positive than you seem to have become prior to CES, but I'm definitely as excited after. Maybe more so.

Maybe you are looking for

  • How to see all changes on Project

    Hello, How I can see all changes done on one Project, including description on project level, budget changed, description and budget on WBS, all networks changes, hours booked, etc. I need date of change and who did that. In CN60 I see something, but

  • Firefox page selection

    Firefox 3. had a dropdown box on the "<-"Go back one page/"->"Go forward one page icons that allowed one to select which page he wanted rather than going back or forward one page at a time. Firefox 4. does not appear to have this feature. At least I

  • Curve 9300: Error 507 then 561 but can't reload the software

    Hi, so my Curve 9300 has a white screen indicating an error 507. I followed the instructions on the website and when I connect it to reload the software, the error number on the screen's device changes to 561 and a window opens to tell me the desktop

  • HT4889 Migration assistant refuses to see my Time machine backup in mountain lion

    I made a full Time machine backup on a 1 TB hard disk. I connect this to my other mac. I follow EXACTLY the apple support instructions TO THE LETTER. Time machine says - "looking for other computers" - there are no other computers - only the time mac

  • Java, release 7 not compatible

    I just installed the new release of Java for OSX 10.4.11. It now has made my Etrade Market Trader software stop working. I would like to revert to Version 6 for Java. How do I erase Version 7 so I can reinstall the old version. Does anyone know where