Benifits Participation Overview - No valid target content area found

HI
I am getting following error when I click on "Status" column in "Benefits Participation Overview" screen.
Please help.
Thanks

Yes, This Note solved my issue.
Regards,
Abhishek.

Similar Messages

  • Benefits Participation Overview : No valid target content area found Error

    HI
    We are on EHP7 and using Portal 7.4
    I am getting following error when clicking on "Status" column in "Benefits Participation Overview"
    Thanks

    Yes, This Note solved my issue.
    Regards,
    Abhishek.

  • 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.

  • Moving a folder, Linking between content areas

    I have 2 problems:
    1) So far we developed all our content in a single content area. We would now like to split the information into multiple content areas. The MOVE or COPY command on the folder only allows me to copy within a content area. I have hundreds of documents to move. Is there any way i can move a folder to a different content area?
    2) What is the best way to link a folder from 1 content area to a folder in another content area? I found that the FOLDER LINK ITEM allows me to connect only within a content area.
    (I would prefer not to use an URL since the content publishers may not be able to construct complicated paths or the paths may change leading to broken links.)

    Suraj
    1) The only way to do this currently is to create an export of the content area, import it back into the portal and remove the duplicate content. We are planning a bulk action feature in a future release that would allow you do to selectively copy/move one or more folders into a new content area.
    2) Currently folder links are scoped within a content area; the only option is to link to the folder through a URL folder type. If you use the generated URL that contains the folder ID, you shouldn't run into any problems if the target folder is moved. I have submitted an enhancement request to extend the folder link to 'remote' folders outside of the 'home' content area.

  • Unable to delete data target contents of Write-Optimized DSO in Process Chain

    Hi Experts,
    We are using SAP Net Weaver BW 7.01 version and we need to delete the entire data target contents of Write-Optimized DSO in the process chain before the next data load.
    I included this step in process chain but still it is failing with errore message"Message not found (in main memory), Drop Cube Failed In Data Target"
    This process type is working during BW 7.0 version but not in BW 7.01 version.
    However i found that we can use the program RSSM_DELETE_WO_DSO_REQUESTS to delete old requests in the Write-Optimized DSO for BW 7.01 SP07 as per SAP Note 1437407 but still it's not working even after implementing this program as the Prerequisite to delete the request is the data mart status should be updated where it is not happening for the program.
    We had an process type option to 'delete the requests from Write-Optimized DSO' directly in BW 7.3 but still not available in 7.01 version.
    Could you please suggest me on how to resolve this issue in BW 7.01?
    Many thanks for your help in advance.
    Regards,
    Madhu

    Create ABAP program as attached code.
    Then you can use that ABAP program in process chains through ABAP variant
    ABAP varaint should have following properties
    Select call mode as Synchronous; call from Local; and Program
    Give your ABAP program name in "program name" and create one program variant for each write optimized DSO.
    Please refer how to use ABAP program in process chains for further details.
    Hope this helps

  • Open a pdf document in portal content area

    All,
    I have a folder in 'Public Document' with a pdf file. A KM Navigation iView points to the folder with the pdf file. When a user clicks on the pdf file it opens in a seperate window. Is it possible to open the pdf file in the content area of the portal.
    Thank you.
    SAP Partner

    Hi,
    Try to set the "Target Window Type" in the corresponding resource or collection renderer setting, see http://help.sap.com/saphelp_nw04/helpdata/en/50/041142e862654ca98ced1607386c9c/frameset.htm and the same for the collection renderer settings for details.
    Hope it helps
    Detlev

  • Not a valid SOAP Content-Type: text/html; charset=iso-8859-1

    Friends
    JDEV and SOA suite 10134
    I have multiple domains on my BPEL Server. In one of the domain since I deployed the new process, all the processes of that domain are now failing on execution with following error in opmn/soa_instance/*.err log files. No errors in domain.log
    +"Caused by: java.security.PrivilegedActionException: oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: text/html; cha+
    +rset=iso-8859-1"+
    At the same time we get Internal Server Error on BPEL Console.
    I have sync processes with 1 or two invokes, so I am generally losing the instances, cannot provide the details in the process execution. All BPEL processes are invoking Siebel Web Services, that is the common part.
    When I restart my system, it may or may not work; even if it works then within few instances execution again starts giving the same error. I can see that after the errors the instance are going through and getting completed successfully few times. All these processes were working successfully earlier.
    Any idea about this !!!!
    Thanks

    Thanks Anirudh,
    I don't use compensation handlers. Moreover I have properly defined the scopes and sequences throughout the bpel process. My processes are sync in nature and I'm not able say at what step exactly the processes are failing and throwing the SOAP content Type error though the instances are getting completed with delay soemtimes.

  • ESS, Benefits Participation Overview

    Hello All,
    We upgraded from ITS technology to Net Weaver EP5.0 and are now having problems with the participation detail failing to show in the participation overview for some insurance plans (IT0168).
    The detail for all standard plans shows in the portal.  However, for those plans where the coverage amount is calculated in standard user exit PBEN0011, no detail is showing.   Only the plan name and coverage type are visible.  The coverage amount and employer credit is not visible.
    Has anyone else had this problem?  If so, could you please advise us how to solve.
    Best regards,
    Janice

    Wauw....that is an old version of the SAP Portal.....
    1. Check your User-exit.....is there something wrong with it.
    2. Check for sap-notes.
    J

  • Iview calls new Page on Content Area

    Hello Everybody,
    I have a Page with 3 Iviews on it, and would like that an Iview call a new Page.
    Wich means, I have Iview 1,2,3 on Page A and if you trigger a link on of these Iviews a new Page B should be loaded.
    All I got is that the Page loaded in the Iview itself. Is there an opportunity to change that behavior, to call a Page B from an Iview that reloads the content area with a Page B?
    Thanks in advanced,
    Marcus

    Hi Marcus,
    you can call EPCM.doNavigate with the PCD target, see https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/enterprise portal client.pdf
    Hope it helps,
    Detlev

  • Participation Overview iView

    In Portal ESS> Benefits and Payments > Participation Overview iView is not showing "Flexible Spending" as one of the listed plans.
    Please advice.

    http://help.sap.com/erp2005_ehp_03/helpdata/EN/1b/36834071adc65de10000000a155106/frameset.htm
    Use
    This service enables employees to view a list of plans in which they are currently enrolled. However, because this service is date-dependent, employees must first specify the desired effective date before their Participation Overview is displayed. Upon specifying that date, employees gain an overview of all benefit plans in which they chose to participate as of that date.
    From the Participation Overview, employees can select any particular plan in which they are enrolled, then review the details that are in effect for that plan on the specified date. For example, among other information, employees can review the planu2019s cost, coverage and participation period, as well as dependents and beneficiaries, if applicable.
    You can check here in trans code as well HRBEN0006.

  • Sources are current and valid. TTLs are however, invalid. Failed to attach update to the automation wrapper, error = 0x87d00215_

    Hi,
    I recently tried to deploy Windows 7 update to my client computers. I am able to download and distribute it to DP, but somehow it wouldn't install into my client computers. Can anyone help me? Below text is copied from my scanagent.log and updatesdeployment.log
    files from my client computer.
    Any assistance is highly appreciated.
    Scanagent.log
    - - Calling back to client on Scan request complete... ScanAgent 4/10/2014 8:01:17 AM 77868 (0x1302C)
    CScanAgent::ScanComplete- Scan completion received. ScanAgent 4/10/2014 8:01:17 AM 77868 (0x1302C)
    - -Processing Scan Job TTL invalidity request ScanAgent 4/10/2014 8:04:34 AM 75864 (0x12858)
    - -Processing Scan Job TTL invalidity request ScanAgent 4/10/2014 8:09:29 AM 80536 (0x13A98)
    *****ScanByUpdates request received with ForceReScan=0, ScanOptions=0x00000008,  WSUSLocationTimeout = 604800 ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    - - -Evaluating Update Status... ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    Found CategoryID of :bfe5b177-a086-47a0-b102-097e4fa1f807 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    CScanAgent::ScanByUpdates - Found UpdateClassification 0fa1201d-4330-4fa8-8ae9-b877473b6441 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    Sources are current and valid. TTLs are however, invalid. ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    Sources are Valid, so converting to Offline Scan. ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJob::Scan- Requesting Offline Scan with last known location. ScanAgent 4/10/2014 8:50:32 AM 90080 (0x15FE0)
    No CatScan history exists ScanAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    Sources are current and valid. TTLs are however, invalid. ScanAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJob::Execute- Requesting scan with CategoryIDs=BFE5B177-A086-47A0-B102-097E4FA1F807 ScanAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): Scan Succeeded, setting flag that performed scan was catscan ScanAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJob::OnScanComplete - Scan completed successfully, ScanType=2 ScanAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJobManager::OnScanComplete -ScanJob is completed. ScanAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    ScanJob({1B5BE021-EAEF-43E2-A7A2-329D803F2248}): CScanJobManager::OnScanComplete - Reporting Scan request complete to clients... ScanAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    - - -Evaluating Update Status... ScanAgent 4/10/2014 8:50:41 AM 90080 (0x15FE0)
    - - Calling back to client on Scan request complete... ScanAgent 4/10/2014 8:50:41 AM 90080 (0x15FE0)
    UpdatesDeployment.log
    Message received: '<?xml version='1.0' ?><SoftwareUpdatesMessage MessageType='EvaluateAssignments'><UseCachedResults>False</UseCachedResults></SoftwareUpdatesMessage>' UpdatesDeploymentAgent 4/10/2014 8:04:34 AM 75864
    (0x12858)
    Removing scan history to force non cached results UpdatesDeploymentAgent 4/10/2014 8:04:34 AM 75864 (0x12858)
    Evaluation initiated for (0) assignments. UpdatesDeploymentAgent 4/10/2014 8:04:34 AM 75864 (0x12858)
    Message received: '<?xml version='1.0' ?><SoftwareUpdatesMessage MessageType='EvaluateAssignments'><UseCachedResults>False</UseCachedResults></SoftwareUpdatesMessage>' UpdatesDeploymentAgent 4/10/2014 8:09:29 AM 80536
    (0x13A98)
    Removing scan history to force non cached results UpdatesDeploymentAgent 4/10/2014 8:09:29 AM 80536 (0x13A98)
    Evaluation initiated for (0) assignments. UpdatesDeploymentAgent 4/10/2014 8:09:29 AM 80536 (0x13A98)
    Message received: '<?xml version='1.0' ?>
     <CIAssignmentMessage MessageType='EnforcementDeadline'>
         <AssignmentID>{85D3A208-0AE4-46F6-87C3-8A94CCA8361C}</AssignmentID>
     </CIAssignmentMessage>' UpdatesDeploymentAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    Assignment {85D3A208-0AE4-46F6-87C3-8A94CCA8361C} has total CI = 1 UpdatesDeploymentAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    Deadline received for assignment ({85D3A208-0AE4-46F6-87C3-8A94CCA8361C}) UpdatesDeploymentAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    Detection job ({D4D22069-E341-476B-9048-4C4FAFF7075D}) started for assignment ({85D3A208-0AE4-46F6-87C3-8A94CCA8361C}) UpdatesDeploymentAgent 4/10/2014 8:50:32 AM 94188 (0x16FEC)
    DetectJob completion received for assignment ({85D3A208-0AE4-46F6-87C3-8A94CCA8361C}) UpdatesDeploymentAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    Raising client SDK event for class CCM_SoftwareUpdate, instance CCM_SoftwareUpdate.UpdateID="Site_95D1BDFA-B063-4820-8D5D-497ECA9F10BB/SUM_eaf2ae60-e6f3-4d39-a014-ae25e07361a6", actionType 12l, value NULL, user NULL, session 4294967295l, level 0l,
    verbosity 30l UpdatesDeploymentAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    Update (Site_95D1BDFA-B063-4820-8D5D-497ECA9F10BB/SUM_eaf2ae60-e6f3-4d39-a014-ae25e07361a6) added to the targeted list of deployment ({85D3A208-0AE4-46F6-87C3-8A94CCA8361C}) UpdatesDeploymentAgent 4/10/2014 8:50:41 AM 94188 (0x16FEC)
    Failed to attach update to the automation wrapper, error = 0x87d00215 UpdatesDeploymentAgent 4/10/2014 8:50:41 AM 83412 (0x145D4)

    Tested on the following steps:
    1.       Start an elevated command prompt,and run wbemtest.exe
    2.       Click Connect, and specify the path: root\ccm\SoftMgmtAgent and connect
    3.       Select Query, and type select * from DownloadContentRequestEx2
    4.        Select query, and select * from downloadinfoex2
    5.       Delete each instance that returned by the query.
    6.       Restart SMS Agent Host service, and check to confirm the instances didn’t come back.
    7.       Trigger Software update evaluation cycle and try to install update again
    Didn't managed to execute step[5] as there is nothing for me to delete. Once I ran through the above steps, I noticed the following error in ScanAgent.log file. Also, I found some error in ClientIDManagerStartup.log. Can anyone tell me what is wrong
    here? Thanks
    ScanAgent.log
    *****ScanByUpdates request received with ForceReScan=0, ScanOptions=0x00000008,  WSUSLocationTimeout = 604800 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    - - -Evaluating Update Status... 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    Found CategoryID of :bfe5b177-a086-47a0-b102-097e4fa1f807 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    CScanAgent::ScanByUpdates - Found UpdateClassification 0fa1201d-4330-4fa8-8ae9-b877473b6441 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    Sources are current and valid. TTLs are however, invalid. 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    Sources are Valid, so converting to Offline Scan. 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    ScanJob({8985F022-97C1-4D5E-80FF-4385E36D3316}): CScanJob::Scan- Requesting Offline Scan with last known location. 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    Catscan history version is up-to-date and TTL is valid 4/10/2014 9:30:00 AM 108228 (0x1A6C4)
    ScanJob({8985F022-97C1-4D5E-80FF-4385E36D3316}): CScanJob::Execute - SKIPPING SCAN and Using cached results, ScanType=2 4/10/2014 9:30:00 AM 108228 (0x1A6C4)
    ScanJob({8985F022-97C1-4D5E-80FF-4385E36D3316}): CScanJobManager::OnScanComplete -ScanJob is completed. 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    ScanJob({8985F022-97C1-4D5E-80FF-4385E36D3316}): CScanJobManager::OnScanComplete - Reporting Scan request complete to clients... 4/10/2014 9:30:00 AM 105440 (0x19BE0)
    - - -Evaluating Update Status... 4/10/2014 9:30:00 AM 108228 (0x1A6C4)
    - - Calling back to client on Scan request complete... 4/10/2014 9:30:00 AM 108228 (0x1A6C4)
    - -Recovering persisted Scan requests... 4/10/2014 9:31:55 AM 106812 (0x1A13C)
    ScanJob({0A14B277-B6B7-4D3A-B945-9E9586EAA3B6}): CScanJob::Scan - Recovered Scan request waiting for ScanRetry, but MAX Scan Retry is completed. No Scan Retry will be attempted, returning E_FAIL. 4/10/2014 9:31:55 AM 106812 (0x1A13C)
    ScanJob({0A14B277-B6B7-4D3A-B945-9E9586EAA3B6}): CScanJobManager::Initialize - failed at CScanJob::Scan() with Error=0x80004005 4/10/2014 9:31:55 AM 106812 (0x1A13C)
    CScanAgent::OnStartup - failed at Initialize with error=0x80004005 4/10/2014 9:31:55 AM 106812 (0x1A13C)
    - -Processing Scan Job TTL invalidity request 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    *****ScanByUpdates request received with ForceReScan=0, ScanOptions=0x00000008,  WSUSLocationTimeout = 604800 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    - - -Evaluating Update Status... 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    Found CategoryID of :bfe5b177-a086-47a0-b102-097e4fa1f807 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    CScanAgent::ScanByUpdates - Found UpdateClassification 0fa1201d-4330-4fa8-8ae9-b877473b6441 for Update:eaf2ae60-e6f3-4d39-a014-ae25e07361a6 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    Sources are current and valid. TTLs are however, invalid. 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    Sources are Valid, so converting to Offline Scan. 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJob::Scan- Requesting Offline Scan with last known location. 4/10/2014 9:32:30 AM 107756 (0x1A4EC)
    No CatScan history exists 4/10/2014 9:32:30 AM 106040 (0x19E38)
    Sources are current and valid. TTLs are however, invalid. 4/10/2014 9:32:30 AM 106040 (0x19E38)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJob::Execute- Requesting scan with CategoryIDs=BFE5B177-A086-47A0-B102-097E4FA1F807 4/10/2014 9:32:30 AM 106040 (0x19E38)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): Scan Succeeded, setting flag that performed scan was catscan 4/10/2014 9:32:44 AM 107756 (0x1A4EC)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJob::OnScanComplete - Scan completed successfully, ScanType=2 4/10/2014 9:32:44 AM 107756 (0x1A4EC)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJobManager::OnScanComplete -ScanJob is completed. 4/10/2014 9:32:44 AM 107756 (0x1A4EC)
    ScanJob({5FD26726-F1E3-4C33-BF65-21EFEF9EC0BF}): CScanJobManager::OnScanComplete - Reporting Scan request complete to clients... 4/10/2014 9:32:44 AM 107756 (0x1A4EC)
    - - -Evaluating Update Status... 4/10/2014 9:32:44 AM 106040 (0x19E38)
    - - Calling back to client on Scan request complete... 4/10/2014 9:32:44 AM 106040 (0x19E38)
    ClientIDManagerStartup.log
    [----- SHUTDOWN -----] 4/10/2014 9:31:37 AM 3976 (0x0F88)
    [----- STARTUP -----] 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Machine: GHQ-ITD-LT036 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    OS Version: 6.1 Service Pack 1 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    SCCM Client Version: 5.00.7804.1000 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    'RDV' Identity store does not support backup. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    CCM Identity is in sync with Identity stores 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    'RDV' Identity store does not support backup. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Client is set to use HTTPS when available. The current state is 480. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Begin searching client certificates based on Certificate Issuers 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Completed searching client certificates based on Certificate Issuers 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Begin to select client certificate 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    There are no certificates in the 'MY' store. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Raising event:
    instance of CCM_ServiceHost_CertRetrieval_Status
     ClientID = "GUID:88760DF6-ABF1-4131-829D-365431082860";
     DateTime = "20141004013141.072000+000";
     HRESULT = "0x87d00280";
     ProcessID = 104240;
     ThreadID = 105612;
     4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Failed to submit event to the Status Agent. Attempting to create pending event. 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Raising pending event:
    instance of CCM_ServiceHost_CertRetrieval_Status
     ClientID = "GUID:88760DF6-ABF1-4131-829D-365431082860";
     DateTime = "20141004013141.072000+000";
     HRESULT = "0x87d00280";
     ProcessID = 104240;
     ThreadID = 105612;
     4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Unable to find PKI Certificate matching SCCM certificate selection criteria. 0x87d00280 4/10/2014 9:31:41 AM 105612 (0x19C8C)
    Initializing registration renewal for potential PKI issued certificate changes. 4/10/2014 9:31:49 AM 103528 (0x19468)
    Succesfully intialized registration renewal. 4/10/2014 9:31:49 AM 103528 (0x19468)
    [RegTask] - Executing registration task synchronously. 4/10/2014 9:31:49 AM 103528 (0x19468)
    [RegTask] - Client is already registered. Exiting. 4/10/2014 9:31:49 AM 103528 (0x19468)
    Read SMBIOS (encoded): 3600320039003500350031002D003000310052003300390030003000300030003100 4/10/2014 9:31:49 AM 103528 (0x19468)
    Evaluated SMBIOS (encoded): 3600320039003500350031002D003000310052003300390030003000300030003100 4/10/2014 9:31:49 AM 103528 (0x19468)
    No SMBIOS Changed 4/10/2014 9:31:49 AM 103528 (0x19468)
    SMBIOS unchanged 4/10/2014 9:31:49 AM 103528 (0x19468)
    SID unchanged 4/10/2014 9:31:49 AM 103528 (0x19468)
    HWID unchanged 4/10/2014 9:31:51 AM 103528 (0x19468)
    GetSystemEnclosureChassisInfo: IsFixed=TRUE, IsLaptop=TRUE 4/10/2014 9:31:51 AM 103528 (0x19468)

  • Tabbed Widget Hiding "Content Area" in Normal State ...

    Q1. Is it possible to hide the complete content area of the tabbed widget in normal state? ...
    Q2. ... and than going back automatically from active state to normal state (same behavoir as Q1) if any other link/widget on the site was activated?
    Here´s an image of the idea i have, every tab comtains a picture gallery... should be a cool sliding user experience.
    thank you so much for your help!

    Have you tried customizing one of the Compositions Widget (Blank/Featured News/Presentation) to simulate a tabbed panel. Since a Compositions Widget allows you the option to hide the target containers on rollout or click.
    Try playing with the Compositions if that helps. Would be interested to know any specific feature that you are using Tabbed Panel over Compositions Widget for your above requirement.
    Cheers,
    Vikas

  • Participation Overview-ECC 6.0

    Folks,
    We are planning in implementing self services and have installed the business packages for ESS. Is there a configuration guide available for how the individual services are configured? When I go to the link in the Portal side for the Participation Overview, it is blank. I have found config in the IMG and see a EMPLOYEE_BENEFITPAY_PARTICIPATION in the V_T7XSSSERSRV table. Shouldn't this work by default? I want to see what is delivered. What hooks the V_T7XSSSERSRV table to the link in the Portal? How do I find the generated URL or link for this service? When I go to a bsp app in se80 (e.g. HAP_DOCUMENT) - I see a URL in the Attributes that I can test. Is there a way to test the EMPLOYEE_BENEFITPAY_PARTICIPATION generated URL before I event test via the Portal application?
    Kind regards, Heather

    Is there a configuration guide available for how the individual services are configured?
    The documentation is available at each node of the IMG for the specified step. Past that, there is also the http://help.sap.com documenation for your specific version (which you did not list above).
    As for the specific Participation Overview  service....if you linked your userid to an employee record and that employee has benefits, you should see this. No special set up required. ESS config for Benefits is probably the "slimmest" of all.....you basically just set up a library of URLs and link those to plans and plan types....not much more...the rest is all dependent on actually benefits configuration outside of ESS.
    Hope this helps.

  • Critical error in Participation overview of enrollment benefits.

    Hi All,
    This query is related to the benefits. Now we have opened for enrollment.
    After enrolling into some benefits, when the User is clicking on the Participation overview, he is getting the below error.
    Critical Error
    A critical error has occurred. Processing of the service had to be terminated. Unsaved data has been lost. Please contact your system administrator.
    Details cannot be determined for related person 91/01
    Please guide me as to what data is missing or what needs to be maintained?
    Regards,
    Pooja

    can you check the dependents are maintained correctly in 21 for this pernr

  • Dividing Spry Tabbed Panels content area into columns?

    Hi there.
    I am building a website and I want to divide the content area of a Spry Tabbed Panel into 3 columns for text.
    How can I do this?
    I thought about making divs inside the Panel but it would be too messy.
    Please let me know if there is a simple way to do this.
    Thanks in advance.

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <script src="SpryAssets/SpryTabbedPanels.js"></script>
    <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet">
    <style>
    * {box-sizing: border-box;}
    body {width: 960px; margin: auto;}
    .TabbedPanelsContentVisible {overflow: auto;}
    .col33 {width: 33.3333%; float: left; padding: 15px;}
    </style>
    </head>
    <body>
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
        <li class="TabbedPanelsTab" tabindex="0">Tab 1</li>
        <li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div class="TabbedPanelsContent">
            <div class="col33">
              <h3>Column 1</h3>
            <p>Content 1</p>
            <p>Dicta sunt explicabo. Nisi ut aliquid ex ea commodi consequatur? Neque porro quisquam est, aut odit aut fugit, ut aut reiciendis voluptatibus maiores alias. Iste natus error sit voluptatem dicta sunt explicabo. Sed quia consequuntur magni dolores eos itaque earum rerum hic tenetur a sapiente delectus, cum soluta nobis est eligendi optio. Omnis voluptas assumenda est, nemo enim ipsam voluptatem neque porro quisquam est.</p>
            <p>Eaque ipsa quae ab illo inventore veritatis totam rem aperiam, qui ratione voluptatem sequi nesciunt. Consectetur, adipisci velit, aut odit aut fugit, ut enim ad minima veniam. Id est laborum et dolorum fuga. Atque corrupti quos dolores et quas molestias qui ratione voluptatem sequi nesciunt. Temporibus autem quibusdam saepe eveniet ut et voluptates repudiandae sint sed quia non numquam eius modi.</p>
          </div>
            <div class="col33">
              <h3>Column 2</h3>
            <p>Content 1</p>
            <p>It is the star to every wand'ring bark, which alters when it alteration finds, love alters not with his brief hours and weeks. Or bends with the remover to remove. That looks on tempests and is never shaken; admit impediments; love is not love let me not to the marriage of true minds.</p>
          </div>
            <div class="col33">
              <h3>Column 3</h3>
            <p>Content 1</p>
            <p>The three cs - customers, competition and change - have created a new world for business while those at the coal face don't have sufficient view of the overall goals. In order to build a shared view of what can be improved, building a dynamic relationship between the main players. Highly motivated participants contributing to a valued-added outcome.</p>
            <p>Whether the organization's core competences are fully in line, given market realities the components and priorities for the change program an important ingredient of business process reengineering. Taking full cognizance of organizational learning parameters and principles, organizations capable of double-loop learning, working through a top-down, bottom-up approach. In order to build a shared view of what can be improved, maximization of shareholder wealth through separation of ownership from management measure the process, not the people. Presentation of the process flow should culminate in idea generation, taking full cognizance of organizational learning parameters and principles, the components and priorities for the change program. An investment program where cash flows exactly match shareholders' preferred time patterns of consumption from binary cause and effect to complex patterns, working through a top-down, bottom-up approach.</p>
          </div>
        </div>
        <div class="TabbedPanelsContent">Content 2</div>
      </div>
    </div>
    <script>
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    </script>
    </body>
    </html>

Maybe you are looking for

  • The subnet mask on the Extreme isn't the same as on the Express.

    Dear Group, I have my Extreme configured to do PPPoE and DHCP and my DSL modem is setup as bridged. Everything is finally working well. I have an Express extending the Extreme in a WDS. When I look at the PPPoE tab in the Internet tab of the Extreme

  • Exu00E9cute an SQL Query statement.

    Hi, Can someone tel me if exist a transaction code who can help me to execute an SQL query (far than my report), either UPDATE or SELECT statement ? Thanks in advance. Mustapha

  • Asset not in Asset History Sheet

    When I run that asset history sheet tcode S_ALR_87011990 for a particular asset with a correct key date, the report produces no results.  When I look at at the asset in AW01N, there are values in the same fiscal year as the key date I ran the AHS for

  • Service Call ID number

    Hi, One of my customers asked me why the service call ID number is used even when you cancel a new service call that you were supposed to add. The service call ID should work as the other documents, when you cancel it in "add mode" it shouldn't use t

  • Recommendations for new Printer needed!

    Hi! Like a dolt, I dropped my printer and now it doesn't want to work anymore (imagine that!) I'm overwhelmed by the choices, so I was hoping to get a recommendation for a great all-purpose color ink jet printer for under $200. I do a lot of 8 x 10 p