Using APEX_ITEM.MULTI_ROW_UPDATE along with APEX_ITEM.CHECKBOX

Hi,
I am stuck working with APEX_ITEM.MULTI_ROW_UPDATE process for the past 2 days.
I don't see any working examples in forum as well to update APEX_ITEM.CHECKBOX values using the APEX_ITEM.MULTI_ROW_UPDATE process.
My updateable query is as below :
select APEX_ITEM.HIDDEN(1,INST_ID) ||
       APEX_ITEM.TEXT(2,INST_NME,20,200) AS INST_NME,
       APEX_ITEM.TEXT(3,INST_CTY_TXT,10,50) AS INST_CTY_TXT,
       APEX_ITEM.SELECT_LIST_FROM_LOV(4,ST_CDE,'STATES_LOV',NULL,'YES','ZZ','~ Select ~') AS ST_CDE,
       APEX_ITEM.MD5_CHECKSUM( INST_NME,
                               INST_CTY_TXT,
                               ST_CDE,
                               LGE_IND
                    ) || APEX_ITEM.CHECKBOX(5,LGE_IND,NULL,-1) AS LGE_IND
from  TESTNote: I am using -1 for checked value of checkbox.
My update process is
  BEGIN
    APEX_ITEM.MULTI_ROW_UPDATE('#OWNER#:TEST:INST_ID,1:,|INST_NME,2:INST_CTY_TXT,3:ST_CDE,4:LGE_IND,5');
  END;Now when I update any field and Save the changes I get the error below :
  ORA-20001: Error in MRU: row= 1, ORA-01403: no data found, update If I use textbox instead of checkbox and write the code as below it works perfect.
select APEX_ITEM.HIDDEN(1,INST_ID) ||
       APEX_ITEM.TEXT(2,INST_NME,20,200) AS INST_NME,
       APEX_ITEM.TEXT(3,INST_CTY_TXT,10,50) AS INST_CTY_TXT,
       APEX_ITEM.SELECT_LIST_FROM_LOV(4,ST_CDE,'STATES_LOV',NULL,'YES','ZZ','~ Select ~') AS ST_CDE,
       APEX_ITEM.MD5_CHECKSUM( INST_NME,
                               INST_CTY_TXT,
                               ST_CDE,
                               LGE_IND
                    ) || APEX_ITEM.TEXT(5,LGE_IND,5,10) AS LGE_IND
from  TEST;
  BEGIN
    APEX_ITEM.MULTI_ROW_UPDATE('#OWNER#:TEST:INST_ID,1:,|INST_NME,2:INST_CTY_TXT,3:ST_CDE,4:LGE_IND,5');
  END;If anyone see what is wrong that I am doing please help me out here.
Your help is greatly appreciated.
Thanks,
Raj.

Hi,
You should concatenate your HIDDEN item(s) to the front of the next displayed item - that way you do not get a column in the tabular form that you have to hide (hiding the column could have the effect of stopping the item from being submitted with the page)
Secondly, all the fields should be based on actual column names so that the MD5_CHECKSUM that reference these.
DUAL doesn't provide column names directly but you may be able to do something like:
SELECT
APEX_ITEM.HIDDEN(1, ID) || APEX_ITEM.TEXT(2, PRODUCT_NAME, 60, 60) product_name,
APEX_ITEM.SELECT_LIST_FROM_LOV(3,CATEGORY,'CATEGORY',NULL,'YES',NULL,'-Select Category-',null,null,'NO') CATEGORY,
APEX_ITEM.MD5_CHECKSUM(PRODUCT_NAME,CATEGORY)
FROM (SELECT NULL ID, NULL PRODUCT_NAME, NULL CATEGORY FROM DUAL)Alternatively, you could create an empty row from the actual table:
SELECT
APEX_ITEM.HIDDEN(1, ID) || APEX_ITEM.TEXT(2, PRODUCT_NAME, 60, 60) product_name,
APEX_ITEM.SELECT_LIST_FROM_LOV(3,CATEGORY,'CATEGORY',NULL,'YES',NULL,'-Select Category-',null,null,'NO') CATEGORY,
APEX_ITEM.MD5_CHECKSUM(PRODUCT_NAME,CATEGORY)
FROM (SELECT NULL ID, NULL PRODUCT_NAME, NULL CATEGORY FROM EBA_ASSET_ASSETS WHERE ROWNUM = 1)Then Scott's code should work:
BEGIN
APEX_ITEM.MULTI_ROW_UPDATE('#OWNER#:EBA_ASSET_ASSETS:ID,1:|ASSET_NAME,2:CATEGORY_ID,3');
END;Note that you have to include the : before the | as this function assumes that there are two primary keys - as the table only has one, the second one is empty, but must be included.
Andy

Similar Messages

  • As. Fashion designer can I use illustrator cc along with photoshop cc

    As  a fashion designer can I use illustrator cc along with photoshop cc
    @is illustrator cc compatible with photoshop cc?

    Thank you so much for answering my question. It was a great help.
    SIncerely,
    Gail Sarasohn

  • Using Supplier Scheduling along with eCommerce; how does this fit into ASCP

    Hi,
    In Oracle 11i we are using Supplier Scheduling along with eCommerce to publish our MRP forecast via EDI 830/DELFOR. We use autoScheduling which requires MRP and in 11i we run MRP, so it all works well.
    Now we are moving to 12i and using ASCP (Advanced supply chain planning) and I understand that we do not need to run MRP any more. ASCP in conjunction with PS (Production Scheduling) will do the trick.
    Given this situation how can I use Supplier Scheduling / eCommerce to publish EDI 830/DELFOR?
    Appreciate any input in the right direction.
    Thanks!!!

    any body...some body...please help!!!

  • I had been using iMessage all along with my friend who is using an iPhone 6. I choose to send a sms to him as I do not have any connection, after that there is no way I can send him an iMessage again. Can anyone advise how do I switch back?

    I had been using iMessage all along with my friend who is using an iPhone 6. I choose to send a sms to him as I do not have any connection, after that there is no way I can send him an iMessage again. Can anyone advise how do I switch back? I had tried resetting the network setting, toggling off the sms but to no avail.
    Thank you.
    Regards

    What do you mean you choose to send him an SMS because you don't have any connection. What kind of connection? Delete the thread with that individual that you sent via SMS, and as long as you have iMessage activated on your device and your friend has an active data connection, it should recognize that and send as an iMessage. Another scenario is to have the friend send you a message that you can respond to.

  • Checking Previously Selected Checkboxes using apex_item.checkbox API

    Hello everyone,
    Before I get into the exact nature of my 'problem at hand', I feel it would be a good idea to give you readers a little background info regarding what I'm working on.
    I'm designing a page in my application (a Targeted Email Communications System) entitled the "Impacted Services Selection Screen." In a nutshell, this page will offer multiple check boxes that allow them to select/deselect the applications they wish to be notified about. Additionally, for each service, the user has the option to select the option to receive "planned" outage notifications, "unplanned" outage notifications, or both.
    I'm working with a report region where I'm querying a table called "TEC_APPS" to populate my checkboxes. This table holds three columns which are:
    (1) Primary Key APP_ID: Numerical identifier for each selectable service.
    (2) APP_NAME: Name of the application itself (i.e. Banner INB, Oracle Collaboration Suite, etc.)
    (3) ENTRY_TYPE: Type of entry within the table. I have four categories: (1) Planned Outage Notification, (2) Unplanned Outage Notification, (3) Horizontal Rule Formatting, (4) Title
    The reason for the "ENTRY_TYPE" column is primarily to format the report so it doesn't look like a "table with a bunch of check boxes inside of it".
    Here's the sql query for my report region:
    select APP_NAME,ENTRY_TYPE,APP_ID,
    decode(ENTRY_TYPE,
         'Planned Outage Notification',apex_item.checkbox(1,APP_ID) || ENTRY_TYPE,
         'Unplanned Outage Notification',apex_item.checkbox(1,APP_ID) || ENTRY_TYPE,
         'Title',APP_NAME,
         'Horizontal Rule Formatting','<hr size="6" width = "100%" color="#898A8A">')as result
    from TEC_APPS
    order by APP_ID;basically, this query generates check boxes for ENTRY_TYPEs of Planned/Unplanned Outage notification, Formatted Title Headers for an ENTRY_TYPE of a title, and an html Horizontal Rule for ENTRY_TYPES of horizontal rule formatting (the reason being my boss's specifications required there to be a formatted line that separates each check box group by context). That way, the groups will look like (note '[]' are meant to represent the check boxes):
    BANNER INB
    [ ] Planned Outage Notification
    [ ] Unplanned Outage Notification
    PORTAL
    [ ] Planned Outage Notification
    [ ] Unplanned Outage Notification
    etc....
    Additionally, I have an after submit process which uses the apex global array to store the selected check boxes and perform an insert into a different table called "TEC_SERVICES", which has the columns:
    (1) PRIMARY_KEY SERVICE_ID: Numerical Identifier for each specific service requested for notification.
    (2) SUB_ID ("subscriber id"): Numerical Identifier for each person using this application
    (3) APP_ID: Foreign key reference to "TEC_APPS" which holds information regarding which application the user has selected for each SERVICE_ID
    Here's the code for the process:
    DECLARE
       l_arrayMark  NUMBER;
       CURSOR c_id_check (aMark IN NUMBER) IS
       SELECT service_id,sub_id,app_id
       FROM tec_services
       WHERE sub_id = :p4_sub_id
       AND app_id = aMark;
       r_id_check c_id_check%ROWTYPE;
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.count
    LOOP
       BEGIN
          l_arrayMark := to_number(APEX_APPLICATION.G_F01(i));
        OPEN c_id_check(l_arrayMark);
        LOOP
          FETCH c_id_check into r_id_check;
          IF c_id_check%NOTFOUND THEN
            insert into "TEC_SERVICES"
            ( "SERVICE_ID",
              "SUB_ID",
              "APP_ID"    )
            values
            ( TEC_SERVICES_SEQ.nextval,
              :P4_SUB_ID,
              to_number(APEX_APPLICATION.G_F01(i)));
            EXIT;
          ELSIF c_id_check%found THEN
            EXIT;
          END IF;
        END LOOP;
        CLOSE c_id_check;
        EXCEPTION
        WHEN DUP_VAL_ON_INDEX
        THEN NULL;
        END;
    END LOOP;
    END;The sub-block loop basically checks to see if the user already has a record for that APP_ID, and if so exits the loop. I threw the unique key EXCEPTION in at the end just to be safe. I'm new to sql and pl/sql so I'm still trying to learn this stuff. I have come pretty far since I first started about 5 weeks ago.
    Anyways, here's my problem:
    I need to create a process that queries my TEC_SERVICES table to see if the person using my application already has a subscription for the "APP_ID" each checkbox in my report represents. If they do, the page is supposed to load with that/those checkbox(s) already checked. My problem is I'm not quite sure how to update those checkbox values. I have created a "before header" process that aimed at doing this, but is not working. Here is the "rough draft" of the code:
    DECLARE
       l_arrayMark NUMBER;
       CURSOR c_id_find (aMark IN NUMBER)IS
       SELECT sub_id, app_id
       FROM tec_services
       WHERE sub_id = :p4_sub_id
       AND app_id = aMark;
       r_id_find c_id_find%rowtype;
    BEGIN
    if APEX_APPLICATION.G_F01.count = 0 THEN return;
    end if;
    FOR i in 1..APEX_APPLICATION.G_F01.count
    LOOP
        BEGIN
        l_arrayMark := to_number(APEX_APPLICATION.G_F01(i));
        OPEN c_id_find(l_arrayMark);
        LOOP
        FETCH c_id_find INTO r_id_find;
        IF c_id_find%found THEN
        apex_util.set_session_state(apex_item.G_F01,'CHECKED');
        -- ** This is where I'm getting mixed up...this is basically trying to say, "if the record for this checkbox already exists for this person, then show this checkbox as selected."
        -- ** I just don't know how I am supposed to do that.  Maybe something similar, but more along the lines of: UPDATE apex_application.g_f01(p_checked_values => 'CHECKED')
        ELSIF c_id_find%notfound THEN
        exit;
        END IF;
        END LOOP;
        CLOSE c_id_find;
        END;
    END LOOP;
    END;I guess I just really don't know how to do this, and it's "Grinding my gears."
    Any help is much appreciated.
    Thank you all,
    Eric
    *** NOTE *** This is my first post ever in the oracle forums. I noticed that even when I include spaces and indentation in my code/post text, it doesn't display in the actual thread itself. Anyone know the markup to insert such things...or like an &nbsp?
    Edited by: user11685190 on Sep 28, 2009 2:09 PM
    Edited by: user11685190 on Sep 29, 2009 6:32 AM

    Gus,
    1. Yeah...I tend to get carried away sometimes. This one's been killing me though b/c I've got a deadline of four weeks left to do this thing and I still have three somewhat "beastly" pages to write before it's completely ready to be tested and considered for production. On top of that, I'm pretty much learning a lot of this stuff as I go.
    2. The first two loops I showed you (Query for the checkbox report, On-Submit process to read checkboxes and insert table data) are fully functional. The problem is, I've worked with "checkbox items" but not so much with the apex API for Report Checkboxes "apex_item.checkbox(p_id, p_val, etc.)). I don't know "how" I could write a pl sql process that queries the table when the page loads to check the checkboxes....addionally, I don't know what commands to use to fill these boxes b/c I've found somewhat unrelated information by conducting web research. Code-wise, my problem is I don't know whether to use:
    UPDATE apex_application.g_f01(p_checked_values => 'CHECKED') ** OR ** if you'd instead use something like 'set available flag = 'Y'' The real problem is I just don't know how I'd do it.
    ...but, on second hand, I do find light in what you said about the "before header" process. If you look at the plsql block, the cursor I'm using to "see if that person already has subscribed to the service
    represented by a checkbox," I'm referencing the page item :P4_SUB_ID. Since this is a before header process...it is running (i think) before the :p4_sub_id item loads...so the cursor is most likely returning as 'not found,' therefore it
    does nothing. However, the source for the :P4_SUB_ID item says to use the source only when the value in session state is null. Because of this, I don't know if my above thoughts are correct.
    Thank you for your thoughts and posting that link...I'll look into it a bit further.
    Oh yeah...and thanks for the [/*code] tip...that looks a ton better.
    Eric                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Using aggregate function along with for all entries: sugest alternative

    My requirement:
    For each record in i_vbap for which 'charg' is initial, need to determine batch using the following logic:
    For the material (MATNR) in i_vbap, select the batch (CHARG) which has the largest (MAX) unrestricted inventory quantity (CLABS) from MCHB table.
    How do I implement this logic without using select statement inside a loop as I cannot use MAX ( CLABS ) function along with FOR ALL ENTRIES in a SELECT?
    Suggest an alternative.

    For each record in i_vbap for which 'charg' is initial ,fetch all the existing 'clabs' value.
    [ Remember to include all the key fields in selct ]
    Sort the new table .
    Put a loop,use at end of 'charg' and append to another table. U get ur solution
    I think this should be the most economic way to do so.

  • Can I still use Internet Explorer along with Mozilla Firefox

    Can I keep both search engines installed and use them without causing any problems to my computer
    <sub>Edit by a Moderator. I changed title from <br /> ''can i still use exporer along with mozilla'' to <br />Can I still use Internet Exp'''l'''orer along with Mozilla '''Firefox'''

    Hi Michael,
    I hope you are managing to use Firefox ok.
    Some helpful terms
    * [https://simple.wikipedia.org/wiki/Web_browser Browser] <-- clickable link - often blue in colour <br /> More detail https://en.wikipedia.org/wiki/Web_browser
    * [https://simple.wikipedia.org/wiki/Hyperlink Link] <-- link <br />https://en.wikipedia.org/wiki/Hyperlink <-- different article
    * [https://simple.wikipedia.org/wiki/Search_engine Search Engine] <br />https://en.wikipedia.org/wiki/Web_search_engine
    * [https://simple.wikipedia.org/wiki/World_Wide_Web World Wide Web] vs [https://simple.wikipedia.org/wiki/Internet Internet]
    **I will leave it as an exercise for you to look up the ordinary English versions of ''www'' & ''Internet'' in en.wikipedia.org
    ** Note the linked articles are themselves full of links.
    Internet Explorer is a bit odd. Everyone would get it with Windows. Effectively almost the same thing would be used as the Windows Explorer on the computer and navigating the Web
    '''Did you find the Firefox Tour / Introduction ok ? '''
    * '''[[Get started with Firefox - An overview of the main features]]'''
    I make no apologies for posting a reply in very basic terms. It may not teach you much as you have already managed to find and post on '''[/questions/1008931 this]''' ''[https://simple.wikipedia.org/wiki/Internet_forum forum]'', but you or other readers of this question may find some of the links of use. We all need to begin somewhere, and following links is sometimes a useful method of learning.

  • When I set up my exchange account on iPad2 cameras always become disabled. What's the problem, can I use my cams along with using exchange mail?

    Can someone help me with this question? Why iPad 2 disables camera when I set up my Exchange mail account? How can I enable camera along with using mail?

    The iPad is not disabling the camera - the administrator for your Exchange account is. You need to go to the person who administers your Exchange account and ask them to lift the restriction on cameras in their Exchange system.

  • Using activecontent.js along with xml

    I am calling a xml file along with my swf. how do i properly
    code when using activecontent.js
    my file location:
    /user/flash.swf?dataSource=file.xml
    I got the noscript correct, but not sure about the script
    part.
    If this belongs in the DW section please move.

    A custom XSQL action handler can do:
    getPageRequest().getPostedDocument()
    to get hold of the posted XML content. There's no other way to reference it as a parameter in a page. You could write a custom action handler that returns the contents of the posted document as a string like this:
    import oracle.xml.xsql.XSQLActionHandlerImpl;
    import oracle.xml.parser.v2.XMLNode;
    import org.w3c.dom.*;
    import java.io.*;
    public class PostedXML extends XSQLActionHandlerImpl {
    private static final String RESULTELT = "PostedXML";
    public void handleAction(Node root) {
    try {
    Document pd = getPageRequest().getPostedDocument();
    if (pd != null) {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);
    ((XMLNode)pd).print(pw);
    addResultElement(root,RESULTELT, sw.toString());
    addResultElement(root,RESULTELT,null);
    catch (Exception e) {
    addResultElement(root,RESULTELT,null);
    }Then when you use the custom action element in an XSQL page like this:
    <xsql:action handler="PostedXML"/>
    Your XSQL data page will end up with:
    <PostedXML>...posted-xml-doc-as-string-here...</PostedXML>

  • Using tomcat 5 along with apache 2.2

    hi
    i am facing a strange problem
    i am trying to build a web application using servlets with tomcat 5 and apache 2.2 and i am using oracle 10g as the data base
    now when try to access the database from my pc it works fine but when i try to access it from other pc through lan its showing an exception
    i am using mod_jk connector to forward the servlets requests to tomcat.
    log file looks like this
    2009-02-01 00:04:07 StandardContext[manager]HTMLManager: init: Associated with Deployer 'localhost'
    2009-02-01 00:04:07 StandardContext[manager]HTMLManager: init: Global resources are available
    2009-02-01 00:04:07 StandardContext[manager]HTMLManager: list: Listing contexts for virtual host 'localhost'
    2009-02-01 00:04:23 StandardWrapperValve[home]: Servlet.service() for servlet home threw exception
    java.lang.NullPointerException
    at Home.doGet(Home.java:26)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
    at java.lang.Thread.run(Unknown Source)
    please help me its my semister project
    thanking you

    ronit wrote:
    java.lang.NullPointerException
    at Home.doGet(Home.java:26)Some object reference at the mentioned line inside the mentioned method of the mentioned class is null while the code is trying to access/invoke it.
    The solution should be obvious: make sure that it is not null, or only access/invoke it when it is not null.
    That said, and apart from this specific problem, you should always be placing classes in packages. Not doing so is a bad practice and also asking for trouble.

  • Using runactivecontent.js along with AC_RunActiveContent.js

    Newer version of Dreamweaver adds a javascript named
    AC_RunActiveContent.js whenever flash is embedded in a page. I
    don't really understand its function other than it having to do
    with forcing IE to run activeX content.
    I want to use the "flash detection kit" that is available
    here on the Adobe site, and specifically its client-side detection
    method that uses a java script called AC_OETags.js. I have never,
    in the many years I have used Flash in my sites, ever found a flash
    detector that really worked all that well. I am hoping this one
    will be different.
    My question is, can I, and should I use both of these java
    scripts, or should I drop the use of the RunActiveContent.js. Be
    gentle with your answer please... even after all these years, I am
    still relatively a "newbie" at Flash.

     Thanks alot for your quick answer carmen , first of all there are no resource that indicates how i can access joint parent via Javascript  , as the object only contains type and position, so i guess there must be some reference to indicate joints
    and bones relation so i can do this manually , i.e create a manual hierarchy in my javascript code to relate joints to each other.
    what i want to clarify is that head bone im doing my tests on in on y-axis , also all results i get from kinect (of my own neck ) , always show a 'Y' value of 0 - 0.2 , never goes beyond this , tough  i rotate my head in all directions , but guess a
    you have stated this might be the relative rotation
    If you could please supply a reference to joints and their parents , so i can try your solution , i will really appreciate it , thanks in advance.
    Edit :
    I have attached a screenshot for my mesh with different quatrnions applied to it , to make things more clear :

  • I have a serious issue with static (clicking sounds) when I use Netflix streaming along with any movies I rent via AppleTV, and yes I use a optical audio cord.  Any suggestions?

    Was is most interesting, is that if I watch other content like MLB TV using the sound bar and optical cable, I don't have this issue, it's all very strange.  Any suggestions?

    Perhaps it's obvious to you, but what would I adjust in the midi settings?  There's nothing obvious that speaks to this out of sync issue.
    FYI, I just plugged my JBL creatures into the audio out (same physical jack as the digital out, though of course they use different technologies) and there is no sync problem with the audio played through them.  Clearly it's an issue with the digital out, just wish I could figure out if it's my stereo or something in the computer.  I have no other devices that accept a digital input, so can't swap the stereo out for anything else.

  • Error in using complete() method along with Pop-up.

    Hi All,
    I m working on NWDS 7.1(CE) and using GP interface.
    The scenario is on click of a button,'Proceed', a pop-up opens which ask for a confirmation and if this is 'yes', then i have to call complete() method.
    When i m doing so,i m getting following error:
    com.sap.tc.webdynpro.repository.model.Repository$CloseStacktrace: The repository has been closed at this location.
        at com.sap.tc.webdynpro.repository.model.Repository.close(Repository.java:663)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.exit(ClientComponent.java:232)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.deleteComponent(ClientComponent.java:173)
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.deleteComponent(ComponentUsage.java:354)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.exit(ClientComponent.java:216)
        ... 112 more
    although, the required task is getting generated and reflected in UWL, but im getting the error as mentioned above, rather than going to next Action placed in Sequential Block.
    Please help.
    Thanks and Regards,
    Sakshi

    Hi All,
    I m working on NWDS 7.1(CE) and using GP interface.
    The scenario is on click of a button,'Proceed', a pop-up opens which ask for a confirmation and if this is 'yes', then i have to call complete() method.
    When i m doing so,i m getting following error:
    com.sap.tc.webdynpro.repository.model.Repository$CloseStacktrace: The repository has been closed at this location.
        at com.sap.tc.webdynpro.repository.model.Repository.close(Repository.java:663)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.exit(ClientComponent.java:232)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.deleteComponent(ClientComponent.java:173)
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.deleteComponent(ComponentUsage.java:354)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.exit(ClientComponent.java:216)
        ... 112 more
    although, the required task is getting generated and reflected in UWL, but im getting the error as mentioned above, rather than going to next Action placed in Sequential Block.
    Please help.
    Thanks and Regards,
    Sakshi

  • Need Help Can i use Merge command along with exist function in oracle?

    I am using Merge command to update the destination table and updating the rows which are already in the destination table.
    But what i want is to delete the existing rows from the destination table and insert fresh rows instead of updating the existing rows in the destination table.
    So can we use exist function to check the existing rows and delete them and use merge command to insert the rows in the table.

    You definitely need to do a DELETE then INSERT since MERGE will not delete rows, although I'm not really sure what that gets you since the net effect would be the same as a MERGE over the same pair of tables.
    If you really want to do it this way, then I would likely do something like:
    DELETE FROM target_table
    WHERE (columns_you_would_match_on) IN (SELECT columns_you_would_match_on
                                           FROM source_table
                                           WHERE predicate_you_would_use_in_using);
    INSERT INTO target_table (column_list)
    SELECT column_list
    FROM source_table
    WHERE predicate_you_would_use_in_using;John

  • Have lost use of iBooks along with all the books on shelf.

    Looking for options or solutions to my ability to use iBooks library once more while getting back some of the lost books.

    Are your books and/or the iBooks Store restricted?  Check Settings > General > Restrictions

Maybe you are looking for