Type using on-screen keyboard

The new vision update (which I must confess I don't like) has removed the on-screen method of data entry (up,down,left,right).
We (my family) liked that.
Now, I have to look up and down to and from the controller while typing in, and trying to read the tiny, tiny text on the controller.
Not very ergonomic or user-freindly.  Rubbish really.
Is there a way of displaying an on-screen keyboard to facilitate the better old style method of data entry.

Hi
I dont think that an single Win 8.1 update would affect single keyboard buttons.
This does not make any since to me
Therefore Im not quite sure if its really an software problem.
Do you have an external USB keyboard? Can you test it in connection with your notebook?
The point is that if such USB keyboard would work properly, the software is not the problem but the internal keyboard could be the troublemaker.
I think you should test this before trying to install the system again

Similar Messages

  • Full screen issue when utilizing Ease of Use on screen keyboard and RDP in Win8.1

    Hello,
    I am exploring using touch technology with our point of sale application which is delivered to our clients using RDP.  The default touch keyboard in Win8 is basically useless for our application so we enabled the touch keyboard under Ease of Use (EoU)
    which does meet our requirements.   We enabled the KB in docked mode so it is always displayed and locked to the bottom of the display.  The issue is that when we start an RDP session in full screen mode, the RDP session is using the whole screen
    and slipping under the docked EoU KB.  Is there a means to have RDP recognize the reduced screen size with the EoU KB docked and only use the available screen real estate?  I understand that I can configure the RDP settings manually and approximate
    what I'm looking for but this drops the session into a window which is somethibg I'm looking to avoid.

    Hi Steve,
    Thank you for post in Windows Server Forum.
    As per my research, I can say that you need to set the RDP screen size manually. So after setting the size of Full screen RDP you can able to use. You can also try to switch the application in Remote Desktop connection by “Ctrl+Alt+Break”. Please check
    the shortcut to be used when using RDC.
    Keyboard shortcuts
    http://windows.microsoft.com/en-in/windows/keyboard-shortcuts#keyboard-shortcuts=windows-8
    Hope it helps!
    Thanks,
    Dharmesh

  • A proper solution to a WPF application using On Screen Keyboard

    Hi.
    I´ve been working for some time on a good OSK solution for my WPF apps, that are running on a tablet. But it´s hard working with the OSK.exe and tabtip.exe, because of several bugs, strange behaviour and no standardized solution to this ordinary problem.
    What I (probably) need is a custom textbox control, which inherits from System.Windows.Controls.TextBox, and overrides some methods.
    The simple requirements for this textbox should be:
    1. When a user clicks in a textfield, the tabtip.exe (or alike) keyboard should pop up at the bottom of the screen (default).
    2. If the keyboard pops up on top of the textbox, the contentframe should scroll so that the textbox is visible.
    3. When the textbox loses focus, the keyboard should close automatically, except if the user clicks on another textbox.
    This seems like pretty standard behaviour right? Well I´ve looked a long time for solutions (there is no standard microsoft way which is kind of weird), and as said I´ve tried making my own but with no luck. For example, sometimes when I try to kill the process,
    it fails. When I click the close button in the upperright corner on the keyboard, like 5-6-7 times, it closes. The behaviour from PC to tablet is not consistent. The ScrollViewer.ScrollToVerticalOffset(x); sometimes doesent work on a tablet, and so on.
    So does any of you know a good solution to this common problem?

    Hello Farsen.
    I have been creating a Win8 app for my business and in learning that I discovered they have "LayoutAware" pages.  The basic idea behind the LayoutAware page is that they move the page up when the keyboard is active and that different layouts
    can be set for the tablet orientation.
    You could apply the same basic concept to WPF using VisualStateManager.
    Here is a real quick example....
    <Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"
    x:Class="WpfApplication27.MainWindow"
    x:Name="Window"
    Title="MainWindow"
    Width="640" Height="480">
    <Grid x:Name="LayoutRoot">
    <VisualStateManager.VisualStateGroups>
    <VisualStateGroup x:Name="VisualStateGroup">
    <VisualStateGroup.Transitions>
    <VisualTransition GeneratedDuration="0:0:0.2"/>
    </VisualStateGroup.Transitions>
    <VisualState x:Name="KeyboardOpen">
    <Storyboard>
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.Y)" Storyboard.TargetName="grid">
    <EasingDoubleKeyFrame KeyTime="0" Value="-130"/>
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="KeyboardClosed"/>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    <VisualStateManager.CustomVisualStateManager>
    <ei:ExtendedVisualStateManager/>
    </VisualStateManager.CustomVisualStateManager>
    <Grid x:Name="grid" HorizontalAlignment="Center" Height="41.92" VerticalAlignment="Center" Width="200" RenderTransformOrigin="0.5,0.5">
    <Grid.RenderTransform>
    <TransformGroup>
    <ScaleTransform/>
    <SkewTransform/>
    <RotateTransform/>
    <TranslateTransform/>
    </TransformGroup>
    </Grid.RenderTransform>
    <TextBox TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" GotFocus="TextBox_GotFocus" LostFocus="TextBox_LostFocus"/>
    <Button Content="Button" HorizontalAlignment="Right" VerticalAlignment="Bottom" Width="75"/>
    </Grid>
    </Grid>
    </Window>
    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Shapes;
    namespace WpfApplication27
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    public MainWindow()
    this.InitializeComponent();
    // Insert code required on object creation below this point.
    private void TextBox_GotFocus(object sender, System.Windows.RoutedEventArgs e)
    Process.Start("TabTip.exe");
    VisualStateManager.GoToElementState(LayoutRoot, "KeyboardOpen", true);
    private void TextBox_LostFocus(object sender, System.Windows.RoutedEventArgs e)
    Process[] processlist = Process.GetProcesses();
    foreach(Process process in processlist)
    if (process.ProcessName == "TabTip")
    process.Kill();
    VisualStateManager.GoToElementState(LayoutRoot, "KeyboardClosed", true);
    break;
    Now, I'm sure folks get right tired of my shouting Blend. But... if you have Blend you could make short work of setting this up.
    If you open your project in Blend, select the xaml page with the design view showing. 
    Select the "States" tab.
    Click the "Add State" button and you can double click the state that appears to rename it or rename it directly in xaml.
    Change the Transition Duration if desired.
    Select the state and you will see that "State Recording" is active.
    Just move your items where you want them for that state.
    I hope that gives you some ideas.
    ~Christine
    Edit. The red ellipse in the image above circles the "Add State" button.

  • The microsoft on-screen keyboard doesn't work with firefox. I try to enter type and it jumps around the page. I can't select anything on drop down lists.

    I tend to use the on-screen keyboard. For about two months I've been unable to type text in firefox. I can't use dropdown boxes. I have to text to notepad then copy and paste it. I realize this is hardly a critical issue but I've loved using firefox for years and am considering going to another browser if I can't resolve this.

    '''''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]'''''
    <BR>While you are in safe mode;<BR>
    '''''Firefox Options > Advanced > General'''''.<BR>
    Look for and turn off '''Use Hardware Acceleration'''.
    Restart FF. If there is still a problem, check '''caret browsing''' <F7>.
    It might have been turned on.

  • Firefox crashes as soon as I type into it (anywhere: search bars, pages) unless I have the on-screen keyboard open ..??

    When I start a Firefox session, everything works normally until I try to type anything anywhere (the address bar, either of my search bars, or on a webpage). If I try to type it freezes up and I have to go to the Task Manager to quit it (I have Windows obviously and use Firefox 3.6).
    I tried opening the on-screen keyboard, just to see what happens, and as long as I have that open, even downsized, everything works fine and I can type wherever I want.
    Is this a keyboard problem or something else?? Plugins?

    Yeah, it still locks up. I just realized that it happens in Word, IE and other programs as well. It is obviously a problem with my keyboard/display drivers and not any one program (I think it is happening after my computer is in "sleep" or "hibernate" and not general start up). I guess I assumed it was a Firefox problem since the I noticed the problem while using it.
    Thanks though!!

  • Since I upgraded to IOS 8 whenever I use kensignton bluetooth keyboard iin any mail app it scrolls up whenever I type message and I cannot see what I am typing.  Is there a fix?

    Since IOS8 upgrades I have had problem with my iPad Air whenever i use kensington bluetooth keyboard (an older one) whenever I type in body of mail message.  It scrolls up so I cannot see what I am typiing.  this is true on comcast  connect app as well as mail app in iPad.  Problem does  not occur when i use keyboard in iPad air screen.  First occurred with IOS 8, then disapeared wth later IOS 8 update, but has returned with most recent IOS 8 fix.
    I have reset all settings, but problem persists.

    I suspect problem is related to older Kensington keypad, however, I did see on a Google discussion group that someone suggested some changing of settings on iPad.  Trouble is, I cannot find that group again.  Any thoughts?

  • While using bluetooth wireless on iPad, it stalls and the on screen keyboard comes up.

    I just bought my iPad 2 about two weeks ago. Before that I was playing around with my parent's iPad first generation.
    For both iPads, I have the same problems while using the same wireless keyboard on both of them.
    1. While typing, at random times the wireless keyboard stops responding and the on screen keyboard shows up.
    2. While typing, also at random times, the wireless keyboard stops responding and the same alphabet that I last typed in would multiply itself until I either press "command + A" and delete or lock my parent's iPad and iPad 2.
    3. While typing, my wireless keyboard stops responding, on screen keyboard shows up, I select my on screen keyboard to hide, continued typing on the wireless keyboard, it stops responding again and my iPad2 restarts in a split second with the black backdrop and apple logo in the middle and goes to lock screen. Then everything is fine.
    4. While not typing, on screen keyboard shows up at random times while bluetooth is paired to wireless keyboard and then goes back down, all this while bluetooth icon at the top screen of the iPad2 flashes.
    I don't know what is wrong. At first I thought my iPad 2 has a problem but when I remembered the same problems occurred on my parent's iPad first generation, I don't know if it is just my keyboard or the iPad(s) have a problem.
    Please help me!

    If this is only one specific app, it is a problem with that application's programming.
    You can try to reset your iPad by holding down both the Home and Lock buttons for approximately 15 seconds or until the device restarts while ignoring the power slider.
    HuskieN

  • Yoga 13 - On-screen Keyboard Randomly Popping Up When Using Physical Keyboard?

    While in laptop mode, and typing on the built-in physical keyboard or a keyboard attached via USB, the on-screen keyboard will randomly pop up, taking away focus (particularly noticeable when using extended desktop on an external display) and eating up half of the screen real estate.  As soon as I press the next key on the physical board, the on-screen keyboard minimizes itself.  Sometimes it will pop up when I'm not even touching the laptop!
    Anyone else experience this and/or know how to stop it?  It's the only thing about this machine that drives me absolutely nuts.  It seems to be random.  I can't pin it down and haven't found any similar reports via Google search.
    Thanks in advance.

    Disabling "OnScreen Keyboard (Lenovo Transition)" stopped it.  The solution is good enough for me, as I don't need the keyboard to pop up on its own anyway.  It'll pop up when I tap in a text-entry box, and that's all that matters.
    Attempts to calibrate the screen were unsucecssful.  I can't say whether or not a screen calibration will stop the random pop-up issue because every time I calibrated the screen, it broke the right-side screen swipe that reveals the Charms Menu.  Resetting the screen calibration was the only way I could find to restore the right-side swipe function. This is quite unfortunate because, regardless of the fact that it broke my Charms swipe, my touchpoints were FAR more accurate after the calibration than before.
    So now I have another problem.  I can't calibrate my screen for optimum accuracy without losing the convenience of the right-side swipe.    
    Any ideas?

  • Help with on mac screen keyboard function option key - for using clone tool in photoshop

    Help please
    can someone help me
    i am teaching people with disability photoshop and need to use the on screen keyboard
    when using sticky keys and holding down the option key this does not work to select the
    source point  ie option click to select a source point

    Are you familiar with Ink on mac os x?
    Normally one needs to have a tablet or device that supports Ink to use all the features such as hand writing recognition and such, but
    one can enable parts of it without the proper device.
    Anyway, if Ink is not shown in the system preferences, you can go to /System/Library/CoreServices/Menu Extras and double click on Ink.menu
    That puts the Ink icon on the Menu Bar where you can access the Ink preferences from the drop-down menu and then turn Ink on and Show Ink Window
    The small window has symbols for the Cmd, Shift, Option and Control keys and then one can press, for example, the Option symbol and set the clone source point in photoshop.
    Don't know whether it will work for your students, but thought it was worth a mention.

  • I have tried several published methods for using umlauts but none have worked.  I have used the IPad 2 with the screen keyboard and the Logitech keyboard, all to no avail.

    I have tried several methods for using umlauts but none have worked.  These include the screen keyboard and a Logitech  keyboard.  I tried pressing and holding an o for several seconds then (while holding the o down, pressed the o umlaut in the pop-up screen with no results.

    Instead of using a second finger to press the umlaut while holding down the o key try this:
    Tap and hold on the o until you see the alternate choices then slide your finger up to the umlaut.

  • My new iPhone 5s will not let me type using the keyboard, has anyone else had this issue?

    My new iPhone 5s will not let me type using the keyboard, has anyone else had this issue?

    The iPhone 5, the Wall Charger, and the Lightning Cable are all covered by the 1 year Warranty. Make Genius reservation and take all 3 to Apple so the problem can be sorted and resolved.

  • In the latest update of pages on Ipad it says you can easily use iPhone landscape keyboard to type. How do you do this

    If any one knows how to "easily" do this as advertised on pages app. Please help. Cheers

    I don't know where you read that but on the app description page - this is what it states.
    What's New in Version 1.6
    Pages 1.6 requires iOS 5.1 software update or later
    • Easily enter text using the landscape keyboard on iPhone and iPod touch
    • Create and view stunning 3D bar, line, area, and pie charts
    • Pages 1.6 is enhanced to take advantage of the Retina display on the new iPad
    • Includes performance improvements
    That doesn't make it sound like you can use the phone keyboard to edit documents on the iPad. Maybe I missed it somewhere. It just makes it sound like the keyboard now rotates to landscape on the phone and the touch.
    Copied from here.
    http://itunes.apple.com/us/app/pages/id361309726?mt=8

  • Windows 8 Tablet / Touchscreen - On Screen Keyboard shortcut missing on Desktop

    Hi
    On a windows 7 tablet, on the desktop, if I clicked a field (e.g. in Windows Explorer) a small keyboard icon appears with a shortcut to the on-screen-keyboard (OSK).
    On windows 8, this no longer appears. Instead you have to click the field, then select the OSK from the taskbar, and then click back in the field before typing.
    Technical Stuff:
    So far we've found that in Windows 8 there is no 'Options' window for the Input Keyboard in the Taskbar. In Windows 7 there WAS an 'Options' window which included the setting "For tablet pen input, show the icon next to the text box". This setting controlled
    the shortcut icon that appears when you click in a field, and changes the following setting in the registry: HKCU\Software\Microsoft\TabletTip\1.7\ShowIPTipTarget. This setting does not appear in the registry on a Windows 8 machine and adding it in makes no
    difference.
    Rant:
    Within 5 minutes of issuing a new Windows 8 tablet this problem was noticed by the end user, rendering the device almost useless if you want to work at any pace - and it was promptly handed back. Very frustrating and annoying as this feature appears
    to have been removed. With Windows 8 pitched directly at the tablet market, surely this setting is in there somewhere - I can't think of any reason why it would be removed.
    Any help much appreciated,
    Andrew

    I fully agree with ssxIdent and all other posters who find the new touch keyboard rather dumb.
    There is no point in explaining why MS has decided to do things this or that way and what philosophic reasons they can come up with. MS needs to understand that software has to be accepted by the users and should not irritate them.
    But this is irritating.
    I thought one of the main concerns of MS was to be as intuitive as possible and provide a most satisfying user experiance - this is definetly not.
    Has anyone at MS ever tried to e. g. rename several files in a directory with the touch keyboard? Especially when you get to the bottom of the screen. Then you not only need to have show/hide the keyboard permanently, you even have to bother moving it or
    resize the window. That is NO GOOD USER EXPERIANCE!
    I'd find it intuitive, if there was a way for developers in WPF or in Windows Forms to tag any UI element if it
    Needs a keyboard (making the touch keyboard appear automatically) or
    Would like a keyboard (showing a symbol next to the box, just like the X in WindowsStoreApps.TextBox, to trigger the keyboard or make it pop up automatically, if the keyboard had an option that can be set by the user to respond to these UI elements) or
    Can have a keyboard (behaviour as is now)
    Once an application was built this way, users would intuitively be able to navigate through their beloved apps haveing the keyboard at hand when they will need it anyway, being able to access it just with a twitch of the hand if they want it and not being
    annoyed by it when they normally would not need it AND not being annoyed by permanently having to show/hide/show/hide that dratted thing by making miles of hand movement for nothing.
    For applications that are not tailormade this way some options to adjust the keyboard behaviour would help, too. Just provide an option to hook the keyboard to any focus change, and give users a selection of options to what major control types the keyboard
    should respond. For geeks you could even provide white list where they can add the GUIDs for classes the keyboard should show up automatically, a black list where the keyboard has to disappear and a gray list where the keyboard comes up on enter and disappears
    on leave.
    Some other thing I'm not happy with:
    I know Modern UI came somehow via Windows Phone 7, but our tablets, touch enabled laptops, ... are no telephones, so why has the touch keyboard numpad have the "1" at the top left corner and not at the bottom left like every other hardware keyboard
    or even the MS Windows OSK???????? In this point I contradict the explanation in the otherwise quite interesting article about the
    Design Concept because typing in numbers has more often to do with maths than with telephoning or switching TV channels. And calculators have the 1,2,3 in the bottom row, as have HW keyboards. The other misconception lies therin that you don't need to find
    1,2,3 quicker with your eyes when you are typing lots of numbers e. g. into spreadsheets. The fingers of HW keyboard, calculator or cash register users are so used to the conventional position of the digits that won't be easy to reshape. Additionally when
    typing in quantities of numbers right handed users (90% of world population)  will have the hand rest on the keyboard, the thumb on 0 and index finger, middle finger, ring finger doing their respective columns low value low down, high value high up. Who
    is dialing phone numbers or changing TV channels this way? But what will users do more often with the numpad - especially when dealing with loads of input data?
    Why can we not at least have digits on the alpha keyboard like on Android with long press on "Q"="1" ... "P"="0"? Password policy sometimes forces you to add digits in a PW, calling for switch alpha/num/alpha/num which
    is annoying, too! Even with the peek thingy, since you need two hands.
    Why is there no indication what special characters are hidden behind a long press? It's possible when you press Ctrl, despite most people already knowing what Ctrl+C means. e. g. where is the paragraph sign "§"on the touch keyboard? Or have
    you left it out, so lawyers can't sue you for developing this touch keyboard ;-) You have added a set of emojos, but forgotten to put a character on that is on virtually any other keyboard??? Rather give us a layer user/developers could fill with their own
    set of special characters and swap the Ctrl hints for a special character preview.
    When I have my keyboard docked I can split the alpha key gaining access to the ODD numpad in the middle, but why can I not have the numpad when the alpha stays unsplit in the middle having a big black block to its left and right - there was space, why have
    you not used it properly??? Nevermind feeling crowded, as mentioned in the article, give us an checkbox in keyboard options than we can decide if we want it or not. Since the article argues that users tend to get comfortable with the keyboard after a while
    and needn't look at it, this "over crowded" feeling would fade away just the same. Or you might even dim it a bit when there is no finger near it.
    Where are the Fn keys? Give us an option - we'll decide if we want it e. g. on the left side of the alpha block. Just as with numpad this could be dimmed, too.
    I'd have a lot more suggestions to throw into this, but I fear you'll not even pick up on the easiest or most fundamental ones.
    Prove me wrong! Please do! I dare you!!!

  • On Screen Keyboard

    I have searched high and low for a fix for this that works, but have yet to find anything.
    I have a Gateway laptop running Win8.1. As it is a laptop, I have absolutely no need for the on screen keyboard. However, there is no way that I have found to turn it off. It is bulky, obtrusive, and gets in the way. On a tablet or a Surface, I can see how
    it would be useful, but again, I have a laptop. It's just taking up space. There should be a setting to turn it off when it is not needed.
    I have found the same couple fixes listed everywhere that have supposedly worked for others and tried them, but nothing has worked. They included disabling the on screen keyboard in the ease of access center (even though it was already disabled), and opening
    Services, finding Touch Screen Keyboard and Handwriting, and telling it to stop. I even changed it to a manual start-up instead of automatic, but it didn't work, no matter how many times I switched it over, hit Apply first instead of just Ok, or rebooted after
    switching.
    Is there any way that I could just get rid of it entirely, since I apparently can't just tell it to stop popping up? I have no need for it and would rather just be rid of it entirely if I can't hide it. An uninstall would be preferred, but if there is at
    least a way to hide it for good, then that would be incredibly helpful.

    Presuming you are using just a laptop without a touch screen interface, you’re right – you do not need access to the on screen keyboard nor should it be popping up. If your laptop includes a touch screen interface then we have a bit more troubleshooting
    to do. For the next paragraph of this response I am going with the assumption you are using a standard laptop, without any touch features.
    There should be an icon in the bottom right hand corner that is shaped like a keyboard if you click it then the keyboard should disappear and reappear on each subsequent click. If the icon is not present, you can add it by right clicking on your taskbar,
    selecting properties, then selecting the toolbars tab and checking the touch keyboard box. One thing that is important to note though is that if the touch screen keyboard shows on the screen, it should automatically disappear. Since the automatic disappearing
    feature does not sound as though it is the case with your scenario then I am wondering if you have a corrupt install of Windows 8.1 on your system. It might be best to attempt a repair install or, on a worst case scenario basis, a clean install.
    Now, if you do have a touch screen laptop and are referring to the keyboard that pops up in the Windows Modern UI apps then that’s an entirely different answer. While there isn’t a specific or documented method for turning the on-screen touch keyboard entirely,
    there is a way to
    effectively disable the keyboard by stopping the service that controls it.
    Press the Windows key + W
    Type "services," and press Enter
    Scroll down to "Touch screen keyboard and handwriting panel"
    You can either right click and "Stop" or you can double-click and change it from "Automatic" startup to "Manual."
    "This will of course, disable both the touch keyboard and handwriting service, so you'll lose handwriting recognition. This was totally worth it to me and has made my touch screen laptop experience much better, especially when I'm using the Full Screen
    Browser. I hope this helps!"

  • How do I get on-screen keyboard to work in tablet mode for Satellite Radius?

    I have a Radius P55W-B5318.  I love it, but when I use it in tablet mode, I can't seem to figure out how to get the on-screen touch keyboard to come up, which is necessary if I'm going to use it as a tablet. Any solutions? What am I missing here?

     
    Satellite Radius14 E45W-C4200
    Right-click the desktop, point to New, and click Shortcut. Type osk, click Next, type On-Screen Keyboard, and click Finish. 

Maybe you are looking for

  • How can I get a PDF form to email to me when it is hosted online?

    Ok, I'm not a coding expert, but I understand CSS and html alright. I am trying to create a PDF form for my website: www.pantherapressdesign.com. I have already created the forms (they are under the purchase section of the site) and when they are sav

  • Slideshow Behind Image in Fluid Design

    I'm attempting to have an auto slide show run behind an image of a TV so that the slide show appears to be various screen shots appearing "on" the TV screen.   I found this site as a perfect example where the images cycle in the picture frame: www.bo

  • Regarding fm 'HR_GET_PAYROLL_RESULTS'

    HI EXPERTS, earlier i was using thif FM:'PYXX_READ_PAYROLL_RESULT' to get the payroll results now i want to use something new so now  i m using this FM "HR_GET_PAYROLL_RESULTS" to get monthly payroll results, but ven ever i m executing this fm it is

  • XI - Error Assigning business system services for A2A configuration

    Hello! I am working with the integration scenario plan_driven_procurement_supplierenablement and the integration scenario configurator. Performing the second step - assign services following error occurs: An error occurred when accessing the SLD serv

  • Oracle BPM Suite 11gR1 simulation using real data?

    Does anybody know if it is possible to "record" usage of a real business process model and use it as simulation data? Thanks for your time!