S_bce_68001439 is not showing complete information (Report RSUSR100)

Hi All,
i have executed transaction s_bce_68001439 to get the information about the changes in the following areas:
1- Users that are created during the year
2- Users that are deleted during the year
3- Users whose access rights are modified during the year
4- Users that have been created and then deleted during the year which are not appearing the USR02 table.
But the problum i am facing with this report is, the report is not showing all the information. Users that are careated during the year and are still active and appearing in the table usr02 are not appearing in the s_bce_68001439 report. Further, rights of certain users which i m aware that i have modified during the year, are also not appearing in the report. Due to these facts i am confused with the completness of this report.
Can any one from this forum help me in getting the complete report which can fulfil my objectives as mentioned above. Further, can any one tell me the tables that are used by this report to extract data.
Further, if there is any other mean to get the above mentioned information, please tell me how.
Please help me.
thx in advance
Salman

Hi Beckers,
I am a member of SAP_ALL profile and have access to all the SAP transactions. so, there is no issue with the authorization. Further, I do not have any system refresh where the tables are deleted.
Beckers, is there any other option thorugh which i can obtain the desired information i.e. directly through SAP tables or some other transactions or reports etc.
The issue is not only comming with the 2009 users but also with the 2008 users data. which was OK in the last year. but now some of the information of the previous users are also missing if i am running the report for the previous year i.e. 2008.
Thx
Salman

Similar Messages

  • Option claims from CRM are not showing in BW report.

    Hi All,
    We are having a problem with BW report. The report shows all the claims thatt are created in CRM system( spource sys- CRM). We notices that claims that are called as option claims are not showing in BW report, but they are present in BW. I have checked filters in report design. no filters exist. Where they are getting filtered out. Please help me.
    Haaris..

    Hi,
    I am giving you ore information on the above issue, the above query is running on an infoset, I realized, data is missing from infoset. Where as the data is present in DSO.
    The other thing I can see every other claim in BW, but I cannot see Option claim which are very less compared to other claims.
    The infoset has four DSOs and one characteristic as components.
    Please let me know if you get any idea?
    Haaris.

  • Query not showing complete data

    Hi,
    I faced this issue many times. Original query is not showing complete data but when I create a new query with same rows, columns and filters it gives correct data. Do anybody have any idea what can be the problem?

    Below is the checklist :
    1. Make sure you have same number of filters/ restrictions in both the queries.
    2. Make sure you are not using any authorisation object.
    3. Make sure the technical names of the objects you are using in the query are name.
    4. Make sure both the queries are on the same multiprovider.
    5. Make sure both are of same version.
    These are very basic things, I assume you must have done. But these are the only possibilities I could think of.
    If this is fine, then as suggested by Raman you can add one object each time in both the queries and test the output. You might get some clue.
    Thanks,

  • Itunes is not showing complete sentences

    My itunes is not showing complete sentences. For example the first option in the options box when my iphone is connected says "sync with this iphone over...". im currently running windows 7. Nothing i cant guess but it gets on my nerves. Please help thanks

    It appears this problem can arise in some cases when the Segoe UI font isn't properly registered.
    Close iTunes
    Open the folder C:\Windows\Fonts, or %Windir%\Fonts if Windows is in a non-standard location.
    Click the menu File > Install New Font...
    Select the Fonts folder in the folder panel, the panel above should list all fonts.
    Scroll down the list of fonts and select Segoe UI (True Type), then click OK
    Start iTunes
    Any better?
    tt2
    Oops, just seen you got it fixed

  • Safari 6.0.1 not showing in System Report (installations)

    I have noticed that Safari 6.0.1 is not showing in System Report (installations) only the previous Safari 5.1.7 - Anyone know why this should be so? Now in Mountain Lion we do not have the update info in Software Update as before; only by going to "About this Mac". Any help appreciated!

    Now in Mountain Lion we do not have the update info in Software Update
    If you click your Apple menu icon you should see Software Update from the drop down menu.
    Clicking Software Update should open the App Store for you.

  • Report Document not show on Crystal Report Viewer in C#

    My program is modified from VB.NET. Now I struck with Crystal Report that Crystal Report Viewer didn't show Report Document.
    Printing code is composed of two forms. One assign parameters and objects need. Other is Crystal Report Viewer form, CrystalReportForm. Last one run report by parameter from the first.
    When run this code that it didn't found any error but the problem is no report show on Crystal Report Viewer on second form. It just blank Crystal Report Viewer. There arm't any message response.
    Here is my code.
    // report caller form.
    private void Print()
       CrystalReportForm rptForm = new CrystalReportForm();
       string[] strtbl;
      strtbl = new string[1];
       string[] strqry;
      strqry = new string[1];
       // prepare var
       string myqry;
       string myrpt;
       // Pass The Table That you used in the crystal Report
      strtbl[0] = "r_receipts";
       // Pass the Query
      myqry = "SELECT * FROM r_receipts";
      myrpt = "rptReceipts.rpt";
      strqry[0] = myqry;
       //Pass For Mdi True
      rptForm.MdiParent = this.ParentForm;
      rptForm.ViewReport(myrpt, strtbl, strqry, "");
       //Parameter Value It is Optional
      rptForm.Show();
    // Crytal Report Viewer form.
    public void ViewReport(string ReportName , string[] TableName, string[] QueryString , string Parameter = "")
       //Me.MdiParent = mainpage;
       if (TableName.Length  != QueryString.Length  )
       MessageBox.Show("Passed Variable Are Not Correct", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
       return;
       CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
       CrystalDecisions.Windows.Forms.CrystalReportViewer crv  = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
      crv.ActiveViewIndex = 0;
      crv.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      crv.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None;
      crv.Dock = System.Windows.Forms.DockStyle.Fill;
      crv.Location = new System.Drawing.Point(0, 0);
      crv.Name = "CrystalReportViewer";
       MySqlDataAdapter at =new MySqlDataAdapter();
       DataSet ds = new DataSet();
       for (int i = 0; i < TableName.Length; i++)
      at = GetDataAdeptor(QueryString[i]);
      at.Fill(ds, TableName[i]);
       string rptPath  = "";
      rptPath = Application.StartupPath + "\\" + ReportName;
      rpt.Load(rptPath);
      rpt.SetDataSource(ds);
       if (Parameter != "")
      rpt.SetParameterValue(0, Parameter);
      crv.ReportSource = rpt;
      crv.Refresh();
       //CrystalReportViewer.DataBind();
       //Me.Panel1.Controls.Add(CrystalReportViewer);
       Panel panel1 = new Panel();
      panel1.Controls.Add(crv);

    Hi Bhushan,
    It's not yet fixed. My dataset (ds) can't bine to DataGridView as
    DataGridView1.DataSource = ds
    But it could do like this
    DataGridView1.DataSource = ds.Tables[0];
    When I bine to Crystal Report Viewer setdatasource
    CrystalReportViewer1.setdatasource = ds.Tables[0];
    It still not work, anyway you suggest let me in the right way. I very confuse the thing I fix to bine to DataGridView
    Thank,
    Chaiwat

  • Will not show complete in LMS

    I've created training and a quiz using instructions provided
    by my LMS people.
    Under properties on the last slide, In navigation I was
    instructed to enter javascript:setExitState(); to make sure the
    course shows as "complete" in the LMS. I've gone through the whole
    training but the module still does not close out after the last
    slide and will not show as "complete" under the status.
    Any ideas?

    Hello and welcome to the Captivate forums!
    Depending on your LMS, you may need to change the settings in
    the Quiz properties. For example, some LMS products expect your
    materials to report Complete/Incomplete, while others expect
    Pass/Fail.
    Either that, or one or more of your individual scored
    interactions are not set up correctly.
    If you post the name of your LMS, perhaps someone else has
    the same one and can provide specific assistance.
    Regards,
    John

  • Server Admin GUI not displaying complete information

    Recently, the Server Admin GUI stopped displaying complete information for one of our servers. It works fine for the other.
    All servers are set up very much the same, other than one is an Xserve and one is a G5 tower. The one giving the grief is the G5 tower.
    Server Admin is version 10.4.7 and was working fine until a few days ago.
    When I click on the computer name (or IP) in the "Computers and Services" list, then look at any of the tabs > "Overview" "Logs" "System" "Graphs" or "Update" no information is retrieved. With the exception of Hard Drive capacity.
    All other services (Web, VPN, Mail) report all info without problems.
    Weird, hey? Any thoughts appreciated.
    Message was edited by: mebs2

    Well it pretty easy. I've taken out the code that is unused so you can see what is going on.
    import javax.swing.* ;
    public class Shareddilog extends JDialog
    public static void main(String[] args)
    Shareddilog s=new Shareddilog();
    s.show();
    }This is the only code that is executed in your program. It created a JDialog and then shows it. What you want to do, I imagine, is to put all the GUI stuff in your constructor and make sure you call pack() on it before you are done.

  • Records Not Showing Up On Report

    I'm using Crystal XI
    I can take the query from "Show SQL Query..." and paste it into a query screen in SQL Server 2008 management studio and retrieve the correct records.  However, the report itself does not contain all the records the should have been returned.
    To the best that I can figure, the records where a transaction date (date/time field) is null is not showing up on the report.  I only display the field, do not do any calculations based on the field. 
    It is part of the record selection formula, where I test for the field to be between start/end parameters or is null (which produces the correct SQL query as I stated above)
    So why are the records not showing up on the report, and more importantly, how do I get them to show up?
    TIA

    It already was set to "Exception for Nulls"
    On the other hand, just on a whim, I tried reversing the order of the query from what it was:
    {MyQuery.Company = {?Company}
        And
        {MyQuery.Transaction_Date} In {?Start/End Date}
        Or
        IsNull({MyQuery.Transaction_Date})
    To:
    {MyQuery.Company = {?Company}
        And
        IsNull({MyQuery.Transaction_Date})
        Or
        {MyQuery.Transaction_Date} In {?Start/End Date}
    And that seemed to work.  I'm not sure why it will work in the Mangement Studio, but not in Crystal Reports, but at least it works.
    Thanks for the tug in the right direction.

  • SPM 5.2 - problem with reason/activity fields - not showing in the report

    Dear experts,
    I have a situation that is hard to describe.
    We have SPM 5.2 - all set and working, now the problem is that for some of the FF sessions the tool is either not reporting the reason/activity fields (due to some technical problem that is occuring randomly) or the users have found a way to abuse the fields and make thier way around them. (these fields are very important for our SOX controls)
    I have created test users to see how they are entering without filling the reason/activity fields, but no luck - i couldnt enter.
    As you know the Activity field is mandatory text field and at least one character must be entered,  but I don`t think this is the workaround, because even if you put space the report still will show it. I have examples where the report is not showing anything.
    The worst is that I can`t simulate such cases.
    Have you ever heard of such nosense?
    Thank you,
    Iliya

    I think I found it - Application deficiency. It is the language that you are logged with. If it is not English the application is not recording the text that you type in the reason/activity fields upon FF session.
    I hope the latest patches are fixing this!
    BR
    Iliya

  • Sales Invoice no & date is not showing in J2I6 Report

    Hello Experts,
    I am running J2I6 report for RG23A PART2 register. In this report Duty like  BED, Ecess & HEcess is showing in all case but for credit utilization i.e. sales part INVOICE no & Invoice no is not showing in Report.We have applied Enhancement pack(EHP 3) before some days. Due to this it can be a problem?
    Can anyone help me solved the problem.
    Regards,
    Piyush

    Try to create the same report manually by adding each column and run the report and then go for another column.
    This might narrow down to issue.
    or else get the sql query and work on where clause condition first to see the reason.
    if helps mark
    ~ http://cool-bi.com

  • Data not showing up on report

    Hi
    I have an Infocube that has data (ready for reporting) loaded from APO Livecache.
    I'm running a BEX report that gets data from that cube, and for some reason the value for one Key figure is not showing up.
    It's there in the infocube, but is not showing up on the report. The column for that key figure is just blank.
    What can I check or do to see the value there?
    Thanks!
    Pooja

    Hi
    There are no restrictions or conditions on the KF and it is running on a single Infocube.
    There are non-zero values in the cube.
    The field level authorizations are also fine...
    we used to be able to see the values when we last ran this report 2 weeks back.
    There's a calculated key figure that is a sum of this key figure that's not showing up and another one. It is showing the aggregate value correctly! Eg:
    KF not showing up: Production Planned
    2nd KF : On Hand Stock
    Calculated KF Ending Inventory = Production Planned + On Hand Stock
    Although Production Planned is not showing up in the report, I checked its value in the cube and the Ending Inventory value is summed correctly in the report.

  • New Field not Showing up in Report.

    I have a CR query that I am editing to add a column to my report.  When I make my edits, the query runs, but I do not see the new field in the field explorer.  The part in purple is what I added.  Do I need to add it elsewhere in the code?
    WITH SEL_ACCTS AS(
    SELECT
    CASE WHEN RMSCUSTTYP = 'I' THEN
    CASE WHEN Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM)) <> ',' THEN  Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM))
    ELSE ''
    END
    ELSE
    RMSCMPNAME
    END AS "DEBTOR NAME",
    RMSACCTNUM AS "CLIENT ACCOUNT#",
    case when RMSHOMEPHN = '' or RMSWORKPHN = '' or RMSFAXPHN = '' or RMSMOBLPHN = '' then  'Y' else 'N' end as skipplcmt,
    A.RMSBILENUM,
    RMSDATEASG AS PLC_DT,
    ATTRNYCODE,
    RMSGATECD As "Gate Code",
    RAND() AS RANDNUMGEN
    FROM
    REPORTING.RMASTER As A
    left join reporting.rcomker b
    on a.rmsbilenum = b.rmsBilenum
    WHERE
    RMSDATEASG > REPLACE(CHAR(CURRENT DATE - 90 DAYS, ISO),'-','')
    AND recordtype =  'D'
    and ATTRNYCODE IN ({?AGCY_CODE})),
    GET_ACCTS AS(
    SELECT
    "DEBTOR NAME",
    "CLIENT ACCOUNT#",
    Cast(Timestamp(plc_dt||'000000') As Date)  AS "PLACED DATE",randnumgen,skipplcmt,
    PLC_DT,
    ATTRNYCODE,
    A.RMSBILENUM
    FROM
    SEL_ACCTS AS A
    LEFT JOIN
    REPORTING.RPRDBAL AS B ON A.RMSBILENUM = B.RMSBILENUM
    ORDER BY RANDNUMGEN
    FETCH FIRST {?#_of_Accts} Rows Only),
    GET_ACTV AS(
    SELECT
    G.*,
    RMSTRANDTE,
    ACTION_CODE,rmstrantim,
    RESULT_CODE
    From GET_ACCTS AS G LEFT JOIN RPTINGDATA.ROACTREACC AS R ON G.RMSBILENUM = R.RMSBILENUM AND G.ATTRNYCODE = R.ATTRNYCODE AND RMSTRANCDE = '9R'
        AND (ACTION_CODE IN('1','2','3','4','5','7','14','16','22','25','26','27','29','36','44','66') OR RESULT_CODE IN ('2','14','56','58','59','60','61','62','66')) AND RMSTRANDTE >= PLC_DT )
    SELECT 
    "DEBTOR NAME",
    "CLIENT ACCOUNT#",
    "PLACED DATE",
    PLC_DT,
    ATTRNYCODE,
    RMSBILENUM,skipplcmt,
    MIN(CASE WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29')
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTATTEMPT,
    SUM(CASE WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29')
        THEN 1 END) AS ATTEMPT#,
    SUM(CASE WHEN RESULT_CODE IN ('2','56','58','59','60','61','62','66')
        THEN 1 END) AS CONTACT#,
    SUM(CASE WHEN RESULT_CODE = '14'
        THEN 1 END) AS PROMISE#,
    MIN(CASE WHEN ACTION_CODE = '44'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTMGRRVW,
    SUM(CASE WHEN ACTION_CODE = '44'
        THEN 1 END) as MANAGER#,
    MIN(CASE WHEN ACTION_CODE = '1'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTLETTER,
    MIN(CASE WHEN ACTION_CODE = '36'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTSCRUB,
    max(CASE WHEN ACTION_CODE in ('1','2','14','16','22','66')
        then 'Y' else 'N' end) as locateacct,
    sum(case WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29') and (rmstrantim between 80000 and 100000 or rmstrantim between 180000 and 210000) and (  DAYOFWEEK(DATE (
                        SUBSTR ( DIGITS (rmstrandte) , 1 , 4 ) || '-' ||
                        SUBSTR ( DIGITS (rmstrandte) , 5 , 2 ) || '-' ||
                        SUBSTR ( DIGITS (rmstrandte) , 7 , 2 ) )) in (1,7) ) then 1 else 0 end) as primecall,
    FROM GET_ACTV
    GROUP BY
    "DEBTOR NAME",
    "CLIENT ACCOUNT#",
    "PLACED DATE",
    PLC_DT,
    ATTRNYCODE,
    RMSBILENUM,skipplcmt

    It's not showing up because it's only in the first With Select - it hasn't been brought down all the way through to the final Select.  Here's how you need to change it;
    WITH SEL_ACCTS AS(
            SELECT
              CASE WHEN RMSCUSTTYP = 'I' THEN
                CASE WHEN Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM)) <> ',' THEN  Trim(TRIM(RMSLASTNM) || ', ' || TRIM(RMSFIRSTNM))
                ELSE ''
                END
              ELSE RMSCMPNAME
              END AS "DEBTOR NAME",
              RMSACCTNUM AS "CLIENT ACCOUNT#",
              case when RMSHOMEPHN = '' or RMSWORKPHN = '' or RMSFAXPHN = '' or RMSMOBLPHN = '' then  'Y' else 'N' end as skipplcmt,
              A.RMSBILENUM,
              RMSDATEASG AS PLC_DT,
              ATTRNYCODE,
              RMSGATECD as "Gate Code",
              RAND() AS RANDNUMGEN
            FROM REPORTING.RMASTER As A
              left join reporting.rcomker b on a.rmsbilenum = b.rmsBilenum
            WHERE RMSDATEASG > REPLACE(CHAR(CURRENT DATE - 90 DAYS, ISO),'-','')
              AND recordtype =  'D'
              and ATTRNYCODE IN ({?AGCY_CODE})),
    GET_ACCTS AS(
            SELECT
              "DEBTOR NAME",
              "CLIENT ACCOUNT#",
              Cast(Timestamp(plc_dt||'000000') As Date)  AS "PLACED DATE",randnumgen,skipplcmt,
              PLC_DT,
              ATTRNYCODE,
              A.RMSBILENUM,
             "Gate Code"
            FROM SEL_ACCTS AS A
              LEFT JOIN REPORTING.RPRDBAL AS B ON A.RMSBILENUM = B.RMSBILENUM
            ORDER BY RANDNUMGEN
            FETCH FIRST {?#_of_Accts} Rows Only),
    GET_ACTV AS(
            SELECT
              G.*,
              RMSTRANDTE,
              ACTION_CODE,rmstrantim,
              RESULT_CODE
            From GET_ACCTS AS G
              LEFT JOIN RPTINGDATA.ROACTREACC AS R ON G.RMSBILENUM = R.RMSBILENUM AND G.ATTRNYCODE = R.ATTRNYCODE AND RMSTRANCDE = '9R'
                AND (ACTION_CODE IN('1','2','3','4','5','7','14','16','22','25','26','27','29','36','44','66')
                OR RESULT_CODE IN ('2','14','56','58','59','60','61','62','66')) AND RMSTRANDTE >= PLC_DT )
    SELECT 
      "DEBTOR NAME",
      "CLIENT ACCOUNT#",
      "PLACED DATE",
      PLC_DT,
      ATTRNYCODE,
      RMSBILENUM,
      skipplcmt,
      "Gate Code"
      MIN(CASE WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29')
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTATTEMPT,
      SUM(CASE WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29')
        THEN 1 END) AS ATTEMPT#,
      SUM(CASE WHEN RESULT_CODE IN ('2','56','58','59','60','61','62','66')
        THEN 1 END) AS CONTACT#,
      SUM(CASE WHEN RESULT_CODE = '14'
        THEN 1 END) AS PROMISE#,
      MIN(CASE WHEN ACTION_CODE = '44'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTMGRRVW,
      SUM(CASE WHEN ACTION_CODE = '44'
        THEN 1 END) as MANAGER#,
      MIN(CASE WHEN ACTION_CODE = '1'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTLETTER,
      MIN(CASE WHEN ACTION_CODE = '36'
        THEN Cast(Timestamp(rmstrandte||'000000') As Date)
        ELSE NULL END) AS FIRSTSCRUB,
      max(CASE WHEN ACTION_CODE in ('1','2','14','16','22','66')
        then 'Y' else 'N' end) as locateacct,
      sum(case WHEN ACTION_CODE IN ('3','4','5','7','25','26','27','29') and (rmstrantim between 80000 and 100000 or rmstrantim between 180000 and 210000) and
         (  DAYOFWEEK(DATE (SUBSTR ( DIGITS (rmstrandte) , 1 , 4 ) || '-' || SUBSTR ( DIGITS (rmstrandte) , 5 , 2 ) || '-' || SUBSTR ( DIGITS (rmstrandte) , 7 , 2 ) )) in (1,7) )
         then 1 else 0 end) as primecall,
    FROM GET_ACTV
    GROUP BY
      "DEBTOR NAME",
      "CLIENT ACCOUNT#",
      "PLACED DATE",
      PLC_DT,
      ATTRNYCODE,
      RMSBILENUM,
      skipplcmt,
      "Gate Code"
    -Dell

  • Hotsync Log does not show any information since August 2008. My Treo 755p has been syncing fine but nothing shows in the log!

    I just noticed that when I am done syncing, the Hotsync Log does not have any information about the most recent operation.  In fact the date of the last entry in the Log is August!  Anyone know why this is happening and how to fix this?
    Thanks.
    Post relates to: Treo 755p (Verizon)

    Now I know I've lost it--I'm replying to myself!  Would you smart tech people please take a look at what I found and see if it means anything.  Thanks!
    Two more clues:
    1) I was searching the Palm Knowledgebase and found out where the HotSync Log file is.  When I open the file, using Explorer, this message pops up: 'To help protect your security, Internet Explorer has restricted this web page from running scripts or ActiveX Controls that could access your computer.  Click here to...'  If I allow it to run, the screen blinks but nothing seems to change.  If I close the Log file and reopen it, it happens again.  How can I stop this from happening to the file?  Could this be the problem?
    2) The Knowledgebase Article below tells how to create a new 'fake' log file to 'fool' the HotSync Manager.  So I renamed the original log file, then created the new file as instructed.  Then I did a HotSync.  After the HotSync completed successfully, I opened the HotSync Manager and there is my new 'fake' log file that has only the words I typed into it when I created the file. Nothing in the Log about the operation at all! 
    Article ID: 38959   What does the error that ends with 'HotSync.log is missing' mean and how do I fix it?
    The HotSync Manager is very particular: if it doesn't find things exactly as it expects, it won't work. One of the things it has to find in the right place is the HotSync log, a file where the HotSync manager records everything it does. See How can the HotSync log help me to troubleshoot HotSync problems? for more information about this file.
    When you get this error, your HotSync Manager can't find the HotSync Log. This prevents you from performing a HotSync operation. Luckily, the HotSync Manager isn't too bright. Give it any file called HotSync.log and it will be happy again.
    The easiest way to give it what it expects is to create a new text document, rename it, and put it in the folder where the HotSync Manager expects to find it. Here's how:
    Launch the Windows Notepad. You can usually get to it by clicking on the Start Menu, choosing Programs, then Accessories and finally Notepad.
    Type some text. You can type anything you want, as long as there's at least one character in the Notepad document.
    From the File menu, choose Save As.
    In the Save dialog, navigate to your user folder in the Palm or Handspring folder (find your user folder).
    Name the document HotSync and click Save.
    Launch Windows Explorer. You can get to it by double clicking on My Computer or by clicking on the Start Menu, choosing Programs and then Windows Explorer.
    From the Tools menu, choose Folder Options.
    Click on the View tab.
    Uncheck the box next to Hide file extensions for known file types.
    Navigate to your user folder.
    Right-click once on the HotSync.txt document, and select "Rename" from the menu. Rename the file HotSync.log
    Attempt another HotSync operation. If you still get the "HotSync.log is missing" message, contact Handspring.
    Article ID: 38959 Article Type: Error, Troubleshooting, How To Date Created:  Sunday, December 12, 2004 9:10:17 AM Date Modified:  Friday, April 20, 2007 4:03:38 PM Relevant products:  Treo 300, Treo 180, Treo 180g, Treo 270, Visor Edge, Visor Neo, Visor Pro, Visor Platinum, Visor Prism, Visor Deluxe, Treo 90
    Post relates to: Treo 755p (Verizon)
    Post relates to: Treo 755p (Verizon)

  • Opatch lsinventory not showing correct information

    Hi Gurus,
    I have just applied april 2013 PSU on Grid and Database home. But when I check opatch lsinventory from grid and ora11g user both shows different information. If anyone could please help me understand if anything went wrong.
    Our environment
    OS - Linux RHEL 6.3
    Oracle - 11gR2 stand alone with ASM.
    Patch Applied - APRIL 2013 PSU for both GRID and ORACLE user sepratly.
    FROM GRID USER
    remedy-ebu-dev-db1*+ASM:/home/grid>id
    uid=501(grid) gid=501(oinstall) groups=501(oinstall),502(dba),504(asmadmin),506(asmdba),507(asmoper)
    remedy-ebu-dev-db1*+ASM:/home/grid>opatch lsinventory
    Oracle Interim Patch Installer version 11.2.0.3.4
    Copyright (c) 2012, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/app/grid/product/11.2.0/grid
    Central Inventory : /u01/app/oraInventory
    from : /u01/app/grid/product/11.2.0/grid/oraInst.loc
    OPatch version : 11.2.0.3.4
    OUI version : 11.2.0.3.0
    Log file location : /u01/app/grid/product/11.2.0/grid/cfgtoollogs/opatch/opatch2013-05-15_23-26-04PM_1.log
    Lsinventory Output file location : /u01/app/grid/product/11.2.0/grid/cfgtoollogs/opatch/lsinv/lsinventory2013-05-15_23-26-04PM.txt
    Installed Top-level Products (1):
    Oracle Grid Infrastructure 11.2.0.3.0
    There are 1 products installed in this Oracle Home.
    Interim patches (2) :
    Patch 16056266 : applied on Wed May 15 22:57:51 IST 2013
    Unique Patch ID: 15962803
    Patch description: "Database Patch Set Update : 11.2.0.3.6 (16056266)"
    Created on 12 Mar 2013, 02:14:47 hrs PST8PDT
    Sub-patch 14727310; "Database Patch Set Update : 11.2.0.3.5 (14727310)"
    Sub-patch 14275605; "Database Patch Set Update : 11.2.0.3.4 (14275605)"
    Sub-patch 13923374; "Database Patch Set Update : 11.2.0.3.3 (13923374)"
    Sub-patch 13696216; "Database Patch Set Update : 11.2.0.3.2 (13696216)"
    Sub-patch 13343438; "Database Patch Set Update : 11.2.0.3.1 (13343438)"
    Bugs fixed:
    13566938, 13593999, 10350832, 14138130, 12919564, 13561951, 13624984
    13588248, 13080778, 13914613, 13804294, 14258925, 12873183, 13645875
    14472647, 12880299, 14664355, 14409183, 12998795, 14469008, 13719081
    13492735, 13496884, 12857027, 14263036, 14263073, 13732226, 13742433
    16368108, 16314469, 12905058, 13742434, 12849688, 12950644, 13742435
    13464002, 13534412, 12879027, 13958038, 14613900, 12585543, 12535346
    12588744, 11877623, 13786142, 12847466, 13649031, 13981051, 12582664
    12797765, 14262913, 12923168, 13384182, 13612575, 13466801, 13484963
    14207163, 11063191, 13772618, 13070939, 12797420, 13041324, 16314467
    16314468, 12976376, 11708510, 13680405, 14589750, 13026410, 13742437
    13737746, 14644185, 13742438, 13326736, 13596521, 13001379, 16344871
    13099577, 9873405, 14275605, 13742436, 9858539, 14841812, 11715084
    16231699, 14040433, 12662040, 9703627, 12617123, 12845115, 12764337
    13354082, 14459552, 13397104, 13913630, 12964067, 12983611, 13550185
    13810393, 12780983, 12583611, 14546575, 13476583, 15862016, 11840910
    13903046, 15862017, 13572659, 16294378, 13718279, 14088346, 13657605
    13448206, 16314466, 14480676, 13419660, 13632717, 14063281, 14110275
    13430938, 13467683, 13420224, 13812031, 14548763, 16299830, 12646784
    13616375, 14035825, 12861463, 12834027, 15862021, 13632809, 13377816
    13036331, 14727310, 13685544, 15862018, 13499128, 16175381, 13584130
    12829021, 15862019, 12794305, 14546673, 12791981, 13787482, 13503598
    10133521, 12718090, 13399435, 14023636, 13860201, 12401111, 13257247
    13362079, 14176879, 12917230, 13923374, 14220725, 14480675, 13524899
    13559697, 9706792, 14480674, 13916709, 13098318, 13773133, 14076523
    13340388, 13366202, 13528551, 12894807, 13454210, 13343438, 12748240
    14205448, 13385346, 15853081, 14273397, 12971775, 13582702, 10242202
    13035804, 13544396, 16382353, 8547978, 14226599, 14062795, 13035360
    12693626, 13332439, 14038787, 14062796, 12913474, 14841409, 14390252
    16314470, 13370330, 13059165, 14062797, 14062794, 12959852, 13358781
    12345082, 12960925, 9659614, 13699124, 14546638, 13936424, 13338048
    12938841, 12658411, 12620823, 12656535, 14062793, 12678920, 13038684
    14062792, 13807411, 13250244, 12594032, 15862022, 9761357, 12612118
    13742464, 14052474, 13911821, 13457582, 13527323, 15862020, 13910420
    13502183, 12780098, 13705338, 13696216, 14841558, 10263668, 15862023
    16056266, 15862024, 13554409, 13645917, 13103913, 13011409, 14063280
    Patch 16315641 : applied on Wed May 15 22:56:35 IST 2013
    Unique Patch ID: 15966967
    Patch description: "Grid Infrastructure Patch Set Update : 11.2.0.3.6 (16083653)"
    Created on 1 Apr 2013, 03:41:20 hrs PST8PDT
    Bugs fixed:
    16315641, 15876003, 14275572, 13919095, 13696251, 13348650, 12659561
    14305980, 14277586, 13987807, 14625969, 13825231, 12794268, 13000491
    13498267, 11675721, 14082976, 12771830, 14515980, 14085018, 13943175
    14102704, 14171552, 12594616, 13879428, 12897902, 12726222, 12829429
    13079948, 13090686, 12995950, 13251796, 13582411, 12990582, 13857364
    13082238, 12947871, 13256955, 13037709, 14535011, 12878750, 14048512
    11772838, 13058611, 13001955, 13440962, 13727853, 13425727, 12885323
    12870400, 14212634, 14407395, 13332363, 13430626, 13811209, 12709476
    14168708, 14096821, 14626717, 13460353, 13694885, 12857064, 12899169
    13111013, 12558569, 13323698, 10260842, 13085732, 10317921, 13869978
    12914824, 13789135, 12730342, 12950823, 13355963, 13531373, 14268365
    13776758, 12720728, 13620816, 13023609, 13024624, 13039908, 13036424
    13938166, 13011520, 13569812, 12758736, 13001901, 13077654, 13430715
    13550689, 13806545, 13634583, 14271305, 12538907, 13947200, 12996428
    13066371, 13483672, 12897651, 13540563, 12896850, 13241779, 12728585
    12876314, 12925041, 12650672, 12398492, 12848480, 13652088, 16307750
    12917897, 12975811, 13653178, 13371153, 14800989, 10114953, 14001941
    11836951, 14179376, 12965049, 14773530, 12765467, 13339443, 13965075
    16210540, 14307855, 12784559, 14242977, 13955385, 12704789, 13745317
    13074261, 12971251, 13993634, 13523527, 13719731, 13396284, 12639013
    12867511, 12959140, 14748254, 12829917, 12349553, 12849377, 12934171
    13843080, 14496536, 13924431, 12680491, 13334158, 10418841, 12832204
    13838047, 13002015, 12791719, 13886023, 13821454, 12782756, 14100232
    14186070, 14569263, 12873909, 13845120, 14214257, 12914722, 12842804
    12772345, 12663376, 14059576, 13889047, 12695029, 13924910, 13146560
    14070200, 13820621, 14304758, 12996572, 13941934, 14711358, 13019958
    13888719, 16463033, 12823838, 13877508, 12823042, 14494305, 13582706
    13617861, 12825835, 13025879, 13853089, 13410987, 13570879, 13247273
    13255295, 14152875, 13912373, 13011182, 13243172, 13045518, 12765868
    11825850, 15986571, 13345868, 13683090, 12932852, 13038806, 14588629
    14251904, 13396356, 13697828, 12834777, 13258062, 14371335, 13657366
    12810890, 15917085, 13502441, 14637577, 13880925, 13726162, 14153867
    13506114, 12820045, 13604057, 13263435, 14009845, 12827493, 13637590, 13068077
    OPatch succeeded.
    FROM ORACLE USER
    remedy-ebu-dev-db1*REMDEV:/home/ora11g>opatch lsinventory
    Oracle Interim Patch Installer version 11.2.0.3.4
    Copyright (c) 2012, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/app/ora11g/product/11.2.0/dbhome_1
    Central Inventory : /u01/app/oraInventory
    from : /u01/app/ora11g/product/11.2.0/dbhome_1/oraInst.loc
    OPatch version : 11.2.0.3.4
    OUI version : 11.2.0.3.0
    Log file location : /u01/app/ora11g/product/11.2.0/dbhome_1/cfgtoollogs/opatch/opatch2013-05-15_23-26-52PM_1.log
    Lsinventory Output file location : /u01/app/ora11g/product/11.2.0/dbhome_1/cfgtoollogs/opatch/lsinv/lsinventory2013-05-15_23-26-52PM.txt
    Installed Top-level Products (1):
    Oracle Database 11g 11.2.0.3.0
    There are 1 products installed in this Oracle Home.
    Interim patches (2) :
    Patch 16056266 : applied on Wed May 15 23:17:39 IST 2013
    Unique Patch ID: 15962803
    Patch description: "Database Patch Set Update : 11.2.0.3.6 (16056266)"
    Created on 12 Mar 2013, 02:14:47 hrs PST8PDT
    Sub-patch 14727310; "Database Patch Set Update : 11.2.0.3.5 (14727310)"
    Sub-patch 14275605; "Database Patch Set Update : 11.2.0.3.4 (14275605)"
    Sub-patch 13923374; "Database Patch Set Update : 11.2.0.3.3 (13923374)"
    Sub-patch 13696216; "Database Patch Set Update : 11.2.0.3.2 (13696216)"
    Sub-patch 13343438; "Database Patch Set Update : 11.2.0.3.1 (13343438)"
    Bugs fixed:
    13566938, 13593999, 10350832, 14138130, 12919564, 13561951, 13624984
    13588248, 13080778, 13914613, 13804294, 14258925, 12873183, 13645875
    14472647, 12880299, 14664355, 14409183, 12998795, 14469008, 13719081
    13492735, 13496884, 12857027, 14263036, 14263073, 13732226, 13742433
    16368108, 16314469, 12905058, 13742434, 12849688, 12950644, 13742435
    13464002, 13534412, 12879027, 13958038, 14613900, 12585543, 12535346
    12588744, 11877623, 13786142, 12847466, 13649031, 13981051, 12582664
    12797765, 14262913, 12923168, 13384182, 13612575, 13466801, 13484963
    14207163, 11063191, 13772618, 13070939, 12797420, 13041324, 16314467
    16314468, 12976376, 11708510, 13680405, 14589750, 13026410, 13742437
    13737746, 14644185, 13742438, 13326736, 13596521, 13001379, 16344871
    13099577, 9873405, 14275605, 13742436, 9858539, 14841812, 11715084
    16231699, 14040433, 12662040, 9703627, 12617123, 12845115, 12764337
    13354082, 14459552, 13397104, 13913630, 12964067, 12983611, 13550185
    13810393, 12780983, 12583611, 14546575, 13476583, 15862016, 11840910
    13903046, 15862017, 13572659, 16294378, 13718279, 14088346, 13657605
    13448206, 16314466, 14480676, 13419660, 13632717, 14063281, 14110275
    13430938, 13467683, 13420224, 13812031, 14548763, 16299830, 12646784
    13616375, 14035825, 12861463, 12834027, 15862021, 13632809, 13377816
    13036331, 14727310, 13685544, 15862018, 13499128, 16175381, 13584130
    12829021, 15862019, 12794305, 14546673, 12791981, 13787482, 13503598
    10133521, 12718090, 13399435, 14023636, 13860201, 12401111, 13257247
    13362079, 14176879, 12917230, 13923374, 14220725, 14480675, 13524899
    13559697, 9706792, 14480674, 13916709, 13098318, 13773133, 14076523
    13340388, 13366202, 13528551, 12894807, 13454210, 13343438, 12748240
    14205448, 13385346, 15853081, 14273397, 12971775, 13582702, 10242202
    13035804, 13544396, 16382353, 8547978, 14226599, 14062795, 13035360
    12693626, 13332439, 14038787, 14062796, 12913474, 14841409, 14390252
    16314470, 13370330, 13059165, 14062797, 14062794, 12959852, 13358781
    12345082, 12960925, 9659614, 13699124, 14546638, 13936424, 13338048
    12938841, 12658411, 12620823, 12656535, 14062793, 12678920, 13038684
    14062792, 13807411, 13250244, 12594032, 15862022, 9761357, 12612118
    13742464, 14052474, 13911821, 13457582, 13527323, 15862020, 13910420
    13502183, 12780098, 13705338, 13696216, 14841558, 10263668, 15862023
    16056266, 15862024, 13554409, 13645917, 13103913, 13011409, 14063280
    Patch 14275572 : applied on Fri Nov 02 16:12:28 IST 2012
    Unique Patch ID: 15379762
    Patch description: "Grid Infrastructure Patch Set Update : 11.2.0.3.4 (14275572)"
    Created on 12 Oct 2012, 00:27:42 hrs PST8PDT
    Bugs fixed:
    14275572, 13919095, 13696251, 13348650, 12659561, 13039908, 13825231
    13036424, 12794268, 13011520, 13569812, 12758736, 13000491, 13498267
    13077654, 13001901, 13550689, 13430715, 13806545, 11675721, 14082976
    12771830, 12538907, 13947200, 13066371, 13483672, 12594616, 13540563
    12897651, 12897902, 13241779, 12896850, 12726222, 12829429, 12728585
    13079948, 12876314, 13090686, 12925041, 12995950, 13251796, 12650672
    12398492, 12848480, 13582411, 13652088, 12990582, 13857364, 12975811
    12917897, 13082238, 12947871, 13037709, 13371153, 12878750, 10114953
    11772838, 13058611, 13001955, 11836951, 12965049, 13440962, 12765467
    13727853, 13425727, 12885323, 13965075, 13339443, 12784559, 13332363
    13074261, 12971251, 13811209, 12709476, 13460353, 13523527, 12857064
    13719731, 13396284, 12899169, 13111013, 13323698, 12867511, 12639013
    12959140, 13085732, 12829917, 10317921, 13843080, 12934171, 12849377
    12349553, 13924431, 13869978, 12680491, 12914824, 13789135, 12730342
    13334158, 12950823, 10418841, 13355963, 13531373, 13776758, 12720728
    13620816, 13002015, 13023609, 13024624, 12791719
    OPatch succeeded.
    Regards,
    Nikhil Mehta.

    Hi Alvaro,
    Sorry for being late on this.
    Please find below the output of your query and let me know if the DB is patched correctly or not.
    COMP_NAME VERSION
    OWB 11.2.0.3.0
    Oracle Application Express 3.2.1.00.12
    Oracle Enterprise Manager 11.2.0.3.0
    OLAP Catalog 11.2.0.3.0
    Spatial 11.2.0.3.0
    Oracle Multimedia 11.2.0.3.0
    Oracle XML Database 11.2.0.3.0
    Oracle Text 11.2.0.3.0
    Oracle Expression Filter 11.2.0.3.0
    Oracle Rules Manager 11.2.0.3.0
    Oracle Workspace Manager 11.2.0.3.0
    Oracle Database Catalog Views 11.2.0.3.0
    Oracle Database Packages and T 11.2.0.3.0
    ypes
    JServer JAVA Virtual Machine 11.2.0.3.0
    Oracle XDK 11.2.0.3.0
    Oracle Database Java Packages 11.2.0.3.0
    OLAP Analytic Workspace 11.2.0.3.0
    Oracle OLAP API 11.2.0.3.0
    18 rows selected.
    Also normally opatch lsinventory from both the users should show same result.
    Regards,
    Nikhil Mehta.

Maybe you are looking for

  • How to remove a stuck hard drive

    I have ssd drive in ablack MacBook that I won't slide out.  Any tips on how to remove the hard drive?

  • I can´t open Adobe Reader

    when I try to open Adobe Reader this messenge pops "Acrobat  has been closed unexpectedly " and so and so... I have Acrobat 9 and Im running on MacOsX 10.6.4 I also have installed the entire Adobe Suite CS5 ... I don´t what else would be important to

  • How to delete photos on photo stream

    How do I delete single photos from my photo stream album?

  • Outline box when editing text in PDF using v8

    We are running, Windows XP, Acro8 with updates. Created PDF files from within INDCS3. Many of the frames are independent. When trying to edit the text using the touchup text tool in Acrobat v8, it outlines complete area on the form which are not the

  • Why doesnt my keylistener work!?!

    class ers { public static void main (String [] args){ int width = 500; int height = 500; int keyR=0; Slate slate= new Slate (width,height); Graphics g = slate.getSlateGraphics(); g.setColor (Color.white); draw (g,0,0,width,height); slate.repaint(); K