Update items count in my Class

Hello
I need your help on the following issue.
I have the following class  in my application
All Countries (properties CountryId, CountryName, CountryCount)
AllIndustries (properties IndustryId, IndustryName, IndustryCount)
I am using: INotifyPropertyChanged for all class.
On my interface, I have two TreeView with Checkbox
treeview for Countries with 193 countries in total
treeview for Industries with 96 industries in total
<HierarchicalDataTemplate DataType="{x:Type localx:AllCountries}" >
<Border BorderBrush="#FFb6b6b6" BorderThickness=" 0,0,0,0" Margin="0,0,0,0" x:Name="brd" >
<Grid>
<StackPanel Orientation="Horizontal" Margin="20,0,0,0" >
<CheckBox x:Name="cbx" Content="{Binding CountryName}" Margin="5" Foreground="White" Click="cbx_singleCountry_Checked" >
</CheckBox>
<TextBlock Text="{Binding CountryCount}" FontSize="13" Padding="5,2,5,2" Foreground="white" HorizontalAlignment="Left" Background="{x:Null}" Width="204" />
</StackPanel>
</Grid>
</Border>
</HierarchicalDataTemplate>
I also have a class AllPeople (properties PeopleID, PeopleName, People Group, People Country, PeopleIndustry)
I display the data from the AllPeople class in a Datagrid
Content of Datagrid varies depending on the choice of a ComboBox
What I want to do:
When the datagrid is filled, the properties "CountryCount" of the class AllCountries  and  "IndustryCount" of  AllIndustries
Class  must be updated for each element of the treeview according to the matching result.
What I have written as code.
for (int c = 0; c < myAllCountries.Count; c++)
MyFilter = new ObservableCollection<AllPeople>(myAllPeople.Where(r => r.PeopleCountry.Equals(myAllCountries[c].CountryName)));
myAllCountries[c].CountryCount = MyFilter.Count;
for (int c = 0; c < myAllIndusties.Count; c++)
MyFilter = new ObservableCollection<AllPeople>(myAllPeople.Where(r => r.PeopleIndusty.Equals(myAllIndusties[c].IndustyName)));
myAllIndusties[c].IndustyCount = MyFilter.Count;
The code works, properties are updated, but I have a performance issue.
It is SLOW.
I display a loading Gif image and i use
Dispatcher.BeginInvoke(new Action(() =>
But the delay is still long and the interface freezes.
How can I avoid this ? or do a something like
public class AllCountries : INotifyPropertyChanged
private ObservableCollection<AllPeople> m_Items;
public ObservableCollection<AllPeople> Items
get { return m_Items; }
set
if(m_Items != null)
m_Items = value;
OnPropertyChanged("Items");
public int ProductCount
// MyAdvancedSearch = new ObservableCollection<PublicCompaniesClass>(_mainWindow.myPbC.Where(r => r.Market.Equals(_mainWindow.myMarket[a].Market_Name) ));
// _mainWindow.myMarket[a].Market_Count = MyAdvancedSearch.Count;
private int _countryId,;
public int CountryId
get { return _countryId,; }
set
if (_countryId, != value)
_countryId, = value;
OnPropertyChanged("CountryId");
private string _countryname;
public string CountryName
get { return _countryname; }
set
if (_countryname != value)
_countryname = value;
OnPropertyChanged("CountryName");
private int _countrycount;
public int CountryCount
get
return Items == null
? 0
: Items.Where(r => r.PeopleCountry.Equals(CountryName)).Count();
set
if (_countrycount != value)
_countrycount = value;
OnPropertyChanged("CountryCount");
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string p_strPropertyName)
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(p_strPropertyName));
So,  I will not have to use a For loop to update the properties CountryCount.
Thanks in advance for any help

Hi CPGtech,
Thanks for your post.
I was trying to make a sample according to your description, but I need to confirm something with you first.
>>”Content of Datagrid varies depending on the choice of a ComboBox”
Here what’s the itemsource of ComboBox?  Is it the AllPeople?
>>” But the delay is still long and the interface freezes.”
In my experience, it may due to the consuming operation in your code. I suggest that you could call these methods in “Dispatcher.BeginInvoke()” or you could also create a new thread  with the method.
By the way, could you please post a code sample to show this issue?  Please use your OneDrive and share a link to here.
Best Regards,
Eoro

Similar Messages

  • Dso updating item count to cube

    Hello experts.
    I am counting item in transformation from data source to DSO (key fields - order no and item no).
    Result = 1`.
    In DSO, count works fine.
    Now, I am updating DSO to a summary cube.
    What transformation routine I need to write, so that an item only count once and not aggregated when same item and order comes in multiple times.
    Is this routine correct -
    if source_fields-recordmode = 'R' or
      source_fields-recordmode = ' ' .
    result = '-1'.
    else.
    result =1.
    endif.

    Ramesh,
    No need to write any code while mapping from DSO to CUBE.
    Just map, counter(one-to-one) from DSO to CUBE.
    Change DTP settings to from change log. Change log takes care of new, changed or canceled records.
    Hope it Helps
    Srini

  • The workflow could not update the item, possibly because one or more columns for the item require a different type of information using Update Item action

       I got error  "The workflow could not update the item, possibly because one or more columns for the item require a different type of information "I  found out the cause is  Update Item action       
    I need to update item in another List call Customer Report ,the field call "Issues"  with data type  "Choice"   to yes
    then the error arise .   please help..

    Thanks for the quick response Nikhil.
    Our SPF 2010 server is relatively small to many setups I am sure. The list with the issue only has 4456 items and there are a few associated lists, eg lookups, Tasks, etc see below for count.
    Site Lists
    Engagements = 4456 (Errors on this list, primary list for activity)
    Tasks = 7711  (All workflow tasks from all site lists)
    Clients = 4396  (Lookup from Engagements, Tslips, etc)
    Workflow History = 584930 (I periodically run a cleanup on this and try to keep it under 400k)
    Tslips = 3522 (Engagements list can create items here, but overall not much interaction between lists)
    A few other lists that are used by workflows to lookup associations that are fairly static and under 50 items, eg "Parters Admin" used to lookup a partners executive admin to assign a task.
    Stunpals - Disclaimer: This posting is provided "AS IS" with no warranties.

  • How can I update a JTextArea from another class

    I am new to Java so forgive me if this is confusing, or if I seem to be taking an overly complex route to acheiving my goal.
    I've got a JTextArea component added to a JPanel object, which is then inserted into the JFrame. I have a JMenuBar with a JMenu "file" and a JMenuItem "connect" on this same JFrame. When clicked, the actionEvent of JMenuItem "connect" calls a class "ConnectToDb" to establish a connection with the Database. On a successful connection, I want to append the String "Connection Successful" to the JTextArea component, but since the component is a part of the JPanel object, I cannot seem to get access to the JTextArea component to update it. I tried instantiating the JPanel object from within the "ConnectToDb" class and then called a method I created to set the JTextArea. No luck. Can someone give me an idea of what I need to do that would allow me to update the text of the JTextArea component from anywhere in my program? Once it has been contained in the JPanel or JFrame, can it be updated?
    This is the class that establishes the simple Db Connection
    package cjt;
    import java.io.*;
    import java.sql.*;
    * Get a database connection
    * Creation date: (04/01/2002 4:08:39 PM)
    * @author: Yaffin
    public class ConnectToDB {
    public Connection dbConnection;
    // ConnectToDB constructor
    public ConnectToDB() {
    public Connection DbConnect() {
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String sourceURL = new String("jdbc:odbc:CJTSQL");
    Connection dbConnection = DriverManager.getConnection(sourceURL, "Encryptedtest", "pass");
    System.out.println("Connection Successful\n");
    //this is where I originally tried to append "Connection Successful
    //to the JTextArea Object in WelcomePane()          
    } catch (ClassNotFoundException cnfe) {
    //user code
    System.out.println("This ain't working because of a class not found exeption/n");
    } catch (SQLException sqle) {
    //user code
    System.out.println("SQL Exception caused your DB Connection to SUCK!/n");
    return dbConnection;
    This is the JPanel that contains the JTextArea "ivjStatusArea" I am trying to update from other classes. Specifically the "ConnectToDb" class above.
    package cjt;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    * Build Welcome Pane
    * Creation date: (04/01/2002 3:42:50 PM)
    * @author: yaffin
    public class WelcomePane extends JPanel {
         private JTextArea ivjtxtConnect = null;
         private JLabel ivjwelcomeLbl = null;
         private JTextArea ivjStatusArea = null;
    * WelcomePane constructor comment.
    public WelcomePane() {
         super();
         initialize();
    * Return the StatusArea property value.
    * @return javax.swing.JTextArea
    private javax.swing.JTextArea getStatusArea() {
         if (ivjStatusArea == null) {
              try {
                   ivjStatusArea = new javax.swing.JTextArea();
                   ivjStatusArea.setName("StatusArea");
                   ivjStatusArea.setLineWrap(true);
                   ivjStatusArea.setWrapStyleWord(true);
                   ivjStatusArea.setBounds(15, 153, 482, 120);
                   ivjStatusArea.setEditable(false);
                   // user code begin {1}
                   // user code end
              } catch (java.lang.Throwable ivjExc) {
                   // user code begin {2}
                   // user code end
                   handleException(ivjExc);
         return ivjStatusArea;
    * Initialize the class.
    private void initialize() {
         try {
              // user code begin {1}
              // user code end
              setName("WelcomePane");
              setLayout(null);
              setSize(514, 323);
              add(getStatusArea(), getStatusArea().getName());
         } catch (java.lang.Throwable ivjExc) {
              handleException(ivjExc);
         // user code begin {2}
         // user code end
    This is the main class where evrything is brought together. Notice the BuildMenu() method where the JMenuItem "connect" is located. Also notice the PopulateTabbedPane() method where WelcomePane() is first instantiated.
    * The main application window
    * Creation date: (04/01/2002 1:31:20 PM)
    * @author: Yaffin
    public class CjtApp extends JFrame {
    private JTabbedPane tabbedPane;
    private ConnectToDB cdb;
    private Connection dbconn;
    public CjtApp() {
    super("CJT Allocation Application");
    // Closes from title bar
    //and from menu
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    tabbedPane = new JTabbedPane(SwingConstants.TOP);
    tabbedPane.setForeground(Color.white);
    //add menubar to frame
    buildMenu();
    //populate and add the tabbed pane
    populateTabbedPane(dbconn);
    //tabbedPane.setEnabledAt(1, false);
    //tabbedPane.setEnabledAt(2, false);
    getContentPane().add(tabbedPane);
    pack();
    * Build menu bar and menus
    * Creation date: (04/01/2002 2:42:54 PM)
    private void buildMenu() {
    // Instantiates JMenuBar, JMenu,
    // and JMenuItem.
    JMenuBar menubar = new JMenuBar();
    JMenu menu = new JMenu("File");
    JMenuItem item1 = new JMenuItem("Connect");
    JMenuItem item2 = new JMenuItem("Exit");
    //Opens database connection screen
    item1.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    //call the ConnectToDb class for a database connection
    ConnectToDB cdb = new ConnectToDB();
    dbconn = cdb.DbConnect();
    }); // Ends buildMenu method
    //Closes the application from the Exit
    //menu item.
    item2.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    System.exit(0);
    }); // Ends buildMenu method
    //Adds the item to the menu object
    menu.add(item1);
    menu.add(item2);
    //Adds the menu object with item
    //onto the menu bar     
    menubar.add(menu);
    //Sets the menu bar in the frame
    setJMenuBar(menubar);
    } //closes buildMenu
    public static void main(String[] args) {
    CjtApp mainWindow = new CjtApp();
    mainWindow.setSize(640, 480);
    mainWindow.setBackground(Color.white);
    mainWindow.setVisible(true);
    mainWindow.setLocation(25, 25);
    * Add tabs to the tabbedPane.
    * Creation date: (04/01/2002 2:52:19 PM)
    private void populateTabbedPane(Connection dbconn) {
         Connection dbc = dbconn;
         tabbedPane.addTab(
         "Welcome",
    null,
    new WelcomePane(),
    "Welcome to CJT Allocation Application");
         tabbedPane.addTab(
         "Processing",
    null,
    new ProcessPane(dbc),
    "Click here to process an allocation");
         tabbedPane.addTab(
         "Reporting",
    null,
    new ReportPane(),
    "Click here for reports");
    //End
    Thanks for any assistance you can provide.
    Yaffin

    Thanks gmaurice1. I appreciate the response. I believe I understand your explanation. I am clear that the calling code needs access to the WelcomPane() object. I am assuming that the constructor for the calling class must have the JPanel WelcomePane() instance passed to it as an argument. This way I can refer directly to this specific instance of the object. Is this correct?
    Also, where would you create the set method? I tried to create a set method as part of the WelcomePane() class, and then call it from the calling class, but it didn't seem to work. Lastly, a globally accessible object? Can you explain this concept briefly? Thanks again for your help.
    yaffin

  • ABC Analysis [Update Item Assignment Window]

    Hello Friends
    I am working on Inventory Cycle count in EBS R12. I am facing a problem.
    I create an ABC Analysis for ##FGI sub inventory in M1 Organization on Vision Instance. Then i checked 22 items in my
    On-Hand Availability Window. But when i checked Update Item Assignment window, it shows me 20 items. can you please tell me that
    where my rest of 2 items are missing ? What are the reason or what organization parameter or what item attribute missing ? Do i need to do any special setup for rest of those two items?
    Can you please please further told me that what is the back end process of Compiling ABC analysis ?
    Best Regards

    Hi,
    Did you tried to re-initialize your ABC ..
    I think it can be an issue that you might have defined 2 items later after defining all your ABC compile ,assignments etc.
    And since your ABC compile is working on previous item it might not pick these newly defined items.
    Thanks
    Rahul Tushir

  • Solution for invalid directory item count, startup disk corruption and regular crashes

    Hi,
    My late 2006 MacBook (10.6.8) has recently started crashing quite frequently. The screen becomes dark and a multi-language dialogue appears stating that the computer must be restarted with the power button. When this occurs any audio which was playing begins to repeat/skip and the computer goes into complete lockdown. This is now happening perhaps twice a day or more under moderate use.
    This morning I ran 'Verify Disk' in Disk Utility and the process was stopped, stating that I had two 'Invalid directory item counts' and 'the volume Macintosh
    HD was found to be corrupt'. Here is a screenshot of the Disk Utility window:
    I have rebooted, run a software update and rerun the disk verification but to no avail. I also booted using CMD-S, advised by an older post in another forum which suggested using 'fsck -yf' which ran and stated that the disk had been repaired.
    I bought the MacBook second hand from an Apple dealer but it didn't come with an install disc so I am unable to reboot and repair the disk like that.
    My questions, therefore, are what does this mean for my computer in the future, will either of these issues cause me more trouble?
    What can I do about it without the install disc
    And are these issues directly related to the crashes? (I have been running the computer connected to an external drive and monitor - for watching movies)
    Thanks in advance for any help you can offer!
    Twitch

    Not much you can do without an install disc which can be purchased from Apple Store >  Mac OS X 10.6 Snow Leopard - Apple Store (U.S.)
    multi-language dialogue appears
    That is referred to as a kernel panic. OS X: About kernel panics
    Regardless of the kernel panics, you will still need the install disc to repair and reinstall OS X if necessary.
    And are these issues directly related to the crashes? (I have been running the computer connected to an external drive and monitor - for watching movies)
    Could be part of the problem.

  • Invalid directory item count

    Hi all
    I have a 2008 model iMac running Snow Leopard 10.6.4.
    After installing the most recent security update this weekend, the machine rebooted and hung on start up (it was stuck on the circular activity indicator / gray screen for well over an hour). In the end I killed the power and restarted. The machine came up straight away.
    I verified the disk using Disk Utility and it reported errors. So I rebooted into single user and ran fsck -fy, which fixed a whole bunch of stuff. Booted the machine and ran Disk Utility again, and it still reported errors!
    Back into single user and fsck -fy the disk until it reports no changes twice in a row. Start the machine and run Disk Utility and again it reports a problem!
    So now I am stuck in a loop:
    - Boot in single user
    - Run fsck -fy
    - fsck reports that 'Invalid directory item count' error and corrects it
    - Boot the machine
    - Run Disk Utility, the 'Invalid directory item count' has returned
    - Back to single user and it starts again
    Can anyone advise on this? Do I need to worry about that message? It's the same error every time - and every time I fix it in single user and it's back by the time the machine boots. Do I just need to go out and buy DiskWarrior? I'd rather not - on the surface there's nothing wrong with the machine and I never would've known if I hadn't run Disk Utility after that hang.
    Thanks in advance for any help

    Thank you for the reply.
    SMART validates as 'OK'.
    I will try the hardware test. The OEM hard disk that came with this machine failed last year and the hardware test identified that before it finally died. However that had a lot of problems leading up to it - the machine would hang and was often very slow - checking Console showed a lot of I/O errors. Fortunately nothing like that is happening this time.
    Hopefully this disk is OK. Thanks again.

  • APP-INV-05143 : Cannot update item because the item exists in a BOM

    We had incorrectly defined the BOM Item type for an item as Option Class, where it should have been a model. I have taken this item out of all BOMs and trying to update the BOM Item Type flag on the master items forms, but am getting the error:
    APP-INV-05143 : Cannot update item because the item exists in a BOM
    Am I missing a step here ? Please help.

    Pl post details of OS, database and EBS versions.
    Pl see if MOS Doc 356453.1 (Cannot Change Bom Item Type Of An Item, Errors With APP-INV-05143) can help
    HTH
    Srini

  • I am Trying to update Item category by using Standar API .. But no Updating .. and it show some erros message.. INV INV_VALID_CAT error message

    Hi 
      I am using Standard API to Update Item category. But it was not updating.any value  what passing to paramenter in API But iwas through some.. error mesage INV INV_VALID_CAT
    Regards,
    Sam

    Please see if (PA_PROJECT_PUB.create_project Errors - The Class Category Is Invalid (Doc ID 1323904.1)) helps.
    Thanks,
    Hussein

  • After using "consolidate library" to move my media to a NAS the items counts do not match.  How do I find what is different the easiest way??

    I wanted to move my itunes media on my imac to a NAS drive.  I used the advance preferences to change the folder to the folder on the NAS.  I then went to the "organize library" setting to consolidate.
    When I compare the two folders, the music folders are different (807 items in the old to 798 items in the new), mobile applications are different (143 in the old to 153 in the new), Movies are different (321 items in the old, 324 in the new).
    I think I already had the entire folder organized the way itunes wanted it.  I'm not sure why the count would increase or to easily make sure I'm not missing any info.
    Any suggestions?
    Thanks.

    Actually, a little off on the situation as I originally described.
    Compared the old items counts to the new item counts:
    1. The music folder increased in item counts.
    2.  Books is identical.
    3.  Mobile apps decreased by 10 on the new.
    4.  Movies decreased by 3.

  • There was an error while updating row count for "SH".."SH".CHANNELS

    Hi All,
    Am new to OBIEE.Pls help in this regard.
    Am building the physical layer as per Repository guide.When am importing the data in to this,am getting the below error.
    *"There was an error while updating row count for "SH".."SH".CHANNELS" :"*
    channles is the table name and having 5 rows.
    but am able to see the data in the sql prompt. like SELECT * FROM SH.CHANNELS then 5 rows data would be displaying..
    pls help in this regard and where is the excat problem?
    Thanks,

    what is the error?
    Make sure that your connection pool settings are okay..
    Make sure that, you are using correct driver in case of if you are using ODBC dsn..
    Also make sure that, your oracle server is running... TNS and Oracle server services

  • Not able to create sub folder using SharePoint web service in large SharePoint document library (Item count view threshold limit)

    We are trying to create folder & subfolder in a SharePoint document library using SharePoint default(dws) web service. Document library has unique permission as well as item level permission. It was working as expected. Once item count crosses
    view threshold limit ( 5000) , create folder web method completes with an error and it creates a folder in SharePoint.
    Request:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dws="http://schemas.microsoft.com/sharepoint/soap/dws/">
       <soapenv:Header/>
       <soapenv:Body>
          <dws:CreateFolder>
             <!--Optional:-->
             <dws:url>Shared Documents/VenTest02092015v1</dws:url>
          </dws:CreateFolder>
       </soapenv:Body>
    </soapenv:Envelope>
     Response:
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
       <soap:Body>
          <CreateFolderResponse xmlns="http://schemas.microsoft.com/sharepoint/soap/dws/">
             <CreateFolderResult>&lt;Error ID="2">Failed&lt;/Error></CreateFolderResult>
          </CreateFolderResponse>
       </soap:Body>
    </soap:Envelope>
     While trying to create subfolder under the above created folder service throws an exception saying
    FolderNotFound.
    Though we are able to create subfolder from SharePoint UI successfully. 
    Request
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dws="http://schemas.microsoft.com/sharepoint/soap/dws/">
       <soapenv:Header/>
       <soapenv:Body>
          <dws:CreateFolder>
             <!--Optional:-->
             <dws:url>Shared Documents/VenTest02092015v1/REQ-1</dws:url>
          </dws:CreateFolder>
       </soapenv:Body>
    </soapenv:Envelope>
    Response:
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
       <soap:Body>
          <CreateFolderResponse xmlns="http://schemas.microsoft.com/sharepoint/soap/dws/">
             <CreateFolderResult>&lt;Error ID="10">FolderNotFound&lt;/Error></CreateFolderResult>
          </CreateFolderResponse>
       </soap:Body>
    </soap:Envelope>

    Yes, you're probably hitting the 5000 list item threshold (
    http://sharepoint.stackexchange.com/questions/105937/overcoming-5000-file-document-library-limits ). I assume you can do it via the UI because you're probably logged in as an admin in which case, out of memory, the threshold is 20.000 items. You can extend
    this limit, but you probably shouldn't.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Obiee oracle gateway error while updating row count

    Hi ,
    OBIEE server 11.1.1.5 ,oracle server11g installed in linux 64bit,
    while updating row count in Admin tool i am getting the following error
    [NQODBC][SQL_STATE:HY000][nQSError:10058] A general error has occured.
    [nQSError: 43113]Message returned from OBIS.
    [nQSError:43093]An error occured while processing the EXECUTE PHYSICAL statement.
    [nQSError:17003]Oracle gateway error: OCIEnvNIsCreate or OCIEnvInit failed to initialize environment.Please check your Oracle Client installation and make sure the correct version of OCI libraries are in the library path.
    i am able to check the database from sqlplus it is working fine.
    Any suggestion highly appreciated plzzz

    Make sure your connection pool is valid and able to import or execute reports.
    If everything good as above said, in Physical layer database properties-> general tab choose the database version and try it once.
    If not
    Check the doc id 1271486.1
    Or
    To resolve the issue create a softlink (ln -s) in the <OracleBI>/server/Bin folder to link to the 32-bit Oracle Client Driver file.
    The example below shows how to perform a softlink from the 64 bit directory:
    cd /u10/app/orcladmin/oracle/OracleBI/server/Bin
    ln -s $ORACLE_HOME/lib32/libclntsh.so.10.1 libclntsh.so.10.1
    If helps mark

  • Not able to update row count in Physical Layer..connection failed in OBIEE 11g

    Hi Guys,
    I am not able to do Update Row count in the Physical Layer, i am getting an error The Connection has failed. This is in OBIEE 11g Linux env.
    I have put the tnsnames.ora file in the below path:
    /*****/pkgs/linux/intel/OBIEE_DIT/MW_HOME/Oracle_BI1/network/admin/
    I do not have admin under
    /****/pkgs/linux/intel/OBIEE_DIT/MW_HOME/oracle_common/network/
    But if i put the whole TNS entry in the Data Source Name i am able to connect:
    (DESCRIPTION =(ADDRESS = (PROTOCOL= TCP) (HOST= xxx.xxx.com) (PORT= 1671))(CONNECT_DATA = (SERVICE_NAME = US1OBIEE)))
    I am not able to understand the issue..
    Thanks,
    Amit

    Looks like rpd is looking for local tns config... try to use as hostname:port/ServiceName
    This should work, just in case not working! stop doing so since it is know issue.
    If helps mark

  • My iTunes doesn't keep track of my listening history anymore. It doesn't update play counts and default "Recently Played" playlist.

    My iTunes doesn't keep track of my listening history anymore. It doesn't update play counts and default "Recently Played" playlist. But it still tracking plays from my iPhone and syncing them.
    I've tried to repair it with setup file. Nothing's changed.
    Can you help me with that?
    NOTE: Now I tried disabling the crossfade feature and it worked, started to count again. But I like crossfade, I don't want to keep it off.

    I think I got this figured out. The playcount does update, but not how the previous iPod models update their playcount. Instead of immediately updating the playcount right after you finish the song like the older iPod models, iPod Touch keeps the updates in memory. The next time you connect to iTunes it'll sync those playcounts in memory to the actual songs itself, effectively updating the playcount of the songs only after connecting to iTunes. I have set my syncing manually. That's why after connecting to iTunes, my playcounts are updated. BUT it doesn't solve the mystery of my Smart Playlist. Even though in iTunes, the correct songs are listed, in the iPod Touch, it shows the old playlist.
    Don't you just hate that? It was working fine before on non-iPod touch models. Now we have to live with this new bug. I just hope when they release software 2.0 it fixes these bugs and that they *give it for free!* People shouldn't be charged on something they should have gotten as a support!

Maybe you are looking for