Applymru process error in apex 4.0

i build a master detail form in apex
when i add row in master form and then add row in detail updatable report and apply changes then display message
Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process. current checksum = "02A9F9B0EBDACDBE0061EDEA1A06220B", item checksum = "01C2E6C70CE20ADE3CFB078332B82FA8"., update "CINV"."DEMAND_DETAIL" set "DEMAND_NO" = :b1, "YEAR_CODE" = :b2, "SR_NO" = :b3, "ITEM_CODE" = :b4, "UNIT_CODE" = :b5, "GIVEN_RATE" = :b6, "QTY_REQ" = :b7, "RATE" = :b8, "WASTAGE" = :b9, "ENTRY_DATE" = :b10, "ORDER_NO" = :b11, "REMARKS" = :b12

and changing the query (and adding a dummy column to the query) is not allowed ??
Cause i have the same error, created a master-detail form, and want to create a link in the details but then the form doesnt update anymore..
and deleting the column from the query does not get it back to function again...
Edited by: richardw on 1-okt-2010 16:21

Similar Messages

  • Bug Report: #SQLERRM_TEXT# in Process Error Message

    According to the Online Help for "Process Error Message" #SQLERRM_TEXT# should be replaced by "Text of error message without the error number". But it isn't.
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

    I created an after submit PL/SQL process:begin
      raise_application_error(-20000,'custom error text');
    end;In the process error message attribute, I put:
    My error message with #SQLERRM_TEXT# in it.
    I submit the page and see this page:ORA-20000: custom error text
         Error      My error message with custom error text in it.
    OKScott

  • How to Correctly Trap PL/SQL Errors for APEX

    This is probably a simple fix but, I have been at it for a while and can't seem to find the magic combination.
    I have a page process that calls back end PL/SQL. I have a page item that is populated by said PL/SQL procedure, P35_PROCESSING_MSG. As you know the Process allows me to specify a message for Success and another for Failure. My desire is that, if there is a back end failure, the error will display in the dialog area, using the built-in "Process Error Message" functionality. Instead, after execution, the page item still has its default value and the following, ugly, error displays in the tabular report region.
    report error:
    ORA-20001: Error fetching column value: ORA-01403: no data found
    ORA-06510: PL/SQL: unhandled user-defined exceptionI just don't get why it displays here instead of in the usual failure area. Moreover, I don't understand why the error is "*+unhandled+* user-defined exception" when, as you will see, I have handled it.
    I have a page process to perfom custom MRD for a tabular form. (I don't think this is really germane to the more generic issue but, I bring it up as an explanaintion for the following code sample). I am diliberately causing a DIVIDE BY ZERO error to test the error handling form the back end.
        PROCEDURE PROCESS_MARGIN_CALL_DELETES( as_StatusMsg OUT VARCHAR2 )  
        IS
            lb_InnerErrorOccured    BOOLEAN := FALSE;
            ln_DeleteTargetCnt      NUMBER := 0;
            ln_DeleteTargetRow      NUMBER := 0;
        BEGIN
            ln_DeleteTargetCnt := apex_application.g_f01.COUNT;       
            FOR ln_DeleteTargetIndx IN 1..ln_DeleteTargetCnt
            LOOP
                ln_DeleteTargetRow := apex_application.g_f01(ln_DeleteTargetIndx);
                BEGIN
                    If ( apex_application.g_f14.EXISTS(ln_DeleteTargetRow) ) Then
    select 1/0 into ln_DeleteTargetCnt from dual;
                        DELETE FROM RISKDM2.INTRADAY_ECS_RSKALYST_MRGCALL
                        WHERE RISK_MARGCALL_ID = apex_application.g_f14(ln_DeleteTargetRow);
                    End If;                     
                EXCEPTION
                   WHEN OTHERS THEN
                        as_StatusMsg := as_StatusMsg || SQLERRM;
                        lb_InnerErrorOccured := TRUE;
                END;
            END LOOP;
            If ( lb_InnerErrorOccured = TRUE ) Then
                RAISE INNER_EXCEPTION;    
            Else
                as_StatusMsg := 'Successfully Processed';                  
            End If;
        EXCEPTION
            WHEN INNER_EXCEPTION THEN       
                RAISE_APPLICATION_ERROR( -20001, as_StatusMsg );
            WHEN OTHERS THEN
                as_StatusMsg := as_StatusMsg || SQLERRM;
                RAISE_APPLICATION_ERROR( -20000, as_StatusMsg );
        END; The associated code in APEX is short and sweet:
    BEGIN
       MBRDATA.MEMBER_MGR.PROCESS_MARGIN_CALL_DELETES( :P35_PROCESSING_MSG );
    EXCEPTION
       WHEN OTHERS THEN
          RAISE_APPLICATION_ERROR( -20002, :P35_PROCESSING_MSG );
    END;What I am missing?
    -Joe

    Joe Upshaw wrote:
    This is probably a simple fix but, I have been at it for a while and can't seem to find the magic combination.
    I have a page process that calls back end PL/SQL. I have a page item that is populated by said PL/SQL procedure, P35_PROCESSING_MSG. As you know the Process allows me to specify a message for Success and another for Failure. My desire is that, if there is a back end failure, the error will display in the dialog area, using the built-in "Process Error Message" functionality. Instead, after execution, the page item still has its default value and the following, ugly, error displays in the tabular report region.
    report error:
    ORA-20001: Error fetching column value: ORA-01403: no data found
    ORA-06510: PL/SQL: unhandled user-defined exceptionI just don't get why it displays here instead of in the usual failure area. Moreover, I don't understand why the error is "*+unhandled+* user-defined exception" when, as you will see, I have handled it.<Jedi>These are not the errors you are looking for.</Jedi>
    Anything included under a "report error" during page rendering is not displaying errors associated with a page process, but with the rendering of that report region, in this case clearly:
    ORA-20001: Error fetching column value: ORA-01403: no data foundThe ORA-06510 user-defined exception error relates to this (ORA-20001 being a user-defined error), but it is coming from the APEX framework rather than your code. Often these prove to be untraceable, unrecoverable problems caused by corruption of report metadata, only "fixable" by dropping and recreating the region.
    This may or may not be related to the setting of the page item "by said PL/SQL procedure", but the exceptions reported in the region are not being raised by the procedure.
    What does the debug trace show to be going on?
    Edited by: fac586 on 15-Aug-2012 08:35
    Added "...reported in the region..." for clarity

  • Obvious Error in APEX 4.1

    Hi friends,
    While trying to use APEX 4.1, im facing the below error then and there
    Error     ORA-01403: no data found
    Technical Info (only visible for developers)
        * is_internal_error: false
        * ora_sqlcode: 100
        * ora_sqlerrm: ORA-01403: no data found
        * component.type: APEX_APPLICATION_PAGE_PROCESS
        * component.id: 122577129813507993
        * component.name: Fetch Row from *XXHY_AMS_TRV_OM*---->this might be my table name
        * error_backtrace:
          ORA-06512: at "SYS.WWV_DBMS_SQL", line 904
          ORA-06512: at "APEX_040100.WWV_FLOW_DYNAMIC_EXEC", line 618
          ORA-06512: at "APEX_040100.WWV_FLOW_DML", line 317
          ORA-06512: at "APEX_040100.WWV_FLOW_PROCESS", line 322
    OK     
    What does this error try to say. What are all the reasons for this error to occur.
    How to rectify this error in APEX, once it occurred.
    In my scenario, i faced the above error when i clicked the edit button in my report.
    Brgds,
    Mini

    Hi Mini,
    I have a few questions.
    1) Does the primary key exist which the fetch process tries to query?
    2) Do you have an extra where clause defined for the fetch process?
    3) When you run the page in debug mode, is the statement which gets executed by the fetch process what you expect?
    4) When you run that statement with the primary key value from SQL Workshop -> SQL Commands, do you get a result?
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • AS2 Receiver Error: MIC not verified # unexpected-processing-error

    When sending out a test message using Seeburger AS2 receiver channel I get the following error:
    MIC not verified # unexpected-processing-error
    So obviously this problem is related to digital signature I think? However I get the same error even if digital signature is deactivated in the communication channel.
    Do you have any idea on this?

    Hi ,
    I have been facing this error and tried all the refresh and reimporting of certificate.
    "MIC not verified # unexpected-processing-error"
    could you be bit specific how to fix this ?
    thanks in advance
    Praveen

  • XML Publisher post-processing error 'java.io.FileNotFoundException'

    Hi,
    We are getting following XML Publisher post-processing error while running XML Publisher report.
    It was working earlier but suddenly its erroring out.
    [9/07/10 9:00:17 PM] [OPPServiceThread1] Post-processing request 559655.
    [9/07/10 9:00:18 PM] [39177:RT559655] Executing post-processing actions for request 559655.
    [9/07/10 9:00:18 PM] [39177:RT559655] Starting XML Publisher post-processing action.
    [9/07/10 9:00:18 PM] [39177:RT559655]
    Template code: XXHPOXPRRFLR
    Template app: XXH
    Language: en
    Territory: 00
    Output type: PDF
    [9/07/10 9:00:18 PM] [UNEXPECTED] [39177:RT559655] java.io.FileNotFoundException: /apps/oracle/DEV/inst/apps/DEV_hlt439erplap001/logs/appl/conc/out/o559655.out (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:274)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:173)
    [9/07/10 9:00:18 PM] [39177:RT559655] Completed post-processing actions for request 559655.
    Please help me out to resolve this issue.
    Thanks & Regards,
    Sagarika

    Hi,
    java.io.FileNotFoundException: /apps/oracle/DEV/inst/apps/DEV_hlt439erplap001/logs/appl/conc/out/o559655.out (No such file or directory)Most probably this file is not created (since no changes have been done recently, so definitely it is not a permission issue), and if there are any log files generate at the client side it should help in investigating the issue.
    Thanks,
    Hussein

  • Once in a while, I get some errors with every tap on the screen, I've been getting this following error since a few days ago, it says" Your request cannot be processed, Error code 1009" . What is it and what should I do?

    What does this error mean?! " your request cannot be processed, error code 1009".

    Read through this article for iTunes Store troubleshooting:
    http://support.apple.com/kb/TS3297

  • "No Child Processes" Error

    When I am downloading certain files from the internet, the files are not mounting, and I am getting a "No child Processes" Error. I have run the apple repair disc over the computer, however, the problems is still happening. Can anybody help to me fix this problem???? Thanks

    Hi-
    Welcome to Discussions!
    Is it possible to download what you want from a different server? The error could well be the result of file problems on the other end.
    To further insure that it isn't your system, run a full set of maintenance scripts, and clear logs, caches, and other temporaries.
    A last item to "clear" your machine, would be a restart be fore trying to download.
    Should these proceedures fail to fix the problem, I would consider the problem to be with those "certain files".

  • PTO Carry Over Process errors out

    Hi ,
    I am trying to run the PTO Carryover process and I am giving the parameters for calculation date - 01-jan-2010 and accrual term as 'Previous'.
    I have a biweekly payroll and payroll period is '28-dec-2009' to '10-jan-2010'. We are using the seeded 'PTO_PAYROLL_CARRYOVER"
    formula in accrual screen. when I run the PTO Carryover process I am getting the below error.
    ORA-20001: An error has occurred in a user defined function at line 130 of the formula PTO_PAYROLL_CARRYOVER.
    The error text associated with the function call is:
    The system cannot calculate accruals for this date becuase the employee's payroll did not exist for the full accrual term..
    Please correct the problem with the function call, or contact your system administrator or support representative.
    I assume that i am getting this error because 31-dec-2009 falls in between payroll period 28-dec-2009 and 10-jan-2010. the seeded formula is calculating
    as of 31-dec-2009 which is in between payroll period. Can you please help me. we need to do the carry over process.

    Hi,
    What is the application release?
    Please see if these documents help.
    Note: 402404.1 - PTO Carryover Process Error: ORA-20001 Line 39 Of The Formula PTO_PAYROLL_CARRYOVER
    Note: 473272.1 - PTO Carryover Errors ORA-20001: An Error Has Occurred In A User Defined Function At Line 65 Of The Formula PTO_PAYROLL_CARRYOVER
    Regards,
    Hussein

  • Error receiving AS2 message from partner: B2B-50037:  B2B inbound message processing error

    B2B/SOA 11.1.1.6.0
    We are setting a new trading partner and when we started document transmissions we are getting errors on the inbound messages: B2B-50037:  B2B inbound message processing error.
    The attachment shows the relevant lines from the soa log and diagnostic log files.  Here is the error detail that shows:
    [URI: /b2b/httpreceiver] Error -:  B2B-50037:  B2B inbound message processing error[[
    Error -:  B2B-50037:  B2B inbound message processing error
            at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:3143)
            at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1650)
            at oracle.tip.b2b.transport.InterfaceListener.onMessageLocal(InterfaceListener.java:403)
            at oracle.tip.b2b.transport.InterfaceListener.onMessage(InterfaceListener.java:214)
            at oracle.tip.b2b.transport.basic.TransportServlet.doPost(TransportServlet.java:754)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
            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:301)
            at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
            at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
            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:139)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
            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:2273)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    From the b2b_wire_message we get these Protocol_Transport_BINDINGS:
    ChannelName=TransportServlet
    Reverse-Via=LIN-ISA1
    AS2-To=accobra.....
    Date=Fri, 26 Sep 2014 05:46:17 +0000
    AS2-Version=1.2
    AS2-From=K.......
    Disposition-Notification-Options=signed-receipt-protocol=optional, pkcs7-signature; signed-receipt-micalg=optional, sha1
    Disposition-Notification-To=http://<ip&port>/as2in
    Message-ID=<[email protected]>
    MSG_RECEIVED_TIME=Fri Sep 26 00:46:17 CDT 2014
    ECID-Context=1.0050z5j^buc6yGn6wnZf6G0002f60007bt;kXjE1ZDLIPGIj2QCYV8QoKSSmLRO_PQT_IS
    Content-Type=application/pkcs7-mime; smime-type=enveloped-data; name=smime.p7m
    Proxy-Client-IP=172.17.25.101
    MIME-Version=1.0
    User-Agent=e-integration AS2 Server V 6.1.8
    X-Forwarded-For=172.17.25.101
    Content-Length=3602
    Host=nalinsoa05.abd.ad.acco.com
    x-weblogic-cluster-hash=QoZzGUzdcjBD5fGIE8Uos5abiHI
    EDIINT-Features=multiple-attachments, CEM
    Connection=Keep-Alive
    X-WebLogic-KeepAliveSecs=30
    X-WebLogic-Request-ClusterInfo=true
    The message creates a wire message, business message, and an application message.
    What doesn't happen is no MDN gets sent back to the partner.  It should be a synchronous MDN.
    We have double checked the certificates on both ends and they are OK.
    The document and Agreement get recognized OK:
    Refer To Message
    Refer To Message
    Sender Type
    AS2 Identifier
    Sender Value
    K. . .
    Receiver Type
    AS2 Identifier
    Receiver Value
    accobr. . .
    Sender
    K. . . l
    Receiver
    ACCO . . .
    Agreement Id
    K. . .l_EDI_X12_4010_856_856Def_Inbound
    Agreement
    K. . .l_EDI_X12_4010_856_856Def_Inbound
    Document Type
    856
    Document Protocol
    EDI_X12
    Document Version
    4010
    Message Type
    REQ
    Direction
    INBOUND
    State
    MSG_ERROR
    Acknowledgement Mode
    SYNC
    Response Mode
    ASYNC
    Send Time Stamp
    09/26/2014 12:46:17 AM
    Receive Time Stamp
    09/26/2014 12:46:17 AM
    The error is vague enough to provide little or no help in locating the root cause of the issue.
    Any assistance in providing information on how to get this working would be greatly appreciated.
    We do have dozens of other AS2 partners working in this instance just foe reference.  We are just having issues with this new partner setup.
    Thank you.
    Regards,
    Ken

    Ken,
    I am observing the Ack Mode is set as "SYNC" . This is selected by default. This option is available in the channel configuration section
    If the usecase is not SYNC, please change as ASYNC and test. It should work.

  • An unexpected processing error occurred. Please contact Microsoft

    Before I get flamed like I did on StackOverflow, can I please make the point that there does NOT seem to be a clear route for getting official support for the Live SDK from Microsoft? I'm just trying to get someone from Microsoft to explain to me either
    what I need to be doing to my code OR how best to reach out to someone at Microsoft regarding this particular issue.
    Using this C# code:
    LiveConnectClient liveClient = new LiveConnectClient(currentSession);
    LiveOperationResult operationResult = await liveClient.GetAsync(file.FileLocation);
    dynamic contentResults = operationResult.Result;
    IDictionary<string, object> item = contentResults as IDictionary<string, object>;
    the following exception occurred on the GetAsync call:
    Microsoft.Live.LiveConnectException occurred
    HResult=-2146233088
    Message=An unexpected processing error occurred.
    Please contact Microsoft.
    Source=mscorlib
    ErrorCode=server_internal_error
      StackTrace:
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task
    task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task
    task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at Relative_History.OneDriveViewModel.<GetPictureURL>d__86.MoveNext()
      InnerException:
    I've not encountered this exception before and the code works as-is on other files. Restarting the app and the code works as expected so I'm not sure what I'm supposed to do other than "contact Microsoft" as instructed and, as stated at the start
    of this post, Microsoft don't say HOW to contact them.

    Hi,
    Do you have some anti-virus software installed and set to scan network drive, temporarily disable it, check if that is the cause.
    I also suggest you update the firmware of your router.
    Please alos share more information in event viewer with us as mentioned by ZigZag31343x
    Meanwhile you can contact the support of My Book Live
    http://wdc.com/en/products/products.aspx?id=280
    NOTE
    This
    response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you.
    Microsoft
    does not control these sites and has not tested any software or information found on these sites.
    Regards
    Yolanda
    TechNet Community Support

  • I need help, i can't download free applications in App store. they answer me "your request cannot be processed Error code:1009". and after they said "we could not complete your request. There was an error in the App Store. Please try again later (nul

    i need help, i can't download free applications in App store. they answer me "your request cannot be processed Error code:1009".
    and after they said "we could not complete your request. There was an error in the App Store. Please try again later (null)".
    COMPUTER DETAILS: MacBook Pro 13-inch, Mid 2012 OS X Version 10.9.5; Processor 2,5GHz Intel Core i5; Memory 4 Go 1600 MHz DDR3.
    Thanks beforehand!!!

    Error
    what is error code 1009?

  • HT4623 I can not get connected to App Store , download or update any apps,  EVEN I DID RESET ALL SETTING , STILL I RECIEVE A MESSAGE says: YOUR REQUEST IS NOT PROCESSED ,ERROR COD: 109 !! WHAT DOSE IT MEAN? HOW CAN I SOLVE THE PROBLEM??

    I can not get connected to AppStore , DOWNLOAD OR UPDATE ANY OF MY APPS , WHEN I GO FOR INSTALLING , THE MESSAGE SAYS: YOIR REQUEST IS NOT PROCESSED ,  ERROR CODE, 1009!!! HOW CAN I SOLVE THIS PROBLEM??

    Try contacting the iTunes support staff, they do the app store also, at:  http://www.apple.com/emea/support/itunes/contact.html

  • Compiler Process error in Message Mapping

    Hi all,
    I have recently installed an XI system.
    First time when i create simple message mapping, it was showing compilation process error.
    Please tell me what needs to be done so that message mapping works well. It is really urgent.
    Thank you all.
    Regards,
    Kavan Shah

    hi
    check the HDD space on your XI server machine
    try checking the java path on your XI machine
    if this will not work contact the SAP via an OSS note
    As this is a new XI server it probably means it
    was incorrectly installed
    Note:please reward points if solution found helpfull
    Regards
    Chandrakanth.k

  • Text/html processing error with Acrobat Reader when sending to database

    Hi everyone,
    I have a problem that occurs in certain versions of the Acrobat Reader, with Acrobat Professional the error message does not pop up.
    In Acrobat Reader however, when sending the form to a php file to fill a database an error pops up
    "Content type text/html couldn´t be processed"
    Nevertheless it works fine, except the fact that the confirmation "successfully sent" that should pop up (and does in Acrobat Professional)  does not appear due to this processing error. What can I do?
    Thanks for supporting!

    Hi,
    I'll only attempt the first part:
    See this discussion where event.target.path.toString().substring(0, 4); was used to get the first four letters of the path. If that equalled "http", then the form was opened in a browser.
    http://forums.adobe.com/message/2840942#2840942
    I can't contribute on the other issues.
    Niall

Maybe you are looking for

  • How do I get this to run only once

    I am using Labview and an E series DAQ to control a stepper motor. I downloaded a finite pulse generator to send out the number of pulses I need when a case is selected, but now my problem is that the vi keeps repeating the finite pulse generation, s

  • Auto Speech Alignment for foreign language dubbing

    I just watched the excellent "How to use Auto Speech Alignment in Audition" video on Adobe TV, and noticed that he mentions that ASA can be utilized to add foreign language dubs to a video. I find myself in that very process at the moment, and would

  • IPOD TOUCH AND HOME STEREO

    All, New to the board. I have an Ipod Touch, and wanted to play it through my home stereo which is a Denon, and has the Aux outputs in the front. There is a Video - aux, and 2 slots for audio. I went and bought the cable that indicated for IPOD (Touc

  • Is it possible to have multiple links in single page?

    Is it possible to have multiple links in single page for linking in different slides like in a websites? My deadline is nearing in. Adobe folks please help me.

  • Photoshop Elements 10 - trial version - uninstall

    I have downloaded a trial version of Photoshop Elements 10 in order to see if there are things I could not do with my CS3. After see the program I saw I was not interested on it so I try to uninstall but I have not found any uninstall file. I have go