Funktion Call in the C-kernel

Hello all
in the file sapactab.h (Based in Kernel) is the coding for the ABAP Statement Call.
Does anybody know with C-Statement (in c) is it.
Thanks for your help
Chris

solved i on my one.

Similar Messages

  • Where is the "blur kernel" one click deblur in Photoshop CS6?

    Where is the "blur kernel” one click deblur in Photoshop CS6? (Pretty sure it’s not there.)
    Is deblur still in development? Or was it killed? Is there any status update on the progress of the deblur function? An overwhelming majority of the information available reference the same October 2011 Adobe Max conference demo.
    (Adobe showed off the new deblur prototype at its Adobe Max conference in October during a set of feature sneak peeks...)
    The way the feature was described was:
    "The prototype feature uses a computer algorithm to analyze how the image was blurred and then creates what Adobe called a "blur kernel." After the kernel is generated, it can show you information such as what the motion trajectory of the camera was while the shutter was open -- causing the blur in the first place. The next step is to simply hit a "restore sharp image" button and the photograph is fixed."
    It was cited by some sources as being an upcoming Photoshop CS6 feature while other sources were more vague with statements resembling "It's not clear if or when the new unblur feature will make it into a future version of Photoshop, as the company warned all sneak peek features were just prototypes with no concrete product plans."
    Where is the latest with the Adobe Photoshop "blur kernel” and the Adobe Photoshop one click deblur feature?

    one of the things I think about as an engineer is that in order for something like this to work,  you should probably start with manuals adjustments to processing the the out-of-focus blur first. after you have finished with this, you can do the motion blur.  I would have to really think hard about it to see if there is an algorithm such as a kernel or something to convert an image into a path. one problem is you are stuck with the image boundaries. if they weren't there, things would be so much easier (but it would also take infinitely long to process).  the image boundaries MIGHT skew the kernel, depending on how you handle the boundaries (for example, usually you just assume those values are black or 0's, or you may choose a 50% gray, whatever fits best with the kernel you are working with).
    adobe may be on to something there, but they only had half of the equation with the idea.
    I used to tinker with image processing many yarns ago back for fun in BASICA/GWBASIC.
    if you have the kernel
    [-2 0 2]
    [-2 0 2]
    [-2 0 2]
    which amplifies vertical lines, you would want to handle the boundaries by processing them as 0's.
    NOTE TO ADOBE: it might start getting into Machine Vision technology when you start doing the path recognition. or AI.
    if you can get the imge into a path kernel, it's essentially a bitmap of a path.  you can trace that path using akima spline curves. (will lose 1-2 samples off each end), but the tracing program might just exist out there somewhere.  just google "bitmap to akima spline curve".  and akima spline curve has all the
    points along its path, unlike a bezier. I like akima spline curves, I have been trying to get ps engineers to use them for a while for good reason. this is one of them.
    there are also cubic splines as an alternative. 
    chances are that the curve will have rounded corners due to the weight of the camera.
    now that you have the path,it's simply a matter of taking samples along the curve wherever you want. (usually in an array which you can linearly inerpolate across the points in the array for simplicity if you want)

  • So im running the zen kernel

    so i found out about the zen kernel the other day when i saw a post about another version of it on AUR
    so i ran the pkgbuild for the vanilla zen kernel
    i will say, i think thats the most in depth thing i've done so far under linux, i did alot of finger crossing. didn't know i was going to have to modify my grub list manually, and had issies with the nvidia modules thats now resolved,
    i think my laptop feels a little more responsive, im not really sure, could just be in my head.
    anyway, thought id share
    edit// well, i thought everything was working, but my cpu frequency scalin isnt working
    Last edited by ssl6 (2008-09-07 02:53:54)

    You are saying that if I did not include my own .config, or the Arch stock .config files, and if I removed that piece of code.... that a .config would be used from kernel.org/pub/linux/kernel/v2.6/linux-2.6.27.tar.bz2 ????
    exactly. the stock kernel source must have a .config file itself. The vanilla and arch .config files for kernel compilation are close to being the same. There are only a few changes, IA32 emulation being one of those changes.
    Anyway, my question was basically if the "make oldconfig" command is necessary in a PKGBUILD that is already loading the settings that I want into the new "make menuconfig" from the .config file that I wanted to use?
    It's not necessary, all the PKGBUILDS I use copy the config.* from the PKGBUILD directory to the PKGBUILD/src/  as a .config file for compilation. Once make menuconfig is run, on exit, it will save the new .config changes(the new changes you make) to a config.saved.* file in your PKGBUILD/
    By now you should see the picture, it's nothing more then a loop that is constantly updating the config.* file to keep track of your new changes for each new kernel release.
    make oldconfig cmd only works from the PKGBUILD/src/ . This directory is NOT the place to be saving your work, the PKGUILD/src/ directory is only there to organize the files needed to compile the source, once compilation is done the src/ could and should be deleted. If you was to run makepkg again without telling makepkg to not extract the sources. Then makepkg would overwrite the src/ directory on the next build. Effectively deleting your `make oldconfig` file that you created.
    I recommend that you read the man pages for makepkg.  Makepkg is a wrapper for compiling packages the old fashioned, manual way. Anything you can do while manually compiling source outside of makepkg you can do inside of makepkg.
    an example for you to try, get a clean directory with only a PKGUILD inside of it, now run makepkg -o, Now goto that PKGBUILD directory and notice that there is a new directory called src/. Enter the src/ directory and delete some important files. Now go back down one directory, back into the main PKGBUILD directory again and this time run just makepkg -e, what happens?. Now just try makepkg. What happens and why?
    Last edited by jacko (2008-11-25 07:50:50)

  • Did you know that verizon charges ¢50 for calls from the US to Canada?  Just dialing an area code like 604 (Vancouver, CA), will create charges at a rate of ¢50/minute.  Amazing that they can charge this much for a call to Canada.  I know they have it som

    Did you know that verizon charges ¢50 for calls from the US to Canada?  Just dialing an area code like 604 (Vancouver, CA), will create charges at a rate of ¢50/minute.  Amazing that they can charge this much for a call to Canada.  I know they have it somewhere in their contract/website.

    Did you know that verizon charges ¢50 for calls from the US to Canada?  Just dialing an area code like 604 (Vancouver, CA), will create charges at a rate of ¢50/minute.  Amazing that they can charge this much for a call to Canada.  I know they have it somewhere in their contract/website.

  • How to secure a PL/SQL procedure that is called from the web browser

    If you have ever seen the sample document management application, and tried to download a file that was stored in the system, you are probably familiar with the apex_util.count_click URL that is used to download the file. If you copy that URL and paste it into a new browser, you will not be prompted to login to download the requested file. I'm using SSO with Apex as a partner application. How can I secure a pl/sql procedure like this to redirect to the login page before beginning the download?
    Thanks,
    Kris

    You can use the second method described here:
    http://apex.oracle.com/pls/otn/f?p=31517:15
    You would use an application process instead of pasting the procedure call in the browser. In the case I describe, you don't need to grant execute to public on the download procedure.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4.  However, I cannot record voice memos with my Bluetooth mic.

    I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4, so it appears my headset mic is fine.  I can also use voice activated dialing, although it fails miserably interpreting numbers.  However, I cannot record voice memos with my Bluetooth mic.   I just get barely audible static.  Any suggestions?   Thanks.

    Hello, did you ever get an answer to your question? I just picked up a Jawbone Era and using on an iPhone 4s running 5.0.1. Seems to work fine on regular calls, but not on the built in Voice memos application. It worked fine on my older Jawbone Icon, but haven't tested on the 4s or iOS 5.
    Thanks!

  • Incoming calls bypass the general iphone lock

    Although I've set up the general lock on my IPhone 3G, incoming calls bypass the mechanism and make the phone accessible by anyone who picks it up. Is there a way to require a passcode for receiving calls....I want to block all access to my phone!
    Any help would be greatly appreciated.
    Message was edited by: chiroguy2pittsburgh

    You'll find that with the iPhone locked, an incoming call will not allow access to the phone, i.e. you can only answer and talk, not access the phone OS.

  • How do I make a hands free call with the iphone 4s?

    How do I make a hands free call with the iphone 4s?  I have a bluetooth car device and when I try to talk through it (as I did with my old phone) to call someone it does not work.  so far only hte last person called is redialed.

    That is a carrier-based service. So first you have to make sure your service contract includes that feature.
    It usually also includes Call Hold. So you call the first party, put them on hold, call the second, then reactivate the first. But only if your carrier allows you to.

  • The call was cancelled by the caller before the remote party answered

    Hi,
    We have a Lync 2010 Enterprise deployment in a single site with 2 FE and Mediation Server collocated.
    When dialling a number from a PSTN phone the call gets routed via our PBX/PBX Gateway/Mediation Server/FE Server to the desktop Lync client successfully.
    As soon as the user answers the call with the Lync client the call 'hangs' and terminates without hearing anything on either side.
    The snooper logs show:
    Error:
    SIP/2.0 487 Request Terminated
    Partial Content:
    User-Agent: UCCAPI/4.0.7577.4398 OC/4.0.7577.4398 (Microsoft Lync 2010)
    Ms-client-diagnostics: 52092;reason="The call was cancelled by the caller before the remote party answered"
    Content-Length: 0
    Please help?
    Vinkie

    What kind of gateway are you using to connect to your PBX and how?  What is your media set to?  G.711 μ-law or a-law?  I'd check media settings there as a starting point. 
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".

  • Downloaded Mt Lion.  Now my facetime launches then quits with message that there is a problem with the  C_L Kernel Plugin.  Everything else works just fine. I can get on line etc.

    I have have an early 2008  imac 8,1  It has been a good machine no problems.  UNTIL we downloaded Mt Lion. We can no longer use facetime.  We click on the icon it comes up, tries to connect then it disappears with the message that there was a problem with the C_L Kernel Plugin.  We can go on line without difficulty, everything else seems to be working.  Searching the internet shows that others have had the same problem with Mt Lion. But so far I haven't found a solution.  We have wiped the drive reloaded snow leopard then downloaded Mt Lion again. We put in a NEW hard drive and reloaded snow leopard then Mt Lion. We have changed out ram using apple ram. But we still get the same result. Everything works except for Facetime.  Is there some patch we have missed?  Facetime DOES work on our ipads without a hitch so I doubt it's the internet connection.  We've tried the imac both wirelessly as the ipads run and hardwired and get no where fast.  So any help at all would be appreciated.  We live in the boonies, the nearest mac repair is over 150 miles away so this is pretty nuch a do it myself affair.  We know the machine is old by most standards today. But we pretty much run our machines until they can't power up.  So we'd like to get this one back on its perch so to speak with its face time working.
    Thank you ahead of time for any advise help given.

    A log may help determine what the issue is ...
    Open the Console app located in HD > Applications > Utilites
    Select: System Diagnostic Reports  on the left.
    Copy and paste the most recent kernel panic or crash log in your Reply.

  • How do I block messages and calls on the iPhone 5?

    Hey people, how do I block irritating message and calls on the iPhone?

    I'm having the same issue. It had the feature before and worked beautifully, and now when I try I do the same pinching/stretching method and nothing happens. I don't have an option to zoom anywhere in photo or video.

  • Facetime call using the same APpLe Id on iPad and Mac

    The FaceTime call using the same apple ID with the new iPad and iMac cannot put through to myself. In this case I do not want to get a new apple ID for FaceTime what can I do? I want to use the current apple Id.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
    I saw one post where a user said dust got inside the small microphone hole. Using a vacuum cleaner removed the dust and restored the audio.
     Cheers, Tom

  • How can I listen to music from iphone 4s via apple tv whilst doing a phone call at the same time?

    How can I listen to music from iphone 4s via apple tv while doing a phone call at the same time?
    When I take a call on the iphone, iphone stops streaming the music to apple tv until I finished the call.
    thx!
    Claus
    PS: did ask the same question to apple hotline in germany. Answer: we don´t know... funny

    Welcome to the Apple Community.
    As far as I know you can't, which sort of makes sense, it seems logical to pause whatever you are doing while you take a phone call, which after all is the primary function of a phone.

  • IPhone 3G S has dropped over 83 calls in the last day. 3G is the culprit.

    It started yesterday (Oct 3rd, 2009) as a nuisance, but it grew to make my phone not useable.
    The symptoms where:
    iPhone has full bars and the 3G indicator is active.
    1: Dial a call phone waits longer than usual to dial, but gets the call through.
    2: user on the other line picks up long enough to say hello, and the phone does its hated beep,beep,beep after 3 seconds!
    3: cannot receive calls.
    4: try the internet or mail, and you get the connection error. (Obviously we have a network error here!)
    I called 1800 my iphone , and the tech basically told me to do what I had done repeatedly for 5-6 hours.
    1: shut the phone down and re-start. (No kidding, I didn't think of that!) +Did not work+...
    2: hold the power and home button until the phone restarts. +Did not work+
    3: go to settings> general> reset>reset network settings. +Did not work+
    4: go to settings> general> reset>reset all settings. +Did not work+
    5: remove the sim card and re-insert into phone. +Did not work+
    The tech tells me to bring the phone to the Apple Store. Of course there's not an a appointment available for 2 days. (thank god for Skype, even though you need Wi-Fi for it to work, it works!)
    The tech blames my software on my phone, and says that I should restore the phone to factory settings.
    Next, I decide to go a little deeper... Since my phone will not work for the next two days, I decided to do the : settings> general> reset> ERASE ALL CONTENT AND SETTINGS. (You still have your last back-up, but once you start you're in for at least and hours worth of restoration. )
    After the phone restarts from its complete erase, and comes back up as a "new" phone I simply connect it to my laptop just to reactivate it... I re-activate the phone as a "new" phone. (This means theres not one piece of third party software on the phone. This also means the phone doesnt have any settings other than factory setting.
    Confident I call my wife again... "Hi honey lets try this again...beep, beep, beep!!!"
    I just wasted another hour of my life!!!!
    Finished with apple tech support, I call AT&T tech support. I got straight to a customer service rep. She seems competent enough... She asks me whats happening, I tell her. She suggests the following:
    1: Dial #002# and press the call button. The wheel spins for a second, and then you get a screen with a bunch of error messages... She says to ignore all the messages and shut the phone down.
    2: I shut the phone down and wait 2 minutes.
    3: I re-start the phone.
    4: she has me repeat step one again.
    5: I call my wife. I talk to my wife for 35 seconds. Confident that this has worked I hang up with her, and decide to call again. the next cal I get beep, beep ,beep!!
    Ok so I'm in full tech mode now. So I decide to go "old school" and turn 3G off... (Which I should have done way earlier in the game, but I decided to give AT&T the benefit of the doubt. My mistake!!!)
    I go to settings> general> network, and turn the 3G slider to the "OFF" position. (Yep we're back to "E", not empty, but the EDGE network, which is close to empty!!!!) suddenly my phone begins to go on the internet. I start getting the beloved ding (incoming email messages, and voice mails) Hooray for me! Two multi-billion dollar companies couldn't get my phone to work, but I am at least able to get it to work in part, all with my own troubleshooting. +THIS WORKED!!!+ but now I'm on a much slower network. So I guess I can call it the iPhone "E S".
    Although apple has amazing products, they have a mayor flaw. They're freaking stubborn! Here's probably the greatest handheld device out there, but they have bogged it down by putting it on probably the most unreliable network in the US. I've gotten better service in Cancun while roaming... Seriously!
    Just like refusing to have a two button mouse for years, until demand and constant barraging from customers made them add the feature. ( and even then its not a true second "button" on laptops ) I think they are going to do the same thing with the AT&T only thing.
    Apple, you're a bunch of smart, but stubborn people!

    After calling AT&T tech support one more time, and explaining to them that the glitch was on their network, they admitted that the problem was at their tower...
    I continued to use the phone on EDGE mode for two more days until the problem was fixed.
    I even got a call back from a tech support guy asking me if my phone was working properly....
    I wish they would have admitted to the problem before I sat at the apple store for 2 hours.

  • I've found two bugs in iOS 7. 1) declined calls does not appear as missed calls on the lock screen/notification centre. 2) when bluetooth is enabled from control center, it does not connect to an already paired bluetooth device

    I've found two bugs in iOS 7:
    1) declined calls does not appear as missed calls on the lock screen/notification centre - iOS 7.0.2.
    2) when bluetooth is enabled from control center, it does not connect to an already paired bluetooth device automatically - iOS 7.0.

    We are all users here, just like you, but you can tell Apple about it by using this link:
    Apple - iPhone - Feedback

Maybe you are looking for

  • How much RAM can I put in my new MacBook Pro 313 2.4 Ghz I5 13.1"? I'm getting conflicting answers on Google search.

    I just bought my first Mac after years of deliberation, and even working for Apple for over seven years since moving to the Bay Area. I can't believe I waited this long!!! I love it! My owner's manual says I can only put, "PC3-10600S DDR3 1333 MHz Ty

  • Weblogic server 6.1 CMP

    Dear Sirs, In the documentation I can not find any reference to hooking MSSQLServer4 driver to EJB container. I want to use SQL server 2000. I want to know that how I inform Weblogic server to use SQL 2000 and more important how do I attach a table t

  • Oracle report-how to change report layout to landscape?

    Hi, I am using Oracle report 6i. I want to change the report layout to Landscape. I had tried to go to 'page setup' and changed to 'landscape', but when I print, I still got portait layout. Can anyone help me? Thanks. Jun

  • WebDB report questions

    We are running WebDB 2.2, I have WebDB reports I have created using a SQL query that I wish to change the format. 1. Currently my report has column headings on one line, I wish to change and display column headings using two lines in order to allow m

  • Instructor Information Report not being generated

    Hi, I have created a few instructors using the transaction OOER in TEM module. I am able to find these entries in HRP1000. But when I generate the standard report Instructor Information (tcode: S_PH0_48000096) the output is not displaying. I tried ch