ADF BC - Controlling Entity Posting Order when deleting

Hello,
I'm trying to remove detail and master entity. Default posting order is wrong so I'm getting:
ORA-02292: integrity constraint (DET_MAST_FK) violated - child record found.
All examples are for insert, not delete.
This code in master entity postChanges method doesn't work:
    public void postChanges(TransactionEvent e) {
        if (getPostState() == STATUS_DELETED) {
            RowIterator ri = getDetails();
            DetailImpl detail = (DetailImpl)ri.first();
            while (detail != null) {
                if (detail.getPostState() == STATUS_DELETED) {
                    detail.postChanges(e);
                detail = (DetailImpl)ri.next();
        super.postChanges(e);
    }because getDetails() returns empty RowIterator. It is empty probably because this entity (master) is already deleted.
Has somebody solution how to delete these entities without composition and cascade delete enabled?
Rado

This is exactly what I do.
In MasterImpl.java:
    public void cascadeDelete() {
        RowIterator ri = getDetails();
        //deletedDetails = new ArrayList<DetailImpl>();
        while (ri.hasNext()) {
            DetailImpl detail = (DetailImpl)ri.next();
            //deletedDetails.add(detail);
            detail.remove();
        remove();
    }This method works ok. All entities are removed.
The problem is that entities are not posted in this order. Master postChanges() will not be invoked as the last. It must be the last. I must control it and what I'm looking for is how to do it.
Master postChanges should look like:
    public void postChanges(TransactionEvent e) {
        if (getPostState() == STATUS_DELETED) {
            [... invoke postChanges of all details with STATUS_DELETED ...]
            //if (deletedDetails != null) {
            //    for (DetailImpl detail : deletedDetails) {
            //        detail.postChanges(e);
        super.postChanges(e);
    }The part [... invoke postChanges of all details with STATUS_DELETED ...] is problematic because accessor getDetails() is empty RowIterator (deleted entities are not visible in it). This is why I wrote code which is remarked in this example.
Methods cascadeDelete and postChanges are invoked in two separated html requests.
Rado

Similar Messages

  • Controlling Entity Posting Order to Avoid Constraint Violations

    Hi all,
    I am using Jdeveloper 11.1.1.2.
    I want to create a row in a master table, then when I commit, I want automatically creating a Row in its detail table.
    I am following the instructions of the paragraph 38.8 Controlling Entity Posting Order to Avoid Constraint Violations of the manual.
    I have a problem when I write:
    myTable.setNumberField(NumberField);
    compiling, I have this error: myTable.setNumberField(Number) cannot invoke myTable.setNumberField(oracle.jbo.domain.Number) in myTableEOImpl
    I have created myTableEOImpl.java automatically, using the java tab in myTableEO
    How can I solve it?
    Andrea

    Hi,
    you must make sure that data types passed to an Oracle ADF BC Number field are pf type oracle.jbo.domain.Number. Often developers forget to import this class and use Java lang Number instead
    Frank

  • Control the Post Date  when use BAPI_OUTB_DELIVERY_CONFIRM_DEC to PGI !

    Dear all,
       How can I control the Post Date (WADAT_IST) when I use BAPI_OUTB_DELIVERY_CONFIRM_DEC to PGI?
    Thanks to help me.

    In ECC 6.0, I used this BAPI to perform the picking using this way:
    1. Implement enhancement point  BAPI_OUTB_DELIVERY_CONFIRM_D01 in enhancemnt spot ES_SAPLV50I to set the update picking flag on delivery control structure.
    GS_DLV_BAPI_CONTROL-UPDATE_PICKING = 'X'
    2. Implement enhancement of standard BADI SMOD_V50B0001. Use method EXIT_SAPLV50I_004 to loop at table CT_VBPOK and update the fields VBELN and POSNN with suitable values.
    There is one problem with this solution, though.  The delivery quantity cannot be updated.  Any increase in the delivery qty ITEM_DATA-DLV_QTY actually updates the picked quantity on the delivery.  Consequently, there is little practical use of this technique.
    John

  • ADF BC - unable to control posting order

    Hello,
    we have big troubles with controlling entity posting order when deleting entities.
    For simplicity consider this example:
    - you have Dept (master) and Emp (detail) entities
    - then:
    a) change some attribute in current Dept row
    b) remove all Emps in current Dept
    c) remove current Dept
    - then postChanges
    You will get JBO-26048 (oracle.jbo.DMLConstraintException - ORA-02292: integrity constraint violated - child record found)
    I would expect (as my operations are in correct order) that it will be posted to database without problem. It isn't.
    Explanation:
    First change of Dept entity (point a) will put this entity to the first place in transaction list of object waiting to be posted to database. It is ready for update now. Point b) will put all removed Emp entities in posting list from 2nd ... N-th position.
    Then point c) - Dept remove - instead of putting the Dept to (N+1)th posting place will change Dept state from modified to deleted because it is already in the list on the first place. Now Dept is 1st and in deleted state.
    It means first post operation will be Dept (master) deletion => constraint violation.
    Our real situation is much more complicated. We cannot just omit Dept update.
    We tried to post the Dept update first and then post removings afterwards but posting order is not cleared after postChanges. The only solution we found (very bad solution) is to clearEntityCache between postings - this also clears transaction posting list (it means: update Dept, postChanges, clearEntityCache, remove Emps, remove Dept, postChanges)
    Is there another solution how to solve this problem.
    Is it possible to postChanges after Dept update and to have transaction posting list empty and ready for another independent operations.
    Thank you.
    Rado

    Hi Sascha,
    yes I have.
    The problem is that entity accessors wil not return data when entity is in deleted state.
    In my example dept.getEmps() returns RowIterator with row count = 0 when it is used in postChanges method.
    I tried to workaround this with own ArrayList in master collecting deleted details. As a master (Dept) mustn't know its detail is going to be deleted, it is job for Emp to aks its master to store it into its temporary array of deleted Emps. Then in Dept postChanges I can iterate through the array not through accessor row iterator.
    The weakness of this solution is that remove operations and post operation mustn't be in one request. So it is not guaranteed the temporary array will survive. Therefore it must support passivating and activating. And I think it is very complicated for so "simple" problem.
    For now steps:
    1. update dept
    2. postchanges
    3. clearentitycache
    4. delete emps
    5. delete dept
    6 postchanges
    work for me.
    Rado

  • Controlling Post Order of Multiple View Objects

    Hi ,
    Here is the scenario:
    I have a use case of "Creating an Abstract"
    Steps:
    step1 ) (Page 1) Author presents the details of the abstract (Details goes to 2 tables ABSTRACT & ABSTRACT_CONTENT tables). For the 2 tables i have 2 entities. I use a view here called CreateAbstractView from both the tables( here i control the post order of the entities ....code from jdeveloper 11g guide)
    Step 2)(Page 2) Author presents details of Additional Authors. I use the view (*AdditionalAuthorDetailsView*) (Details goes to 2 tables AUTHOR & ABSTRACT). Here in the abstract table i have a parent key(parent abstract id) So all the additional authors has a record in Abstract table with parent_abstract_id from step1. ABSTRACT table also has a foreign key (author_id) .Here also i control the post order of the 2 entity object using the code from jdeveloper 11g guide.
    I also have a link from CreateAbstractView to AdditionalAuthorDetailsView (abstract_id in Abstract table from CreateAbstractView to parent_abstract_id in Abstract table from AdditionalAuthorDetailsView )
    If i have a commit on both the pages , i don't see a problem.
    But i want to have a commit process at the end so that the user can review the information. So when i try to add a commit process at the end , i get a exception (Parent Key not found exception) which i came to understand that commit from AdditionalAuthorDetailsView is happening first which is trying to insert a record into ABSTRACT table and cannot find the parent_abstract_id.
    How do i control the post order for multiple view objects in such scenarios?

    Hi!
    Please take a look at the dev guide. It comes down to controlling the posting order on entity level.
    http://download-uk.oracle.com/docs/html/B25947_01/bcadveo007.htm#CEGJAFCF
    Sascha

  • Adjust posting order of new/modified entities in ADF BC

    Hi,
    I have any ADF application which has two tables:
    BUDGET
    BUDGET_ID: NUMBER(12) -- Which is a sequence from DB sequence BUDGET_SEQ
    BUDGET_DETAIL
    BUDGET_ID: NUMBER(12) -- Foreign key to BUDGET(BUDGET_ID)
    LINE: NUMBER(7) -- A sequential number based on the master with one based, for ex: BUDGET_ID/LINE may be 1234/1, 1234/2, 1234/3 ..., and 1235/1, 1235/2, 1235/3...
    CONSTRAINT BUDGET_DETAIL_UK UNIQUE (BUDGET_ID, LINE)
    In JDev 11.1.1.2.0, the Model project has 2 entity objects, 2 view objects, 1 association and 1 viewlink, they are BudgetEO, BudgetVO, BudgetDetailEO, BudgetVO, Budget_BudgetDetail_Assoc and Budget_BudgetDetail_ViewLink (based on the association) to access the BUDGET and BUDGET_DETAIL table.
    When we mark budget, we will create a row in BudgetVO and then create some rows in BudgetDetailVO. In the BudgetDetailVO, we always reorganize the "Line" attribute to be sequential after create new row and delete row. The code like the following:
    private void reorganizeLineNo() {
    RowSetIterator iter = this.createRowSetIterator(null);
    try {
    int idx = 1;
    while (iter.hasNext()) {
    Row row = iter.next();
    row.setAttribute("Line", new Number(idx++));
    } finally {
    iter.closeRowSetIterator();
    My problem is if we add/remove BudgetDetail(s) in the following sequence, it will violate DB constraint BUDGET_DETAIL_UK:
    1. Create bRow1 in BudgetVO
    2. Create bdRow1 in BudgetDetailVO under bRow1, here bdRow1.Line=1
    3. Commit. Everything works fine
    4. Set bRow1 as current row
    5. Add a new bdRow2 in BudgetDetailVO under bRow1, here bdRow2.Line=2
    6. Remove bdRow1, here will call reorganizeLineNo(), so bdRow2.Line=1 now.
    7. Commit, exception occurs for violating DB constraint BUDGET_DETAIL_UK.
    The SQL running in DB is in order of (presodo):
    1. INSERT INTO BUDGET (BUDGET_ID) VALUES (BUDGET_SEQ.nextval);
    2. INSERT INTO BUDGET_DETAIL (BUDGET_ID, LINE) VALUES (:TheBudgetId, 1);
    3. Commit
    4. INSERT INTO BUDGET_DETAIL(BUDGET_ID,LINE) VALUES (:TheBudgetId, 1); -- Violate BUDGET_DETAIL_UK
    5. DELETE FROM BUDGET_DETAIL WHERE BUDGET_ID=:TheBudgetId AND LINE=1
    6. Commit.
    How to adjust to posting order in ADF BC to post the DELETE in step 5 before the INSERT step 4?
    Many thanks!
    Regards,
    Thomas.

    This work flows screens for this kind of constrain violation. On solution would be to commit the operation after inserting line 2, and then deleting line 1.
    I think this is a poor design, because you will run in trouble if more the one user is working in your system.You have to edit a bunch of rows only you deleted one. It's never a good idea to have an editable pk or even a part of it.
    I would try to decouple the line number from the primary key all together. You could easily generate the line number when you show the lines (i.e. using an index of the iterator). This way you can use a sequence number as pk for the line item. The order of the line items is simply the order of the sequence numbers (which will never displayed to the user).
    Timo

  • PURCHASE ORDER STATUS :When Deleting ALL ITEMS.

    Hi experts,
    I need  to make purchase order status stay  " Release Compleated " when deleting all items.
    Anyone Know How to do it?
    Or anyone Know how to use BAPI_PO_CHANGE in BAdI : ME_PROCESS_PO_CUST 
    In my project , I use Release Strategy of purchase orders, and there is a case of deleting all items.
    In this situation, purchase order status returns to "Active " and release strategy tab disappears.
    This is our problem.
    I need to make purchase order status stay  " Release Compleated " and prevent  release strategy tab disappearing.
    I tried to update the fields EREKZ(final invoice) and ELIKZ(delivery completed) in
    BAdI : ME_PROCESS_PO_CUST  Method : PROCESS_ITEM using BAPI_PO_CHANGE according to SAP Note 456691.
    But BAPI_PO_CHANGE couldn't update EREKZ because of our customize , and I couldn't find how to use
    BAPI_PO_CHANGE in the BAdI.
    Anyone know solutions to solve this problem?
    Thanks a lot.
    Regards,
    TKD

    Hi,
    please review the following information in SAP Note No. 456691 as
    copied below:
    18. Question:
    When are the header conditions updated if a purchase order item is
    deleted?
    Answer:
    If a purchase order item is deleted, the item is marked as 'statistical'
    (field EKPO-STAPO = X) and the change is reflected in the header
    conditions.
    However, if for the item the final invoice indicator(EKPO-EREKZ) or the
    inward delivery completed indicator (EKPO-ELIKZ) is set, the item is not
    marked as 'statistical' (EKPO-STAPO is not set) and thus the header
    conditions are not updated.
    I hope this helps you
    BR
    Nadia Orlandi

  • Generate idoc when deleting sales order

    I have seen in matmas that there is a flag for the deleted mark, but i can´t see it in the sales order, is there any flag in orders05 when the sales order is deleted, does the system send an idoc when the sales order is deleted, how?
    Thanks in advance.
    Regards

    OK, it still finished, just only last question please.
    In the head table CDHDR appears the sales order with the 'U' field indicating that it has been updated and in the CDPOS table appears all the positions with the 'D' flag indicating that has been deleted, is it ok or how could i know that the whole sales order has been deleted?.
    Thanks in advance
    regards

  • Optimizer run error - COM error 2 1 when deleting transportation orders

    Hi Experts,
    Optimizer run job (program /SAPAPO/RMSNPOPT) gets failed with following error: -
    COM error 2 1 when deleting transportation orders
    Can anybody let us know why this error occurs and how to resolve it. Thanks a lot.
    Regards,
    Chandan

    Hi Chandan,
    Could you check SAP note 1232670 whether applicable
    for you
    Regards
    R. Senthil Mareeswaran.

  • Access control on Sales Orders - Line items

    Is it possible to control access to users from deleting line items in sales orders?
    (since Julius would reply saying a "YES" or a "NO" , i will complete my question )
    If it is feasible to control, could some one make a suggestion on how to do this and help me, please?

    Hi Manjula,
    Thanks for trying to help and for sending the link, but unfortunately, the link doesnt help me for my question.
    the discussion in the link you sent is more on the stock situations that is a mis-match in MD04, when a order line item is rejected then the stock of the line item should be refelcted in MD04 and since this doesnt happen the program was supposed to be eecuted for consistency ==> this was the issue in the link
    Now, coming to the problem on hand: If i create a sales order with 25 line items and make a delivery of 22 line items , do a PGI for the 22 and then , i check for the other 3 line items in the Order, realize that the schedule lines in the order are for a date that doesnt meet the date of goods issue of the other 22 items - i delete the 3 line items in the order <== this is what i want to restrict, users shouldnt be able to delete line items of a order that has a subsequent document.
    I know i can manage doing this via ABAP based on a few validations on the document flow, but i wanted to know if there is an alternate method of achieving this.
    I vaguely remember a situation where i had a user who couldnt enter line items in Purchase orders although he had all required transactions, org,values.......after much research and quite a few trial and error methods i got to a solution by adding/deleting (i dont remember corretly) a parameter value to the user and he could add line items. The curiosity i have is in knowing if there is some parameter value or an other Authorization object, that could help me achieve my objective
    Although it could be efficient, ABAP would be my last option
    Do keep posting, any help is good help

  • Message Sending Control (To purchasing orders)

    Hi experts,
    I d0n't know if this is the right section of the forum to post this doubt; please tell me if it's not.
    I'm Trying to implement a solution to give the user a dialog message telling If a message from a purchase order has been succesly sent.  I cannot give it at the moment so i i'm programming a job that will be executed dialy and gives a report about the messages that have not been succesfully sent that day.
    To check this we have parametered the spool for not deleting the orders when they are out, and that this
    orders stay in the spool for 8 days.
    We have 3 ways of sending depending on the field nast-nacha: By mail, printer or web.
    Firs of all we are controlling the status in the nast table.
    - Red(2): Sending error. We do not need to continue checking in this case..
    - Yellow(0):  the order has not been yet released, so will check it again in the next job execution.
    - Green(1): Nast tells us that the message hass been succesfully sent. But we have to check it again depending on the sending method. My doubts are in the this checking.
    - Printer: The can be errors like no paper or no ink in the printer and other thing like this. Does anybody know how can i request in abap if the printing has really been succesfully done?
    - EMAIL: I don't know how to check if the reciever have succesfully recieved the mail. ¿Maybe taking a look on his mail inbox? but the user maybe has lokked the message and manually erased it....
    - WEB: Messages sent by EDI. I have no clue about how to check this....
    ¡Thank-you for your help!

    you are trying the impossible here. you wouldn't need checking if you could assure all the sending-media were up and running.
    please also consider: in a couple of years you will have millions of rows in NAST. your job will be killing performance then.
    you cannot check printers: you can check in spool whether the host-spooler (in case your printer is a network-printer) has accepted and proccessed the job. this does NOT tell you that there was a printout! for example the printer might still 'eat' a page and you would never know it because the printer (the network, the host-spooler) will not transfer that message back to SAP. still worse with LOCL. via sapgui you can send the print to the windows frontend but whether it was processed successfully, you'll never know. windows does not deliver a message back. and even if you succeeded in adjusting your printing to give a feed-back, you'll slow the performance down immensily. the spool process in SAP would have to wait for your feedback before it would attempt to process another job - imagine how long that might take!
    eMail: this will not work either. if you are processing your eMails to a third-party system (like Outlook) using sapconnect you do not have a chance to peek across servers (not to mention architecture) into the users mailbox. and anyway: this might be strictly illegal (depending on your country). the 'peeking' part would only work if you keep the mail in R/3 (might still be illegal) but then you still have (and would always have in both scenarios) to deal with the user - what if he/she delétes her mail? what if he/she used transaction SO12 to forward the mail? what ...
    Messages sent by IDOC.you could do this but it might prove extremely complex, especially when serialized idocs are in use.
    i think you would be far better off to ensure, all the output media are properly maintained.

  • Dynpro Table Control Column's Order

    Hi everyone,
    I am facing a strange issue in a Dynpro Table Control with the order of the columns.
    I had to add a new key filed in a standard view. When I am running the Table Maintenance Generator in SE11, the Dynpro Table Control is generated correctly and the new column appears at the right place with the other key fields. But when I display the view data with either in SE11 or using the Customizing link in SPRO, the new key field appears at the complete right end of the Dynpro in between two normal fields.
    I tried to delete the screen and to generate it again, I tried to use the same screen number and also a new screen number but the result is always the same. The column's order is not correctly displayed when executing the Dynpro.
    The only way the columns are correctly displayed it's if I created a new screen in a new Z program but this solution cannot be consider since we are talking about standard Dynpro / Table / Function Pool. Using a Z program would not permit to use the standard SPRO link no more.
    I know that sometimes the Table Maintenance Generator does not work properly but I never saw this kind of behavior before. Can someone help me?
    Thank you in advance for your answers,
    Sylvain

    hi,
    r u making through wizard?
    it is good practice.
    Otherwise first take I/O field, give name and than u can take text field for column heading.
    Reward if useful.

  • How to control what VoiceOver says when clicking a radio button in Safari?

    Hello-
    I am developing a web page that I want to work in Safari & VoiceOver. Does anyone know how I can:
    1) control what VO says when it is hovering over a radio button (ideally some alt text or title attribute)
    2) control what VO says when I click a radio button in Safari (right now, it seems to say 'Group').
    I have tried to put the radio buttons in a fieldset, tried tons of attributes in the input tag (including alt, title, desc, description), but nothing seems to change.
    Here is a URL where you can hear what I'm talking about: http://postcalc.usps.gov/
    Turn on VoiceOver (try Cmd+F5), pull up the URL and hover over the 'letter' or 'large envelope' radio buttons, then click one of them. It says 'group'. I'd like it to say 'letter option selected' or something.
    Thanks for any & all help!
    Seth
    PS: I do know about the <label> tag. I've tried surrounding my <input> tag with a label and using <label for="someID">, but it doesn't seem to help.

    Thank you for the suggestion...it does work and fires the event, but it is still not selecting the current record when I try to perform an Update or Delete.
    I had to modify your code a bit in order for it work in JDev 10...used the JUCtrlValueBindingRef instead of the FacesCtrlHierNodeBinding.
    Here is what my af:table tag looks like:
    <af:table value="#{bindings.FeesView1.collectionModel}"
    var="row" rows="#{bindings.Fees001View1.rangeSize}"
    first="#{bindings.FeesView1.rangeStart}"
    emptyText="#{bindings.FeesView1.viewable ? \'No rows yet.\' : \'Access Denied.\'}"
    selectionListener="#{backing_viewFees.tableSelectOne1_attributeChangeListener}"
    binding="#{backing_viewFees.table1}" id="table1">
    If I put back my 2 original attributes, then my Delete and Updates work.
    selectionState="#{bindings.FeesView1.collectionModel.selectedRow}"
    selectionListener="#{bindings.FeesView1.collectionModel.makeCurrent}"
    Here is my code in the backing bean:
    public void tableSelectOne1_attributeChangeListener(SelectionEvent selectionEvent) {
    JUCtrlValueBindingRef binding = (JUCtrlValueBindingRef)this.getTable1().getSelectedRowData();
    if (binding != null) {
    Row currentRow = binding.getRow();
    if (currentRow != null) {
    System.out.println(currentRow.getAttribute("CurrentRecordInd")); // this does print my selected value!!!!
    }

  • HT2480 email not deleting from server when deleted from ipad

    messages are not being deleted from server when deleted from ipad

    Hello,
    You need to tell us what the email service is. BES? BIS -- and, if so, what email provider? If BES, then see your BES admins. If BIS, then expect it to function in accordance with this KB.
    Otherwise, you can try the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB):
    1) Register HRT
    Homescreen > Options > Advanced Options > Host Routing Table > (it does not matter which line is current) > Register Now
    2) Resend Service Books
    KB02830 Send the service books for the BlackBerry Internet Service
    3) Batt Pull Reboot
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should try deleting and re-adding your BIS conduits for the affected email accounts.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to control shuffle play order?

    Hi Everyone
    I have an Ipod shuffle I think its 4th gen.
    On the computer control panel I can delete songs  Import songs in the library.  I can check and uncheck.  I can rate songs, I can follow all the advise from users and help forums online.  I cant seem to understand what I'm doing.  I do all the above taks thinking it is controlling the play back on the shuffle when I take the shuffle off the usb cable and putton the headphones. 
    Yet the shuffle plays sequential or shuffle the same exact songs ... I'd say 20 songs  of the 120 songs that has been downloaded to it.
    Help! How do I play other songs and control my play order in the earphones.

    HI gerrlinggal
    thanks!
    I had  to go to  play list  by highlight one song and right click the choose menu flyout Lawrence's" Ipod
    This worked with one song i saw the syncing icon sync notice  at the top banner.  I had to highlight all new songs and preform that function as a group of songs
    That worked .
    Q.   But it did not over right songs and cant seem to find how to access the shuffles list of songs on the IPOd/shuffle.  So I can delete the old songs. ?????    The menu in the ITunes manger is difficult and seem to show only songs on iTunes.
    I really had to get lucky finding.  the above  previous trick.

Maybe you are looking for

  • Add "cost center" query to a start condition?

    Hi there, we got a new requirement for one of our plants. We're on SRM 5.0 classic scenario. Is it possible to add a "cost center" query to a specific start condition (SWB_PROCUREMENT) of a workflow? E.g. if a user uses cost center 4711 for a shoppin

  • Itunes download says I don't have sufficient admin to make changes to computer yet I am logged in as admin

    Trying to download itunes software to my PC, error message comes up saying I don't have sufficient admin to make changes to computer, I am looged in as admin? windows7 64bit

  • Installing Flash Player on Linux

    I've removed the older version of Flashplayer and installed the new version both via the install script and manually. Help, About_Plugins shows its installed: File name: libflashplayer.so Shockwave Flash 7.0 r63 MIME Type Description Suffixes Enabled

  • Why is my connection not working?

    my ipod is not recieving any networks at all when im right next to my router and when i go to a friends house it still doesnt work help!!

  • IR Queries

    <p>This is my first time with a IR implementation.</p><p>With this client there is an extremely large data (Over 1Billion rows for each fact table).</p><p>The data source is Terradata.</p><p> </p><p>I am currently testing data pulls with sql assistan