Ok, here's another..  A date issue..

I have a string date (to be) passed from a gui. The date would come in as:
eDate = "05/01/2005"
I need to format this date for an Access database to have this same value. This converts to
12/30/1899 12:00:49 AM
in the database.
Suggestions?

As in, the database field has the "converted" value.. I've played with DateFormat and some other suggestions, but nothing seems to work right. I need a way to convert this to a "database friendly" format.
This is the code (look familiar?)
================================
import java.sql.*;
import java.text.*;
* @author ssmoot
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
    public class AddID {
       public static void AddIDs() {
           // test block
             String thsID = null;
         String empID = "99887";
         String efnme = "Test";
         String elnme = "Case7";
         String effDate = "05/05/2005";    // --------this is the date field.  this is the entry format.
         String ISO = "GP3SGS";
         String acfID = "GP3FFE, GP4SDS";
         String otisID = "DSOFRG, GP5RRR";
         try {
            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
            String database = "jdbc:odbc:driver={Microsoft Access Driver (*.mdb)};DBQ=Q:\\Information Security\\@Daily Work\\SearchID_app\\oldLogins.mdb";
            Connection con = DriverManager.getConnection(database, "", "");
            Statement stmt = con.createStatement();
            String inGenQuery = ("INSERT INTO oldLogins(EmplID, LastName, FirstName, EffDate, SecAnalyst) " +
                               "Values('" + empID     +
                                              "','" + elnme +
                                              "','" + efnme +
                                              "'," + effDate +
                                              ",'" + ISO + "')");
            int returned = stmt.executeUpdate(inGenQuery);
            // System.out.println(returned);
              String getIDQuery = ("Select ID from oldLogins " +
                                         "WHERE EmplID = '" + empID + "'");
              ResultSet id_rs = stmt.executeQuery(getIDQuery);
              while(id_rs.next()){
                   thsID = id_rs.getString("ID");
              System.out.println(thsID);
             catch (Exception e) {
               e.printStackTrace();
       public static void main(String[] args){
            System.out.println("--------------Invoking class-------------");
            AddIDs();
            System.out.println("---------------Ending class--------------");
   }

Similar Messages

  • Unable to create BOMMAT IDOCs due to validity date issue

    Hello everyone,   (Posted in SAP-PP forum as well)
    I am having a unique issue with our Bills of Materials. After they are created and set to active, they have validity dates that go from 2001 to 9999. When I go to BD30 to distribute the BOM to the external systems I am getting the following error message:
    No bill of material exists on 08/25/2009 for 2557B27H02/FBLR/1/01
    Message no. BOM014
    Diagnosis
    You want to distribute BOM 2557B27H02/FBLR/1/01 via ALE. However, the BOM is invalid on 08/25/2009.
    System Response
    The system does not distribute the BOM.
    Procedure
    Check the BOM's validity.
    If you want to distribute all BOMs with the change status for another key date, enter another valid-from date on the initial screen.
    If you only want to distribute a certain BOM with the change status for another key date, enter another valid-from date or a change number on the selection screen.
    We get this for any BOM in this system.
    This is our QA environment and do not have this problem in our Development system. BD30 finds the BOM we specified but claims it is invalid on that date.
    We are trying to figure out if there is another status or approval step that I am missing here.
    SAP v4.7 level 19
    Thanks and points awarded for helpful answers!
    John

    Hi John
    Check you Material & Bill of Material in Table:  MAST & STKO whether they are valid or not .. Check valid from date in Bill of material
    Ramesh

  • Data issue in IDOC

    Hi Experts,
    I do the following steps to generate IDOC for Passing over payroll data to ADP.
    I run the payroll and Run the coombined Payroll export and go to WE05 to chk for idoc.
    I have some data issue here. I need the IDOC to Pick 0167 infotype information. For few employees if does generate but for few it does not generate the info in IDOC. Please help me as to how to navigate this problem as iam very new to payroll and as weel as IDOc's.
    Thanks
    Chowdary

    Hello,
    Please try your luck with this.
    Go to BD87 see the error message why this idoc is not moved. some time retrying will you success.
    else also you find the problem in the error message.
    thanks

  • VPD date issue between 10.1 and 10.2 databases

    I have uncovered an issue today with VPD against date fields. The issue came up at a client site on a 10.2 database. When I got back to the hotel and tried this on my own database, which is 10.1, I got no issue and everything worked ok.
    Therefore, I am asking if anyone is able to try out the following for me on different Oracle databases and platforms and let me know whether it worked for you or not. I'd like to compile a list of database versions and platforms on which the issue occurs.
    Step 1: create this table as a user
    CREATE TABLE TST_DATE AS (
    SELECT 1 PERSON_UID,
    Trunc(SYSDATE) BIRTH_DATE,
    To_Char(Trunc(SYSDATE), 'DD-MON-YYYY') CHAR_DATE,
    123456 TAX_ID,
    'Smith, Michael B.' FULL_NAME FROM dual);
    Step 2: grant select rights on the table
    GRANT SELECT ON TST_DATE TO PUBLIC;
    Step 3: switch your login to SYS and run this script:
    CREATE OR REPLACE FUNCTION F_CHECK_ITEM_TST(p_object_schema in varchar2, p_object_name varchar2)
    RETURN VARCHAR2 IS
    V_PREDICATE VARCHAR2(2000) := '1 = 2';
    BEGIN
    RETURN(V_PREDICATE);
    END F_CHECK_ITEM_TST;
    Step 4: As SYS, run this to grant access rights over the function
    GRANT EXECUTE ON F_CHECK_ITEM_TST TO PUBLIC;
    Step 5: As SYS, run this to enable the policy
    BEGIN DBMS_RLS.ADD_POLICY(
    OBJECT_SCHEMA => 'DRAKE',
    OBJECT_NAME => 'TST_DATE',
    POLICY_NAME => 'SecByTST',
    FUNCTION_SCHEMA => 'SYS',
    POLICY_FUNCTION => 'F_CHECK_ITEM_TST',
    STATEMENT_TYPES => 'SELECT',
    POLICY_TYPE => DBMS_RLS.DYNAMIC,
    SEC_RELEVANT_COLS => 'BIRTH_DATE',
    SEC_RELEVANT_COLS_OPT => DBMS_RLS.ALL_ROWS);
    END;
    Note: in the above policy change the OBJECT_SCHEMA name to be the name of the user who owns the table you created in Step 1
    Step 6: Go into Discoverer Admin and import the table as a new folder.
    Be sure to uncheck the "Date hierarchies" box and set "Default aggregate on data points" to detail. Grant access to any user.
    Step 7: Using Desktop or Plus, log in as that user then try to query the folder with the date not included, there should be no problem.
    Step 8: Now try to query with the date included
    On my 10.2 database I get ORA-24334: no descriptor for this position. This happens when logged into Discoverer as the table owner, EUL owner or any other user. However, when logged into Discoverer as SYS which is exempt from all VPD policies, there is no error when the date is included.
    We tried this in Discoverer Desktop, Plus and Viewer with the same results in all three. We can successfully query the table from SQL*Plus, SQL Developer and TOAD.
    There also seems to be no issue at all with the 10.1 database so there seems to be an issue between Discoverer and the 10.2 database.
    What do you think?
    P.S. to cancel the policy use this script when logged in as SYS:
    EXEC DBMS_RLS.drop_policy(
    OBJECT_SCHEMA => 'DRAKE',
    OBJECT_NAME => 'TST_DATE',
    POLICY_NAME => 'SecByTST');
    This same information is available on my blog in a more readable format here:
    http://learndiscoverer.blogspot.com/2006/12/vpd-date-issue-between-101-and-102.html

    Hi Rod
    Well don't you just love Oracle. Obviously, whatever tests were done for certifying Discoverer against the 10.2 database did not include checking VPD policies. This merits a blog entry from me.
    Your workaround for V_PREDICATE VARCHAR2(2000) := 'BIRTH_DATE=TO_DATE(''01-JAN-0001'')'; works. However, I had to write a new function to do this because my real function was trapping about a dozen items at the same time, some dates, some numbers and some varchars - exactly the way that the Oracle example code shows it in the 10.2 database manual.
    So what I did was to create a new function that only handles dates and added a dedicated policy that works with only that function. Unfortuately, because I have many dates to manage, I was unabe to hard code the BIRTH_DATE so here is what I did:
    V_PREDICATE VARCHAR2(2000) := 'SYSDATE = TO_DATE(''01-JAN-0001'')';
    This works perfectly and Discoverer stopped complaining. It just has two policies on the same table for different data items. Isn't VPD cool? I'm hooked.
    I really appreciate your time and effort on this. Now, let's see what Oracle support make of the issue because I raised a service request last night. No reply yet I'm afraid.
    Best wishes
    Michael

  • After installing, when the site pops up to say "here is another product...", nothing shows up?

    After installing flash player, when the website pops up to say "here is another product...", nothing shows up on the site.  Is this a sign that there was a problem with the install?  I did a fresh install of FP12 as I was having crash issues with games/websites.  It would work, but inevitably, the player would crash.  I'm hoping a fresh install will solve it, but I'm not liking that nothing shows up on the Adobe site after this install completed.  Any thoughts on this would be welcomed.  Going to test the install now.
    Win7 Pro 64bit
    Firefox 27.0.1

    download the following:
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)
    Flash Player Uninstaller
    Also, download these:
    Shockwave Player Uninstaller
    Shockwave Player 112 FULL installer (ther browsers)
    You'll need to install Shockwave with the FULL installer for IE too, but there isn't a direct download for it. You'll need to go to: http://get.adobe.com/shockwave/otherversions/ using IE AFTER everything else is done.
    Save all the files and close your browser.
    Run the uninstallers first (both of them)
    Go to: C/Windows/System32
    Delete the Macromed folder.
    Go to: C/Windows/SysWOW64
    Delete the Macromed folder.
    Open your Registry Editor (Start>Run or press the Windows key + R and type 'regedit' [minus the quotes] and click OK)
    In the Registry Editor, go to:
    HKEY_LOCAL_MACHINE/SOFTWARE
    Delete the Macromedia folder (Right click and choose "Delete").
    Go to:
    HKEY_CURRENT_USER/Software and delete the Macromedia folder there too.
    Close the Registry Editor and empty your recycle bin.
    Run the Flash Player installers, and then the Shockwave FULL installer you downloaded.
    Lastly, open IE and go to: http://get.adobe.com/shockwave/otherversions/ to download and install the Shockwave FULL installer for ActiveX (IE).
    For Firefox, I recommend FlashBlock (https://addons.mozilla.org/en-US/firefox/addon/flashblock/) It's prevent ANY Flash content from loading until you allow it manually. It can get to be a pain, but you eventually get used to it.

  • 0IC_C03 Inventory Control Data Issue

    Dear Gurus,
    We have implemented BI 7.0 with the latest support package as of 1st May 2011. Issues are coming relavent to 0IC_C03 infocube for inventory control. I have followed the how to guideline but issues are there.
    I have done the following settings:
    1:To fill up the extractor for 2LIS_3_BX i have used the Transaction MCNB (All Stock Including non-valuated).
    2: To fill up the extractor for 2LIS_3_BF i have used the Transaction OLI1BW (Posting Date till 2999).
    3: To fill up the extractor for 2LIS_3_UM i have used the Transaction OLIZBW (Posting Date till 2999).
    4: To generate the IP for 2LIS_3_BX for the opening stock balances the update mode CREATE OPENING BALANCE is not showing so i have used the update mode Generate Initial Status.
    5: After running the IP for 2LIS_3_BX i run the DTP with extraction Mode "Initialize non commulative".
    6: In the infocube Manage for 0IC_C03 i go in the collapse tab and enter the 2LIS_3_BX Request ID and uncheck the "NON Marker Update" to compress the request.
    7: I generate the IP & DTP for both 2LIS_3_BF & Then 2LIS_3_UM and compress both the requests in the cube by the checking the "NON MArker Update"
    8: When i run the query the data is not coming out right. Some records have negative values and some have wrong values.
    Kindly tell me what to do.
    Also, ive seen people using 2LIS_3_BF & UM only but not BX. How will this solution be implemented?
    Regards,
    Shahzad Khero

    Dear Guru,
    As off now here are the issues:
    Quantity Total Stock is matching the stock in ECC 6.0 in transaction MB5B. The issue lies with the Issue Quantity Total Stock
    & Receipt Quantity Total Stock. The values are not showing accurately but the new balance per posting date are showing accurately.
    For e.g. Cube: 0IC_C03
    Calendar Day     Issue Quantity Total Stock           Receipt Quantity Total Stock                          Quantity Total Stock
    03/31/2010                           0.000  MT                                 63.000  MT                                                63.000  MT
    04/1/2010                           78.940  MT                                 91.410  MT                                                75.470  MT
    04/2/2010                           18.000  MT                                 0.000  MT                                                57.470  MT
    MB51
    Posting Date       Issue Quantity Total Stock           Receipt Quantity Total Stock                          Quantity Total Stock
    03/31/2010                           0.000  MT                                 63.000  MT                                                63.000  MT
    04/1/2010                           68.940  MT                                 81.410  MT                                                75.470  MT
    04/2/2010                           18.000  MT                                 0.000  MT                                                57.470  MT
    As you can see the issue & reciept docs are different but the impact on quantity total stock is fine. On top of that the material documents showing in PSA are slightly more than actual showing in MB5B & MB51. Some material documents are showing as a debit entry as well as credit entry in PSA but in reality they have a debit entry or a credit one. Kindly give me a feedback.
    Regards,
    shahzad

  • Another Yosemite speed issue

    This is yet another Yosemite speed issue. I've done some reading around and read the FileVault can cause an issues, I took a look and I've always have FileVault disabled.  I installed EtreCheck and the results came up with a lot of RED and "FAILED". Unfortunately, I have no clue how to being to read this and was hoping someone could shed some light onto this for me.
    Here are my results: (Just trying to right-click and paste this took almost a minute)
    Problem description:
    Installed OS X Yosemite and now Macbook runs extremely slow. I have had FileVault disabled the entire time.
    EtreCheck version: 2.0.11 (98)
    Report generated November 13, 2014 at 12:26:09 PM EST
    Hardware Information: ℹ️
      MacBook (13-inch, Late 2009) (Verified)
      MacBook - model: MacBook6,1
      1 2.26 GHz Intel Core 2 Duo CPU: 2-core
      2 GB RAM Upgradeable
      BANK 0/DIMM0
      1 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      1 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 9400M - VRAM: 256 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 23:21:15
    Disk Information: ℹ️
      TOSHIBA MK2555GSXF disk0 : (250.06 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 249.20 GB (143.68 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898
    USB Information: ℹ️
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.devguru.driver.SamsungComposite (1.4.25 - SDK 10.6) Support
      /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.25 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungACMData (1.4.25 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungMTP (1.4.25 - SDK 10.5) Support
      [not loaded] com.devguru.driver.SamsungSerial (1.4.25 - SDK 10.6) Support
    Problem System Launch Agents: ℹ️
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.CallHistorySyncHelper.plist
    [failed] com.apple.cloudd.plist
      [failed] com.apple.cmfsyncagent.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.EscrowSecurityAlert.plist
      [failed] com.apple.gamed.plist
      [failed] com.apple.Maps.pushdaemon.plist
      [failed] com.apple.nsurlsessiond.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
      [failed] com.apple.xpc.loginitemregisterd.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.AssetCacheLocatorService.plist
      [failed] com.apple.awdd.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.findmymac.plist
      [failed] com.apple.icloud.findmydeviced.plist
      [failed] com.apple.ifdreader.plist
      [failed] com.apple.nehelper.plist
      [failed] com.apple.nsurlsessiond.plist
      [failed] com.apple.periodic-daily.plist
      [failed] com.apple.softwareupdate_download_service.plist
      [failed] com.apple.systemstats.analysis.plist
      [failed] com.apple.wdhelper.plist
      [failed] com.apple.xpc.smd.plist
    Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.macpaw.CleanMyMac.helperTool.plist Support
      [loaded] com.macpaw.CleanMyMac.trashSizeWatcher.plist Support
      [loaded] com.macpaw.CleanMyMac.volumeWatcher.plist Support
    User Login Items: ℹ️
      smcFanControl Application (/Applications/smcFanControl.app)
      Dropbox Application (/Applications/Dropbox.app)
      Mail Application (/Applications/Mail.app)
      KiesAgent ApplicationHidden (/Applications/Kies.app/Contents/MacOS/KiesAgent.app)
      fuspredownloader ApplicationHidden (/Users/[redacted]/Library/Application Support/.FUS/fuspredownloader.app)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 Support
      Default Browser: Version: 600 - SDK 10.10
      npTGEQPlugin: Version: 7.5.1 Support
      Silverlight: Version: 5.1.20513.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Mismatch! Adobe recommends 15.0.0.223
      QuickTime Plugin: Version: 7.7.3
      googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 Support
      SharePointBrowserPlugin: Version: 14.4.3 - SDK 10.6 Support
      AdobePDFViewer: Version: 9.5.5 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
      fbplugin_1_0_3: Version: (null) Support
      ATTConnectEventEntry: Version: 1.0.0 - SDK 10.6
      fbplugin_1_0_1: Version: (null) Support
    Safari Extensions: ℹ️
      Searchme
      Slick Savings
      Amazon Shopping Assistant
      Ebay Shopping Assistant
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 249.20 GB Disk used: 105.52 GB
      Destinations:
      Time Machine Backups [Local]
      Total size: 0 B
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Too small
    Backup size 0 B < (Disk used 105.52 GB X 3)
    Top Processes by CPU: ℹ️
          3% Google Chrome
          2% WindowServer
          1% coreaudiod
          0% airportd
          0% smcFanControl
    Top Processes by Memory: ℹ️
      84 MB Google Chrome Helper
      79 MB Google Chrome
      43 MB Finder
      39 MB mds
      32 MB Mail
    Virtual Memory Information: ℹ️
      79 MB Free RAM
      571 MB Active RAM
      447 MB Inactive RAM
      385 MB Wired RAM
      46.88 GB Page-ins
      1.25 GB Page-outs

    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, EasyFind, instead.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
        1. AppZapper
        2. AppDelete
        3. Automaton
        4. Hazel
        5. AppCleaner
        6. CleanApp
        7. iTrash
        8. Amnesia
        9. Uninstaller
      10. Spring Cleaning
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • How to fix data issues

    how do i get my 4G and lte working
    im in a area where there is lte and 4G

    Hi iuseappleproducts,
    Thanks for the question. I understand you are having issues with the data connection on your iPhone 5s. The following article may provide a resolution:
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/TS3780
    Follow the instructions below for assistance with troubleshooting cellular data issues on your iPhone. After performing each step, please test to see if the issue is resolved.
    1. Toggle airplane mode: Tap Settings, turn airplane mode on, wait three seconds, and then turn off again.
    2. Restart your iPhone.
    3. Ensure that your software is up to date:
              - Check for a Carrier Settings Update. Tap Settings > General > About.
              - Check for an iOS Software Update. Tap Settings > General > Software Update. Note: Some updates may require a Wi-Fi connection.
    4. Remove the SIM Card and reinsert it. Allow the iPhone to acquire the network again.
    5. If your SIM card has SIM PIN enabled, try toggling it off: Tap Settings > Phone > SIM PIN.
    6. Try another location. If a different location works, but the original location still does not, contact your carrier to report the issue.
    7. Reset network settings: Tap Settings > General > Reset > Reset Network Settings.
    8. Restore the iPhone as new.
    9. Contact your carrier to:
              - Verify that the iPhone is properly set up on the account with the appropriate, current data plan.
              - Verify that there are no account-related blocks.
              - Find out if there are specific error messages in the carrier logs that could help determine why the issue is occurring.
    If none of the above steps resolves the issue, contact your carrier, make an appointment at an Apple Retail Store, or contact AppleCare to troubleshoot further.
    Thanks,
    Matt M.

  • Repeat delta data issue

    Hello guys,
    I have a strange issue here. I load say ODS2 from ODS1. When trying to load ODS2 one day, i find and issue and the load is turned red. When i executed the delta IP again, it asked for the repeat of the delta, for which i said yes. I did not delete any datamart status from ODS1. This repeat got me double records than the original request, and now i have doubled records in ODS2. Since ODS2 is on addition, the doubling data issue. Does anyone had this problem? Why the repeat of delta updated double the number of records than what it shud be? will be great if anyone can come up with a clarification.
    Regards
    Sriram

    Hi Sriram,
    At First you need to Delete the Request from ODS2,
    Question is which request should be deleted. answered below.
    In ODS1 --> Note the Request where Repeat of delta has occured. Check the datamart Request  of that Repeat Request. This datamark request clearly shows that At what request in ODS2 its updated.
    Now your job step by step as below:-
    1. Delete request in ODS2 (Please note :request which you had taken in the datamart of ODS1).
    2. Delete the Datamart of the ODS1 at the Repeat delta request.
    3. Delete Request of ODS1(till where you had removed the datamart for this ODS)
    4. Go to reconstruction tab and reconstruct the request which are correct (eliminate failed request)
    Please note:- please reconstruct one(1) request and then datamart. Once you do this you will come to know the logic behind.
    5. Then Datamart to ODS2.
    If its complicated to understand, please call call me
    Thanks
    Regards
    Hari

  • Just Another N97 Major Issue ..

    Here's Another issue in the Awesome N97 ... I left it recording a Video for like 22 min , then I pressed Stop .. It then
     said " Processing " .. then .... TADAAA .. Nothing .. came back to camera View .. No Captured Video was there or even processed
     Lovely Phone :/
     Lens Scratch - Freeze After Phone Calls - SLOW - Self Restart -5MP Camera is Nowhere Near the Sonyericsson 3.2 Awesome camera -Vibrating issues - Mass Storage issues - & the list Goes On & On ..
     This Device Does EVERYTHING that you dont want it to do for 620 $
     I WILL NEVER GET 1 INCH close to a Nokia Device .
     Thank You for wasting my Time & Money .
    N97 .. Working or Not , it's still a *bleeing* Rip OFF .

    I wouldn't recommend the N97 to anyone because it doesn't do what it says it does on the tin.  It's the worse phone I have ever had and I've gone and tied myself in a 2 your contract so I better learn to live with it.
    My handset constantly crashes (I would say a few times a week) it can be when a call is coming through to my phone.  The only way to get it working again is to switch it off and reseat the battery.  On a couple of ocassions it hasn't come back on and I've had to leave it and retry it and eventually I've been able to switch it back on.
    My phone crashed this week and I got some sort of memory error (yes on a device that has 32GB internal memory and I have a 16GB memory card).  I went into the file manager and noticed that the phone memory was low.  I managed between clearing memory errors to get into some settings and changed the save location to mass memory and memory card.
    Prior to the crashing I had a problem with the phone not holding the charge, luckily when I took it back to the Phone4U shop the assistant tested the charger on another N97 had the same problem so swapped the faulty charger for a new one.
    Another weird thing my N97 does is that although I have a default ring tone set the phone intermittently rings with a different tone.
    The BBC iPlayer doesn't work, well that's not strictly true I can get to it but every single TV show I try to view comes up with "Sorry, but to play to BBC iPlayer programmes you need to switch to a WIFI connection".  So I exit BBC iPlayer and connect to the WIFI and then go back into BBC iPlayer and it still comes up with the same WIFI message.
    Oh and yes I recently updated the firmware... and guess what it didn't make a blind bit of difference.
    Nokia I challenge you to sort my N97 within the next 2 weeks and if not you provide me with a phone up to the same value from your Nokia store.

  • Data Issues

    Got my TB HTC on Saturday and was aware of some data issues that day. As of today, Tuesday I am still having problems.
    As long as I am at home or at work where I have access to a Wifi, I get data fine. As soon as I leave home/work I get nothing. I have been researching different fixes from different forums, and none have seem to addressed my problem.
    I have disabled 4g, I've pulled the battery numerous time, I've messed with the Mobile network settings and nothing is working. Please let me know if anyone else has had these problems. I'm in Denver so it should be on the 4g network.  If nothing helps I will take back on Saturday and wait for the Bionic in June.

    You're not alone. I've been having problems since Saturday. Central Ohio just outside of Columbus but still well within the 4G zone for both work and home. 4G stopped at home first but was ok at work. I could force 3G with the Phone Info app at home on Sunday and Monday. Today (Tuesday) the network is completely gone both at home and work, 4G and 3G. I tried the Rev.A trick (in the other thread here) but I get nothing. I called the sales rep that sold us our phones and was told that they do have something in their alerts about outages all over the network but they they were still supposed to troubleshoot it as if it was the phone. Needless to say, I passed on that idea and am currently waiting it out and using WiFi when available.

  • User Recreate or export data issue

    Hi
    I want to update a schema date with another schema date both have same structure.
    i.e. first is copy of second.
    What i am doing is
    first drop the user then recreate the user.
    then import date in to this user.
    is there any way by which i can directly do it without dropping or recreating user.
    thanks

    if I got you correctly,
    what you want to do is copy one schema to another right?
    if so, and the structure of tables, and rest of the objects is the same,
    all you need to import is data. but before
    importing you need to "clean" the target schema (disable constraints, truncate tables etc') and
    then import data using imp.
    if structure is different, then need to drop all objects of user , no need to drop the user itself,
    both methods mentioned here don't differ much from what you have been doing so far.
    S.

  • Winmail.dat Issues

    I have a friend who sends me Outlook email with imbedded images. I receive text with an attachment called "winmail.dat".
    I've never been able to see these images in any version of Mail, including 4.3.
    But now, my wife, who has an iMac which also runs OS 10.6.4 and uses Apple Mail 4.3 is receiving the same emails, and the images display fine!
    I've been complaining to my friend that he needs to change his Outlook settings. But it now appears that the issue is on my Mac Pro. Any ideas?

    I am having EXACT same issue. Right down to the wife being able to open the files. In fact, they don't come in to her Mail as winmail.dat, they appear as normal files (PDF or DOC, etc.). Yet, I can't see them unless I use Safari to go to Gmail's site. This is really annoying as it's our boss sending these. It also happens on my iPhone. Any ideas???

  • Data Issue

    Hi All ..
               We are facing one data issue DSO.  One record is worngly loaded with some project iD ( Ex record is having ID GE1234 insted of having LE4423) remaining details are same . we are loading the data furtherly to master data table from the DSO. if i try  for reporting for project id LE4423 ,information not avilable because it is heaving wrong ID,it is key also.But in the Source system (CFG) side Data is correct with ID LE4423.
             In update rule we are following one to one mapping for all infoobjects.My requirement is i need to have in my DSo LE4423 . I need to overwrite the record id GE1234 with LE4423 without affecting other fields in the record.
            Shall i load till PSA with the ID LE4423 ..then if load this single record to DSO will overwrite the GE1234 by choosing other field as key field.  but we are following one to one mapping in update rule.
    Please help me on this. i need to hev a correct id for record.
    Thanks ,
    Prem.

    You can use selective deletion to delete the record with Project ID = GE1234
    Load the data till PSA
    Load the data to DSO using selection Project ID = LE4423 in DTP from PSA.
    check in further data targets also for mismatch of data
    Hope it helps,
    Naveen Vytla
    Edited by: Naveen Vytla on Nov 18, 2008 10:49 AM

  • Custom report -Mb51 -EBELN,AUFNR,KDAUF & KUNNR -Data issues

    Hi,
    This custom report is related to material document list (MB51).
    I was trying to retrieve Purchase Order(EBELN),Order number(AUFNR),Sales order(KDAUF) & Ship-to-party( KUNNR) from MSEG & MKPF.
    Unfortunately
    It looks like for Sales Orders, it picks up the Customer Number but no Order Number. For STO’s, it looks like it picks up the STO # but no Customer #.
    How to over come this?
    FYI..I also tried adding fields to standard report(MB51) and it is also doing the same manner .
    Am I pulling it from Wrong tables? or is it related to DATA issues?
    Regards
    Praveen
    Message was edited by:
            PRAVEEN s

    Hi,
    This custom report is related to material document list (MB51).
    I was trying to retrieve Purchase Order(EBELN),Order number(AUFNR),Sales order(KDAUF) & Ship-to-party( KUNNR) from MSEG & MKPF.
    Unfortunately
    It looks like for Sales Orders, it picks up the Customer Number but no Order Number. For STO’s, it looks like it picks up the STO # but no Customer #.
    How to over come this?
    FYI..I also tried adding fields to standard report(MB51) and it is also doing the same manner .
    Am I pulling it from Wrong tables? or is it related to DATA issues?
    Regards
    Praveen
    Message was edited by:
            PRAVEEN s

  • Consistent Data Issues Even After Replacement

    I don't know whether to blame the phone or the ice cream sandwich update for all the problems I have been having with my RAZR. When I first got it six months ago it was great and I loved it now after the ice cream sandwich update I dont really like it anymore. I never had any sort of issues while using it on gingerbread. Today, I have seen my phone switch constantly between 3g and 4g more times than I can count over the course of half an hour. I couldn't even get a consistent signal to watch a 3 minute youtube clip.
    First off, I updated it to ICS but first wiped the phone clean including cache, etc. So it would have basically been a clean install. Now, I have certain issues. The 4g and 3g switch is terrible. On the street and in my own house I have had the same thing happen. In my house I get anywhere from 3-5 bars of 4g but it still switches over to 4 bars of 3g. I have even seen it switch from 4g to 3g when I had full bars. I have already replaced the sim cards, but I am still having these issues. It's actually happening on all 4 of my RAZRs on my family plan. I have gone through the network resets where I pull out the sim card and for 30 seconds, insert it, power on the phone, etc. I went through all 4 of them with the Rep over the phone. I have also had several instances where I did not have data but signal bars and then I didn't have absolutely anything at all. I live in a "major" city metro area, Boston, and I can't believe I am having these problems.
    At first I would have gone off and blamed Verizon, but it is definitely not Verizon, it is our phones that are terrible. I can confirm this because my brother uses an ipad (4g Verizon) on a separate account and he consistently maintains 4g even though I have seen it go as low as two bars. Yes, I understand the ipad is a different device and may have a different radio, but that is exactly how our phones used to work on gingerbread. I received a replacement device and I am still having the same issues. Also, the headset speaker, not the speaker on the back, or receiver is really tinny during phone calls even with the in call volume down half way. It is really annoying and the little tone that plays after hanging up makes the speaker sound like its about to blow out. I don't know what to do if the RAZR will keep having data issues because this is absolutely ridiculous. I know i'm not entitled to anything but for $310 a month I mean come on, I just want my phone to work properly. As I am typing this now, I have witnessed my phone switch between 4g, 3g, and no signal at least 5 times and of course my brother's iPad on Verizon has kept its 4g signal.

    Thanks for all the suggestions, but they just don't work at all guys. I've even tried that restore connectivity app from Motorola, but of course it didn't work. I don't like that I keep having constant switches between 3g,4g, and no signal bars. It's awful thats just what it is. I feel like I got gipped with this update promising better user experience. If the darned thing can't connect to their network, then what is Verizon doing to address these issues? Every time I try to do something "data intensive" (i.e. youtube, facebook, twitter, etc) the data signal just drops and I'm either left with gray bars and no data or no signal bars whatsoever. Also one thing that annoys me to death with this phone is that I have it sitting in my pocket after I lock the screen and I go to pull it out of my otherwise empty pocket. The screen is turned on by itself (I have the clear silicon case on it so the power button shouldn't be pressed by itself and no I don't wear skinny jeans), its got 3g and no bars, and its piping hot.
    WHAT IS WRONG WITH THIS PHONE VERIZON???!!!

Maybe you are looking for

  • APP Run

    Hello SAP friends, Suppose we have run the automatic payment pro & also we have printed cheques through app.Then after printing the cheques we find out some cheques wrongly printed.So my question is How can we reprint this all cheques (e.g.200 cheque

  • I just got this phone and im so lost im having problems puttig my pics and music on the phone from my memory card from my previous phone

    i just got this phone and im so lost im having problems puttig my pics and music on the phone from my memory card from my previous phone

  • Unable to get Pages software update as appleid is different to one at purchase

    Recently got a buddy to buy a new mac mini for me in the US. Tried to set it up last night in Ireland but was unable to download the suggested update to Pages as the email address on the machine (my appleid) was different to that provided when purcha

  • Resetting of my PRAM

    Am i being a bit thick? I can't perform a reset of my PRAM, I have a need to do so. I press "command + option + p + r" after switching on, before the screen goes grey. But nothing happens i only get one chime and then macbook boots. The last time i n

  • ABAP beginner HELP

    Hi all,          Well, I am planning to migrate to SAP. Since I have much experience in software development I thought of exploring SAP ABAP. To use it I planned to download SAP Netweaver trial version and registered at SAP.com but now I am pretty co