Central Configuration manager only few contents are coming

Hello,
I have installed BO XI 3.1.
I have installed freshly & i am facing some problems in Central configuration manager .
In Central Configuration manager only few contents like :
Apche Tomcat 5.5.2.0
OracleOraHome92HTTPServer
WinHTTP Web Proxy Auto-Detective Service
World Wide Web Publishing Service
are coming rest all are not coming , can anyone help me to resolve this issue.
Thanks
Priyanka

Hello Priyanka,
I think you are looking for the server list.
With BOE R3 and the introduction of the SIA the servers are managed be the SIA.
If you need to see the serverlist go to the CMC or clicl in enable/disable server.
I recommend to post further queries to the [BusinessObjects Enterprise Administration|BI Platform; forum.
This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
It is monitored by qualified technicians and you will get a faster response there.
Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
Best regards,
Falk

Similar Messages

  • In Central Configuration manager only few contents are coming

    Hello,
    I have installed BO XI 3.1.
    I have installed freshly & i am facing some problems in Central configuration manager .
    In Central Configuration manager only few contents like :
    Apche Tomcat 5.5.2.0
    OracleOraHome92HTTPServer
    WinHTTP Web Proxy Auto-Detective Service
    World Wide Web Publishing Service
    are coming rest all are not coming , can anyone help me to resolve this issue.
    Thanks
    Priyanka

    Hello Priyanka,
    I think you are looking for the server list.
    With BOE R3 and the introduction of the SIA the servers are managed be the SIA.
    If you need to see the serverlist go to the CMC or clicl in enable/disable server.
    I recommend to post further queries to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Central Configuration Manager

    Hello,
    I have downloaded Crystal Server 2008 for evaluation & if it does what we want we will purchase it. I'm having difficulty getting it operational. I've noticed in some documentation (dont know specific as I have looked at so much and have been pressed with other duties) that you are supposed to be able to manipulate CMC via the Central Configuration Manager, but I only see the Apache Tomcat 5.5.20 & the Server Intelligence Agent. On our previous crystal server the CCM displayed way more than the two mentioned. Should I be able to access the CMC via the Central Configuration Manager? If so, should I remove crystal server 2008 and reinstall.
    I know I haven't provided much detail, but I just wanted to know if the CMC should show in CCM.
    Any insight would be greatly appreciated. I normally just create & administer reports. This is my first time installing anything that is not done by just clicking install.
    Thanks-

    What you see in CCM is correct. To access CMC you need to open your Browser and go to http://servername:port/CmcApp
    servername is the name of the server where you have installed CR 2008 and port is the port you set your Application server to (Tomcat by default has 8080)

  • Only 274 mails are coming when using pop3 with java mail

    Only 274 mails are coming from GMAIL when using pop3 with java mail. but there are more than 3000 mails.
    I'm not getting the reason, code is given below:
    public static void main(String[] args) {
            // SUBSTITUTE YOUR ISP's POP3 SERVER HERE!!!
    //        String host = "pop.bizmail.yahoo.com";
    //        final String user = "[email protected]";
    //        final String password = "xxx";
            String host = "pop.gmail.com";
            final String user = "gauravjlj";
            final String password = "xxx";
            String subjectSubstringToSearch = "Test E-Mail through Java";
            try {
                 Properties prop = new Properties();
                prop.setProperty("mail.pop3.socketFactory.class",
                                            "javax.net.ssl.SSLSocketFactory");
                prop.setProperty("mail.pop3.socketFactory.fallback", "false");
                prop.setProperty("mail.pop3.port", "995");
                prop.setProperty("mail.pop3.socketFactory.port", "995");
                prop.put("mail.pop3.host", host);
                prop.put("mail.store.protocol", "pop3");
                Session session = Session.getDefaultInstance(prop);
                Store store = session.getStore();
                System.out.println("your ID is : "+ user);
                System.out.println("Connecting...");
                store.connect(host, user, password);
                System.out.println("Connected...");
                // Get "INBOX"
                Folder fldr = store.getFolder("INBOX");
                fldr.open(Folder.READ_ONLY);
                int count = fldr.getMessageCount();
                System.out.println(count  + " total messages");
                // Message numebers start at 1
                for(int i = 1; i <= count; i++) {
                                            // Get  a message by its sequence number
                    Message m = fldr.getMessage(i);
                    // Get some headers
                    Date date = m.getSentDate();
                    Address [] from = m.getFrom();
                    String subj = m.getSubject();
                    String mimeType = m.getContentType();
                    System.out.println(date + "\t" + from[0] + "\t" +
                                        subj + "\t" + mimeType);
                // Search for e-mails by some subject substring
                String pattern = subjectSubstringToSearch;
                SubjectTerm st = new SubjectTerm(pattern);
                // Get some message references
                Message [] found = fldr.search(st);
                System.out.println(found.length +
                                    " messages matched Subject pattern \"" +
                                    pattern + "\"");
                for (int i = 0; i < found.length; i++) {
                    Message m = found;
    // Get some headers
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
    System.out.println(date + "\t" + from[0] + "\t" +
    subj + "\t" + mimeType);
    Object o = m.getContent();
    if (o instanceof String) {
    System.out.println("**This is a String Message**");
    System.out.println((String)o);
    else if (o instanceof Multipart) {
    System.out.print("**This is a Multipart Message. ");
    Multipart mp = (Multipart)o;
    int count3 = mp.getCount();
    System.out.println("It has " + count3 +
    " BodyParts in it**");
    for (int j = 0; j < count3; j++) {
    // Part are numbered starting at 0
    BodyPart b = mp.getBodyPart(j);
    String mimeType2 = b.getContentType();
    System.out.println( "BodyPart " + (j + 1) +
    " is of MimeType " + mimeType);
    Object o2 = b.getContent();
    if (o2 instanceof String) {
    System.out.println("**This is a String BodyPart**");
    System.out.println((String)o2);
    else if (o2 instanceof Multipart) {
    System.out.print(
    "**This BodyPart is a nested Multipart. ");
    Multipart mp2 = (Multipart)o2;
    int count2 = mp2.getCount();
    System.out.println("It has " + count2 +
    "further BodyParts in it**");
    else if (o2 instanceof InputStream) {
    System.out.println(
    "**This is an InputStream BodyPart**");
    } //End of for
    else if (o instanceof InputStream) {
    System.out.println("**This is an InputStream message**");
    InputStream is = (InputStream)o;
    // Assumes character content (not binary images)
    int c;
    while ((c = is.read()) != -1) {
    System.out.write(c);
    // Uncomment to set "delete" flag on the message
    //m.setFlag(Flags.Flag.DELETED,true);
    } //End of for
    // "true" actually deletes flagged messages from folder
    fldr.close(true);
    store.close();
    catch (MessagingException mex) {
    // Prints all nested (chained) exceptions as well
    mex.printStackTrace();
    catch (IOException ioex) {
    ioex.printStackTrace();
    Please tell me.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Is it possible that GMail only allows access to untagged emails via POP3? Or only to emails from the last x days?
    POP3 is the older email retrieval protocol (IMAP4 is the more current one) and only has very limited support for folders (or anything but a single inbox, really). It's quite common that POP3 only allows access to a subset of all emails stored by a provider.

  • Error by opening the Central configuration manager

    Hi Gurus,
    i have a problem with my system.
    I installed Enteprise XI 3.0, Crystal, CR, Xcelsius.
    By trying to install Live office i receive an error.
    I open the Central configuration manager and received this:" The procedure entry pint? Can stack Dump@SLogger@CXLib400@SA_NXZ could not be located in the dynamic link library CXLIBW-4-0.dll"
    I can´t start nor stop in CCM.
    Do you have any solution?
    Thank you for your input.
    Pat

    Hello Gilo,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Refreshing only portal content area and not the naviagtion area.

    Hello all,
              I want to refresh only portal content area without refreshing the navigation contents.
       Eg;- When i click on the any document present in the REPORTS folder in Detailed Navigation Area only the portal contents should get refreshed.

    Links on DTN?Are they on a custom Iview?? Then u control with url mode.
    If they are page links, i don think u cud restrict one WD application not to refresh when the whole page getz refreshed.
    <b>Plz don forget points, if it helped.</b>
    Regards,
    P.

  • HT201269 Hi, I have 227 songs in my itunes, when im trying to get them to new iphone 5s-only 66 songs are coming, memory is not full, any helpfull tips pls?

    Hi, I have 227 songs in my itunes, when im trying to get them to new iphone 5s-only 66 songs are coming, memory is not full, any helpfull tips pls?Thnx

    I should mention that, for the first problem, I do make sure that my new tracks are stored in the folder where I told iTunes that my music is in. Also, when I say the cataloging of my library stops short of cataloging all my songs, I have tried leaving the computer unattended for days (my computer's sleep mode is disabled). It always stops before cataloging all of my music regardless of whether I am doing something else while iTunes is cataloging, or if I just let iTunes be the only program that's open during the cataloging process.

  • Images present in datagridview not exporting to file only text contents are generating into PDF file..

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M
    Hello,
    Since this issue is mainly related to iTextSharp which belongs to third-party, I would recommend you consider posting this issue on its support website to get help.
    Maybe the following forum will help.
    http://support.itextpdf.com/forum/26
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Windows Updates not showing in Configuration Manager but Endpoint updates are working

    I have an issue which I have found whilst creating ADR's.  I currently have an Endpoint ADR Set up and working and tried to set up a Windows 7 update ADR but cannot get Configuration Manager to locate any updates, I even change properties to just select
    the product 'Windows 7' but when pressing preview I still get no results.
    This is the output from ruleengine.log when I try to run the rule.
    Found notification file C:\Program Files\Microsoft Configuration Manager\inboxes\RuleEngine.box\4.RUL
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    RuleSchedulerThred: Change in Rules Object Signalled.
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3844 (0x0F04)
    Refreshed ScheduleList instance for Rule (1) from schedule string (0153BB0000100100) with next occurence (19/11/2014 12:00:00)
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3844 (0x0F04)
    Refreshed ScheduleList instance for Rule (4) from schedule string (5173BB0000100008) with next occurence (20/11/2014 11:20:00)
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3844 (0x0F04)
    FindNextEventTime found next event for RuleID 1 as :19/11/2014 12:00:00
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3844 (0x0F04)
    RuleEngine: Got next rule execution time successfully. Next event is in  30 minutes
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3844 (0x0F04)
    Sleeping for 15 minutes SMS_RULE_ENGINE
    19/11/2014 11:29:20 3844 (0x0F04)
    Constructing Rule 4 using Auto Deployment Rule Factory
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
        Populating Rule Skeleton SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
        Populating Criterion Skeleton
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
        Populating Action Skeleton SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
        Populating Action Skeleton SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    CRuleHandler: Need to Process 1 rules SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    CRuleHandler: Processing Rule with ID:4, Name:Windows 7 Client Update Deployment Rule.
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    Evaluating Update Criteria for AutoDeployment Rule 4
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
      Evaluating Update Criteria... SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
        Rule Criteria is: <UpdateXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Name="SMS_SoftwareUpdate" LocaleId="1033"><UpdateXMLDescriptionItems><UpdateXMLDescriptionItem
    PropertyName="BulletinID" UIPropertyName=""><MatchRules><string>MS</string></MatchRules></UpdateXMLDescriptionItem><UpdateXMLDescriptionItem PropertyName="DateRevised" UIPropertyName=""><MatchRules><string>1:0:0:0</string></MatchRules></UpdateXMLDescriptionItem><UpdateXMLDescriptionItem
    PropertyName="_Product" UIPropertyName=""><MatchRules><string>'Product:bfe5b177-a086-47a0-b102-097e4fa1f807'</string></MatchRules></UpdateXMLDescriptionItem><UpdateXMLDescriptionItem PropertyName="IsSuperseded"
    UIPropertyName=""><MatchRules><string>false</string></MatchRules></UpdateXMLDescriptionItem></UpdateXMLDescriptionItems></UpdateXML>
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
          Inserting PropertyName:BulletinID, PropertyValue:MS
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
          Inserting PropertyName:DateRevised, PropertyValue:1:0:0:0
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
          Inserting PropertyName:_Product, PropertyValue:'Product:bfe5b177-a086-47a0-b102-097e4fa1f807'
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
          Inserting PropertyName:IsSuperseded, PropertyValue:false
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
        Query to run is: select CI_ID from dbo.fn_ListUpdateCIs(1033) ci~where IsExpired=0~  and (BulletinID like N'%MS%')~  and (DateRevised>=N'2013-11-19 11:29:20')~  and (IsSuperseded=0)~  and (CI_ID in (select CI_ID from v_CICategories_All
    where CategoryInstance_UniqueID in (N'Product:bfe5b177-a086-47a0-b102-097e4fa1f807')))
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
      Rule resulted in a total of 0 updates
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
      Evaluation Resultant XML is: <EvaluationResultXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><CI_IDs></CI_IDs> </EvaluationResultXML>
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    Enforcing Content Download Action SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    Download Rule Action XML is: <ContentActionXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><PackageID>NC20000A</PackageID><ContentLocales><Locale>Locale:9</Locale><Locale>Locale:0</Locale></ContentLocales><ContentSources><Source
    Name="Internet" Order="1"/><Source Name="WSUS" Order="2"/><Source Name="UNC" Order="3" Location=""/></ContentSources></ContentActionXML>
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    Criteria Filter Result XML is: <EvaluationResultXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><CI_IDs></CI_IDs> </EvaluationResultXML>
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    0 update(s) need to be downloaded in package "NC20000A" (\\SCCM2012R2\UpdateServicesPackages\Updates\Windows 7 Updates)
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    List of update(s) which match the content rule criteria = {}
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    No new update was added to the package. Package "NC20000A" would not be updated.
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    Download action completed for the AutoDeployment
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    Enforcing Create Deployment Action SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
      Create Deployment Rule Action XML is: <DeploymentCreationActionXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><CollectionId>NC20000C</CollectionId><IncludeSub>true</IncludeSub><Utc>false</Utc><Duration>7</Duration><DurationUnits>Days</DurationUnits><AvailableDeltaDuration>0</AvailableDeltaDuration><AvailableDeltaDurationUnits>Hours</AvailableDeltaDurationUnits><SuppressServers>Checked</SuppressServers><SuppressWorkstations>Unchecked</SuppressWorkstations><PersistOnWriteFilterDevices>Unchecked</PersistOnWriteFilterDevices><AllowRestart>false</AllowRestart><DisableMomAlert>true</DisableMomAlert><GenerateMomAlert>false</GenerateMomAlert><UseRemoteDP>true</UseRemoteDP><UseUnprotectedDP>true</UseUnprotectedDP><UseBranchCache>true</UseBranchCache><EnableDeployment>true</EnableDeployment><EnableWakeOnLan>false</EnableWakeOnLan><AllowDownloadOutSW>false</AllowDownloadOutSW><AllowInstallOutSW>false</AllowInstallOutSW><EnableAlert>true</EnableAlert><AlertThresholdPercentage>90</AlertThresholdPercentage><AlertDuration>7</AlertDuration><AlertDurationUnits>Days</AlertDurationUnits><EnableNAPEnforcement>false</EnableNAPEnforcement><UserNotificationOption>HideAll</UserNotificationOption><LimitStateMessageVerbosity>true</LimitStateMessageVerbosity><StateMessageVerbosity>1</StateMessageVerbosity><AllowWUMU>false</AllowWUMU><AllowUseMeteredNetwork>false</AllowUseMeteredNetwork></DeploymentCreationActionXML>
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
      Rule XML is: <AutoDeploymentRule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><DeploymentName>Windows 7 Client Update Deployment Rule</DeploymentName><DeploymentDescription/><LocaleId>1033</LocaleId><UseSameDeployment>false</UseSameDeployment><EnableAfterCreate>true</EnableAfterCreate><NoEULAUpdates>false</NoEULAUpdates><AlignWithSyncSchedule>false</AlignWithSyncSchedule><ScopeIDs><ScopeID>NC200001</ScopeID><ScopeID>SMS00UNA</ScopeID></ScopeIDs></AutoDeploymentRule>
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
      Criteria Filter Result XML is: <AutoDeploymentRule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><DeploymentName>Windows 7 Client Update Deployment Rule</DeploymentName><DeploymentDescription/><LocaleId>1033</LocaleId><UseSameDeployment>false</UseSameDeployment><EnableAfterCreate>true</EnableAfterCreate><NoEULAUpdates>false</NoEULAUpdates><AlignWithSyncSchedule>false</AlignWithSyncSchedule><ScopeIDs><ScopeID>NC200001</ScopeID><ScopeID>SMS00UNA</ScopeID></ScopeIDs></AutoDeploymentRule>
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
        Parsing Deployment Action XML...
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
        Parsing Rule XML... SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    Could not find element DeploymentId SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    Could not find element UpdateGroupId SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    Could not find element UpdateGroupName SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    The rule resulted in no updates being found. Skip deployment creation or update...
    SMS_RULE_ENGINE 19/11/2014 11:29:20
    3840 (0x0F00)
    CRuleHandler: Rule 4 Successfully Applied! SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    CRuleHandler: ResetRulesAndCleanUp() SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    Updated Success Information for Rule: 4 SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    CRuleHandler: Deleting Rule 4 SMS_RULE_ENGINE
    19/11/2014 11:29:20 3840 (0x0F00)
    I am a bit stumped with this so if anyone can help I would be grateful.
    Thanks
    Paul

    Just seen wsyncmgr is busy syncing updates so actually I think I need more patience :-)
    That's always a good idea when using ConfigMgr ...
    Torsten Meringer | http://www.mssccmfaq.de

  • Navigation  should be limited only to content area

    Hello,
    I am importing roles from ECC into the portal.
    The transactions are getting displayed in the content area of the portal.
    However I would like to  traverse forward and backward only for the content displayed in the content area.
    Likewise I would also like to display a save button in the masthead (or in the page title bar) so that the transactions displayed in the content area get saved using the button in the masthead , instead of using the regular F3 +CtrlS.
    I would also prefer to have forward and backward buttons for traversal of content viz; transactions in the content area.
    Can anyone suggest me the possible alternatives to implement the above functionalities.
    Regards
    Pooja

    Please avoid posting the same question to different forums.
    Main thread and possible answers are / should go here: Navigation in page title bar

  • CISCO 3750X stacking for 5 switches , only 4 switches are coming in stack

    Dear All,
    I have 5 cisco 3750X switches ,but only 4 switches coming up 5 switches i am unable to see .
    Connection for the switch :Please find the attached snapshot for the stack data connection .
    Also find the snapshot for the stack power connection .
    Please provide your assistance and support to overcome this issue .

    Dear Marvin,
    Thanks for your reply.
    is my connection provided in attachment for data stack are ok .
    i login to Switch # 5 through console 
    following is the result :--
    switch: ?
               ? -- Present list of available commands
             arp -- Show arp table or arp-resolve an address
            boot -- Load and boot an executable image
             cat -- Concatenate (type) file(s)
            copy -- Copy a file
          delete -- Delete file(s)
             dir -- List files in directories
      flash_init -- Initialize flash filesystem(s)
          format -- Format a filesystem
            fsck -- Check filesystem consistency
            help -- Present list of available commands
          memory -- Present memory heap utilization information
        mgmt_clr -- clear management port statistics
       mgmt_init -- initialize management port
       mgmt_show -- show management port statistics
           mkdir -- Create dir(s)
            more -- Concatenate (display) file(s)
            ping -- Send ICMP ECHO_REQUEST packets to a network host
          rename -- Rename a file
           reset -- Reset the system
           rmdir -- Delete empty dir(s)
             set -- Set or display environment variables
          set_bs -- Set attributes on a boot sector filesystem
       set_param -- Set system parameters in flash
           sleep -- Pause (sleep) for a specified number of seconds
            type -- Concatenate (type) file(s)
           unset -- Unset one or more environment variables
         version -- Display boot loader version
    switch: version
    C3750E Boot Loader (C3750X-HBOOT-M) Version 12.2(58r)SE, RELEASE SOFTWARE (fc1)
    Compiled Tue 26-Apr-11 06:59 by abhakat
    switch: boot
    Loading "flash:/c3750e-universalk9-mz.122-58.SE2/c3750e-universalk9-mz.122-58.SE2.bin"...flash:/c3750e-universalk9-mz.122-58.SE2/c3750e-universalk9-mz.122-58.SE2.bin: no such file or directory
    Error loading "flash:/c3750e-universalk9-mz.122-58.SE2/c3750e-universalk9-mz.122-58.SE2.bin"
    Interrupt within 5 seconds to abort boot process.
    Boot process failed...
    switch:
    All other 4 switches i can see in stack but not these switches and also the status light for this switches is blinking green  please provide your assistance .

  • Manager Self Service Content are not showing up

    Hi all'
    when i m clicking on Manager Self Service in my portal i m getting following Run time error Please Help
    com.sap.xss.config.FPMConfigurationException: Read of object with ID portal_content/com.sap.pct/srvconfig/com.sap.pct.erp.srvconfig.mss/com.sap.pct.erp.srvconfig.ato/com.sap.pct.erp.srvconfig.fpmapplications/com.sap.pct.erp.srvconfig.attendanceoverview failed.
         at com.sap.xss.config.pcd.PcdObjectBroker.retrieveObjectInternal(PcdObjectBroker.java:127)
         at com.sap.xss.config.pcd.PcdObjectBroker.retrieveObject(PcdObjectBroker.java:51)
         at com.sap.xss.config.domain.PersistentObjectManager.retrieveObjectInternal(PersistentObjectManager.java:128)
         at com.sap.xss.config.domain.PersistentObjectManager.retrieveObject(PersistentObjectManager.java:91)
         at com.sap.xss.config.FPMRepository.retrieveObject(FPMRepository.java:39)
         at com.sap.pcuigp.xssutils.ccpcd.FcXssPcd.initializeConfiguration(FcXssPcd.java:852)
         at com.sap.pcuigp.xssutils.ccpcd.FcXssPcd.loadConfiguration(FcXssPcd.java:248)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalFcXssPcd.loadConfiguration(InternalFcXssPcd.java:178)
         at com.sap.pcuigp.xssutils.ccpcd.FcXssPcdInterface.loadConfiguration(FcXssPcdInterface.java:138)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalFcXssPcdInterface.loadConfiguration(InternalFcXssPcdInterface.java:148)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalFcXssPcdInterface$External.loadConfiguration(InternalFcXssPcdInterface.java:236)
         at com.sap.pcuigp.xssutils.ccpcd.CcXssPcd.loadConfiguration(CcXssPcd.java:282)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalCcXssPcd.loadConfiguration(InternalCcXssPcd.java:184)
         at com.sap.pcuigp.xssutils.ccpcd.CcXssPcdInterface.loadConfiguration(CcXssPcdInterface.java:115)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalCcXssPcdInterface.loadConfiguration(InternalCcXssPcdInterface.java:124)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalCcXssPcdInterface$External.loadConfiguration(InternalCcXssPcdInterface.java:184)
         at com.sap.pcuigp.xssutils.ccxss.CcXss.loadConfiguration(CcXss.java:208)
         at com.sap.pcuigp.xssutils.ccxss.wdp.InternalCcXss.loadConfiguration(InternalCcXss.java:153)
         at com.sap.pcuigp.xssutils.ccxss.CcXssInterface.loadConfiguration(CcXssInterface.java:112)
         at com.sap.pcuigp.xssutils.ccxss.wdp.InternalCcXssInterface.loadConfiguration(InternalCcXssInterface.java:124)
         at com.sap.pcuigp.xssutils.ccxss.wdp.InternalCcXssInterface$External.loadConfiguration(InternalCcXssInterface.java:184)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:190)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:748)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:283)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1246)
         at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:354)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:547)
         at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:591)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:822)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sapportals.portal.pcd.gl.PermissionControlException: Access denied (Object(s): portal_content/com.sap.pct/srvconfig/com.sap.pct.erp.srvconfig.mss/com.sap.pct.erp.srvconfig.ato/com.sap.pct.erp.srvconfig.fpmapplications/com.sap.pct.erp.srvconfig.attendanceoverview)
         at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterContext.java:422)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1248)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1254)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxyContext.java:1353)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyContext.java:1300)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.getBasicObject(PcdProxyContext.java:1630)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.getAttributesInternal(PcdProxyContext.java:391)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.getAttributes(PcdProxyContext.java:378)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.getAttributes(PcdProxyContext.java:355)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.getAttributes(PcdProxyContext.java:366)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.getAttributes(PcdProxyContext.java:373)
         at com.sap.xss.config.pcd.PcdObjectBroker.retrieveObjectInternal(PcdObjectBroker.java:71)

    Hi Bhupinder Singh,
    To work with MSS application in portal
    1. Deploy the MSS BP
    2. Do the system connection with correct system alias and also Jco connections.
    3. Ensure that you have the user in portal and MSS backend with minimum auth. (and also portal content "read" permission)
    and also in MSS backend you have to personalize your user id.
    http://help.sap.com/saphelp_erp2004/helpdata/en/0f/8b3b40b1607a56e10000000a1550b0/frameset.htm
    Regards
    Shridhar Gowda
    DSS Java

  • Services of 2nd instance disappearded from SQL Server 2012 Configuration Manager but still running

    We recently configured multiple SQL Server 2012 R1 (two-node) clusters. Some with two instances. However, we discovered later that the Configuration Manager only lists the services of the 1st instance (the default MSSQLSERVER instance). The other named instance
    is still running and can be failed over from one node to the other using Cluster Failover Manager but the services are not showing up in Configuration Manager in any of the two nodes.
    Any thoughts as to why we see this odd behavior and how to fix it? We have done two instances before in SQL Server 2008 R2 but never saw this behavior.
    Thanks,
    Omer

    Please see my answer above about the SQLCM version. We use the highest.
    As I said before that this happens only when we have two instances running in a SQL2012 cluster. We configured 7 SQL 2012 clusters. three of them have two instances but only the services of one instance are displayed in CM. Services of the default instance
    are listed in two of these clusters while services of the named instance are listed in the 3rd one.
    One thing to note about these configurations is that the installer could not bring the services at the end of installation online because it did not have permission to create the computer objects in AD during setup thus we had to follow a known workaround
    that involves having the domain admin fix these permissions and then we were able to add the SQL Agent Service to the cluster and bring the services online after modifying the ConfigurationState key value of each instance in the registry.
    The installer account is setup as a local admin and we asked the domain admin to give it "Read All properties" and "create computer objects" in AD but for some reason it does not seem to have the ability to create these computer objects during installation
    and the objects are to be pre-created and their permissions reset afterward.
    I am giving this information and I am not sure if it has anything to do with the fact that SQLCM is listing the services of one instance and not the other.

  • Content area & search portlet

    Hi Everyone,
    I have a couple questions and hope that some of you can give me some insight, thank you so much in advance!
    I need to implement a search portlet. I realized that there is one built-in portlet that came with the 9iAS. But it does not provide all the functionalities that I need. For example, I would like it to be customizable, therefore the drop-down-list lists only the content areas customized by the users and it only searches in those areas.
    Here are the questions:
    1) It seems that the built-in Search portlet uses the database provider. am I right? Where can I find its provider and also its jar files (I am guessing it is written in Java).
    2) If I have to write my own Search portlet, then I need to get the information about the content area such as which table the content area objects are saved to and how many content areas and in the area etc...
    Any insight will be greatly appreciated.
    Thanks,
    Vince

    There are some secure views that are available as part of the Pl/Sql PDK. They are listed here:
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/plsql/doc/sdk23vws.htm
    The views work by using information from the session context (see the wwctx_api package). Typically the session context will be set automatically by the portal framework if the request comes to the Portal Database via mod_plsql or the PPE.
    To find the content areas in which the user has access to folders, you'll need to join the WWSBR_ALL_CONTENT_AREAS view with the WWSBR_USER_FOLDERS using the ID and CAID columns, respectively.
    Content Areas don't have descriptions so a presume you meant the display name rather than the unique name. The display name can be found from the WWSBR_USER_FOLDERS view be joining WWSBR_ALL_CONTENT_AREAS to WWSBR_USER_FOLDERS again but choosing the root folder (select id, caid, language, display_name from WWSBR_USER_FOLDERS.ID = 1). You'll also need to restrict by language.
    Please write again if you need more info.

  • APEX Configuration Management (CM)

    Does anyone have a good method for doing CM for APEX? We have multiple developers working on multiple pages and multiple instances. We need a method for doing development, testing and promotion. We will be using CVS too. We need a substantial methodology for keeping track of versions as well as concurrent development, etc.
    Thanks!

    Hi Drew and Rudy,
    Here is my 2 cents. I am sure others will have more good ideas and insights.
    -- Export the application (including DDL) often.
    -- Check the export files into a souce code control tool like SourceSafe so that you can explicitly see the differences between versions. (Is CVS a source code tool?)
    -- Clearly document your export files with source code control labels.
    -- Get each developer to lock pages that they are working on.
    -- Create a special developer user ID called "LOCKER". Use this to lock completed pages so that the completed pages cannot be accidentally changed.
    -- Keep an eye on the APEX developer activity reports.
    -- You cannot lock DDL or shared component, therefore your developers must talk to one another so they don't step on each other's toes.
    Configuration Management is a weak area for APEX; but it is definitely not a "show stopper".
    Hope this helps.
    Cheers,
    Patrick
    Message was edited by:
    Patrick Cimolini

Maybe you are looking for