How to use Kannada keyboard on iPhone?

How can I activate the Kannada keyboard on my iOS devices?

This App installs the Kannada keyboard extension:
Kannada Keyboard by iDeviceApps: https://appsto.re/us/HPSCA.i

Similar Messages

  • Hi, I've checked how to use kannada keyboard in Yosemite. But, there are some 'vattu forms' and other grammar in Kannada language that I don't know how to use it. For eg, Preetiya taatanige nimma muddu mommagalu maduva namaskara? How to write this?

    Hi, I've checked how to use Kannada keyboard in Yosemite. But, there are some 'vattu forms' and other grammar in Kannada language that I don't know how to use it. I know how to change between the keyboards and can also view keyboard. However, For eg, 'Preetiya taatanige nimma muddu mommagalu maduva namaskara' How to write this? If anybody can answer this, very much appreciated.
    Thanks in advance for your reply.

    In general, you need to use the "f" (kannada qwerty keyboard) or "d" key (kannada) between letters to make special forms.  Also you may need to adjust the typography settings of the font, which is done by doing Format > Font > Show Fonts > Gear Wheel > Typography as shown below.  If you can provide screenshots or more detailed info on things you cannot make, I can perhaps help.
    It is important to note that MS Word for Mac does not support Indic scripts -- any other app should work OK.

  • HT4976 how can I use emoji keyboard on iPhone 3GS????

    how can  I use emoji keyboard on iPhone 3GS In wts app nd version ov this is 5.1.1(9B206)????????

    Once the keyboard is connected, it should work with any app that uses the standard keyboard interface, so it will work with iWork.
    br121: iWork was released for iPad quite some time ago, and updated for iPhone 4 recently.
    Pages - http://itunes.apple.com/us/app/pages/id361309726?mt=8
    Keynote - http://itunes.apple.com/us/app/keynote/id361285480?mt=8
    Numbers - http://itunes.apple.com/us/app/numbers/id361304891?mt=8

  • How to use virtual keyboard in flex application

    hi..
    i am using flash builder 4,
    how to use virtual keyboard in flex?
    if any one aware of this pls reply me.......
    saran r

    hi,
    how to code for these buttons  "control,alt,delete,insert and spacebar".
    can u help me  how to program?
    i have attached the mxml code with this,
    virtualkeypad1.mxml
    <?xml  version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"  minHeight="600"
                     creationComplete="application1_creationCompleteHandler(event)"  viewSourceURL="srcview/index.html">
         <fx:Script>
             <![CDATA[
                 import flash.utils.getQualifiedSuperclassName;
                 import mx.events.FlexEvent;
                 private var inpText:String = 'inp1';
                 private var shiftState:Boolean = false;
                 private var capsState:Boolean = false;
                 protected function  keyboard_clickHandler(event:MouseEvent):void
                     this[inpText].text =  this[inpText].text+(event.currentTarget as Button).label;
                     if (shiftState == true) shift_clickHandler(null);
                 protected function caps_clickHandler(event:MouseEvent):void
                     capsState = !capsState;
                     if (capsState == true)
                         currentState = "SHIFTED" else currentState =  "PRIMARY";
                 protected function tab_clickHandler(event:MouseEvent):void
                     this[inpText].text = this[inpText].text+"    ";
                 protected function shift_clickHandler(event:MouseEvent):void
                     shiftState = !shiftState;
                     if (shiftState == true)
                         currentState = "SHIFTED" else currentState =  "PRIMARY";
                 protected function enter_clickHandler(event:MouseEvent):void
                     this[inpText].text = this[inpText].text+"\n";
                 protected function  backspace_clickHandler(event:MouseEvent):void
                     var tmpStr:String = this[inpText].text;
                     this[inpText].text = tmpStr.substr(0,tmpStr.length-1);
                 protected function  application1_creationCompleteHandler(event:FlexEvent):void
                     inp1.setFocus();               
                 protected function focus_enterHandler(event:MouseEvent):void
                     inpText = event.currentTarget.id;
             ]]>
         </fx:Script>
         <s:states>
             <s:State name="PRIMARY"/>
             <s:State name="SHIFTED"/>
         </s:states>
         <fx:Declarations>
             <!-- Place non-visual elements (e.g., services, value  objects) here -->
         </fx:Declarations>
         <s:TextInput id="inp1" y="36" width="151" horizontalCenter="0"  click="focus_enterHandler(event)" y.PRIMARY="239"  horizontalCenter.PRIMARY="42" width.PRIMARY="199"  height.PRIMARY="31"/>
         <s:Group id="keyboard" width="661" height="184"  horizontalCenter="0" y="300" focusEnabled="false">
             <s:Button x="5" y="5" label="~" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="`"/>
             <s:Button x="49" y="5" label="!" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="1"/>
             <s:Button x="93" y="5" label="@" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="2"/>
             <s:Button x="137" y="5" label="#" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="3"/>
             <s:Button x="181" y="5" label="$" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="4"/>
             <s:Button x="225" y="5" label="%" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="5"/>
             <s:Button x="269" y="5" label="^" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="6"/>
             <s:Button x="313" y="5" label="&amp;" height="43"  width="44" fontSize="24" fontWeight="bold"  click="keyboard_clickHandler(event)" label.PRIMARY="7"/>
             <s:Button x="357" y="5" label="*" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="8"/>
             <s:Button x="401" y="5" label="(" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="9"/>
             <s:Button x="445" y="5" label=")" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="0"/>
             <s:Button x="489" y="5" label="_" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="-"/>
             <s:Button x="533" y="5" label="+" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="="/>
             <s:Button x="577" y="5" label="Backspace" height="43"  width="80" fontSize="11" fontWeight="bold"  click="backspace_clickHandler(event)"/>
             <s:Button x="5" y="48" label="Tab" height="43" width="67"  fontSize="12" fontWeight="bold" click="tab_clickHandler(event)"/>
             <s:Button x="72" y="48" label="Q" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="q"/>
             <s:Button x="116" y="48" label="W" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="w"/>
             <s:Button x="160" y="48" label="E" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="e"/>
             <s:Button x="204" y="48" label="R" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="r"/>
             <s:Button x="248" y="48" label="T" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="t"/>
             <s:Button x="292" y="48" label="Y" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="y"/>
             <s:Button x="336" y="48" label="U" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="u"/>
             <s:Button x="380" y="48" label="I" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="i"/>
             <s:Button x="424" y="48" label="O" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="o"/>
             <s:Button x="468" y="48" label="P" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="p"/>
             <s:Button x="512" y="48" label="{" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="["/>
             <s:Button x="556" y="48" label="}" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="]"/>
             <s:Button x="600" y="48" label="|" height="43" width="57"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="\"/>
             <s:Button x="5" y="91" label="CapsLock" height="43"  width="80" fontSize="12" fontWeight="bold"  click="caps_clickHandler(event)"/>
             <s:Button x="85" y="91" label="A" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="a"/>
             <s:Button x="129" y="91" label="S" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="s"/>
             <s:Button x="173" y="91" label="D" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="d"/>
             <s:Button x="217" y="91" label="F" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="f"/>
             <s:Button x="261" y="91" label="G" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="g"/>
             <s:Button x="305" y="91" label="H" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="h"/>
             <s:Button x="349" y="91" label="J" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="j"/>
             <s:Button x="393" y="91" label="K" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="k"/>
             <s:Button x="437" y="91" label="L" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="l"/>
             <s:Button x="481" y="91" label=":" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY=";"/>
             <s:Button x="525" y="91" label="&quot;" height="43"  width="44" fontSize="24" fontWeight="bold"  click="keyboard_clickHandler(event)" label.PRIMARY="'"/>
             <s:Button x="569" y="91" label="Enter" height="43" width="88"  fontSize="24" fontWeight="bold" click="enter_clickHandler(event)"/>
             <s:Button x="5" y="134" label="Shift" height="43" width="106"  fontSize="24" fontWeight="bold" click="shift_clickHandler(event)"/>
             <s:Button x="111" y="134" label="Z" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="z"/>
             <s:Button x="155" y="134" label="X" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="x"/>
             <s:Button x="199" y="134" label="C" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="c"/>
             <s:Button x="243" y="134" label="V" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="v"/>
             <s:Button x="287" y="134" label="B" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="b"/>
             <s:Button x="331" y="134" label="N" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="n"/>
             <s:Button x="375" y="134" label="M" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="m"/>
             <s:Button x="419" y="134" label="&lt;" height="43"  width="44" fontSize="24" fontWeight="bold"  click="keyboard_clickHandler(event)" label.PRIMARY=","/>
             <s:Button x="463" y="134" label="&gt;" height="43"  width="44" fontSize="24" fontWeight="bold"  click="keyboard_clickHandler(event)" label.PRIMARY="."/>
             <s:Button x="507" y="134" label="?" height="43" width="44"  fontSize="24" fontWeight="bold" click="keyboard_clickHandler(event)"  label.PRIMARY="/"/>
             <s:Button x="551" y="134" label="Shift" height="43"  width="106" fontSize="24" fontWeight="bold"  click="shift_clickHandler(event)"/>
         </s:Group>
    </s:Application>
    thanks in  advance,
    saran r

  • HT201205 how to use bluetooth to connect iphone to ipad???

    how to use bluetooth to connect iphone to ipad???

    what you do you expect them to be able to do with eachother ?
    you can transfer files or data between them unless you find some 3th party program which does that
    this is what ios devices support in terms of bluetooth profiles
    http://support.apple.com/kb/ht3647
    this is the full list of all bluetooth profiles (even your computer only support a fragtion of the list)
    http://en.wikipedia.org/wiki/Bluetooth

  • How to use kannada interface in oracle 9i?

    hi friends,
    i dont know how to interface in oracle using kannada language.
    pls informe how to do it in using oracle forms 6i.

    Where does one download that interface? (This is the 'Problems with downloads' forum!!)

  • How to use the Packager for iPhone ?

    Hi What`s up guys??
    I Download the Packager for iPhone and i can`t used this ?
    please help me and show me in picture how to use this.

    my question about http://labs.adobe.com/technologies/packagerforiphone/ package.

  • HT201303 how to use itune for my iphone?

    how to use itune ?

    Hi Rashid,
    To use itunes for Ur iPhone click http://www.apple.com/itunes/how-to/#video-sync
    Setting up syncing
    Tutorial:
    Before setting up syncing you should download and install the latest version of iTunes. Wi-Fi syncing requires iTunes 10.5 or later and iOS 5 or later. You can change your sync options at any time. Each time you sync, content is synced between your iOS device and computer to reflect new, updated, or deleted content.
    USB syncing
    Open iTunes.
    Connect the iOS device to your computer using the included USB cable and select it in iTunes under Devices on the left-hand side:
    Some tabs may not appear if you do not have corresponding content in your library. For example, if you do not have any podcasts in your library, the corresponding Podcast tab will not appear.
    Click Apply, in the lower-right corner of the screen, to sync.
    Wi-Fi syncing
    Open iTunes
    To set up Wi-Fi syncing, connect your iOS device to your computer with the included USB cable. Select your device under Devices on the left-hand side.
    In the Summary tab, select "Sync with this [device] over Wi-Fi".
    Whenever the computer and the iOS device are on the same network, the iOS device will appear in iTunes, and you can sync it. The iOS device will sync automatically when all of the following are true:
    The iOS device is plugged in to power
    iTunes is open on the computer
    The iOS device and the computer are on the same Wi-Fi network
    While the iOS device appears in the left-hand column of iTunes, you can select the content tabs and configure sync options.
    Click Apply or Sync to sync the iOS device.
    If the iOS device does not appear in the Devices section or you are unable to sync, please see this article for troubleshooting.
    What you can sync
    Applications
    Audio content—music, podcasts, audiobooks, and iTunes U content
    Bookmarks
    Books
    Contacts
    Calendars
    Movies and TV shows
    Photos
    Notes
    Documents (File Sharing apps only)
    Ringtones
    Additional Information
    The first time you sync the Info tab with your iOS device, you are asked if you want to merge data, replace data on the service, or replace the data on your computer from the following applications:
    Mac: Address Book, iCal, Microsoft Entourage, or Microsoft Outlook 2011
    PC: Microsoft Outlook, Outlook Express, Windows Addressbook (XP) and Windows Contacts (Vista and Windows 7)
    For more information about syncing your device with your computer, see the user's guide or see this article.

  • TS2756 How to use personal hotspot in iPhone 5 and how to setup

    How can I use personal hotspot in iPhone 5

    Verify that your carrier supports Personal Hotspot for your device and that you have Personal Hotspot enabled on your cellular plan:
    From Here  >  http://support.apple.com/kb/HT3574
    Personal Hot spot
    iOS System Requirements  >  http://support.apple.com/kb/HT3574
    Understanding  >  http://support.apple.com/kb/HT4517
    Trouble Shooting  >  http://support.apple.com/kb/TS2756

  • How to use right keyboard symbols on Satellite A300?

    I have just recently purchesed a Toshiba Satellite A300.
    The system details are as follows:
    Processor: Intel(R) Core(TM) 2 Duo CPU T5850 @ 2.16 GHz 2.17 GHZ
    Operating System: Windows Vista Home Premium 32-Bit.
    Memory Ram: 3.00GB.
    Anywho, it cost 879 Euro + postage and handling. The problem is the keyboard. The keyboard language is set to English (US). For who knows what reason, some of the keys do not enter their designed symbol/function/numeral.
    For example, in order to make the symbol ''@'' i have to use the corresponding key sequence SHIFT+','
    But when i press SHIFT + 2 i get ''
    I cant figure out why, but i cannot even get it to work. A lot of the keys are out of whack. I haven't touched anything, i only got it over a week ago. It cost me a lot and i can't seem to find any support. I had a technician look at it, but he was unable to figure it out.
    I've tried holding down ALTGR and shift and pressing INSERT and everything but to no avail.
    PLEASE, i need to figure out how i can ressolve this issue, i cant access one of my email accounts, because i can't figure out whats wrong with the keyboard.
    my email address is [email protected]

    Hi
    The solution is easy. You have to change the keyboard language to English UK.
    Check this Microsoft page [How to change the keyboard layout|http://windowshelp.microsoft.com/Windows/en-US/help/765a7264-b593-4458-90cf-0d0713b5dfe61033.mspx]
    And [how to change the keyboard input language|http://windowshelp.microsoft.com/Windows/en-US/Help/52e368fa-bd32-4749-955e-331f9130889f1033.mspx]
    Cheers

  • How to use old 1st gen iPhone as iPod after deactivated?

    I just got a new iPhone 4S and gave my first generation iPhone to my kid to use as an iPod. I transferred the phone number so now the new iPhone works as my phone and the old iphone did not connect to AT&T but did work as an iPod (or through wireless). Rather than just sync'ing to his computer, he erased the iPhone somehow while it was not connected to a computer. This apparently erased everything including activation. Now when he hooks up to iTunes on a Mac or PC, he automatically goes to iTunes Store and gets a page asking for him to activate. The iphone has multiple languages on the screen and window for making emergency call so it looks like he wiped the old iphone "clean". From reading discussions, my impression is that iPhone needs to be activated before you can use even as an iPod.  So my question is how can I get this old iPhone to work as an iPod?
    I do have Time Machine backups of my Mac from when the old iphone was activated and connected to AT&T.   Is there some way to use this to restore iphone to the way it was before the above?
    I suppose the other option would be to do some kind of jail-break fix?
    thanks

    More inof:
    I saw an old post that said: "Does original iPhone work without phone service -- Yes, but you won't be able to install future firmware updates or restore the iPhone with iTunes if wanted or needed.. Both require the iPhone being activated." 
    Not knowing this limitation, we did a full restore/reset on an old 1st gen iphone, so is there anyway to get it working like an ipod.  Per above, I get a screen asking me to activate.
    AT&T even obliged me by allowing this phone to be reactivated (for a few days) and gave me a new sim card to put in the phone, but it wouldn't reactivate probably since it's so old:  AT&T didn't know what to do and Apple wouldn't deal with a product out of warranty.
    So now phone is not activated and am basically locked out from using as ipod.

  • HT1695 How can use my factory unlocked iphone better ?

    i want to know more about how to use siri?
    Is data necessary for siri?
    guide me well!

    http://www.imore.com/siri-ultimate-guide
    http://www.apple.com/iphone/features/siri-faq.html

  • How to use unlock code for iPhone 4s

    I finished my contract with Virgin Mobile USA and requested that they unlock my iPhone 4S so I can use it with other carriers. Virgin processed the unlocking, they provided me an "unlock code" and told me that I need to provide that code to my new carrier to finalize the unlock process. I have taken it to ATT, Verizon and have asked other carriers, and none of them know how to use the unlock code. I have restored my iPhone via iTunes to try and see if the unlock would go through, but had no luck. I've unlocked other iPhones in the past with other operators, but have never needed a code... Can someone help me? Thanks!

    I have the same problem. I did the 'update' which deleted ALL of my information. I could not even turn my phone on. I eventually restored my phone, because I had synced EVERYTHING before trying to to the update. SOMEHOW, in spite of making 100% that my contact button was selected in the sync, when I restored and then went to the last sync, none of my contacts were there. It is disgusting that in 2012, Apple has not figured out how to do something as simple as resotre contacts as many times as I plug the phone into my computer...
    Many of my contacts are in third world countries, and do not have email. I have lost their contact forever. It is very saddening and frustrating. Iphone sees fit to keep pictures/music/and stupid game apps before keeping CONTACTS?!?!?!?!?!?!?!?!? SOOOOOOoooooooooo very disappointing Apple.
    If I had known how unreliable Apple was before attemping what seemed like a simple 'upgrade', I would have NEVER done the upgrade. My phone was fine before, but I figured, oh you know, it will not hurt to do the upgrade. I could have written all of the numbers down BUT the site said (yes I did check before) that as long as you sync, if something goes wrong, you can go back to the last sync.
    NOT TRUE!!!
    Disgusted.

  • How to use the find my iphone feature?

    I lost my Ipod Touch 4 at school but i did not have the find my iphone feature turned on so I couldn't track it. Is it true that you can use the find my iphone app on another person's apple device to track yours? How?

    No, you have to either have the Apple FindMuPhone/iPod feature turned on or installed a third-party app. The iPod musy also bo connected to the internet.
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing without a court order                         
    Reporting a lost or stolen Apple product                              
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • How to use PUSH feature in iPhone in a  third party application

    Hi All,
    Can anybody give me an idea that how to Push an SMS on iPhone, any application related to this topic.
    Any service provider which deals in Push Messaging (PM) for INDIA.
    How to intercept an SMS in iPhone.
    If possible please provide the code for mentioned topics.
    Thanks in advance.
    Amit

    If I'm understanding you correctly go in to Maps, look at the bottom of your screen click on 3D (in the middle) then lower right corner click on the little i in the circle then click on Satellite. With a little luck you can find and look at your house! (It's a little creepy if you ask me). Cheers!

Maybe you are looking for

  • Proxy to FILE/RFC Interface

    Hi Experts, Recently your ECC is upgrade, My Scenario is PROXY - > PI -> FILE/RFC, There are 2 issues for the same interface. Getting CCMS Alerts as below. When I check in SMQ2, i dont see any messages are stucked in the queue, but we are receiving t

  • 1099 suppliers in AP

    what is 1099 suppliers ? Why in AP, few suppliers are segregating to 1099 suppliers? Thanks prasad.

  • BUS2012-ReleaseStepCreated

    Hi! I have a requirement to trigger an approval workflow when a purchase order is changed NOT created. The purchase order is created using a batch job when the purchase requisition is released. When a user changes the purchase order amount (on item l

  • Logical Database Reads

    Hi All, Logical Reads = DB Block Gets + Consisten Gets. What are consistent gets? and the difference between DB Block Gets and Consistent Gets.

  • Problem  in dataentry.

    hello abapers, i am MM consultant , we are facing prob  in MIGO/MB01 when we enter any text it is not  get stored in database.(means not in  table  MSEG) in SAP 6.0 version. field name GOITEM-SGTXT but when we tried from other tran code such as MB02