Edit Autofill for a single field?

There's a form I use a lot. I simply enter currency amounts into it in the form of xx.95. IOW, two digits, decimal, 95. So, when I wanted to enter 11.95, I had only to enter "1". One time, when I wanted to enter 11.95, I accidentally entered 11 and left out the .95. Now, when I enter "1", I get two choices:
11
11.95
I would like to edit out the "11" so that I can go back to just typing "1" to get 11.95. I do NOT want to delete the Autofill for the whole form because there are a LOT of data in the other fields that I don't want to lose.
So my question is: can one edit Autofill for one field in a form?

Hi
It would be nice to selectively edit these forms, as I have a few I'd like to change. Unfortunately, there is no easy way to edit selective entries for a particular auto-fill. I say "no easy way" as I'm sure someone has a more in-depth understanding of where this information is stored and how to edit/access that file. Such information is beyond my Universe.
Within Safari, the only way to correct the entry is to remove it, then re-enter the information.

Similar Messages

  • Passing multiple values for a single field in URL to call sap Transaction

    Hi All,
    I need to pass multiple values for a single field to SAP transaction .
    means if i have say a field "Date" which can contain more than one value, <b>but its not a range which has two fields</b> . How is it possible.
    Let me know pls.
    Regards,
    Sirisha.R.S.

    Hi Satyajit,
    I need to call a transaction with multiple values which gives me the report based on those values.
    So I need to pass multiple values for a single parameter.
    I hope u got it.
    Regards,
    Sirisha.R.S.

  • Edit mode for a single section

    Hi,
    How can one enable edit mode for a single section in a UITableView with group sections.
    Thanks.

    Something like this should work for you:
    @interface RootViewController : UITableViewController {
    NSNumber *sectionToEdit;
    @property (nonatomic, retain) NSNumber *sectionToEdit;
    - (IBAction)doEdit:(id)sender; // test bed only
    @end
    @implementation RootViewController
    @synthesize sectionToEdit;
    - (void)dealloc {
    [sectionToEdit release];
    [super dealloc];
    - (void)editSection:(BOOL)editing section:(int)section animated:(BOOL)animated {
    UITableView *tableView = self.tableView;
    self.sectionToEdit = editing ? [NSNumber numberWithInt:section] : nil;
    [tableView setEditing:editing animated:animated];
    // test bed driver
    - (IBAction)doEdit:(id)sender {
    static BOOL editing = NO;
    editing = !editing;
    [self editSection:editing section:2 animated:YES];
    #pragma mark Table view methods
    - (BOOL)tableView:(UITableView *)tableView
    canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    if (sectionToEdit == nil)
    return YES;
    else if ([sectionToEdit intValue] == indexPath.section)
    return YES;
    else
    return NO;
    - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView
    editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
    return UITableViewCellEditingStyleInsert;
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 3;
    - (NSInteger)tableView:(UITableView *)tableView
    numberOfRowsInSection:(NSInteger)section {
    return 3;
    - (UITableViewCell *)tableView:(UITableView *)tableView
    cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
    reuseIdentifier:CellIdentifier] autorelease];
    cell.textLabel.text = [NSString stringWithFormat:@"Section %d - Row %d",
    indexPath.section, indexPath.row];
    return cell;
    Note that once a section is selected for editing, the above locks out all the other sections until the edit of the selected section is finished. I assume this is what you'd want. However if you're also providing a standard editing button to put the entire table in editing mode, you might want to change the control structure a little. E.g. if the standard button remains enabled during a section edit session, its action should probably set SectionToEdit to nil before starting the animation.
    - Ray

  • F4 help for a single field in interactive form

    Hi Experts,
    I am working in HRAS process.I created a Form Scenario and an Adobe Form.  I linked my interactive form in portal using standard Start Processes iView . Now I have to create a value help(F4 help) for 'STATE' field based on 'COUNTRY' field value in adobe form.  I filled the Input value Help in the corresponding Form Scenario field. But in portal the adobe form shows the field as a single field only.
    How I can I attach the manual F4 help to 'COUNTRY' field?
    The how to  vary the F4 help values in 'STATE'  fied based on 'COUNTRY'  field?
    Do I need to code  in Java script for this?
    Please provide some inputs with code sample
    Thanks in advance,

    Lek,
    Check Nikhil's reply in this [thread|Re: Reg: value help from BADI is not displayed in the HCm form;. It should probably help you.
    Chintan

  • How-to synchronize edit forms for a single View Object tree node entrie

    Hi all,
    I created a tree from a single View Object,
    follow this [http://www.oracle.com/technetwork/developer-tools/adf/learnmore/32-tree-table-from-single-vo-169174.pdf]
    then i want to create and synchronize edit forms for tree node entries,
    follow this [http://www.oracle.com/technetwork/developer-tools/adf/learnmore/50-synchromize-form-treeselection-169192.pdf]
    but it not working when i click child node!!
    i found the latter tree from many View Object ,but the former tree from single View Object.
    what should i do?
    Thanks in advance

    Hi,
    say the tree is built from ViewObject1. In the AM model, create a second View Object instance for this. Say ViewObject2. Create the form from ViewObject2 and the tree from ViewObject1. When creating the tree, use the"Target Data Source" option at the bottom to reference the iterator of ViewObject2. Then create a PartialTrigger on the paneFormLayout that holds the synch form. In the partial trigger property, reference the tree so that when the tree selection changes, the form is updated. Then create a PartialTrigger property on the tree and point it to the submit button of the form so you can show updated values in the tree.
    Frank

  • Two formulas for a single field in Transfer Rules ?

    Hi friends ,
    I am learning BW  3.5 . I have got a problem could you please solve it ...
    My flatfile:           Empno     Empfirstname       Emplastname
                               1000         rajiv                     gandhi
    Expected Result: Empno     Empfirstname       Emplastname
                               1000         RAJIV                RAJIVGANDHI
    I need to concatenate and Convert it into capital letters for the same field (Emplastname)
    Points will be rewarded
    Thanking You

    Hi,
    then just create a routine in the transfer rules.
    routine for first name.
    result = tran_structure-empfirstname.
    translate result to upper case.
    routine for last name.
    concatenate tran_structure-empfirstname tran_structure-emplastname into result.
    translate result to upper case.
    kind regards
    Siggi

  • How to create editable tablecells for a single table row dynamically?

    Hi
    How to make the cell of a tablerow editable based on flag in backing list object bound to row? I can't decide the editable property while creating table columns. So i can't use setCellFactory() during creation. However setCellFactory() makes all cells in table column editable.How to make non-editable table row cell editable and vice-versa based on flag?

    hi
    good
    if you want to create two different view for a same table than you cant give the same name for the same view,otherwise it would allow you to create the view.Try out with different view name as well as the function group name,i hope this ll work.
    thanks
    mrutyun^

  • Pop up window for a single field details..

    How to display a pop up window for details of one field by click?

    hi,
    chk this.
    report zsha.
    type-pools: slis.
    data: begin of iku occurs 0,
          check type c,
          kunnr type kna1-kunnr,
          name1 type kna1-name1,
          end of iku.
    data: ifldc type slis_t_fieldcat_alv .
    data: xfldc type slis_fieldcat_alv .
    select kunnr name1 into corresponding fields of table iku
            from kna1 up to 10 rows.
    clear xfldc.
    xfldc-reptext_ddic    = 'Customer'.
    xfldc-fieldname  = 'KUNNR'.
    xfldc-tabname   = 'IKU'.
    xfldc-outputlen  = '12'.
    append xfldc to ifldc.
    clear xfldc.
    xfldc-reptext_ddic    = 'Customer Name'.
    xfldc-fieldname  = 'NAME1'.
    xfldc-tabname   = 'IKU'.
    xfldc-outputlen  = '30'.
    append xfldc to ifldc.
    call function 'REUSE_ALV_POPUP_TO_SELECT'
         exporting
              I_TITLE  = 'This is the message here'
    *          i_checkbox_fieldname = 'CHECK'
              i_tabname            = 'IKU'
              it_fieldcat          = ifldc
         tables
              t_outtab             = iku
         exceptions
              program_error        = 1
              others               = 2.
    check sy-subrc  = 0.
    popup_with_table_display.
    Usage:
    CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
    EXPORTING ENDPOS_COL = 41
    ENDPOS_ROW = 10
    STARTPOS_COL = 1
    STARTPOS_ROW = 1
    TITLETEXT = TEXT-202
    IMPORTING CHOISE = SEL_ROW
    TABLES VALUETAB = ITAB
    EXCEPTIONS OTHERS = 99.
    IF SY-SUBRC EQ 0 AND SEL_ROW > 0.
    READ TABLE ITAB INDEX SEL_ROW.
    REF_NAME = ITAB-TABNAME.
    ELSE.
    REF_NAME = SPACE.
    ENDIF.
    Regards,
    Anver

  • Multiple values for single field

    hi
    In order to upload Purchase order details, how you handle multiple values for a single field? 
          Eg: Item field may contain no. of values for a record

    Hi,
    It is generally taken care using BDC's by Table Control, and if you are using BAPI's then there are tables for ITEMS.
    Regards,
    Atish

  • Dynamic value help for a table field to fill two fields, how to?

    Hi all gurus,
    In SRM 7 I defined a dynamic value help for a single field (ZZ_PROLE_R3) of my header custom table.
    That's the code from WDDOMODIFYVIEW in the webdynpro /SAPSRM/WDC_DODC_CT, view V_DODC_CT:
    DATA: lo_tabnode        TYPE REF TO IF_WD_CONTEXT_NODE.
          DATA: lo_tabnode_info   TYPE REF TO IF_WD_CONTEXT_NODE_INFO.
          DATA: tab_value         TYPE WDR_CONTEXT_ATTR_VALUE_LIST,
                wa_value          TYPE WDR_CONTEXT_ATTR_VALUE.
          lo_tabnode = wd_context->GET_CHILD_NODE( name = 'THCUS' ). "the custom table node
          lo_tabnode_info = lo_tabnode->get_node_info( ).
          wd_this->GET_VALHELP_ZZ_PROLE_R3( EXPORTING iv_guid = lv_guid
                                            IMPORTING ZZ_PROLE_R3_VALHELP = tab_value ). "this method returns the dyn value table
          lo_tabnode_info->set_attribute_value_set( name = 'ZZ_PROLE_R3'
                                                     value_set = tab_value ).
    The method GET_VALHELP_ZZ_PROLE_R3 dynamically builds the value help table tab_value; such table is made up by two fields:
    value : contains the value of the field
    text   : contains a description of the value
    The above solution works; now I'd like to enhance it. The custom table THCUS contains also a field called ZZ_PROLE_R3_DESC, which represents the description of ZZ_PROLE_R3. It is, exactly, the TEXT field in tab_value.
    So I'd like to do as follows:
    - the user clicks on the search help for ZZ_PROLE_R3 field of the table;
    - the above described value help appears;
    - after the selection, both ZZ_PROLE_R3 and ZZ_PROLE_R3_DESC are filled with the selected couple value - text chosen from the value help.
    Could anyone help me achieving such a behaviour?
    Again, a little request... when I open the above value help dialog box, the window itself has a label "Floorplan Manager application for OIF.." that obviously I'd like to redefine (e.g. "Role selection value help"). Is there any way to do that?
    Thanks in advance

    Chris Paine wrote:
    It seems to me - given that your code is in wddomodifyview that you are trying to have different dropdowns per row
    - I'm not sure where you are populating lv_guid - but I'd guess it is an attribute of the row selected? If it isn't then I can't see any reason that you would do this code in wddomodifyview and not wddoinit.
    Hi Chris and thanks for your help,
    lv_guid is the GUID of the document's header; I need to pass it to the method that populates my value help table because the values in it are derived from some fields on the document. (the situation actually is more complex; there's an RFC call on the backend for which the document is intended for to retrieve the data that populate the value help...).
    I'm quite unexperienced on webdynpro and terminology; if dropdown menus are fixed selection option that appears on a field, I guess this is not my case. I did a pair of screenshot to provide an idea of what the solution by now is, and what "I would like to have":
    [Pre-selection (F4 icon on the field in table)|http://imagebin.ca/view/npIsaqF.html]
    [Value Help popup for the field ZZ_PROLE_R3|http://imagebin.ca/view/8fZUh3T.html]
    [Result by now |http://imagebin.ca/view/3PaqdvE.html]
    [Result I'd like to have.|http://imagebin.ca/view/dExR0J.html]
    Chris Paine wrote:
    However - by your comment on the "value help dialog box" I am guessing you are using an input field? If this is the case then I would strongly suggest that you change/enhance the structure of the context node THCUS (btw, better coding practise to refer to it as wd_this->wdctx_thcus when using the get child node construct) so that you refer to an actual SAP ddic search help, if you then associate in the structure the value and text fields then populating the text field should happen automatically. Also you'd have the nice side effect that your value help dialog would be named after the associated ddic search help.
    Thanks for the code suggestion, I'll apply that. For what concerns the context node THCUS... It is, by standard, a node which I can't explictly find in the context for the view V_DODC_CT. The problem is that ZZ_PROLE_R3 and the corresponding description field ZZ_PROLE_R3_DESC of the table must be filled with data retrieved dynamically @ runtime from the backend. So I guess I can't populate a val help referring to a dictionary table/field; I'd rather do as follows:
    - retrieve what's the target backend for the document (to do so, I have to process the document .. that's why the header guid passed to my method);
    - RFC call to a custom method that extracts possible values for the specific backend;
    - bind the ammissible values to the value help.
    Chris Paine wrote:
    I realise that this is rather a lot - so if you have any specific question please do respond - hopefully I or someone else will be able to clarify.
    Thanks again for your help; additional info as well as code examples would be highly appreciated

  • Editing Autofill List for Custom Metadata Fields

    I have 13,000+ photographs cataloged in Aperture 2.1 In an effort to better manage these photographs, I have added custom metadata for my own use. The fields let me know whether I have printed for my portfolio, watermarked, added to my web site, status of release, etc. All of this data is manually entered and at times my fingers don't always hit the correct keys on the keyboard so I end up with autofill data that is incorrect. I have been unable to find a way to edit the autofill data for custom metadata fields. Selecting 'Edit Autofill List' does not give me access to my custom field autofill information. Am I missing something? Is this an oversight on my part or on the part of the application?

    Unfortunately I'm not using presets to do this. I don't think presets will help me with this, but it could be just that I don't understand presets that well. I use presets for entering Metadata from a shoot as I 'import' the raw files into Aperture. Maybe I'm trying to do something that Aperture was never intended to do, yet I need to have as few locations where I track
    As an example, as I print a photograph for my portfolio I mark one of the custom fields labelled 'Printed' as 'Yes'. Later I can locate those 4 or 5 star photographs that haven't been printed and decide if I want to print them. I use the same type of arrangement for my website with an 'Added to web' indicator as 'Yes'. I may also mark that 'Printed' field as 'N/A'. The reason follows. For watermarking photographs before adding them to my site via iWeb, I export and the photographs and then reimport the watermarked photographs into a separate project but since these photographs are at a lower resolution, have a different color profile and are jpegs, I never print them for my portfolio so I mark them 'N/A' in the 'Printed' field. Well my fingers do slip on the keys and before I realize it the nifty autofill now requires that I type not just the 'N' to get an 'N/A', but I must type it all, because one time I typed 'N and a space' or some such and that is what autofills. It even happens with 'Yes'. I suppose the real answer is to be more careful as I type, but that is not my reality.
    So, all I'm looking for is a way to have access to the autofill list that is created for my custom metadata fields so that I can delete the erroneous autofill entry. I've thought about deleting the field entirely and recreating it, but that would remove all those indicators or flags that I have already entered for my photographs.
    Alternatively I could find an IPTC field that I am not using and find a way to use it, (because those fields have autofill lists that can be edited). However my record keeping would be exported with the photograph. Some of the information that I collect is private and should not be included in the metadata while other information should be; that is why I've settled on custom metadata fields.
    I hope there is a simple answer to this that I'm overlooking.
    If someone else has another way of tracking this same information that is better than the custom metadata fields, I would like to hear about it. However, it would mean reworking all my photographs that Aperture currently manages.

  • How to Edit a single field in Report

    Hi Experts,
                        I am new in ABAP and need your help while creating a report.
    My query is, am creating a ALV report and in that report i want only a single field is editable. For example, suppose in sales order report, there is 20 fields  but i want to edit only Quantity fields and anyone can change the quantity based on their requirements. I tried but not succeed in this terms.
    Waiting your reply.... thanks
    Moderator Message: Baisc question. Please search for available information before turning to the forums for help.
    Edited by: kishan P on Sep 3, 2010 5:42 PM

    Hi Kumar,
    data: ft_cat type lvc_s_fcat. Create field catalog.
    If ft_cat-fieldname = 'Quantity fields'.
    ft_cat-edit = 'X'
    I hope this may helpfull.
    Thank You,
    Thanks,
    AMS

  • IMovie 11 to FCP Pro X: cure for single-field?

    I've got a lengthy home movie (sourced from a DV tape) that I've edited in iMovie 11. Unfortunately, I've been stuck with the single-field processing issue where the output is effectively at half resolution. Now that I can import this movie into FCP Pro X, I'm wondering whether that will cure this single-field problem, if I then continue editing in FCP and output it from there? Or will I need to scrap the project, start from scratch, and re-import from the camcorder into FCP directly?

    "Some of the procedures I've seen before changed all of the dates to the day of conversion and I need to save the original info."
    Very good question.
    I've been testing with tapes that have analog video copied to them so the DV time/date is meaningless. They only show the date I copied them from VHS to DV. When I'm sorting to clips to folders I have to remember is this Japan 1989 or 1991? Then name the TO folder based upon my memory. And of course I don't need the DV timecode in iMovie when I edit.
    You need the Time and Date information from the camera to be used to date the folder when the video is imported into iMovie. Correct?
    I will test with some video shot with the DV camera.
    PS: Here is a description of how CatDV figures out how to divide a long movie into "clips."
    CatDV uses two methods to detect scene changes.
    It detects the start and end of each scene or shot in a DV movie using the digital date and time information recorded to tape by DV and Digital8 camcorders. As a result it is normally 100% frame accurate in the scenes it identifies in captured footage. On rendered footage and analog material, on the other hand, this extra information is missing and so CatDV won't be able to detect any scene changes using the DV method.
    CatDV also has the ability to compare the actual visual content of successive frames to detect scene changes. This allows you to import and log footage captured from an analog capture card for example. By its nature this method is not foolproof, however, and is liable to detect false changes when there is rapid movement within a scene, and to miss changes, for example if the camera is held on a tripod between shots and there is very little change between them, or if you have applied a fade or dissolve between two clips. It is also slow and computationally intensive, and so whenever you have the choice you should prefer to use the DV-based detection on original footage.
    You can control which detection algorithm(s) are used when importing movies in the Preferences dialog.

  • Hi, Can anyone recommended software to import dvd to iMovies. I need to import about a dozen homemade DVD's and edit them into a single DVD comprising the 'best bits'. How best can I do this. I have an external hard drive available for the job

    Hi, Can anyone recommended software to import dvd to iMovies. I need to import about a dozen homemade DVD's and edit them into a single DVD comprising the 'best bits'. How best can I do this. I have an external hard drive available for the job

    You need to convert the VOB files in the TS-Folder of the DVD back to DV which iMovie is designed to handle. For that you need mpegStreamclip:
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    which is free, but you must also have the  Apple mpeg2 plugin :
    http://store.apple.com/us/product/D2187Z/A/quicktime-mpeg-2-playback-component-f or-mac-os-x
    (unless you are running Lion in which case see below))
    which is a mere $20.
    Another possibility is to use DVDxDV:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.overview.htm
    which costs $25.
    For the benefit of others who may read this thread:
    Obviously the foregoing only applies to DVDs you have made yourself, or other home-made DVDs that have been given to you. It will NOT work on copy-protected commercial DVDs, which in any case would be illegal.
    And from the TOU of these forums:
    Keep within the Law
    No material may be submitted that is intended to promote or commit an illegal act.
    Do not submit software or descriptions of processes that break or otherwise ‘work around’ digital rights management software or hardware. This includes conversations about ‘ripping’ DVDs or working around FairPlay software used on the iTunes Store.
    If you are running Lion or later:
    From the MPEG Streamclip homepage
    The installer of the MPEG-2 Playback Component may refuse to install the component in Lion. Apple states the component is unnecessary in Lion onwards, however MPEG Streamclip still needs it. See this:
    http://support.apple.com/kb/HT3381
    To install the component in Lion, please download MPEG Streamclip 1.9.3b7 beta above; inside the disk image you will find the Utility MPEG2 Component Lion: use it to install the MPEG-2 Playback Component in Lion. The original installer's disk image (QuickTimeMPEG2.dmg) is required.
    The current versions of MPEG Streamclip cannot take advantage of the built-in MPEG-2 functionality of Lion. For MPEG-2 files you still need to install the QuickTime MPEG-2 Playback Component, which is not preinstalled in Lion. (The same applies to Mountain Lion even though that has it preinstalled.) You don't have to install QuickTime 7.

  • Making a single field editable with certain conditions

    Hi,
    We have an requirement wherein only a single field in an read only BC should be editable(with a certain condition).
    Kindly help me on this.
    Thanks and Regards,
    Priya

    Hi,
    The only way is put the "condition" in a calculated field. Create one more applet (clone of the read only applet). Make all the other fields read only at "applet level" and leave the one field as editable. Use the calculated field to toggle the cloned applet. Thats it. Any query revert back.
    Regards,
    Joseph

Maybe you are looking for

  • Fixing Billing Date in VF11

    Hi All I want to fix the billing date dynmic for today in vf11 - cancel billing Document I want that the user couldn't change this date it will be fixed for today I tried with user exit SDVFX007,SDVFX008,SDVFX009,SDVFX010,SDVFX011                    

  • Still getting Invalid URL on Washington Post sites

    Clicking any link to a Washington Post headline returns an Invalid URL error. This has been going on for several weeks, before which everything worked with no problem. One other post (not from me) about this problem produced a reply, but the instruct

  • DVD Won't Share From FCPX- Please Help!

    Having this issue- Trying to export DVD from FCX as usual &... The operation couldn't be completed. (com.apple.Compressor.CompressorKit.ErrorDomain error -1.) I had the same problem a few months back & it somehow corrected itself, but I have no idea

  • JDBC 2.0 Class libraries

    Does that standard installation of BEA Web logic server version 6.1 contain the JDBC 2.0 classes. If not I assume that I have to download and install the class libraries in addition to the web server installation.

  • Calibrating an HDTV using my Mac

    Hi, I'd like to use ColorHCFR with a DTP-94 sensor and the AVS HD 709 patterns to calibrate an HDTV for playback from a built-in Freeview tuner and external DVD player.  I propose to run ColorHCFR (which is available for the Mac, but not with the dri