Uploaded doc not visible immediately

Dear KM friends,
I created a KM Navigatio iView and a page.
assigned the iview to the page and started using it in an EP user.
problem is, if i create or upload a new document it does't appear. i refreshed the iview and page. that time it displays. again if i click on km link from Deatailed Navigation again same problem.
Can anybody help me what is problem, and how to make the newly created document to be visible immediately.
I am using Isolation Method as URL of iview.
any hopes?
plz reply me
thanx in advance
Lakshmikantha

Hi,
do you upload the document from within the iView that displays the folder where you upload the document in? If so, it should be visible immediately - if you use KM's standard upload command.
However, if you upload the document from another iView, the other iViews will not be informed via eventing. You have to refresh these iViews.
Also, if you upload with your own command and propably just open a new browser window for upload, the "parent" iView will not get a refresh-event after your upload completed.
Kind regards
Andreas

Similar Messages

  • Upload docs not publishing to site

    hi there,
    I have set up contribute for a website, I myself can add a
    link to a pdf on my machine, and upon publishing, the file will be
    uploaded to the right place and is linked to that published
    version.
    Another user, upon creating a link to a PDF or any file and
    publishing, the file will not be uploaded to the server and the
    link will still point to the File location on their local machine
    e.g ("c:\documents\file.pdf" not "
    http://www.sitename/docs/file.pdf")
    The rest of the page uploads fine, so all content is uploaded
    but the file wont upload, and the link wont work because its
    pointed to his local machine.
    It works on my machine, but not his
    Can anyone help, any assistance will be ever grateful..
    Thanks in advance.
    Alen

    Hi
    One way is setting a region in secondary as 'set replaceable' and geting ssURL from the code and link them in primary page.
    Thanks
    Srinath

  • New key figures in multiprovider not visible in query designer

    Dear Experts,
    I added a cube and  keyfigures to the multiprovider definition.
    The multiprovider is activated successfully.
    The added keyfigures come only from this new cube.
    I  identified these new keyfigures to this new cube only.
    There is an existing query based on old version of the multiprovider without the new cube.
    When i relaunch query designer and re-open this query, i could not see the new keyfigures.
    When i create a new query, also its not showing the new keyfigures.
    Is there something not refreshed that I do not see these new key figures?
    Kindly advise. Thank you!
    Best regards
    Bass

    Hi,
    Some time it happens that newly added key figures and characteristics are not visible immediately in Bex query designer. Just check for warnings if any encountered while activating else try editing and re activating your Multiprovider and also proper field assignment.
    Newly added Key Figures should be visible in both New and Old queries without any differentiation. Just log off and log in back after some time, there is a good possibility that this inconsistency would be resolved.
    Regards
    Raj Rai

  • Doc Uploaded by ABAP Class CL_SA_DOC_FACTORY= UPLOAD_DOC not visible

    I am uploading a document in Solution manager through the below code.
    CALL METHOD CL_SA_DOC_FACTORY=>UPLOAD_DOC
      EXPORTING
        I_DOC_TITLE              = 'TEST'
        I_DOC_TECH_NAME          = 'TEST'
        I_DOC_TYPE               = 'AD'
        I_DOC_STATUS             = 'RELEASED'
        I_DOC_BLUEPRINT_RELEVANT = 'X'
       I_FOLDER_ID              = 'DF1223E3C88613F1BDD70011258C9477'
       I_FOLDER_TITLE           =
        I_FOLDER_TECH_NAME       = 'TCLSUPPORT'
        I_FOLDER_RESPONSIBLE     = SY-UNAME
      RECEIVING
        E_IOBJECT                =  eobj
    EXCEPTIONS
       CANCELLED                = 1
       FOLDER_ERROR             = 2
       ERROR                    = 3
       others                   = 4
    CALL METHOD eobj->SAVE
    EXPORTING
      RECEIVING
        E_LOIO             = eresult
    EXCEPTIONS
       CANCELLED          = 1
       ERROR              = 2
       others             = 3
    eresult structure gives:
    CLASS      SOLARGEN
    OBJID       DF1BC08D3D729FF1BDD70011258C9477
    But when I go to SOLAR01 and then to my project document in not visible there.
    Tables SA01PHIO  and SA01LOIO are getting updated with OBJID but document not visible through SOLAR01

    Hi Abhinav,
    Did you perhaps every find the document that you uploaded?
    I am experiencing the same problem and would be interested in your solution.
    Thanks,
    Miguel

  • Data in CSV uploads successfully, but it is not visible after upload.

    Hi,
    I am using Apex 3.2 on Oracle 11g.
    This is an imported application for which I am making changes as per my requirements. As I am new to Apex and even SQL, I request forum members to help me with this.
    Please find below the old code for uploading data from CSV. It displays only 6 columns - Database Name, Server Name, Application Name, Application Provider, Critical, Remarks. This was successfully uploading all the data from CSV and that data was visible after upload.
    OLD CODE:_
    --PLSQL code for uploading application details
    DECLARE
    v_blob_data      BLOB;
    v_blob_len      NUMBER;
    v_position      NUMBER;
    v_raw_chunk      RAW(10000);
    v_char           CHAR(1);
    c_chunk_len           NUMBER:= 1;
    v_line           VARCHAR2 (32767):= NULL;
    v_data_array      wwv_flow_global.vc_arr2;
    v_rows           NUMBER;
    v_count           NUMBER;
    v_dbid           NUMBER;
    v_serverid           NUMBER;
    v_sr_no          NUMBER:=1;
    v_last_char          varchar2(2);
    BEGIN
    -- Read data from wwv_flow_files
    SELECT blob_content INTO v_blob_data FROM wwv_flow_files
    WHERE last_updated = (SELECT MAX(last_updated) FROM wwv_flow_files WHERE UPDATED_BY = :APP_USER)
    AND id = (SELECT MAX(id) FROM wwv_flow_files WHERE updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- For removing the first line
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    EXIT;
    END IF;
    END LOOP;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    --removing the new line character added in the end
    v_line := substr(v_line, 1, length(v_line)-2);
    --removing the double quotes
    v_line := REPLACE (v_line, '"', '');
    --checking the absense of data in the end
    v_last_char:= substr(v_line,length(v_line),1);
    IF v_last_char = CHR(44) THEN
         v_line :=v_line||'-';
    END IF;
    -- Convert each column separated by , into array of data
    v_data_array := wwv_flow_utilities.string_to_table (v_line, ',');
    -- Insert data into target tables
    SELECT SERVERID into v_serverid FROM REPOS_SERVERS WHERE SERVERNAME=v_data_array(2);
    SELECT DBID into v_dbid FROM REPOS_DATABASES WHERE DBNAME=v_data_array(1) AND SERVERID=v_serverid;
    --Checking whether the data already exist
    SELECT COUNT(APPID) INTO v_count FROM REPOS_APPLICATIONS WHERE DBID=v_dbid AND APPNAME=v_data_array(1);
    IF v_count = 0 THEN
    EXECUTE IMMEDIATE 'INSERT INTO
    REPOS_APPLICATIONS (APPID,APPNAME,APP_PROVIDER,DBID,SERVERID,CRITICAL,LAST_UPDATE_BY,LAST_UPDATE_DATE,REMARKS) VALUES(:1,:2,:3,:4,:5,:6,:7,:8,:9)'
    USING
    APP_ID_SEQ.NEXTVAL,
    v_data_array(3),
    v_data_array(4),
    v_dbid,
    v_serverid,
    v_data_array(5),
    v_data_array(6),
    v_data_array(7),
    v_data_array(8);
    END IF;
    -- Clearing out the previous line
    v_line := NULL;
    END IF;
    END LOOP;
    END;
    ==============================================================================================================================
    Please find below the new code (which I modified as per my requirements) for uploading data from CSV. It displays 17 columns - Hostname, IP Address, Env Type, Env Num, Env Name, Application, Application Component, Notes, Cluster , Load Balanced, Business User Access Mechanism for Application, Env Owner, Controlled Environment, SSO Enabled, ADSI / LDAP / External Directory Authentication, Disaster Recovery Solution in Place, Interfaces with other application.
    This is successfully uploading all the data from CSV, But this uploaded data is not visible in its respective tab.
    _*NEW CODE:*_
    --PLSQL code for uploading application details
    DECLARE
    v_blob_data      BLOB;
    v_blob_len      NUMBER;
    v_position      NUMBER;
    v_raw_chunk      RAW(10000);
    v_char           CHAR(1);
    c_chunk_len           NUMBER:= 1;
    v_line           VARCHAR2 (32767):= NULL;
    v_data_array      wwv_flow_global.vc_arr2;
    v_rows           NUMBER;
    v_count           NUMBER;
    v_dbid           NUMBER;
    v_serverid           NUMBER;
    v_sr_no          NUMBER:=1;
    v_last_char          varchar2(2);
    BEGIN
    -- Read data from wwv_flow_files
    SELECT blob_content INTO v_blob_data FROM wwv_flow_files
    WHERE last_updated = (SELECT MAX(last_updated) FROM wwv_flow_files WHERE UPDATED_BY = :APP_USER)
    AND id = (SELECT MAX(id) FROM wwv_flow_files WHERE updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- For removing the first line
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    EXIT;
    END IF;
    END LOOP;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    --removing the new line character added in the end
    v_line := substr(v_line, 1, length(v_line)-2);
    --removing the double quotes
    v_line := REPLACE (v_line, '"', '');
    --checking the absense of data in the end
    v_last_char:= substr(v_line,length(v_line),1);
    IF v_last_char = CHR(44) THEN
         v_line :=v_line||'-';
    END IF;
    -- Convert each column separated by , into array of data
    v_data_array := wwv_flow_utilities.string_to_table (v_line, ',');
    -- Insert data into target tables
    --SELECT SERVERID into v_serverid FROM REPOS_SERVERS WHERE SERVERNAME=v_data_array(2);
    --SELECT DBID into v_dbid FROM REPOS_DATABASES WHERE DBNAME=v_data_array(1) AND SERVERID=v_serverid;
    --Checking whether the data already exist
    --SELECT COUNT(APPID) INTO v_count FROM REPOS_APPLICATIONS WHERE DBID=v_dbid AND APPNAME=v_data_array(1);
    IF v_count = 0 THEN
    EXECUTE IMMEDIATE 'INSERT INTO
    REPOS_APPLICATIONS (APPID,HOSTNAME,IPADDRESS,ENV_TYPE,ENV_NUM,ENV_NAME,APPLICATION,APPLICATION_COMPONENT,NOTES,CLSTR,LOAD_BALANCED,BUSINESS,ENV_OWNER,CONTROLLED,SSO_ENABLED,ADSI,DISASTER,INTERFACES) VALUES(:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,:16,:17,:18)'
    USING
    APP_ID_SEQ.NEXTVAL,
    v_data_array(1),
    v_data_array(2),
    v_data_array(3),
    v_data_array(4),
    v_data_array(5),
    v_data_array(6),
    v_data_array(7),
    v_data_array(8),
    v_data_array(9),
    v_data_array(10),
    v_data_array(11),
    v_data_array(12),
    v_data_array(13),
    v_data_array(14),
    v_data_array(15),
    v_data_array(16),
    v_data_array(17);
    END IF;
    -- Clearing out the previous line
    v_line := NULL;
    END IF;
    END LOOP;
    END;
    ============================================================================================================================
    FYI, CREATE TABLE_ is as below:
    CREATE TABLE "REPOS_APPLICATIONS"
    (     "APPID" NUMBER,
         "APPNAME" VARCHAR2(50),
         "APP_PROVIDER" VARCHAR2(50),
         "DBID" NUMBER,
         "CRITICAL" VARCHAR2(3),
         "REMARKS" VARCHAR2(255),
         "LAST_UPDATE_DATE" TIMESTAMP (6) DEFAULT SYSDATE NOT NULL ENABLE,
         "LAST_UPDATE_BY" VARCHAR2(10),
         "SERVERID" NUMBER,
         "HOSTNAME" VARCHAR2(20),
         "IPADDRESS" VARCHAR2(16),
         "ENV_TYPE" VARCHAR2(20),
         "ENV_NUM" VARCHAR2(20),
         "ENV_NAME" VARCHAR2(50),
         "APPLICATION" VARCHAR2(50),
         "APPLICATION_COMPONENT" VARCHAR2(50),
         "NOTES" VARCHAR2(255),
         "CLSTR" VARCHAR2(20),
         "LOAD_BALANCED" VARCHAR2(20),
         "BUSINESS" VARCHAR2(255),
         "ENV_OWNER" VARCHAR2(20),
         "CONTROLLED" VARCHAR2(20),
         "SSO_ENABLED" VARCHAR2(20),
         "ADSI" VARCHAR2(20),
         "DISASTER" VARCHAR2(50),
         "INTERFACES" VARCHAR2(50),
         CONSTRAINT "REPOS_APPLICATIONS_PK" PRIMARY KEY ("APPID") ENABLE
    ALTER TABLE "REPOS_APPLICATIONS" ADD CONSTRAINT "REPOS_APPLICATIONS_R01" FOREIGN KEY ("DBID")
         REFERENCES "REPOS_DATABASES" ("DBID") ENABLE
    ALTER TABLE "REPOS_APPLICATIONS" ADD CONSTRAINT "REPOS_APPLICATIONS_R02" FOREIGN KEY ("SERVERID")
         REFERENCES "REPOS_SERVERS" ("SERVERID") ENABLE
    ==============================================================================================================================
    It would be of great help if someone can help me to resolve this issue with uploading data from CSV.
    Thanks & Regards
    Sharath

    Hi,
    You can see the installed dictionaries and change between them by right-clicking and choosing '''Languages''' inside a live text box eg. the box you are in when replying or right-clicking on the '''Search''' box on the top right corner of this page and choosing '''Check Spelling'''.

  • Field not visible when uploading the file in application ser

    Hi,
    I have added a new field at the end of a structure and When i upload the data in the application server it is not visible there. The new field length is 30chars(say field 'A')  and the one just before this one is 250 chars(say field 'B'). When i reduce the length of field 'B' to 30 chars or 40 chars the value which i populated in field 'A' is visble in the output file.
    Since the complete file was not visible in AL11 transaction, i used the CG3Y tcode as well to download the data to presentation server so that i can view the complete file. Even after downlaoding in presentation server the new field value is not visible.
    Can anyone please suggest why is the value in field 'A' not visible when the length of field 'B' is 250 chars? Also, how can i display the value of the new field in the application server.I cannot change the layout of the structure as per the requirement. Any help will be very useful.
    Thanks in advance,
    Sneha.

    Hi Sneha.. Happy new year
    <you subject is missing ver from the server, thats why your server doesnt like you :P>
    -ok, lets go step by step. how did you upload the file?
    -after uploading the file check the file in OS level(goto SM69, execute CAT, in additional parameter (not in parameter) give the full path (case sensitive), execute. ). here you can see the actual content of the file... check you data is present or not
    -which structure are you using to download and upload? a temp work area.. then please provide the WA details, so that i can try on my system.
    lets see what happens next
    one more thing: regarding AL11, it can read upto length 510 characters. check program RSWATCH0 form SHOW_FILE. here the read dataset into butffer is 510 characters.

  • Uploaded files are not visible

    I have uploaded numerous mp4 tutorial files I use on a regular basis, and they are not visible (I did not hide files).  They were not visible at all after their upload.  I initially thought there was an error were issue with the upload, but when I went to upload a single file once that is complete I was told in a dialog box is a duplicate file name.  The duplicate file is visible; however, the original upload file is not.
    Thank you for your assistance.

    Where exactly did you upload them to: https://cloud.acrobat.com/files ?
    Yes, the files were uploaded there.  After logon the URL is: https://cloud.acrobat.com/folder/<truncated>
    How did you upload them: directly at the website, or using Adobe Reader?  If the latter, what version; on what platform?
    The files were directly uploaded via the website: https://cloud.acrobat.com/folder/<truncated>

  • Upload multiple documents option is not visible for one user in SharePoint 2007.

    Hi,
    For one user Upload multiple documents option is not visible.
    We are using SharePoint 2007 environment.
    User is using IE 9 32 bit,Office 2010.
    I did repair office 2010.
    Active x controls are enabled.
    Please anyone help me on this.
    Thanks,
    Ashok

    Hi,
    According to your post, my understanding is that after client upgraded to Office 2013 the option for Upload multiple document was grayed out.
    I try to reproduce the issue in my environment, however everything works well.
    My configuration of system is:
    Windows 8.1;
    IE11;
    Office 2013 32bit.
    Please repair the Office 2013 to check whether it works.
    In addition, there are many thing you need to check. Please refer to:
    http://sharepointknowledgebase.blogspot.com/2013/09/upload-multiple-documents-is-disabled.html
    Here is a similar thread for your reference:
    http://social.msdn.microsoft.com/Forums/en-US/1a5af332-ed21-41ee-bf64-9122a7439623/sharepoint-not-activating-stsuplddll-upload-mutliple-documents-greyed-out?forum=sharepointgeneralprevious
    More information:
    "Upload Multiple Documents" is disabled in Document Library
    SharePoint 2010 : How to Enable Uploading Multiple Documents Functionality
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Uploading doc extention file taxonomy promot is not coming even compilsory field as metadata

    i am trying to Upload doc file with doc extention in a document library which have taxonomy enabled as metadata column it is not giving the promot for selecting the taxonomy either the field of taxonomy is must
    but it is working if the file type is Docx
    can any one help?
    MCTS,ITIL

    Hi,
    According to your post, my understanding is that you had issue about the .doc files with managed metadata column.
    Did you enable the “Add to all content types” when created the managed metadata column?
    You can create a new managed metadata column with “Add to all content types” enable, then check whether it works.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • When I upload mp4 videos to my Google Blog from my PC, they are not visible

    When I upload mp4 videos to my Google Blog from my PC, they are not visible on my iPad, even though I have no trouble seeing and playing them on my PC. Is there a setting on my iPad causing this?

    The question is how are they displayed in the HTML on the Google blog, and/or do they get converted in the upload process. I don't use Google blog, so not familiar with its encoding. You could try an alternate browser such as iCab Mobile or Dolphin.

  • Blog Page Not visible after upload

    I just added a blog page to my existing site. The file shows up in remote server but is not visible when I go to my website.  Any suggestions?

    Test your site by publishing to a local folder...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html
    ... and launch it in the browser by double clicking the index.html file.
    If this version works OK then it means that you have not uploaded all the required files to the server or they are not in the correct place.
    Do an Option-Command-A in Safari to see if all the files are present in the Activity window.

  • Document NOT visible.  Doc tab and layers ARE visible. HELP!

    Installed Photoshop CS5 months ago.  Have completed dozens of projects with only the occasional crash.
    Yesterday it crashed "Photoshop needs to close".
    When I reopened the file, the document is not visible.
    The document tab is correct and the layers are intact and visible.
    Tried opening other psd's, same results.
    Will not create a new document, New document panel does not appear.
    Moved same psd to laptop, opens like a charm.
    Vista, 32 bit.
    The file that crashed was a larger file, but I've definitely worked on much larger files consistently.
    Could not find other posts regarding same issue.
    Do I need to reinstall Photoshop?
    What went wrong?
    Thanks bunches, appreciate it!

    Your graphics card driver needs updating/ reinstalling and you may need to disable OpenGL in the preferences. Anyway, you'd get much better and quicker answers, if you posted your questions in the right forums, so keep that in mind next time and use the PS specific forum.
    Mylenium

  • Second podcast not visible after serial hours

    hi everybody, thank you so much in advance for you precious help, i'm started with itunes...
    yesterday, i uploaded my first episode, it's ok... but now, i added a second one, but after serial hours, my second podcast is not visible... someone can say me what's append ?
    my itunes page is http://itunes.apple.com/fr/podcast/yann-anderson/id481784540?ign-mpt=uo%3D4
    my xml is: www.yannanderson.com/itunes.xml
    THANK YOU X 1000000000000

    Please look at the FeedValidator report to see your feed: line 42, the 'guid' tag contents are the same as that on line 29. The 'guid' tag must be unique for each episode: iTunes uses it to detect if there is a new episode, so as they are the same it's ignoring the second appearance and the episode it appears in.
    The 'guid' tag contents can be anything you like, as long as they are different for each episode. When you correct this your new episode will appear immediately for subscribers: however because of the huge number of podcasts in the Store (thousands) the Store caches the feed and checks it for updates periodically. For this reason it usually takes 1-2 days for new episodes to appear in the Store: sometimes it can be less, and occasionally the whole process seems to get stuck and it can take several days.

  • Data loaded in Infocube is not visible in the Reporting

    Hi all,
    In the info cube, the data is not visible for reporting, How can i make it available for reporting,
    When i select the Manage option from the context menu of the cube and select the Requests Tab, i get a pop up message that tells
    " There is an inconsistency between the load status of the data and the option of reporting on this data.
    There is data in the InfoCube/ODS object that is OK from a quality point of view, but is not yet displayed in reporting.
    The problem, for example, is to do with request 0000018049, number REQU_F4ZBFRMDGBULE9WCUN3R5UX5X."
    How do i find out the inconsistancies?
    PS: All the requesta are delta upload
    There is no aggregates for this cube.
    Thanks n regards
    Girikumar

    Hi Girikumar
    Use the RSRV transaction and select All Elementary Tests  in the dropdown ->Transaction data  , select the Consistency of the Time Dimension for an InfoCube  and select your cube and Execute the button ..if any error are there it will display the inconsistency ..Repair the Inconsistency with Correct Button..
    Check the other test also ..
    Hope the above helps you..\
    Bye
    Shu Moh..

  • COPA document is not visible for a material document ?? Why

    Hi Experts,
    We have a material document, for which we have accounting doc and CO document respectively. But we don't have a PA document(not Visible). Any Idea why it is not visible.
    Moderator: Please do not ask basic questions

    Hi ,
    I am really very much appreciate your cooperation for the issue.
    When i try the same through KE4S in test run system is showing the below lines.....
    Number of billing documents read:                        1
    Number of line items to be transferred:                  0
    No. of billing doc. items already transferred:           0
    Number of billing docs with errors:                      0
    Note:- Number of line items to be transfered  0  then there is nothing to transfer to COPA.
    Please suggest.

Maybe you are looking for

  • Upgraded to version 5, now no Java at all

    Last week, like a dummy, I upgraded to version 5 not knowing it was only supported on WIN98 SE. I'm running WIN98. As a result, I cannot open any applets. I uninstalled version 5, but also uninstalled my previous version ( I told you I was a dummy).

  • Background image has dissapeared

    I have noticed that my homepage background image is missing from the banner area. The text "Welcome to Easley Mitsubishi should have an image behind it. That image is on the remote server and it will not display. I checked the code on the homepage an

  • Technical issue with DW CS3

    I just installed Dreamweaver CS3 yesterday, and there seems to be a device conflict with my USB mouse. When DW has focus, I am unable to double-click, the mouse is VERY sluggish in response, and if I try to double-click, it gives me that annoying scr

  • Implementation of SequenceImpl and third party Datasource

    Hi ! When trying to use a third party datasource that supports sequences like i.e. maxdb (formaly sapdb) there is a problem with the implementation of the oracle.jbo.server.SequenceImpl class. This class generates a sql-statement like: select sequenc

  • Tons of problems iTunes + W7 x64! HELP!

    I am currently running a custom build: Intel i5 Sandy Bridge 2500k CORSAIR DOMINATOR 4GB (2 x 2GB) 240-Pin DDR3 SDRAM SeaGate Barracuda 1TB 7200RPM XFX HD Radeon 6870 CORSAIR Professional Series 750W MSI P67 LGA1155 Windows 7 Ultimate x64 (Yes I am a