Keyboard in Outline Fields

Hello.
When using the keyboard to navigate in an outline field, it is possible
to show a parent's children using the return key. Is there any way to
close a parent up again using the keyboard?
Tim Sawyer
PanCredit
Leeds, UK
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Forgot a bit.
If you have a brand new outline field with no nodes in, and it has the
focus, how can we get the default button to fire when return is pressed?
Tim Sawyer
PanCredit
Leeds, UK
From: Tim Sawyer
Sent: 16 June 1998 12:20
To: '[email protected]'
Subject: Keyboard in Outline Fields
Hello.
When using the keyboard to navigate in an outline field, it is
possible to show a parent's children using the return key. Is there
any way to close a parent up again using the keyboard?
Tim Sawyer
PanCredit
Leeds, UK
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • Decimal data in outline fields

    I have an Express-generated window with a nested outline field. The
    decimal data being displayed (Custom DecimalDomain with
    DecimalNullable datatype) is formatting in E-notation with values >=
    1,000,000. When I change the outline field to an array field the
    same number displays properly.
    I also changed the domain type to TextDomain and it displayed
    properly but is not suitable for our complex arithmetic operations.
    Can any tell me why outline fields for decimal types displays in
    E-notation and how to combat this problem? Thanks. Rich.
    [email protected]

    Hi,
    Go to SPRO>SAP Netweaver >General Settings> Check Units of Measurement, then click on "Units of Measure" (T.Code: CUNI) and Select your Unit of Measurement  and go to details put number 4 "Decimal Places" field (you can put 0 to 14 decimal places.
    Regards.
    Chinna

  • Why does the keyboard cover text fields ios 8

    Why does the keyboard cover text fields in safari in ios 8 in safari?  I've never had this problem before, but now when a text field is near the bottom of the page, I can't move it above the keyboard.  If there any fix? This is extremely annoying and renders filling in text on many web pages impossible.

    This solved it for me. I only needed to split it once before it was fixed (but shouldn't have had to do it at all). Thanks, chuck9999, you're my hero!
    Level 1(0 points)chuck9999Oct 19, 2014 8:15 AM Re: Why does the keyboard cover text fields ios 8
    Re: Why does the keyboard cover text fields ios 8in response to TeraBI had the exact same problem on my iPad Air and it's working fine now. Try toggling your keyboard a few times between split and regular using the keyboard key in the lower right corner.  I also then docked the keyboard a few times.  The turned-off/rebooted the iPad and it's worked fine ever since.  I stumbled upon the fix reading another post, and it did work although not sure why.  My guess is toggling the keyboard and rebooting updated something in the "registry".
    Liked Show 1 Like(1)
    Reply

  • Decmal data in outline fields

    Fellow Forte' users,
    I am displaying decimal data in an outline field and want to do so to 4
    decimal places. The default in the outline field is 2 decimal places.
    Setting the scale of the decimal data attribute in the outline field display
    node init method doesn't work.
    The only way I can get 4 displayed is to use a TextData in the outline field
    and format the decimal into the TextData.
    Does anyone know a better, more direct way to do this?
    Regards,
    Glenn Wickham
    Hydro Electric Commission
    Australia
    [email protected]

    Hi Virendra,
    Thanks for the support, as per the guidance given by you i was able to link the desired field (E.g. Vendor Code) to one of the WBS Element User Field using WBS_USER_FIELDS_F4 BAdi. Further to this I have following requirements.
    1. Can I also appear the field description in front of the User Field (E.g. Name of the Vendor)
    2. Can I validate whether a User have entered a valid input to the User Field (i.e. Existing Vendor in the Vendor Master)
    3. Can I include a search window to search input values.
    Very much appreciate your help,
    Dileepa.

  • Re: Tree Lines on an Outline Field

    Actually, you can use the outline field in Forte R2 to mimic what you're
    trying to do. True tree and list-view widgets are fully supported (quite
    nicely, btw) in R3.
    Basically, set up your subclass of displayNode to have an image data
    attribute that is displayed on the widget. Then, create a few stock
    tree-like bitmaps (like a vertical line, a vertical line with a horizontal
    line, etc.). As the user expands and contracts the nodes in the outline
    view, dynamically change the bimtap accordingly.
    Hope this helps...
    -Katie
    Does anyone know if Forte can put the tree/branch lines on the hierarchical
    structure of an outline field? I can get the outline/hierarchical structure
    to display and work fine, but without the lines showing how nodes relate,
    its hard to read.
    Thanks.Wait for Release 3.

    Does anyone know if Forte can put the tree/branch lines on the hierarchical
    structure of an outline field? I can get the outline/hierarchical structure
    to display and work fine, but without the lines showing how nodes relate,
    its hard to read.
    Thanks.Wait for Release 3.
    Fred Scholldorf
    Email: [email protected]
    ===

  • How to demote to body from the keyboard in outline form?

    How to demote to body from the keyboard in outline form?

    This is the method i am using to populate a list.
    1- First of all you need to create a non-database list item for customer_name.
    2-create this procedure
    PROCEDURE populate_list_with_query
    --Populates the given list item with the specified query.
    (p_list_item in VARCHAR2
    ,p_query in VARCHAR2)
    IS
    /* Name the record group after the list item (no
    block prefix). */
    cst_rg_name constant VARCHAR2(30) :=
    GET_ITEM_PROPERTY(p_list_item,item_name);
    v_rg_id RECORDGROUP;
    BEGIN
    v_rg_id := FIND_GROUP(cst_rg_name);
    IF ID_NULL(v_rg_id) THEN
    v_rg_id := CREATE_GROUP_FROM_QUERY(cst_rg_name,p_query);
    END IF;
    IF POPULATE_GROUP(v_rg_id) = 0 THEN
    POPULATE_LIST(p_list_item,v_rg_id);
    /* Force display of first list element label
    in the list item. */
    COPY(GET_LIST_ELEMENT_VALUE(p_list_item,1),p_list_item);
    END IF;
    END populate_list_with_query;
    3- Create When-Create-Record on the block level and write this code
    BEGIN
    POPULATE_LIST_WITH_QUERY('bk1.customer_name',
    'SELECT customer_name, to_char(customer_id) FROM customer');
    END;
    In this example, the customer name is the (visible) list label and the customer ID is the (actual) list value
    i hope this will solve your problem ...

  • Tree Lines on an Outline Field

    Does anyone know if Forte can put the tree/branch lines on the hierarchical
    structure of an outline field? I can get the outline/hierarchical structure
    to display and work fine, but without the lines showing how nodes relate,
    its hard to read.
    Thanks.

    Does anyone know if Forte can put the tree/branch lines on the hierarchical
    structure of an outline field? I can get the outline/hierarchical structure
    to display and work fine, but without the lines showing how nodes relate,
    its hard to read.
    Thanks.Wait for Release 3.
    Fred Scholldorf
    Email: [email protected]
    ===

  • Outline Field

    Dear All ,
    In our application we need to diaplay a heirarichical structure .The
    herarcical structure for the moment has only 4 levels.
    We are using an outline field to display this structure.
    1) Our requirements are.
    a) We should not have any restrictions on number of levels.
    b) When we double click on the root node it should load the data
    for the entire tree and display all the nodes.
    c) We should be able to show more than one image in each
    display node.
    requirement a) and c) are not a problem
    but the rquirement b) is problem , because sometimes we will have more
    than 6000 leaf nodes and each node might app represent a data of 300 bytes.
    So app we will have 20 mb of data loaded on the cleint. Since most of the
    client machine in the production environment is 32 mb , it runs out of
    memory.
    When user expands each level , each level appx has data ranging
    form 10-4000 nodes, the max range might grow up in future.
    Could you suggest me the best possible ways of implemention of handling
    massive data display with acceptable performance.
    Thank you in advance
    Always
    Ananth
    IBC Soln's India Pvt Ltd. , Bangalore
    My e-mail id is : [email protected] , [email protected]

    Dear All ,
    In our application we need to diaplay a heirarichical structure .The
    herarcical structure for the moment has only 4 levels.
    We are using an outline field to display this structure.
    1) Our requirements are.
    a) We should not have any restrictions on number of levels.
    b) When we double click on the root node it should load the data
    for the entire tree and display all the nodes.
    c) We should be able to show more than one image in each
    display node.
    requirement a) and c) are not a problem
    but the rquirement b) is problem , because sometimes we will have more
    than 6000 leaf nodes and each node might app represent a data of 300 bytes.
    So app we will have 20 mb of data loaded on the cleint. Since most of the
    client machine in the production environment is 32 mb , it runs out of
    memory.
    When user expands each level , each level appx has data ranging
    form 10-4000 nodes, the max range might grow up in future.
    Could you suggest me the best possible ways of implemention of handling
    massive data display with acceptable performance.
    Thank you in advance
    Always
    Ananth
    IBC Soln's India Pvt Ltd. , Bangalore
    My e-mail id is : [email protected] , [email protected]

  • Using Keyboard keys in Fields setting in Crystal Report Design ?

    Hi Experts
    I want to know that how can I change text object or a field size or position by keyboard. sometimes it works and sometimes not. What is the setting for using keyboard.
    Thanks
    Regards
    Gorge

    Keyboard keys will only work under certain modes in CR.  You have to check the mode constantly to see in which ways they work.  There are too many conditions may cause them not work.  That list could be too long to find them all.  You would have a good grasp on the rule after you familiar with them.
    Thanks,
    Gordon

  • How to outline fields that are blank?

    Hi,
    I am creating a report that has fields outlines. I have noticed if the field is empty the outline does not display. What can I do to make even the empty fields show the outline?
    Thanks,
    Trish

    Hi Trish,
    I'm not sure how you're applying the outline however in Crystal Report,  you can create a conditional formula to check if the value of the field isnull or blank.  For example if you were applying a line style around the field you can test with the following condition:
    1.  Right-click on the field.
    2.  Select Format Field.
    3.  Select the Border tab.
    4.  In the Line Style section,  click on the "X+2" icon and enter the following condition.
    if isnull({YOUR.FIELD}) or ({YOUR.FIELD}) = "" then 1 else 1
    Regards,
    Wallie

  • Slow keyboard input in fields - first characters transposed

    Any application or web page that I am in that has some kind of input field is giving me a problem with now. If I go into the field and immediately start to type it's like the iMac gets startled, that first character needs a second or so before it figures out I want to enter something and it then accepts the second character and displays that BEFORE then applying the first character.
    This topic is a good example, when typing in the Subject above it displayed as *lSow keyboard* so as usual I have to correct it. This happens on every new input field.
    What can possible be causing this?

    Is it just input or is the system otherwise performing slowly? You can do a SMC reset and than frequently resolves performance issues. You don't mention which iMac you have or what keyboard you are using, this could be useful information. To do a SMC reset please carefully follow these instructions:
    *SMC RESET*
    • Shut down the computer.
    • Unplug the computer's power cord _and all peripherals._
    • Press and hold the power button for 5 seconds.
    • Release the power button.
    • Attach the computers power cable.
    • Press the power button to turn on the computer.
    *PRAM RESET*
    • Shut down the computer.
    • Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    • Turn on the computer.
    • Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    • Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Roger

  • Keyboard error jump field to field delete

    Hi
    I am using several external keyboards such as Swiftkey or Swipe. And I noticed when I edit
    a contact and press the delete key, the cursor delete and jump to the next field instead of staying
    where it should.
    Do you noticed the same thing ?
    Thanks

    Hi,
    how is your dropdown done? by key/index?
    because with an indexed one, none is selected, thus returning a dump when you try to have
    an attribute error message (initial selected element).
    Greetz,
    Koen

  • Why does my Keyboard overlay Messages in IOS 8?

    When I respond to a message on iOS8 the keyboard overlays the previous text messages so I have to scroll to see them. Is there a way so the keyboard doesn't overlay the text? Or will it be fixed in an update? Every other iOS version autoscrolled and this is the first that didn't.

    This solved it for me. I only needed to split it once before it was fixed (but shouldn't have had to do it at all). Thanks, chuck9999, you're my hero!
    Level 1(0 points)chuck9999Oct 19, 2014 8:15 AM Re: Why does the keyboard cover text fields ios 8
    Re: Why does the keyboard cover text fields ios 8in response to TeraBI had the exact same problem on my iPad Air and it's working fine now. Try toggling your keyboard a few times between split and regular using the keyboard key in the lower right corner.  I also then docked the keyboard a few times.  The turned-off/rebooted the iPad and it's worked fine ever since.  I stumbled upon the fix reading another post, and it did work although not sure why.  My guess is toggling the keyboard and rebooting updated something in the "registry".
    Liked Show 1 Like(1)
    Reply

  • Re: OLE Field

    Gunjan,
    When you Forte OLE Field, the Forte GUI environment is known as a
    'Container Application'. Using the 'InsertObject' command, it can host
    different 'Insertable OLE 2.0 Objects'.
    When clicking on the Insert Object button, you will be presented with a
    list of OLE objects that have identified themselves as 'Insertable OLE 2.0
    object'.
    One problem with hosting these OLE objects is that you cannot keep state.
    For example, you run an Excel object and modified a spreadsheet -- when you
    exit the container, the state information goes away. Forte solves this by
    giving you a cache file, which is essentially a persistance image of the
    OLE object. You can later use the LoadCacheFile method to retrieve the data.
    By the way, using the ActiveXField, Forte can also host OLE Custom Controls
    (OCX).
    Lee Wei
    At 01:41 PM 7/6/98 -0400, Gunjan Vijayvergia wrote:
    >
    This is what I got from the Forte OLE field documentation. I did not
    understand teh part about the cache file and Insert Object . have
    been using Visual C++ mostly before this and we all know how easy
    this is there !!!
    Could somebody explain ?
    Documentation from Forte Help File Forte Ver 2.0
    OLE Field Properties dialog
    This dialog allows you to set the properties of OLE fields.
    The Fort
    &eacute; properties dialog for the OLE field allows you to set only the
    attribute name, help text, and size policy for the OLE field. To set the
    cache file name, and the default linked or embedded object for the OLE
    field, you must use the Insert Object button on the OLE Field properties
    dialog to open the Windows? Cache File and Insert Object dialogs. Because
    these dialogs are provided by Windows, you need to use Windows to access
    them. See your Windows documentation for information about the Insert
    Object dialog.
    The OLE field properties that can be set in this dialog are as follows:
    Property Setting
    Attribute Name The attribute name for the outline field.
    Cache File Name This is a read-only property that shows the cache file
    name specified in the Windows Cache File dialog for the OLE field.
    Insert Object Opens the Windows Cache File and Insert Object dialogs,
    where you can specify the cache file name and default linked or embedded
    object for the OLE field respectively.
    Help Text Opens the Help Text dialog for the field. See Help Text...
    command for
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Nextver field was locked because it was from 2004 and some very new forum user resurrected it to ask a new question. They should have been polite and posted their inquiry freshly new. Then they would have availed themselves of actually getting assistance directed to them.
    Thus some moderator froze it to prevent the thread being hijacked away from the original poster. By the way, that O.P. hasn't posted anything to the forums since that 2004 date.

  • Dv7-7128nr keyboard replacement

    I need to replace my keyboard but can't figure out how to remove the case. [Personal Information Removed]
    have removed all screws and other hardware but there seems to be a post holding everything together. Thought it might be the standoff but not sure.

    Hi bradsb71, welcome to the HP Forums. The steps to replace your keyboard are outlined on page 57 of this: HP Pavilion dv7 Entertainment PC - Maintenance and Service Guide
    I hope this helps.
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Maybe you are looking for

  • ERR file produced thru command line compile

    I'm trying to compile Oracle6 and Oracle9i forms thru the command line. Fmx files are created but so are err files. Upon inspection of the err files, it just states that there are no compilation errors. So this means that the fmx files are created co

  • Sidebar in Safari (and Chrome)

    I know, I know -- it's a funny request, but: Is there a way to get a sidebar holding bookmarks and history on either Safari or Chrome? I've seen it on Firefox, but FF is slow, slow, slow. I use quite a few websites really frequently, so it would be u

  • Mac desktop frozen blue screen

    Need help with frozen blue screen during start up.  I have Mac Desktop.  Any ideas please?

  • TV preview monitor shows "wriggled" top part

    I just bought a separate TV monitor, connected to Firewire via my Sony DVcam When I play back sequences, the top 10% of the TV screen 'wriggles' The rest of the picture is fine. I use a S-video connection between the DV cam and the TV monitor andI us

  • MacOSX 10.6.8 to 10.9.2 online update from AppleStore.

    After: InDesign CS4 crashes several times a day; new fonts are will not installed; problems with users&groups; problems with SMB1 and SMB2; if you have a monitor NEC, Spectraview II and calibrator DTP-94 - do not install MacOSX 10.9.2