Problem with fetchedRowcount in master-detail.

Hi all,
Good morning.
I have a custom master detail page (Sales Module, called from Opportunities page).
The master region is query-only and the detail is an updateable advanced table.
I'm trying to delete in the detail exactly the same way the tutorial proposes.
I navigate to the master record (and using the viewlink to the detail records...) using an initquery method in the am. that is called from the controller in the processrequest using invokemethod.
My problem is that the vo.fetchedrowcount in the master is correct but in the detail is allways 0. So I can't delete the record.
I've tried also vo.getrowcount and get 0 (in the delete method of the am.)
I've tried vo.setpreparedforexecution(true) with the same result. (in the delete method of the am.)
I've tried in the controller an initquery for detail with the same result.
I've tried in the controller a table.querydata(...,true) with the same result
Any help would be appreciated.
Juanje

Hi again,
Thanks for the rapid response.
I've implemented de master as a messageComponentLayout which includes several messageStyledText items.
The detail is an advancedtable which includes several messageTextInput items.
I have not used "table in table" to implement the master detail.
I only use a viewlink to join the master vo. and the detail vo. but only in the bc4j side.
You mean, should I fill the viewlink property in the advancedtable?
Now the detail records are shown correctly, and I can create records without problem.
Thanks
Juanje

Similar Messages

  • URGENT HELP PLS :  Issue with Multi Level Master Detail block

    This is an issue someone else had posted in this forum few years back but there was no solution mentioned, I have run into this same issue , The problem is as explained below.
    Any help on this is appreciated.
    Scenario:
    There are 3 Blocks in the form : A (Master Block)
    : B (Detail of A )
    : C (Detail of B )
    There is master detail relation created between A and B and B and C. So initially when we query for a record in Master A, it shows all records properly in B and C.
    Now if i navigate to the first record of B , and then second record of B , records corresponding to that record shows up properly in C block.
    Till now everything works fine.
    Issue 1:
    But in case after querying initially on Master Block A,If I go directly to the second record of B block, it clears the whole B block and C block.
    Issue 2:
    Same thing happens if I am on C block ( corresponding to second record of B block) and then navigate to first record in B block , it again clears the whole B block and C block.
    Please Help !!
    Thanks !

    Thanks Xem for Your reply , I tried those settings but it did not help..here is the original link that to the thread that talks about the same problem ,
    Issue with Multi Level Master Detail block
    The last update to this was the following :
    "I figured out that this is happening because Block Status is set to 'Changed' and this is causing it to clear out the blocks.
    But cant figure out why the status is setting to 'Changed' "
    Any Help from the form Gurus on this form in this matter is truely appreicated !!
    Thanks,
    Zid.

  • Error message in .docx : 'Open XML file cannot be opened because there are problems with the contents. Details Unspecific error Location: 2'

    I have put a lot of work into a docx document on my Mac, but now can't open it as it gives the error message: 'the Open XML file cannot be opened because there are problems with the contents. Details, Unspecific
    error, Location: 2'
    When opening the original file the message said: 'this file contains word 2007 for Windows equations' etc. but I managed to track changes fine, and saved, closed and re-opened it numerous times without problem. Some graphs seemed moved, and various formulas
    were illegible, but no other weirdness was observed.
    I have microsoft 2008 installed on my Mac OS X version 10.6.8.
    I've tried to fix it using various solutions suggested here, but am afraid am too IT illiterate to have had any luck, please help I'm new to all this!
    I've uploaded it to https://www.dropbox.com/s/hkw9k6lyihzoxpc/SittwayPauktawSQUEACREPORT_KD%2BCH.docx

    Hi,
    This issue is related strictly to oMath tags and occurs when a graphical object or text box is anchored to the same paragraph that contains the equation.
    Please use the "Fix it" tool in the following KB article to resolve the problem. See:
    http://support.microsoft.com/kb/2528942
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • MOVED: I have problems with my K7D MAster board

    This topic has been moved to Server/workstation.
    I have problems with my K7D MAster board

    Juansebastianco,
    you can try this, to see if it makes a difference: boot your MacBook Pro into Recovery mode by holding down a Command key and the R key as it starts up. Once the Mac OS X Utilities menu appears, select Disk Utility. On the left-hand side of the Disk Utility window, select your internal disk’s boot partition (typically called “Macintosh HD”). On the right-hand side, press the Verify Disk button if it’s not greyed out; if it is greyed out, or if it reports that errors were found, press the Repair Disk button. Once the verification/repair is completed, exit Disk Utility and select Restart from the Apple menu to restart in normal mode. Does it still crash after being on?

  • Problem using rollback in master-detail relationship

    Hello,
    I have an odd error using master-detail relationship, for example: countries and states. This is the problem:
    I have 3 pages:
    Page A: Read-only table of countries
    Page B: Read-only table of states
    Page C: State form
    and the flow:
    1. In the page A, select a country and click button to go to the states page
    2. In the page B, select a state and click detail button to go to the state form page
    3. In the page C, edit something and click rollback button. The rollback button's action goes to the page B
    4. In the page B, the states table is empty but I expected the table contains the same states those were in the step 2
    I know it's a bit difficult to understand but I hope someone can help me.
    Thanks, edwin.
    Edited by: user13259215 on Jun 19, 2012 10:44 PM

    On invoking Rollback the whole of AM is refreshed and hence all VOs are refreshed. The first row in all VOs is selected by default. You will need to retain the VO row selections on your own. Check this thread for ideas.
    Stay on previous or next row on rollback.

  • Issue with multiple level master details

    Hi All,
    I just came around with following scenario and found it is not working as expected.
    GFVO ( Primary Key Attribute -> GFID )
    | ---- ViewLink between GFVO and ParentVO on attribute GFID
    Parent VO (PrimaryKey PID )
    | -- ViewLink between Parent VO and Child VO on attribute ATTR1
    ChildVO (PrimaryKey CID )
    Data ->
    GF VO has record -
    1 , xyz
    2 , abc
    Parent VO
    PID Name PGFID ATTR1
    1 ppp 1 1
    2 ttt 1 2
    3 lll 2 1
    4 kkk 2 2
    Child VO
    CID Name ATTR1
    1 cc1 1
    2 cc2 1
    3 cc3 2
    4 cc4 2
    Requirement is I want to show the name attribute of Parent in Child VO. I have used parent accessor exposed in child to display the name of the parent. When I use this multiple hierarchy in AM and run it I find the wierd result.
    Say I select Row (2 , abc) in GF VO.
    I should see below two rows in Parent Row.
    PID Name PGFID ATTR1
    3 lll 2 1
    4 kkk 2 2
    Now I select Row ( 3 lll 2 1 ) in Parent VO , it shows the following Child ROw I get this result -
    CID Name ATTR1 ParentName( accessed throug ViewAccessor)
    1 cc1 1 ppp
    2 cc2 1 ppp
    Gotcha ..... Parent Name ? I am assuming that when we try to access the parent through accessor it will give the parent row from the already filtered VO based on first Viewlink. Rather it requires and gives the first parent as if I m having a single join.
    Thanks,
    Rajdeep

    Hi,
    for a master-detail between tables you create a tree binding each. Assuming the data model you defined contains the three view objects in a hierarchy, you simple drag the parent, then the first child and then the second child as a table to teh view. You then configure the PartialTriggers property of child2 table to point to child1 and parent table. The child 1 table partial triggers property will point to the parent table. This should make the m/d work. If on the server you want to use accessors in the code to get to the details of a child (on the client I would use the iterator binding in the PageDef file), make sure you access the correct instance of the ViewOject
    Frank

  • Problems with the CS6 Master Collection disk image (invalid checksum)

    I have problems downloading the trial for CS6 Master Collection for MacOS X.
    I've tried downloading using the Download Assistant, both as a privileged and an unprivileged user, and have also tried the direct download as both privileged and unprivileged. Each time I've waited until the download was complete before trying to install, but every time the disk image fails to open, complaining of an "invalid checksum".
    I've tried mounting the disk image without validating the checksum, but while I can then run the installer, the installation fails due to lack of privileges – again, this is regardsless of user privileges. I've also tried deleting the preferences and cache-files for Download Assistant, but to no avail.
    Can anyone confirm that the english version of the CS6 Master Collecion disk image is working and can be mounted without error on MacOS X 10.7? I have now downloaded and re-downloaded the disk image at least eight times, and while I have a fast Internet-connection, this is getting tedious.

    I just downloaded the DMG from Adobe.com using the trial and it mounts fine. I was able to start the installation.
    I did not get a checksum error or any other error.
    However, I found these instructions in another thread:http://forums.adobe.com/message/4370247#4370247
    <quote>
    If the download is completed in the Adobe Download Assistant you can temporarily turn off the feature to verify the checksum.  The following steps will allow you to temporarily disable this feature:
    Open the Disk Utility located in Applications/Utilities
    Go under the Disk Utility menu and select preferences
    Deselect the option to verify checksums
    Try mounting your DMG file
    I would recommend turning this feature back on though after the installation is complete.  Also if you notice this happening on additional files it can indicate a problem with your Internet connection.
    </quote>
    Could you try these steps and let us know if you were able to proceed.

  • Problem with activation of Master Data 0UCINSTALLA

    Hello Everybody,
    I'm working on a BW 3.5.
    I have a problem with the activation of master data of one Infoobject. When I try to activate the data SAP gives me the message that all the data is active. But when I try to change something on the infoobject I get the error message:
    Characteristic 0UCINSTALLA: Master data has to be activated before conversion.
    So I have a small problem as you can see. When I try to activate something SAP says that it is active and when I try to change something in the infoobject SAP says it is not active.
    When I do my check in RSRV of my infoobject I get the following error messages:
    Characteristic 0UCINSTALLA: 79.579 values from table /BI0/SUCINSTALLA do not exist in table /BI0/QUCINSTALLA
    Characteristic 0UCINSTALLA: 79.579 values from table /BI0/PUCINSTALLA do not exist in table /BI0/QUCINSTALLA
    Characteristic 0UCINSTALLA: Chain of active intervals: 81.858 gaps (show max. 50):
    When I ask that he corrects these errors SAP suggest to rebuild the X and Y tables. After rebuilding the error still exists.
    Also with SE14 when I do the convertion of the tables (forced and not forced ) the error still occurs.
    Does anybody have any idea? Any suggestion is welcome.
    Greets,
    Jeroen

    Hi Jeroen,
    We are experiencing the same issue and it is mentioned in OSS Note 657467. Looks like there is a bug and depending on which version and support pack you are using, you may have to go to upgrade to a newer support pack.
    I am just curious to know which version and support pack you are at.
    Regards,
    Abdul

  • Problems with language dependent master data

    Hi,
    I created a InfoObject with language dependent master data and I am trying to upload data from a flat file.
    My flat file has a 2 digit language code (EN,DE,FR,JP,ES) and when uploading the data it seems that SAP BW is only using the first digit which leads to the situation that EN and ES get treated as duplicate records.
    Any help would be appreciated
    thanks
    Ingo Hilgefort

    Hi,
    ES is the Language for spanish..But the Flat file should have to represent 'S' for Spanish.
    Check in Table T002 for the symbols which represent Languages and that to be used in flat file.

  • Gooood News For Anyone Whose Has Problem with tv anywhere master

    Hi Hi Hi! This is my first post here. After reading most the threads here related to the problem we all have for this card. I have spend over $300 CAD more to upgrade my video card and added more ram, guess what, same thing happen. Before I go on, I like to say. DO NOT BOTHER TO USE THE MSIPVR SOFTWARE NO MATTER WHICH VERSION. it's used alot of cpu power and slow down your system. Because of this, I decided to risk my system and downloaded many software outthere that related to the pvr software. None of them works well. Trust me, I have tried them all. If you want to have a good recording and better video and good functions and the best of all, it's use less cpu power. With Msipvr my cpu usage gone to the roof with 1 gig of ram, with this software it only use 60-70%. Now go download a program called Powervcr II v3 by Cyberlink, Very important ,while you at it download a patch too. without the patch, you will get error saying Unable To Render Preview Video Stream when you hit the record botton. Trust me, I think you all will like it. I just finished burning a dvd and the video are so much better then Msi one and anyone outhere. Hope this help you guys out. Give a try
    Thanks
    Anchim
    My sys
    p4 2gig
    was on board video, now Ati 256 mb 9250 video card
    1 gig ram
    40 gig hd
    [Post edited by Glenn]

    Hello mate, I had a similar problem with my K7N2 ILSR, XP3200+, 1 Gig  and a GeForce Ti4400...after trying everything I could think of for a few months I eventually upgraded my graphics to a GeForce 6800GT and...same problem! After reading another 1000 or so forums I eventually came up with going in to the bios and changing the CPU core voltage from auto to 1.55v which made a lot of difference and then added a couple more silent case fans (4 in total - 1 inlet 3 exhaust) and it's never crashed since.
    Not saying this will work for you but it could be worth a try 
    Cheers

  • Problem with ordimage attribute in detail viewobject (a bug maybe?)

    Hi
    JDeveloper: 11.1.1.4
    I have an ordimage attribute in a viewobject among other attributes but it doesnt show the image while it shows other attributes of the viewobject correctly. It throws java.lang.ArrayIndexOutOfBoundsException when executing the "row = rows[0];" instruction in oracle.ord.html.OrdPlayMediaServlet.renderContent() method. Apparently the main reason for this error is that the vo viewobject doesn't get populated correctly (it contains no rows at all) and so the "rows = vo.findByKey(mKey, 1); " doesn't return any rows.
    Isn't this a bug? Is there any workaround to this?
    P.S: When I use another instance of the same viewobject as a master viewobject works just fine. The error occours only when the viewobject is used as a detail viewobject.
    Anyway, here is the exception:
    ]] Root cause of ServletException.
    java.lang.ArrayIndexOutOfBoundsException: 0
         at oracle.ord.html.OrdPlayMediaServlet.renderContent(OrdPlayMediaServlet.java:411)
         at oracle.ord.html.OrdPlayMediaServlet.deliver(OrdPlayMediaServlet.java:264)
         at oracle.ord.html.OrdPlayMediaServlet.doGet(OrdPlayMediaServlet.java:205)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         Truncated. see log file for complete stacktrace
    >
    <06/09/2011 IRDT 07:49:19 م> <Notice> <Diagnostics> <BEA-320068> <Watch 'UncheckedException' with severity 'Notice' on server 'DefaultServer' has triggered at 06/09/2011 IRDT 07:49:19 م. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-101020') OR (MSGID = 'WL-101017') OR (MSGID = 'WL-000802') OR (MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
    WatchData: DATE = 06/09/2011 IRDT 07:49:19 م SERVER = DefaultServer MESSAGE = [ServletContext@22121593[app:PPCM module:PPCM-ViewControllerCM-context-root path:/PPCM-ViewControllerCM-context-root spec-version:2.5], request: weblogic.servlet.internal.ServletRequestImpl@c1d6b6[
    GET /PPCM-ViewControllerCM-context-root/ordDeliverMedia?appModID=AppModuleCMDataControl&viewObjectName=AppModuleCM.VpConscriptPictureView1&contentCol=ORD_PICTURE&rowKey=0001000000063332323934330000000C000001323F51EEFD&amConfig=jhs1.model.services.AppModuleCMLocal&cache=1277027229000 HTTP/1.1
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6
    Accept: image/png,image/*;q=0.8,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 115
    Connection: keep-alive
    Referer: http://127.0.0.1:7101/PPCM-ViewControllerCM-context-root/faces/UIShell?_adf.ctrl-state=hjjcdrfdk_4&_afrLoop=40582159673504
    Cookie: JSESSIONID=v23hTmyL7mZ9vmMZSndhG7g1sds8CDSy3rn3bL2XcGLgVTLG6s2V!752893283
    ]] Root cause of ServletException.
    java.lang.ArrayIndexOutOfBoundsException: 0
         at oracle.ord.html.OrdPlayMediaServlet.renderContent(OrdPlayMediaServlet.java:411)
         at oracle.ord.html.OrdPlayMediaServlet.deliver(OrdPlayMediaServlet.java:264)
         at oracle.ord.html.OrdPlayMediaServlet.doGet(OrdPlayMediaServlet.java:205)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    SUBSYSTEM = HTTP USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-101017 MACHINE = PC-SD14-00007 TXID = CONTEXTID = ef583e64d845493d:6a9a6ea3:1323e534a92:-8000-00000000000005b2 TIMESTAMP = 1315322359312
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 30000
    >

    I have encountered the same problem.
    JDeveloper 11.1.1.3
    Did you come up with a work-around since September?

  • ADF BC : Problem in Inserting a Master - Detail Record

    Hi,
    I am new to ADF Business Components. I am into a project where i use only the ADF BC as ORM/DB Operations and for the front end I use some other framework. The Problem is.
    I have two entity objects and a ViewLink between them. [Relation between "Order" to "Item" is (1 to many relation)].
    [I saw many examples in forums where its explained with View Objects But here I DID NOT create any View Object. I have only Entity Objects]
    (1) OrderEO [Entity Object for Order Table]
    (2) ItemEO [Entity Object for Items Table]
    (3) OrderItemsViewLink [A Viewlink where OrderEO.OrderId = ItemEO.OrderId]
    All The Primary keys (for the "Order" and "Items" table ) are handled by Trigger+Sequence at the time of insert in DB side.
    I created custom method to insert "Order" individually it worked fine.
    I created custom method to insert the "Item" individually it worked fine.
    But...
    When I created and "Order" with some "Items" It failing to insert and throws an
    Error : oracle.jbo.InvalidOwnerException: JBO-25030: Failed to find or invalidate owning entity: detail entity ItemEO, row key oracle.jbo.Key[0 ].
    My Custom Method in the AppModuleImpl is like below :
    public void createNewOrderWithNewItems() {
    String entityName = "com.proj.entities.OrderEO";
    EntityDefImpl orderDef = EntityDefImpl.findDefObject(entityName);
    OrderEOImpl newOrder = (OrderEOImpl)orderDef .createInstance2(getDBTransaction(),null);
    try {
    // 3. Set attribute values
    newOrder .setOrderStatusCode("CREATED");
    RowIterator items = newOrder .getItemEO();
    Row newItemRow = items .createAndInitRow(null);
    items .insertRow(newItemRow );
    newItemRow .setAttribute("itemDate", new Date());
    newItemRow .setAttribute("itemQty", new Number(10));
    // 4. Commit the transaction
    getDBTransaction().commit();
    } catch (SQLException e) {
    e.printStackTrace();
    } catch (JboException ex) {
    getDBTransaction().rollback();
    throw ex;
    Here the "Order" is also new and related Items is also new. What I expect is to save the Order with Items in one transaction. How to achieve this. Please suggest.
    Thanks
    Narayan
    Edited by: 817942 on Dec 3, 2010 8:16 AM

    Read through the blog posts which describes
    why this issue occurs and how it should be resolved.
    http://radio-weblogs.com/0118231/stories/2003/01/17/whyDoIGetTheInvalidownerexception.html
    http://one-size-doesnt-fit-all.blogspot.com/2008/05/jbo-25030-failed-to-find-or-invalidate.html
    Thanks,
    Navaneeth

  • Problem with deleting old master Data from 0Material

    Hello, we try to delete the master data from 0Material.
    But we get the message that some data are used and can not be deleted.
    We can see the error message in slg1:
    "Master data 000000000100000007 (SID                                                   7) is used in /BI0/HMATERIAL; is not deleted"
    "Master data R23188 (SID                                                5316) is used in /BI0/D0RT_C071; is not deleted"
    Can we just clear these tables? Is it enough for resolving the problem?
    Thank You.

    Hi,
    no you just can't "clear" these table unless you want to screw your datawarehouse....
    the first message means that the material with SID 7 is used in a hierachy of 0MATERIAL ==> adjust the hierarchy first.
    the second message indicates that the material with SID 5316 is used in the ICube 0RT_C07 and you CANNOT delete master data if it is used in other objects.
    First run RSRV for this dimension in order to see if the DIMID is really used by the fact table. Perform the following test "Entries Not Used in the Dimension of an InfoCube " with your cube and dim.
    if the DIMID is not used then "correct" the error; you'll then be able to delete your SID.
    If the DIMID is used then you'll have to delete your cube data if you really want to delete this material; otherwise you'll have to keep it.
    Finally rerun you master data deletion.
    hope this helps...
    Olivier.
    Edited by: Olivier Cora on Jul 31, 2008 9:07 AM

  • I have problems with my K7D MAster board

    I just have gotten hands on a new K7D master mobo (yeah i know it is not the newest board on the market but i had the cpus so why not). I have just installed Windows 2000 server on the machine. And everything was working fine until I was going to transfer some very large files over to my other computer (DVD isos 4,5 GB) and then the machine just locks up. And I have to reset it to get it up and running again.
    I have changed the network adapter and reinstalled the whole system, but it doesnt help.
    When i look under the device manager there is an unknown device called "unknown pci bridge" it seems its the AMD 768 chipset.
    But here comes the real problem, I cant instal any AMD drivers?? When i try to instal the EIDE driver, the 768 chipset driver or any of the AMD drivers its just saying that there is no AMD components found.... And the driver wont instal.
    Anyone heard of this before?
    MSI K7D Master
    2 X MP1900 CPUs
    Adaptec 29160 scsi board
    2 X Seagate U160 18GB SCSI disks
    1 X Seagate 200GB IDE disk
    1 X Samsung 250GB IDE disk
    1,5 GB ram Crucial and Apacer
    Edit: Problem solved, seems that I must have an PS2 mouse plugged in 
    When I tried copying with the PS2 mouse it all works
    I found this topic in www.2cpu.com
    http://forums.2cpu.com/showthread.php?s=e88a5eb9c52b6bf96d532faf85d626cf&threadid=42709&highlight=K7D+master+lock
    Speaking of strange problem... lol

    Juansebastianco,
    you can try this, to see if it makes a difference: boot your MacBook Pro into Recovery mode by holding down a Command key and the R key as it starts up. Once the Mac OS X Utilities menu appears, select Disk Utility. On the left-hand side of the Disk Utility window, select your internal disk’s boot partition (typically called “Macintosh HD”). On the right-hand side, press the Verify Disk button if it’s not greyed out; if it is greyed out, or if it reports that errors were found, press the Repair Disk button. Once the verification/repair is completed, exit Disk Utility and select Restart from the Apple menu to restart in normal mode. Does it still crash after being on?

  • Problem with Time dependent master data

    Dear All,
    I have 0PERSON master data infoobject. It is getting records extracted from backend R3 and from a different datasource called 'Peoplesoft'. It has a field 'Date of Birth'. Point of concern here is - whether a particular employee is present in Peoplesoft or in R3, his date of birth is constant. Unfortunately someone hs made 'Date of Birth' as a time dependent attribute of the InfoObject 0PERSON.
    We extract data from Peoplesoft from 01.01.1900 to 31.07.2005. From 01.08.2005 onwards, data is getting extracted from R3.There are some employees which are present in Peoplesoft but they are not in R3.
    Problem is occuring when the user is reporting on a relevant Infocube containing this 0PERSON infoobject. He does not see the value for this 'Date of Birth' field for certain employees. The reason for this is that the 'Date of Birth' field is blank in the interval 01.08.2005 - 31.12.9999 as this employee was absent in R3 and hence no record/s got extracted.
    To view this value in the report - Please suggest me a possible remedy. I thought to write a routine but I dont think it is advisable to change a time dependent master data.
    Thanks,
    Srinivas

    Hi,
    There are two ways of solving your issue.
    - Remove the time dependent check box for 0person, delete the transactional data, load the master data again and reload the transactional data.
    - Write a program to extend the 'Date to' value to 31.12.9999 for all employees.
    Ravi

Maybe you are looking for

  • SharePoint Workflow Long Date does not output day of week!

    Hi all,  We have developed a workflow that sets a time delay and notifies users after three working days have elapsed. It detects a working day by checking whether the words "Saturday" or "Sunday" occur in the long date version of "Today". This workf

  • Can't see Exchange Server after installation

    I know it must be simple, but after installation of Exchange Server 2013 on Server 2012 R2 and getting the "successful" installation message, I can't find the server. It was not problem on Server 2008 and Exchange 2010. Any ideas as to where I should

  • Export Layers to Files; transparent areas something other than white?

    I have a .PSD with 43 layers that I want to export to separate files. Works just fine using Scripts > Export to Layers... ...except that there are some transparent areas in each of the layers that I want to have a specific background color (the same

  • Application Manager Always Shows Install

    I installed every application, but for Edge Animate and Touch App Plugins it's showing the Install option even though I have already installed it.  Everything else shows Up to date.  I've already tried uninstalling those particular ones and reinstall

  • Can't get a paper bill

    Previous quarter after numerous problems viewing my online bill I asked to return to paper only billing. Unfortunately this wasn't actioned and I received an email stating my bill was ready to view. Both online help and customer services both promise