Input history problem

Hi Guru's
SAP 7.10 patch level 16 has been installed, input history is not working even after uninstall and installing again. I also checked in ALT + F12 --> options --> local data history is ON. Still having prob
Vinay

Hello Vinay
please check note 199527:
eg:
If the history is not shown at all:
-  Check MDAC/MSJET installation
    In SAP GUI 6.20, ADO is used instead of the DAO components,
    because DAO is not compatible with the new multi-threading
    architecture of the SAP GUI, as described in Microsoft
    Knowledge Base article Q169395.
    ADO requires two components: MDAC and MSJET. Up to MDAC 2.5,
    MSJET was part of MDAC. Since MDAC 2.6, MDAC and MSJET are
    shipped separately, as described in Microsoft Knowledge Base
    article 271908.
    You can check the installation of MDAC using the Microsoft
    Component Checker as described in Note 620677.
    If MDAC does not exist, you can install MDAC 2.5 using the SAP
    GUI installation as described in Note 568119.
    Alternatively, more current versions of MDAC are also
    available at the URL mentioned above. As mentioned, note that
    MSJET must be installed separately in the current MDAC
    versions.
-   MDAC installation seems correct/still no history available
  If you tried to repair the MDAC installation in accordance
  with Note 931540, but the histoy is still not displayed: Note
  1176026 contains a minimal test program to create an Access DB
  on your PC. If this also fails, we recommend to contact
  Microsoft Support.
Regards,
Martin

Similar Messages

  • SAPGUI 7.20 PL4: Input history is not working

    Hello,
    we're on the way to roll out SAPGUI 7.20 PL4. Now I discoverd a serious bug: Local input history isn't working anymore.
    I switched on tracing on SAPGUI to see whats wrong, an the cause is simple: SAPGUI uses comma (,) instead of dot (.) in the generated SQL command for the local MicrosoftJet Database engine. So here is a excerpt from the trace log:
    Local DB: CSapHistoryDb::GetHistoryList: SO_VBELN-LOW
    Local DB(Error): CSapHistoryDb::GetHistoryList: Microsoft JET Database Engine Syntaxfehler (Komma) in Abfrageausdruck '(HistFieldname = "SO_VBELN-LOW") AND (HistTime >= 40478,353102)'.
    Local DB(Error): CSapHistoryDb::GetHistoryList: Microsoft JET Database Engine Syntaxfehler (Komma) in Abfrageausdruck '(HistFieldname = "SO_VBELN-LOW") AND (HistTime >= 40478,353102)'
    So, I know the bug, I know the case. Whats next step? Is the bug already known to SAP and fixed in the next release or should I open an support case?
    Walter

    Thanks for you answer, but of course I reinstalled it yet (several times). The problem / but shows on every workstation I tested with (Windows XP SP3 32bit and also Windows 7 64bit).
    I'm pretty sure the bug is caused by locale setting (we're located in germany). I suppose somewhere deep in the code of SAPGUI is a line like
    sprintf(sql, "select foo from bar where fobar > %g", timestamp);
    and the programmer isn't aware that there are systems where LC_* isn't set to "C" or something...
    Remember, we germans use comma as decimal separator, the rest of the world(?) uses a dot. So if I change the default locale setting on the workstation to use dot (.) as decimal separator, SAPGUI input-history works. But I dont't want to change this setting on >100 workstations (and an don't know if it breaks other software...).
    This bug is new in 7.20, with 7.10 we never had this problem.
    So I think I will open a support case at SAP.
    Walter

  • How to display my input history values on Filename filed (selection screen)

    Hi All,
    Please let me know how to display my input history values under the field of selection screen.
    I created Zprogram as below.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
      PARAMETERS: P_FILE  TYPE RLGRAP-FILENAME OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1.
    I displayed a selection screen of my Zprogram, my cursor put on P_FILE field, and enter BACKSPACE key,
    so it doesn't display my input history values.
    Of course I've selected Local Data History 'ON' of my GUI option,
    so it's displayed my input history values on any other fields.
    If you know why, please let me know.
    Regards,
    Rie.

    In the GUI options, there is also a setting for the maximum length of fields for storing the history, maybe it is set to small, as your selection field is length 128.
    Alternatively you can switch to a STRING, I have observed that the history is displayed after the first letter is being entered (maybe dependent on GUI version, who knows...)
    Thomas

  • Low speed connection, but still have input history.

    Hi there,
    We have done some tests in our business to see the performance difference between "low speed connection" being enabled and disabled for a system, both from a network perspective, and from a performance perspective on Citrix servers.
    We have determined that the 'input history' feature doesn't cause much performance impact, but a lot of the other 'high-speed' features like images and tool tips do.
    We would like to be able to have "low speed connection" for our system, but still enable 'input history'. Is there any way this can be achieved, such as through INI or registry changes?
    Thanks,
    Michael.

    I raised a message with SAP, and they responded saying that this is not possible

  • Remember input history in webdynpro

    Hi
       My requirement is how to remember input field history in webdynpro.  for example in my screen have two input field
    1.login id 2.password
    first: xxxxx person log into..........
    second: yyyyy person log into............
    if i press space bar i wants login history like: xxxxxx
                                                                           yyyyyy
    like : gmail or yahoo.
    Thanks

    Hi,
    Thomas Jung
    Posts: 7,249
    Registered: 1/11/06
    Forum Points: 19,080 
       Re: Auto-Complete for Input Fields in WD4A   
    Posted: Aug 25, 2009 4:16 PM    in response to: Björn von Staden           Reply 
    The browser has a field input history mechanism, however it is disabled on purpose in Web Dynpro because the way that the browsers store this information is insecure.
    In NetWeaver 7.02 we will introduce the concept of SuggestValues. This is not history, but intellegent value suggestion based upon domain or search help values. It completes as you type using an AJAX call back to the server to retrieve the values.
    Thanks,
    -Syed.

  • File Input Stream problem

    i have a text file that i want to read to be my input into my database in db4o. i was looking through the websites. like http://java.sun.com/javase/6/docs/api/java/io/FileInputStream.html
    and
    http://www.java2s.com/Code/JavaAPI/java.io/FileInputStreamavailable.htm
    there were different types too. like FileReader, FileInputStream. can anyone explain to me the differences between this two?
    below is an example on how inside my text file is going to look like
    Jack | China | 23
    Helen | Holland | 34
    Jenny | US | 34
    Micheal | Brazil | 23
    different attributes is separated by "|". i need to capture all this from a text file and store it in my db4o database. maybe someone could guide me on this? i am very new in java so forgive me if i am wrong. Thanks alot

    ok. thanks alot. i will look into it
    the "|" is because i want to separate different
    attributes by using symbol
    for example:
    Name | Address | Age
    Alex | Australia | 34
    Jack | Malaysia | 32
    Kate | Africa | 11
    Holmes | California | 54
    from there, this will be captured by the
    BufferedReader (because this is use to capture text)
    and read it and then stored inside the db4o. the
    problem now is how can i capture the data and
    automatic separate it as different field with this
    "|" symbol
    Message was edited by:
    erickhHow about using Scanner:
    Scanner inFile = new Scanner(new FileReader("a:\\file.txt"));

  • Bridge CS4 edit history problem with OS change from XP to 7

    I've changed my OS from XP to 7.  After reinstalling software, Bridge CS4 no longer keeps my editing steps in the "edit history" metadata.  The only steps recorded are that I've  saved a file.  I have the edit history box marked in preferences in both Bridge and PS, and have tried changing the metadata section in Preferences to session only, concise, and detailed.  None of those choices make a difference.  Any suggestions on how to get my edit history steps back in the metadata of Bridge?  I use the edit history frequently!  Thanks in advance!

    Work through all of the steps (ideas) listed at http://ppro.wikia.com/wiki/Troubleshooting
    If your problem isn't fixed after you follow all of the steps, report back with ALL OF THE DETAILS asked for in the FINALLY section, the questions at the end of the troubleshooting link... most especially the codec used... see Question 1
    Read Harm on drive setup http://forums.adobe.com/thread/662972?tstart=0
    - click the embedded picture in Harm's message to enlarge to reading size

  • Table Input Field Problem

    Hi All,
    I am facing a problem now where table row height is too big , as in 1 row size is actually a merged of 2 rows, the input field is shifted to the bottom of the cell.  And when you select the row, an asterik is visible at the bottom row, and the input field is shifted up to the top of the cell. I am using customized iterator and cl_crm_ic_inputfield to render the cell. Anyone have this problem before?
    Thanks!
    Cheers,
    cady

    Hi Guys,
    Some additional info i found on this issue. I am using design2003. I realized that the * added meant that its required field. However, upon further checking, when calling method RENDER_DESIGN2003 in class cl_crm_ic_inputfield, it checkes for me->required is not initial, which is kind of odd since the required field has the initial value of 'FALSE'. So , either required = 'TRUE' or 'FALSE', it will always be required field. Anyone encountered such problem before?
    Cheers,
    cady

  • Input form problem

    Ok I have created a input form, which is suppose to input
    data into two tables on on an SQL server. One field (a list) allows
    for multiple enters (the only field that goes to the 2nd table).
    The problem; I get an error message when I select more then one
    selection in the list field. The code is below. Thank you for any
    help.

    Ok I have created a input form, which is suppose to input
    data into two tables on on an SQL server. One field (a list) allows
    for multiple enters (the only field that goes to the 2nd table).
    The problem; I get an error message when I select more then one
    selection in the list field. The code is below. Thank you for any
    help.

  • History problem in jsp page,internet explorer back button

    hi everyone
    i have a jsp page suppose a.jsp.in which i am using dropdown menu to displays:list of data from database,one submit button i am using name select and click here.after selecting the value from dropdown menu ,again some other data will be displayed from some other table in same a.jsp page.
    my problem is:
    when user selects one value from drop down menu ,it is diplaying the value in same page .upto here is ok
    and i click back button from I.E only one page back it is showing
    but when user select the value form drop down menu 2nd time ,and after data get dipalyed in same apge a.jsp.then
    whne i click back button ,now it is showing two a.jsp page .history is not going .
    this is the problem.i dont want to this morw than one page get displayed in back button.only one page a.jsp
    if anyone has understood my problem ,please help.
    thanku

    thanks java2006
    but it is not working .i will try to explain once again
    1. one page called a.jsp.this page contains one drop drown menu list box ,and one submit button.
    2.data in drop dropdown is coming from db.as the user select value from drop down box .relalted value is diplayed on same a.jsp page.
    3.again user select the 2ndvalue from drop down box ,related value is displayed.
    this i explained about my a.jsp page.
    problem is
    4.when user select the 1st value and clcik on submit button related value is displaying.upto here its ok.and in back button of Internet explorer it is showing only one a.jsp page
    5.but whenever i am trying to see 2nd or 3rd or more value from drop down after related value is being diplayed in same a.jsp page.
    the back button of internet exlorer showing two a.jsp page after clcicking submit button
    .as u have told the code aso but it is not working
    i have added ur code indisde html tags .

  • Trans. ME32K. Batch Input. Problem in header versions with container

    Hi all:
    I've got a problem with the transaction ME32K.
    The required action is meant to be changing the address delivery in the agreement position.
    The bapi BAPI_AGREEMENT_MAINTAIN doesn't solve the problem because the field adrn2 is not present in this function module, so refering to other posts I've decided to implement a batch input.
    The problem starts when I try to introduce REVOK and RSCOD in grid container in section header version. When I simulate the transaction ME32K with shdb the only code appearing is:
    SAPLMEDCMV     0200     X     BDC_OKCODE     =GRIDENTER
                                                                BDC_SUBSCR     SAPLMEDCMV                              0100SUB0
    SAPLMEDCMV     0200     X     BDC_OKCODE     =SAVE
         BDC_SUBSCR     SAPLMEDCMV                              0100SUB0
    and then the values 'X' in REVOK and '0007' in RSCOD are not recognized.
    How can I introduce the new version in header ?
    Thanks in advance.
    Jose Luis.

    Hi Jose,
    did you find a solution for your issue?
    I have the same problem now.
    Greets,
    Valentin

  • Safari Google Search History Problem

    If I google for "This is a Test" in the address bar of Safari for example the Page shows up just fine.
    But if I know type "This is" and click the entry from the history Safari tries to go to: "http://this%20is%20a%20test".
    Can anyone reproduce this problem? Is there a fix for it?
    Thanks in advance!

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Web service data control with complex input parameter problem

    Hi!
    I'm making ADF web app, using JDev 11.1.1.2.0. I have to call a web service (using a data control), which has complex input parameter (array of complex objects).
    I followed steps from Susan Duncan blog: http://susanduncan.blogspot.com/2006/09/dealing-with-complex-input-params-in.html , but I ran into a problem.
    As Susan wrote, I changed submit's button action binding to an operation in a managed bean, which returns array of objects and everything works fine. I can call a WS and my table shows the result.
    The problem is, that after I change button's action binding to my manage bean, row selection in result table doesn't work anymore (I allways get NullPointerException).
    What can be done here?
    Can somebody please help?

    Hi,
    I also have similar type of problem where I need to invoke a Web service with Complex input parameters.
    I followed Susan's blog but I stuck at a point where methos getItem is created.
    Can anyone tell me how to get that method for my requirement.
    If possible can you guys share your solutions here.
    Thanks in advance.

  • Input Level problem in GB with Fastrack Pro

    I have a wierd problem with Fastrack Pro. It's the same in GB and also Logic Express. I'm trying to record acoustic piano with a pair of condensor mic's on a MacBook Pro. I do get a weak signal in both programs if I set the gain knobs on Fastrack above 3/4 position. But there's no ability to adjust the signal up until I push the knobs to maximum. Then the signal clips. M-Audio let me exchange the unit for a new one, but the problem's the same. I took the setup to AppleCare and tried it on a MacBook there--same problem. AppleCare says there may be a problem with M-audio's driver, but they haven't found a fix yet. Has anybody else experienced this, or have any ideas on how to fix it?

    HT, thanks for your interest. I've tried with the pads both on and off, but to no effect. Another point of info: I used the Fastrack with my old Dell system, and it worked normally. It really seems to be internal to the MacBook, since the meter seems to work right in System Preferences but not in GB and LE. Can you think of anyway to calibrate the System Pref input to the app inputs? I know this is supposed to be automatic, but so far it's not working that way.

  • Copy history problems

    Hi all-
    I'm trying to "copy history" in one of my bbm conversations to save for future reference.  However, when I go into the conversation and hit copy history, then go to paste it into an email, the conversation that is pasted is one that I copied and emailed to myself previously (i.e., rather than the current conversation I used "copy history" to try to copy).  Is there a way to clear the clipboard or somehow erase the conversation I had previously copied from the clipboard? Any other suggestions for how I can copy the current conversation so that I can email it to myself?
    Thanks in advance

    I think you can highlight the message by holding the shift key and scrolling > hit bb menu key and see if it says copy. if so that should work for you
    >>>>>>>>>>>>>>>>>>>>>>>>~
    Hope I was able to help
    If you have received information that has helped you out, please give them Kudos.
    If your problem has been solved, please click on the post that resolved the issue

Maybe you are looking for

  • I had the pages app on my macbook but had to put in new hard drive. Can I download pages again for free?

    The Apple folks said I could download any apps I had purchased previously but were lost when my hard drive died. Now have the new hard drive, but don't know how to obtain Pages free from the App Store.

  • Problem with FOR ALL ENTRIES statement

    Hi all please find the problem in the select statement. SELECT vbbe~vbeln          vbap~vstel          marc~dispo          vbbe~matnr          vbbe~kunnr          vbbe~werks          vbbe~mbdat          vbbe~omeng   INTO TABLE l_t_dvbeln   FROM vbbe

  • Photoshop Elements 12 Photomerge Panorama

    Why in Photoshop Elements 12 is Photomerge Panorama grayed out? How do I activate it?

  • SMB Code Page settings cannot be changed

    We have a OSX standalone server 10.5.4 that's running SMB service. Otherwise it runs ok, but I just cant change the Code Page -setting on advanced -tab of SMB settings. I can choose the desired code page from the list, but when I click "Save", the se

  • Fujifilm XE2 raw files

    Hope to see raw file support for my Fujifilm XE2 files. Lightroom 4 does not support it and i a not willing to upgrade to Lightroom 5 just to be able to read my raw files. Adobe *****.