Strange behavior of Date Picker

APEX 3.2.1.00.10
For some reason when I place the cursor on the Date Picker input text area and press <enter>, the page submits and I'm redirected to a URL of: http://[apex url removed here]/wwv_flow.accept. This page has the following message:
"ERR-1777: Page 27 provided no page to branch to. Please report this error to your application administrator."
Restart Application
The Date Picker item on a page (page 27) is specified as:
Name: P27_BEG_DATE
Display as: Date Picker (MM/DD/YYYY)
Source Used: Only when current value in session state is null
Source Type: Static Assignment (value equals source attribute)
Format Mask: MM/DD/YYYY
Default Value:
DECLARE
  v_date DATE;
BEGIN
  SELECT trunc(SYSDATE,'YEAR')
    INTO v_date
    FROM dual;
  RETURN TO_CHAR(v_date,'MM/DD/YYYY');
END;
Default Value Type: PL/SQL Function Body
This item is conditionally displayed and strangely enough, there are no processes or branches that are triggered on this particular item that would cause the page to submit. This behavior is present in both IE and FireFox. Any ideas?

I have resolved the issue. I'm not sure if this is the behavior of all browsers (as the thread below indicates) or whether it is an APEX bug, but adding the following HTML to the Header Text attribute of my page prevents the page from submitting. Apparently when a page has a single input field (as in the case with input field associated with my Date Picker item), the browser will submit the page when <enter> is pressed even though page branching is not defined for such circumstance.
<!-- Dummy input created to prevent submit of page -->
<input type="text" style="border:0;" disabled="disabled" />OTN thread regarding page submit when single input on page:
[Link here|http://forums.oracle.com/forums/thread.jspa?messageID=2184305]

Similar Messages

  • Strange Behavior with Data Merge (CS4) - Advice?

    This is the most bizarre behavior and I may have to chalk it up to a full moon or something since I can't reproduce it and I cannot find any hints as why this happened. This is my last attempt at figuring a solution...maybe someone has experienced this??? Anyway, here's what happened...
    I do a data merge for addressing envelopes. Been using the InDesign data merge feature for a couple of years now, no problems.
    My address list is approximately 1200. It's in a .csv file with the following fields: fname, lname, company, address1, address2, city, state, zip
    For my last mailing, approximately 300 addresses were merged wrong. Here's the crazy thing it did: instead of using the address1 field for the current record, it used the address1 field from the NEXT record, and ONLY the address1 field.
    Here's more bizarre-ness. The NEXT record was merged correctly.
    For example:
    Record 1 (address1 should be 555 Cherry Lane, Apt 5)
    John Smith
    Smith Company
    123 Main Street, Apt 5
    Small Town, CA 12345
    Record 2 (John Smith's address used THIS address1, but NOT address2 or any other field! Jane Doe's address is correct)
    Jane Doe
    Doe Company
    123 Main Street, Suite 300
    Big Town, TX 56789
    I've tested. I've looked for commonality in the records, where it's placed, if there was something unusual about it's format. I come up empty. The incorrect data seem randomly interspersed.
    One thing that I have to do is break up the actual merge. Either my computer memory or InDesign can't handle 1200 merge records. So, I merge approximately 200 records at a time (I make 6 print files). I don't know if this has anything to do with it (like I said, the incorrect data is interspersed all through out), but, thought I'd mention it.
    Any advice is appreciated. I'm hesitant to use it again until I can understand why this happened.
    thanks much,
    Kia

    CS was soemtimes flakey in this way with Data Merge.
    Are you updated to the latest patch? Most issues were resolved at some point.
    That said, I recall another user with this problem, and it never resolved with his particular file. I examined the data file and couldn't find any issues, but it behaved identically on my system tot he way it did on his so I can only conclude there was still some bug, or something about the data file that we were unable to detect. I seem to recall that the same data file merged correctly in CS3, but I don't recall if I saved it long enough to test in CS5. I've not had any issues with my own files in any version.
    Open the file in a plain text editor and look for any odd characters (I'd start the search where the merge first fails). Also do a Save As from the text editor to make sure there is no possibility of formatting from your spread sheet having found its way in.

  • Unix2dos strange behavior - deletes data from file

    Hello,
      I have a rather strange problem with converter unix2dos, meaning:
    In a PL/SQL procedure i write a file under unix SO since my database is on AIX. The end-users need the file in windows format so after writing the file i run the converter unix2dos for the file just written.
    The problem i am facing is that after the convertion from the result file are missing the last two lines (with data) - these lines are in the file written in aix format.
    Have you ever faced this kind of problem? Any ideas?
    Thank you and have a nice day,
    Oana

    unix2dos is nothing to do with SQL or PL/SQL.  It's a unix utility, tried and tested, and I've never had a problem with it.  Typically it's not needed as people transfer files using FTP in ASCII mode which automatically converts the text files as it transfers them.  We've only used unix2dos for file transfer between unix and windows servers where the files are extremely large and we need quick transfers so we're not using FTP, but are rather using rsync, which doesn't convert the files, so we unix2dos them first, then let rsync do it's thing to just send the differences over the network.
    Never had a problem with unix2dos.
    You need to show us your code if you think it's relevant to the issue, but as long as you're writing out your data and closing the file correctly so that the buffers are emptied and file handles released, then there shouldn't be any issue, certainly not anything that's Oracle's issue.

  • Strange behavior in Webi : No data returned

    Hi,
    I am experiencing a strange behavior.
    I have created a condition object in universe.
    Start Date : DATE_DIM_TBL.DAY >= UPPER(to_char(to_date(@prompt('Enter start date','D',,mono,free),'dd/mm/yyyy HH24:MI:SS'),'dd-mon-yy'))
    End Date : DATE_DIM_TBL.DAY <= UPPER(to_char(to_date(@prompt('Enter end date','D',,mono,free),'dd/mm/yyyy HH24:MI:SS'),'dd-mon-yy'))
    Now when I create report to display years between 01-05-2005 and 04-05-2009. Report does not return any data.
    Where as when I execute the generated query from SQL prompt it return correct data.
    SELECT
      DATE_DIM_TBL.CALENDAR_YEAR_NAME
    FROM
      DATE_DIM_TBL
    WHERE
       ( DATE_DIM_TBL.DAY >= UPPER(to_char(to_date('01-05-2005 00:00:00','dd/mm/yyyy HH24:MI:SS'),'dd-mon-yy'))  )
       AND
       ( DATE_DIM_TBL.DAY <= UPPER(to_char(to_date('04-05-2009 00:00:00','dd/mm/yyyy HH24:MI:SS'),'dd-mon-yy'))  )
    can somebody please give any pointers about what has gone wrong in WebI.
    --Kuldeep

    Please find below
    20-APR-05
    02-JAN-00
    03-JAN-00
    04-JAN-07
    05-JAN-00
    06-JAN-08
    07-JAN-00
    08-JAN-09
    09-JAN-11
    Yes I tried SQL*PLus on BOBJ Server machine. SQL returns correct data.
    Do you think is it some setting in WebI, As It hapopens only when I use condition object as a filter in Webi report. When I create Report filter it works fine.
    --Kuldeep

  • Strange behavior on pick load

    We have a strange behavior with TopLink when the load of the server increases : random errors appear in database : pimary key voilated !
    After analysis, we noted that TopLink generates a SQL INSERT in the place of SQL UPDATE. We use the method registerObject for enregister the existing object in the unitOfWork but in certain cases Toplink does not see any more that the object exists and decides to insert it.
    When we pass by again the same cases of figure after the peaks of loads, the program proceeds normally and TopLink generates SQL UPDATE.
    Thank you for your assistance, our production suffers from this problem

    Hello,
    Looks like you have the existence checking set to checkcache only and are likely using a WeakIdentityMap for your objects identity. Under load, this could potentially cause references in the cache to be garbage collected, so that subsequent existence checks won't find them.
    If the above is correct, you can increase/decrease the likelyhood of the problem occuring on a test system by tuning the JVM - removing/adding memory, tuning gc options etc. You might also want to tune each descriptor cache based on your applications usage as described at:
    http://www.oracle.com/technology/products/ias/toplink/doc/10131/main/_html/cachun.htm#CHEJAEBH
    In addition to setting JVM options that suit your application's usage and load, you can prevent the problem entirely by:
    1) reading existing objects through the UOW instead of registering them. This will ensure that if the object has been removed from the cache, it will be read from the database. If it hasn't been removed, it is just a cache hit. Or
    2) use the Check Cache then Database option.
    Benifits of 1 are that if you know the object is new, you don't need to go to the database, but you can always use the RegisterNewObject api as well to avoid the database hit with option 2 anyway. There are probably more ways to avoid the problem, these are just the first two I thought of.
    Best Regards,
    Chris

  • [BO XI 3.0] - Strange behavior regarding language settings

    Hello,
    I found strange behavior  BOE in infoview portal. We have Desktop intelligence documents published in repository and when we open report (first time) in infoview we have right format for date and numbers e.g. dd.mm.yyyy, 123.123,00.
    When we close this report and open once again the format is en-US e.g. mm/dd/yyyy 123,123.00 and this is wrong. We log out and log in and open this report but no change.
    If we restart services in cmc (deski services) then the first time is report ok and when we open again this report the same error.
    SW:
    Windows server 2003 sp2 - english (regional settings - slovenian)
    BOE premium ( BO XI R 3.0 => the same problem in BO XI 3.1)
    CMS database => Oracle 10gR2 (nsl lang SLOVENIAN_SLOVENIA.EE8MSWIN1250)
    Language settings in infoview we check => use browser locale and slovenian
    Thank you for reply!
    In BOE R2 works fine...
    Regards,
    Gregor

    Hi Gregor,
    Try the following option.
    Find the file i8ln.xml in the location
    "<install directory of BO>\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\scripts\"
    Take a backup of the file and make the follwing changes.
    Find the following code in the file
    activate_languages>
    <state value="0"/>
    <State value="0" cs_lang="Bulgarian"/>
    <State value="0" orig_lang="" cible_lang="Bulgarian"/>*
    <State value="0"/>
    </activate_languages>
    Replace it with:
    <activate_languages>
    <state value="0"/>
    <State value="1" cs_lang="English (Australian)"/>
    <State value="1" orig_lang="" cible_lang="English (Australian)"/>*
    <State value="1"/>
    </activate_languages>
    Save the file.
    Restart your Desktop Intelligence servers. It might take a bit of time to pick up the changes.
    Note: If you start Deski after this change, and go to "Tools > Options", you will see a disabled language button with "English(....)" written on it.
    Regards,
    Anisa

  • Bug in Date Picker..urgent

    Dear All,
    I ma working with OAF 5.7h.
    I am facing a strange problem.
    I hav a date picker,the one where u hav a date icon on clicking of which the dâte picker opens up in a secondary modal window with the month and year in individual pulldown lists, [Month] in first pulldown list, [Year] in next pulldown list.
    Now whenever i scroll thro the Month pulldown list and try selecting February from the Month [first] pulldown list,it alwayz returns the next month (ie ) March in the list(whenever we choose any month from the month pull down list the secondary date window refreshes and puts the selected month as selected in the pulldown list).
    The year pull down does not cause any such behaviour.
    Its fine with all the months except February.
    So unfortunately the user can never select the month Feb,it alwaz return March in the list.
    I tried to see the html code in the explorer.View ...Source and i saw that the value attribute in the HTNL tags for both the months Feb and March is same.
    So whether i choose Feb or March it displays March...
    How can i change this because what i understand the value is generated dynamically for each month in the javascript for the date pop up.
    Any help would really be great..
    Thanks

    Hi Sharon,
    So, It's not a bug it's a feature … :)
    IMHO, or to be more exact, in my users opinion, the current behavior is not good enough from a user interface point of view. We are all use to see some noticeable reaction when we are pressing on a link, button etc. The current response to choosing another day is not noticeable enough, and can cause some confusion. I would expect the newly chosen day to be colored. If you think that the current date should also remain marked, you can use another color.
    If you use this in a form with a value already set you will notice that it is not the value of the item that is in grey, it is sysdateYes, I've notice that, and in the case that sysdate is not in the current displayed month, nothing is colored. I find this behavior also to be a bit confusing. I think the date picker value should be marked.
    I would appreciate if you'll consider this thread as an enhancement request.
    Thanks,
    Arie.

  • Date picker not working correctly.

    Hi all,
    I have a strange prob in webdynpro.
    I am using Date picker. But once i read it, the value is one day less than that i give.
    For eg, i give <b>06/25/2006</b>.. but it reads as <b>06/24/2006</b>.
    Please help.
    Thanks in advance
    gEorgE

    Open an OSS message (BC-WD-JAV-RUN).
    Armin

  • Date Picker with Dynamic Action

    Hi
    I have a situation where a DA is fired onchange of a date field using the apex 4 date picker item type.
    The DA does a number of calculations and database requests, so it can take a few seconds over our slow internet connection.
    While the DA is executing, the calendar remains displayed. The application demands that I display at least 1 or preferably 2 months as well as the current month to facilitate the user entry, which means much of the page is obscured. Not only would it be nice so see the various fields in multiple regions being updated progressively, it would also be reassuring for the user to see that the application has not "hung".
    Is this the expected behavior? Is there a technique to close the date picker before the DA actions are triggered?
    Thanks for your advice.
    CS

    Hi,
    Try this write a Zprogram for this.
    REPORT  Zget_date.
    TABLES : RP50D, PA0041, P0041, PA0019.
    PERFORM Z_date.                       "3CML Dynamic action for IT0000
    FORM Z_date.
      DATA: DATE1 LIKE SY-DATUM.
      DATA: DATE2 LIKE SY-DATUM.
      SELECT * FROM  PA0041
               WHERE  DAR01 EQ '11'
                AND PERNR  = P0041-PERNR
                AND BEGDA  = P0041-BEGDA.
        DATE1 =  PA0041-DAT01.
        DATE2 = DATE1 + 1.
        RP50D-DATE1 = DATE2.
        EXIT.
      ENDSELECT.
    ENDFORM.       
    and use this in your dynamic action.
    F Z_date(Zget_date)
    W P0041-DAT01=RP50D-DATE2
    Hope this will solve your problem.
    Regards,
    ARU

  • Date Picker problem in Apex 3.1

    Hi,
    I upgraded my apex to 3.1 and found that the date picker icon behaviour become quite strange.
    If I set the label of the date picker Horizontal/Vertical Alignment to Above, the picker icon will show below the text box instead of right side. And the pop-up calendar for Date Picker (DD-MM-YYYY HH24:MI) also not high enought to show the Close and OK button, I have to manually adjust the pop-up calendar height.
    All this problems were not there in 3.01, is these some kind of bug?
    Thanks
    Vincent

    Hello,
    Can you put an example of your particular layout on apex.oracle.com. The solution I had worked in most of the case's I tested , obviously yours is different.
    The next best solution would be to either shim the items with images, or to specifically set the widths of the containing table cells.
    The reason all this is happening is sometimes , depending on the region templates and CSS the regions will collapse down on the content, and the the browsers will do there best to fit the content in the smallest place possible, Unfortunately, in some cases the browsers ignore both nowrap="nowrap" and/or style="white-space:nowrap", why would I want to put nowrap on something and still have it wrap, I don't know it's not me it's the browsers.
    The solution in the patch I'm leaning towards is wrap item into a table. As it will work perfectly everywhere , and greatly annoy people that want tableless layouts, but that won't be available till the patch.
    Regards,
    Carl
    blog : http://carlback.blogspot.com/
    apex examples : http://apex.oracle.com/pls/otn/f?p=11933:5

  • Strange Behavior from iTunes 7.2

    Running itunes - 7.2Recently had my itunes library “corrupted” or non functional.
    Spent a long, long time rebuilding the library (see below) and noticed some strange behavior that has me terrified that itunes is corrupted and I am going to loose all the hard work, etc..
    1. I have about 100 GB of music in various formats (apple protected/itunes store, mp3 (128 to 320), apple lossless, wav) and when I tried to rebuild the library by clicking on add to library it only added about 65 GB of the 100 GB. I had to go through and figure out what was missing and manually choose the specific folder when I added it.
    Major pain and very time consuming.
    So it is not adding songs correctly, but through way too much effort able to work around this.
    2. About ½ of the itunes store tunes I purchased are no longer apple protected format. Somehow they were converted to mp3 at 192kbs. Some of the songs play fine others are now not as crisp and make a poping sound or skip. How could this happen? Are these files corrupted? Will I loose them?
    3. At the top center of itunes the information bar, where the read out is for what song is playing and how much time has elapsed in the song, is not working. When I click on a song it starts playing but the elapsed time bar and counter never move, and when the next song starts playing the information never changes. It is stuck on what ever song you initiate play with by clicking on it and the information stays frozen.
    4. itunes randomly stops playing at the end of a song….If listening to an album it is usually after three or four songs and when listening to a play list it is usually after one song.
    I am afraid itunes is corrupted and will not function correctly and I am going to loose the hard work I put in trying to recover from the last crash.
    Any suggestions??
    Can’t wait for time machine. I hope it works as advertised. If so I could just go back in time to the last time iTunes worked correctly and go from there.

    First of all I hope that you have a good b/u of all your tunes - either on ext HD or on DVD. Don't forget to b/u the iTunes Library and .xml files at the same time.
    Have you tried to reinstall iTunes? Drag the app to the trash and remove the iTunesX.pkg from HD>Library>Receipts>iTunesX.pkg. Using a fresh .dmg of iTunes 7.2 reinstall.
    Have you repaired permissions with Disk Utility?
    Is your Quicktime up to date? At least version v7.1.5.
    MJ

  • Dynamic Action On Date Picker

    Hi,
    I need help with understanding dynamic actions. I have two date pickers, I want the value of the first date picker to be the minimum date of the second date picker. To achieve this I have a hidden item whose value I want to reflect the selected date in the required format. In the dynamic action on the date picker I have no condition, and the true action is set to execute the following pl/sql code
    :P200220000_Y_MIN_DT := TO_CHAR(TO_DATE(:P200220000_Y_STR, 'DD-MON-YYYY'), 'YYYYMMDDHH24MI');. The items to submit field contains both the first date picker and the hidden item.
    The "P200220000_Y_MIN_DT" is now passed into the minimum date field of the second date picker. The problem is when the date is changed the hidden item does not get the value until the page is refreshed.
    Am I doing something wrong or just have not mastered the use of dynamic action or are my colleagues right use AJX call backs not dynamic actions.
    Thanks
    Aderemi

    Hi Aderemi,
    first of all as already explained, the min/max values are already used on the server side when the necessary code for the date picker is rendered. When you changed the referenced values in the browser, these values will not change the behavior of the client side date picker widget. But when you submit the page, the new min/max values will be used by the date picker validation check on the server.
    To over the client side date picker display issue, you could directly call the date picker JavaScript code and pass in the new min/max values. Have a look at http://jqueryui.com/demos/datepicker/
    So for example you could have a dynamic action of type "Execute JavaScript code" which executes the following Javascript code.
    apex.jQuery('#P200220000_MY_DATE_PICKER').datepicker("option", "minDate", "-1m");I think that should work. Note: I haven't tested if that really works and it's also some kind of unsupported, because it uses the underlaying jQueryUI APIs the APEX date picker is using. This could change in the future and would invalidate your code.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins

  • How to Resize the default date picker calendar

    Hello Experts,
    SAP CRM web UI shows a date picker as follows for populating fields of type date.
    We noticed a strange issue that for months like January 2015 , the width of the date picker is lesser than what is shown for November 2014.
    As you can see in the following snapshot , the dropdown icon of the second field is hidden when the month shown is November 2014.
    This an issue because of the different sizes shown for different months , users would have to move mouse pointer when they to move to next months by clicking on the next arrow icon.
    Any tricks to fix the width of the date picker will be really appreciated.

    Hi Praveen,
    You can try following tricks -
    1. Go to SE80, search for BSP Application = 'thtmlb_styles'
    2. under Pages with Flow Logic  - we have one CSS file called "thtmlb_core_stand.css"
    3. In this file try changing width of method call ' #thtmlb-calendar-container ' to 150px  like shown below.
    #thtmlb-calendar-container {
         display:                none;
         position:               absolute;
         width:                  150px;
    hope it helps.
    Best Regards,
    Sandeep Kumar B

  • Report FP_TEST_00 - Strange behavior

    Hello Gurus,
    A strange behavior with report FP_TEST_00 occurs:
    SA38 --> FP_TEST_00 --> select a device --> execute --> print preview then and error or popup is show:
    Adobe Reader
    Error initializing the font server module
    Then the SAP GUI is closed, I check the ST22 and no dump is generated and in transaction SM21 only appear:
    DP  Q0  4 Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    DP  Q0  I Operating system call recv failed (error no. 232 )
    The #1 log entry: *
    Details Page 2 Line 28 System Log: Local Analysis of sapdev                   1
    Time     Type Nr Clt User TCode Grp N Text
    11:37:20 DP                     Q0  4 Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    Details
    Recording at local and central time........................ 25.02.2010 11:37:20
    Task...... Process    User...... Terminal Session TCode Program Cl Problem cl         Package
    11092      Dispatcher                                           K  SAP Web AS Problem STSK
    Further details for this message type
    Module nam Line Error text..........              Caller.... Reason/cal
    dpxxdisp   1223 551  ADMIN       86  HUSVP-SAP-BA DpRTmPr    NiBufRe
    Documentation for system log message Q0 4 :
    The SAP Dispatcher (part of the application server) has lost the
    connection to a terminal process.  For example, this happens when the
    terminal program (GUI) terminates without correctly logging off the
    application server.  More detailed information about the error
    context is not available here.
    Technical details
    File Offset RecFm System log type             Grp N variable message data
       21 254340 m     Error (Function,Module,Row) Q0  4 551  ADMIN       86  HUSVP-SAP-BA     DpRTmPrNiBufRedpxxdisp1223
    The #2 Log show: *
    Details Page 2 Line 29 System Log: Local Analysis of sapdev                   1
    Time     Type Nr Clt User TCode Grp N Text
    11:37:20 DP                     Q0  I Operating system call recv failed (error no. 232 )
    Operating system call recv failed (error no. 232 )
    Details
    Recording at local and central time........................ 25.02.2010 11:37:20
    Task...... Process    User...... Terminal Session TCode Program Cl Problem cl         Package
    11092      Dispatcher                                           K  SAP Web AS Problem STSK
    Further details for this message type
    Module nam Line Error text        Caller.... Reason/cal
    nixxi.cp   4435           recv232 NiIRead    recv
    Documentation for system log message Q0 I :
    The specified operating system call was returned with an error.
    For communication calls (receive, send, etc) often the cause of errors
    are network problems.
    It could also be a configuration problem at operating system level.
    (file cannot be opened, no space in the file system etc.).
    Additional specifications for error number 232
    Name for errno number ECONNRESET
    No documentation available for error ECONNRESET
    Technical details
    File Offset RecFm System log type             Grp N variable message data
      21 254520 m     Error (Function,Module,Row) Q0  I           recv232                     NiIReadrecv   nixxi.cp4435
    Edited by: Hernando Polania Cadena on Feb 25, 2010 8:36 PM

    Hello All,
    I applied the solution in page
    http://wiki.sdn.sap.com/wiki/display/PLM/Adobe%209%20-%20SAPGUI%20crash
    Works OK
    Thanks
    Hernando

  • Date Picker with Previous and Next Year Options

    Hi All,
    I am implementing a date picker in my application which is tied to an attribute of type PA0001-BEGDA. Date Picker as such works fine but navigating to previous year and Next year options are not available. User has to go month by month to different years if they have to navigate.
    Is this the normal behavior of the Date Picker or am I missing something else to get the previous and Next year icons in the Date Picker.
    Thanks,
    Nagarajan.

    hmm..I tried using the select options and it did give the same date picker with the previous and Next navigation icons...The only problem with the select options is that its a single field which has the range and can accept multiple values too...
    I tried to figure out how the date picker that we use in the custom application and the one in Select Options differ but no luck...Does this ring any bell?
    Thanks,
    Nagarajan.

Maybe you are looking for

  • How can I copy a movie through homesharing

    How  can I copy a movie with the new itunes through homesharing?

  • How do I HIDE "Notes" from my Main Message Viewer Window

    Old "Notes" are cluttering up my Inbox views in the main mail message viewer window. The yellow pad "Notes" feature in Mail is helpful, but every time I create a new note - which I may well want to keep around for a long time - the note title etc app

  • Ods report

    hi experts, i want to take report on ods change log table so, i started using generic extraction method with change log table but when i am assigning to application component in generic extraction (SD or MM) it is showing error that no application co

  • WRT54GS with SpeedBooster MAJOR ISSUES!

    I purchased and used a Linksys WRT54GS Wireless-G Broadband Router with SpeedBooster back in January of 2006 for my small apartment in Manhattan. My roommate and I had no problems with the router at the time, and we were happy with its performance. I

  • Randomly missing music/videos

    Just recently I didn't have any proof, but I'd swear that something on the itunes network is deciding that it can't play my legally bought music/dvds, that I have imported to iTunes. These are cd's and things I have purchased elsewhere but have added