Service of the University Complutense of MADRID to fetch the collectionID

is it all CRMI or available webservice to fetch dCollectionID value by passing the name of the folder / location as entry?

or is it possible I can get dCollectionID when running.

Path String = ;

UserContext IdcContext is getUserContext (USER);.
IdcClient idcClient = getIdcClient();

DataBinder dataBinder = idcClient.createBinder ();

dataBinder.putLocal ("IdcService", "COLLECTION_INFO");
dataBinder.putLocal ("hasCollectionPath", "true");
dataBinder.putLocal ("dCollectionPath", path);
ServiceResponse response = idcClient.sendRequest (userContext, dataBinder);
DataBinder serverBinder = response.getResponseAsBinder ();
ResultSet DataResultSet = serverBinder.getResultSet ("PATH");
DataObject dataObject = resultSet.getRows () .get (resultSet.getRows () .size () - 1);
folderId = dataObject.get ("dCollectionID");

Tags: Fusion Middleware

Similar Questions

  • How to send a file in the server of the University Complutense of MADRID using the Code?

    Hello

    I tried several times to upload a file to the server of the University Complutense of Madrid from the adf page, but I can't do it.

    First: I have used this method to do, but it feel that the file downloaded successfully and when I open the server I haven't found this...

    public String addNewContent() {}
    InputStream fileStream = null;

    try {}
    createConnection();
    String filePath = "C:\\Users\\Administrator\\Desktop\\ucm classes\\Class1.java";
    String autherName = "weblogic";
    fileStream = new FileInputStream (filePath);
    = New File (filePath);
    String [] fileTitle = filePath.split("/");
    long fileLength = new File (filePath) .length ();
    param.getBinder (.putLocal (CMConstants.CM_SERVICE_NAME),
    CMConstants.CM_CHECKIN);
    param.getBinder () .putLocal ("dDocType", "Application");
    Title of the downloaded file
    param.getBinder () .putLocal ("dDocTitle", fileTitle [fileTitle.length - 1]);
    Name of the author
    param.getBinder () .putLocal ("dDocAuthor", autherName);
    Content security for (Group and account)
    param.getBinder () .putLocal ("dSecurityGroup", "Public");
    param.getBinder () .putLocal ("dDocAccount", "");
    param.getBinder () .putLocal ("dFormat", "text/html");
    param.getBinder () .putLocal ("xCollectionID",
    (getFolderIdFromPath ("/ Contribution dossiers/22 /"))) ;
    param.getBinder () .addFile ("primaryFile", file);
    param.setServiceResponse (param.getIdcClient (.sendRequest (param.getIdcContext ()),
    (param.getBinder ()));

    InputStream myInputStream = param.getServiceResponse () .getResponseStream ();
    String myResponseString = param.getServiceResponse () .getResponseAsString ();
    System.out.println ("downloaded file Details: \n" +)
    myResponseString);

    DataBinder myResponseDataBinder =
    param.getServiceResponse () .getResponseAsBinder ();

    System.out.println ("file uploaded successfully");
    } catch {(IdcClientException idcce)
    System.out.println ("IDC customer Exception occurred. Cannot download the file. Message: «+»
    idcce.getMessage () + ", the stack trace:");
    idcce.printStackTrace ();
    } catch (IOException ioe) {}
    System.out.println ("IO Exception has occurred. Cannot download the file. Message: «+»
    ioe.getMessage () + ", the stack trace:");
    ioe.printStackTrace ();
    } catch (Exception e) {}
    System.out.println ("Exception occurred. Cannot download the file. Message: «+»
    e.getMessage () + ", the stack trace:");
    e.printStackTrace ();
    } {Finally
    If (param.getServiceResponse ()! = null) {}
    param.getServiceResponse (m:System.NET.Sockets.Socket.close ());
    }
    If (fileStream
    ! = null) {}try {}fileStream.close ();} catch (Exception e) {}e.printStackTrace ();}}}

    Returns a null value.

    }

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

    Second: I used this method, but it did not work also

    public String uploadFile() {}
    try {}
    String inputFile1 ="";
    UF UploadedFile = (UploadedFile) inputFile1.getValue ();
    String filePath="C:\\Setup\\mmm.txt; »
    InputStream fileStream = null;
    try {fileStream = new FileInputStream (filePath) ;} catch (FileNotFoundException e) {}}
    String [] fileTitle = filePath.split("/");
    long fileLength = new File (filePath) .length ();

    //DataBinder Binder = IdcClient.crea
    param.getBinder (.putLocal (CMConstants.CM_SERVICE_NAME),
    CMConstants.CM_CHECKIN);
    param.getBinder () .putLocal ("dDocAuthor",
    "weblogic"); If the user is admin, can specify any user
    param.getBinder () .putLocal ("dDocTitle", "titleee");
    param.getBinder () .putLocal ("dDocName", "nameee");
    param.getBinder () .putLocal ("dDocType", "DigitalMedia");
    param.getBinder () .putLocal ("xCollectionID",
    getFolderIdFromPath ("/ files/11 Contribution")); parent folder
    param.getBinder () .putLocal ("dSecurityGroup", "Public");
    param.getBinder () .putLocal ("dDocAccount:", "");
    param.getBinder () .putLocal ("xComments", "Review of Montreal");
    param.getBinder () .putLocal ("xWCTags", "Montréal");

    param.getBinder () .addFile ("primaryFile",
    new TransferFile (fileStream, 'child',
    fileLength,
    "text/html"));
    ServiceResponse response =
    param.getIdcClient (.sendRequest (param.getIdcContext ()),
    param.getBinder ());

    } catch (Exception e) {}
    System.out.Print("");
    }

    Returns a null value.
    }

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

    Can someone tell me what's wrong? !

    Thank you

    This will definitely work

    package demo;
    
    import java.io.*;
    import oracle.stellent.ridc.*;
    import oracle.stellent.ridc.model.*;
    import oracle.stellent.ridc.protocol.*;
    import oracle.stellent.ridc.protocol.intradoc.*;
    import oracle.stellent.ridc.common.log.*;
    import oracle.stellent.ridc.model.serialize.*;
    import oracle.stellent.ridc.protocol.http.*;
    import java.util.List;
    
    /*
     * This is a class used to test the basic functionality
     * of submitting a checkin to Content Server using RIDC.
     */
    
    public class TestRIDCCheckin {
    
        public static void main(String[] args) {
            // Create a new IdcClientManager
            IdcClientManager manager = new IdcClientManager();
            try {
                // Create a new IdcClient Connection using idc protocol (i.e. socket connection to Content Server)
                IdcClient idcClient = manager.createClient("idc://localhost:4444");
                // Create new context using the 'sysadmin' user
                IdcContext userContext = new IdcContext("sysadmin");
                // Create an HdaBinderSerializer; this is not necessary, but it allows us to serialize the request and response data binders
                HdaBinderSerializer serializer = new HdaBinderSerializer("UTF-8", idcClient.getDataFactory());
    
                // Databinder for checkin request
                DataBinder dataBinder = idcClient.createBinder();
                dataBinder.putLocal("IdcService", "CHECKIN_UNIVERSAL");
                //dataBinder.putLocal("dDocName","TestRIDCCheckin");
                dataBinder.putLocal("dDocTitle", "Test RIDC Checkin");
                dataBinder.putLocal("dDocType", "Document");
                dataBinder.putLocal("dDocAccount", "");
                dataBinder.putLocal("dSecurityGroup", "Public");
                dataBinder.addFile("primaryFile", new File("c:/test.txt"));
    
                //dataBinder.putLocal("doFileCopy", "1");
    
                // Write the data binder for the request to stdout
                serializer.serializeBinder(System.out, dataBinder);
                // Send the request to Content Server
                ServiceResponse response = idcClient.sendRequest(userContext, dataBinder);
                // Get the data binder for the response from Content Server
                DataBinder responseData = response.getResponseAsBinder();
                // Write the response data binder to stdout
                serializer.serializeBinder(System.out, responseData);
    
            } catch (IdcClientException ice) {
                ice.printStackTrace();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            }
        }
    
    }
    
  • Impossible to update the Information contained in the University Complutense of MADRID 11.1.1.8

    Hello

    I'm unable to update content at the University Complutense of MADRID 11.1.1.8 information. the error is 'Impossible to update content' or '< abc_abc_2015_081763 >' Record the content ID must be specified

    In general the Configurations page, auto assign an ID of content to the consignment is selected and abc_abc_2015_ is provided.

    I don't know why its not allowing me to update information.

    Thank you

    Hello

    The problem is solved, said dDocName and make hid in profile.

    Thank you.

  • See the news feed from the University Complutense of MADRID to the Webcenter Portal

    Hello

    I'm new to AAU and Webcenter portal technology. I have a requirement to display the contents of RSS feeds which is kept at the Complutense University of MADRID and to display in a webcenter portal.
    Please guide me on how can I achieve this. What all the technology that I use.

    Sahar

    Hello Sahar,

    There are at least two options:

    (1) query metadata (UCM) and host content (PGC)
    (2) RSS feed component (UCM) and RSS task Flow (WCP)

    Ad 1) take a look at this tutorial: http://www.yonaweb.be/webcenter_tutorial/using_content_presenter_templates

    In a Word, your 'news' can be any content stored in the University Complutense of MADRID, defined by its metadata. To view it, you can create a template according to your needs.

    AD 2) could not work any longer.

    The idea is to use get news RSS FEEDS and display them. As part of the WCP, there will be no problem - for more details, see http://docs.oracle.com/cd/E23943_01/webcenter.1111/e10149/rss.htm#WCSUG1384
    I don't know, however, for the part of the Complutense University of MADRID. There used to be a component that has enabled the sharing of content as RSS feeds. The component is available at http://www.oracle.com/technetwork/middleware/webcenter/content/rssfeeds-129386.zip
    Unfortunately, it seems in 11g were dropped (I could find no reference to this in the docs of 11g), however, it might still work - see the discussion in the activation of the RSS FEED at the Complutense University of MADRID

    If you want to go this way, you will need to test / fix it yourself.

    Jiri

  • Authentication and authorization JPSUserProvider at the University Complutense of MADRID 11g

    Hello

    Can someone direct me on where I can find more information on JPSUserProvider. Documentation of the Complutense University of MADRID just mentions that JPSUserProvider is configured in the UCM by default and used for authentication, the authorization. In another document that it is mentioned that UCM 11 g has nothing to do with the authentication of the user, all the authentication will be supported by Weblogic and SSO must be configured against weblogic. If SSO is configured and an external LDAP is used as a user store in weblogic, I need to make changes to the AAU? I want to know the role JSPUserProvider plays in the University Complutense of MADRID and the series of events that take place after the user enters the credentials to < Server >: < port > / cs/login/login.htm.
    Any help in pointing the right resources is appreciated.

    Thank you
    Shyam

    Sometimes, you don't have no need to make changes, but other times, you may need to update the map attribute, the delimiter of account permissions, default roles and/or accounts. Occasionally, an ID card is applied to translate incoming AD group names to match the role names and/or account UCM.

    Meet real external LDAP permissions is made via the WLS, but the JPSProvider does the work of extracting data from WLS in object UserData of the AAU.

    -ryan

  • Migrate the contents of the AAU 10 g at the University Complutense of MADRID 11 g

    Hello

    I'm a newbie in the Complutense University of MADRID and is involved in an internal project as a consultant. For the moment, I am facing following 2 questions:

    1. How can import the structure of UCM 10 records g at the University Complutense of MADRID 11 g (11.1.1.5.0)? Is there an automated way to do this?
    2. How can migrate the contents of the AAU 10 g at the University Complutense of MADRID 11 g (11.1.1.5.0)? Is there an automated in this way?

    Can you please suggest any documentation on above or would be happy if you could share your knowledge about it. Can you tell me if there are traps or how to do the above, I must avoid.

    I googled for hours to find info on the issue of migration. I found this document:
    http://download.Oracle.com/docs/CD/E22203_01/ doc.31 /e20664/chapter_13.htm

    and this thread:
    Data migration from ucm10gR3 to ecm 11 GR 1 material: 11.1.1.5.0

    I need a more progressive direction.

    Appreciate all the help I can get :)

    Hello

    These are the 2 sql queries that you must run on schema UCM to be able to use the Stand Alone on UCM 11 g cmdlets:

    update users set dpasswordencoding = "where dname as 'sysadmin ';

    update users set dpassword = "idc" where dname like 'sysadmin ';

    After this connection for applets on ucm 11g.

    Thank you
    Srinath

  • WebCenter, University Complutense of MADRID and Dev J problem

    Running WIn 2008 Server 64-bit database 11 G, Jdev 11.1.5, Webcenter PS3 with the AAU.

    I am following the tutorial for developer of WC:

    http://docs.Oracle.com/CD/E21764_01/WebCenter.1111/e10273/createconnect.htm#BGBDDHAA


    I received the extent Chapter 6. I was able to create the repository connection according to the following:

    RIDC Type of Socket: socket
    The server host name: localhost
    Content Server listening Port: 4444

    current Jdev session IDs:

    user name: wc_admin PW: *.

    The connection created successfully, but when trying to open the folder of the University Complutense of MADRID on the Application's resources, J Dev up a 'serious error Exception' and stops / crashes. The error of the stack as follows:


    EC 30, 2011 05:03:33 oracle.stellent.jcr.IdcPersistenceManager listFolder
    SEVERE: Could not the content list of the folder with the ID = dCollectionID:-1
    oracle.stellent.ridc.protocol.ServiceException: no service defined for COLLECTION_DISPLAY.
    at oracle.stellent.ridc.protocol.ServiceResponse.getResponseAsBinder(ServiceResponse.java:135)
    at oracle.stellent.ridc.protocol.ServiceResponse.getResponseAsBinder(ServiceResponse.java:107)
    at oracle.stellent.jcr.IdcPersistenceManager.listFolder(IdcPersistenceManager.java:677)
    at oracle.stellent.jcr.IdcPersistenceManager.getChildResources(IdcPersistenceManager.java:635)
    at oracle.jcr.impl.TransientLayer.getChildResources(TransientLayer.java:534)
    at oracle.jcr.impl.FolderNode.getNodes(FolderNode.java:116)
    at oracle.webcenter.content.internal.model.rc.JCRRepositoryLogic.listFolder(JCRRepositoryLogic.java:233)
    at oracle.webcenter.content.internal.model.rc.ContentDirContext.listInternal(ContentDirContext.java:326)
    at oracle.webcenter.content.internal.model.rc.ContentDirContext.listBindings(ContentDirContext.java:303)
    at oracle.webcenter.content.internal.model.rc.ContentDirContext.listBindings(ContentDirContext.java:297)
    at oracle.jdeveloper.rescat2.nodes.RepositoryRootNode.loadCache(RepositoryRootNode.java:143)
    to oracle.jdeveloper.rescat2.nodes.ExtendedGenericNode$ 1.run(ExtendedGenericNode.java:296)
    at java.lang.Thread.run(Thread.java:662)

    oracle.stellent.ridc.protocol.ServiceException: no service defined for COLLECTION_DISPLAY.
    o.stellent.ridc.protocol.ServiceResponse.getResponseAsBinder(ServiceResponse.java:135)
    o.stellent.ridc.protocol.ServiceResponse.getResponseAsBinder(ServiceResponse.java:107)
    o.stellent.jcr.IdcPersistenceManager.listFolder(IdcPersistenceManager.java:677)
    o.stellent.jcr.IdcPersistenceManager.getChildResources(IdcPersistenceManager.java:635)
    o.jcr.impl.TransientLayer.getChildResources(TransientLayer.java:534)
    o.jcr.impl.FolderNode.getNodes(FolderNode.java:116)
    o.webcenter.content.internal.model.rc.JCRRepositoryLogic.listFolder(JCRRepositoryLogic.java:233)
    o.webcenter.content.internal.model.rc.ContentDirContext.listInternal(ContentDirContext.java:326)
    o.webcenter.content.internal.model.rc.ContentDirContext.listBindings(ContentDirContext.java:303)
    o.webcenter.content.internal.model.rc.ContentDirContext.listBindings(ContentDirContext.java:297)
    o.j.rescat2.Nodes.RepositoryRootNode.loadCache(RepositoryRootNode.Java:143)
    o.j.rescat2.nodes.ExtendedGenericNode$ 1.Run(ExtendedGenericNode.Java:296)
    j.lang.Thread.run(Thread.java:662)


    I also looked at the file of diagnosis of the server of the University Complutense of MADRID, and there is only one entry for this error which is:

    [2011 12-30 T 04: 57:59.749 - 08:00] [UCM_server1] [ERROR] [CMU-CS-000001] [oracle.ucm.idccs] [tid: [ASSETS].] [ExecuteThread: '2' for the queue: "(self-adjusting) weblogic.kernel.Default"] [ecid: 0000JIF35v57q225zrt1iW1EzB1B000080, 0] [APP: Oracle Universal Content Management - Content Server] general exception



    Any ideas as to why this might be happening are highly appreciated. One possibility is that after successful installation and configuration, the AAU console displays the following alert:

    Draw the attention of

    •The weblayout directory is located on a file system with 8point3 semantic. Legacy filenames 16 bits 8point3 into conflict with revision labels and cause the loss of files. Disables the semantics of 8point3 by running "Installer DisableNtfs8dot3" and then restarting Windows


    Could it be the Dev J cause crashing?


    Thanks, J

    Published by: Jay on December 30, 2011 05:15

    Hello

    You have the component Folders_g enabled on the server of the University Complutense of MADRID? I guess that this is not the following error message:

    No service defined for COLLECTION_DISPLAY

    Access the administration server and then check the Radio for Folders_g and Submit button. Restart the server of the University Complutense of MADRID and once it is running, and then test to see if the problem still persists.

    Thank you
    Srinath

  • University Complutense of MADRID are integrated with BPM

    Hi Expert,

    I have question, Oracle UCM integrate BPM, it should install WebCenter?
    I need document to install and integrate an application 2.

    Thank you for your knowledge.

    BPM installation does not need to be present webcenter, correct me if I'm wrong.

    In general, you are right. However, the question is what is meant by "BPM". There are two products that could fit: BPEL Process Manager and BPM Suite (containing the BPM, originally acquired from a company called Fuego ex-BEA).

    BPEL PM is contained in the license of the Complutense University of MADRID (in fact, it has restricted the licence - restriction is defined as that process might call services of the University Complutense of MADRID). It is IDE is JDeveloper (for the design and implementation of the process). You can also benefit from Enterprise Manager and WebCenter - it has several useful components, such as the list of tasks. However, you can write your own. Therefore, simply using BPEL PM isn't enough business justification for WebCenter, including in the proposal.

    BPM Suite 11 g has been completely re-written, and I think that it contains somehow WebCenter. However, it is incorporated in the product itself. Therefore, no additional license is required.

    With regard to documentation for integration wc with the link of the Complutense University of MADRID is: http://download.oracle.com/docs/cd/E17904_01/install.1111/e12001/webcenterservice_install.htm#CACECHII

    In fact, I think the question was about UCM BPM, Complutense University of MADRID and not WebCenter integration. A useful link is this: http://download.oracle.com/docs/cd/E17904_01/doc.1111/e16759/toc.htm

    Nevertheless, "the integration of BPM and all other product" (incl. UCM) usually means that the process designed by BPM called webservices of the product. Therefore, you must:
    http://download.Oracle.com/docs/CD/E17904_01/doc.1111/e11011/toc.htm
    and
    http://download.Oracle.com/docs/CD/E17904_01/doc.1111/e10807/c12_web_services.htm#CHDDIJJB or http://download.oracle.com/docs/cd/E17904_01/doc.1111/e10807/a01_wsdl_and_soap.htm#sthref1831

  • University Complutense of MADRID and Weblogic users, groups, roles, and permissions

    Hello

    I could not get the AAU to honour the permissions of the user defined in Weblogic. Here's what I do:

    1. create a Weblogic group called "contributor".

    2 create a role in the UMC called "contributor" with permissions of read/write on the PUBLIC group

    3. Add a user in Weblogic called "testuser" and make him a member of the employee group

    4. connect to the Complutense University of MADRID as a "testuser".

    5 testuser has only the permissions "guest."

    UCM is NOT honoring the contributor of Weblogic group membership. The documentation says if I create a Weblogic group with exactly the same name as being instrumental in the University Complutense of MADRID, the permissions should be granted properly but I didn't actually work.

    Someone saw this? I would supremely, manage users and authorization in a unique place with a minimum of fuss.

    Thank you! -JDM

    Hello

    Stop the server of the University Complutense of MADRID managed and the WLS server.

    Start the WLS server, wait until it starts completely, and then start the server from the Complutense University of MADRID.

    After this test to see if the issue still persists.

    Thank you
    Srinath

  • Personalized service at the University Complutense of MADRID 11g - can't find correct .jar files

    Hello

    I'm migrating some personalized services I created in gr 10, 3 in the new 11 g platform. The services contain some java methods custom that I was upgrading from the previous version by using the server\shared\classes\server.zip package.

    It seems that the structure of the new UCM has somewhat changed - I found a package of 11g to ucm\cs\weblayout\common\idcapplet.jar which seems to contain some of the classes, but not all. Specifically, it doesn't have the packs of intradoc.server or intadoc.provider I need to expand the classes of Service and ServiceHandler.

    Does anyone know where these packages are kept in 11g, or if they even still exist in the new architecture?

    Sorry if I missed some information key, do not hesitate to ask. Thanks in advance!

    Hey,.

    idcserver.jar is indeed the correct file. You can find it at %MIDDLEWARE_HOME%/Oracle_ECM1/ucm/idc/jlib/

    Hope that helps,
    Andy Weaver - Senior Consultant software
    Fishbowl Solutions< http://www.fishbowlsolutions.com?wt.mc_id="L_Oracle_Consulting_amw_OTN_ECM">

  • Document is always displayed on the console of the University Complutense of MADRID, even once it is checked by "archiving". Why?

    I have archived the documents by using the "Check in" present in the Administration Panel. Even after having obtained archived documents are always be displayed if searched on the console of the ECM and their status is displayed as "liberated." That's why it would be even shown in the portal.

    The main objective is to empty space by archiving the content so that the space can still be used.

    Why is it shown? Y at - it another way to archive so that it doesn't get displayed if searched in the console of the Complutense University of MADRID and he leaves the space by getting archived?

    Just to eliminate the obvious, when you start Actions - export... There's an option: "remove the revisions after archive successful". It has been verified? And if so, successful export has?

  • Storage of session at the University Complutense of MADRID 11g

    Hello Experts,

    Happy new year to you all.

    Are there any storage of session UCM 11 g? How can I access it?

    I need to store data and who should be saved during the session of the user?

    Y at - it something like the scope of session?

    I don't want session cookies. Because it is limited in size.

    Best regards

    Tapas

    Tapas,.

    Take a look at SharedObjects discussed in this thread: custom - component how to keep the object of properties java in the environment of the Complutense University of Madrid

    intradoc. Shared can also contain other classes that may be more practical for your needs.

    Jiri

  • Arrange the search results in the server of the University Complutense of Madrid?

    Hi all

    Oracle ucm-text search if I search a specific text like 'my text' and 'my text' text already exists in several documents I want to arrange the search results according to the number of repeating in each document text. and if the text existing in more than ten documents I want to show the top five only.

    Is this possible in oracle ucm.

    Thank you

    The latter is easy - check for the parameter ResultCount service (see, for example, https://blogs.oracle.com/interactions/entry/ucm_get_search_results_with_full_text_search)

    The first - not sure about that. I'll try to find something and come back.

    OK - as well as in the first case, check:

    https://blogs.Oracle.com/Kyle/entry/adjusting_the_score_on_oracle and/or http://www.fishbowlsolutions.com/fishbowl/groups/public/documents/white_papers/042831.pdf (chapter on relevance ranking)

  • How to assign the value "ID or content dDocName" (property of the University Complutense of MADRID) Webcenter capture.

    Hello

    Could you please help me for the script for extracting Webcenter UCMS property in Webcenter Capture. I also have a requirement where I need to assign a value to the UCM property ' dDocName or content ID "of the capture of webcenter.

    Someone please help me with above scenarios.

    Hello

    Thanks for the reply. My requirement is, when check-in file to the AAU, it generates values to the property "docId" for the file that is unique. I need the value of the docId during validation webcenter capture processor. I solved this problem.

    I created a filter in the AAU for archiving profile. This filter is triggered whenever the Service factor of the AAU invoke. In this filter, I can get the value of "docID".

    Thank you.

  • How to disable 'Quick search' at the University Complutense of MADRID 10g for users in bulk

    Hi friends,

    We use the AAU 10 g and there are 1,000 users to use it. There are millions of records in the server and users tend to use the wildcard searches in the 'Quick search' option on the homepage.

    There is only one way, we can disable the quick search.

    (1) first, the layout SHOULD be classic. To make a layout by default for all users, the config.cfg goto file and edit it with entry below.

    DisableAmberLayouts = true - this will change all users to the classic layout.

    (2) goto user profile and click on "design portal for XXX (username).

    (3) uncheck the quick search option.

    -My question is, how to realize for all whithout users asking them to perform steps 2 and 3.

    Y at - it no service call, we can do?

    Looking forward to your response.

    Thank you

    Srikanth

    controlledQuery = 1 turns off quick search on 11g...

    try to add the URL parameter and see if it works in 10g more

Maybe you are looking for

  • Updated from Apple x download speed

    I tried to update my iPhone a month 6 this morning (because iTunes told me that it was a new version of the iOS).  I chose to download and I got an estimate of 38 minutes.  After about 15 minutes, I was up to about half of the remaining files and 21

  • Analog drivers for HP products

    I just bought a port plug 15 pin to USB cable in order to exploit my CH Products yoke and pedals on my new computer, which does not have a game port.  In using this I guess I'll have to use the analog drivers of HP Products.  They are compatible or w

  • T400 stops when connecting VGA monitor

    My T400 stops instantly when I I plug my monitor (Dell WA2209). If I shut down the computer and then try to start the computer with the monitor plugged, the computer shuts down almost instantly after I pressed the power button.  In each case, I have

  • BlackBerry Z10 problem with reception and to make a call after updating to OS.

    I just updated my Z10 STL100-3 model with the new operating system 10.3.2.2168. Now, I can not answer incoming calls. The phone rings, but there is no screen to answer or reject the call. I am also unable to unlock while the phone is ringing. Once th

  • E-mail has attachments in PDF

    Emails from PDF attachments but then right-click to open - a screen of wordpad comes with a lot of rubbish They advised me to install Adobe reader, but I already have the latest version X 1 How can I correct what I am running Windows 7 on a new PC