FK01 - Unable to upload few details through recording Issue with BINPT

Hi Expersts,
I am using FK01 transaction to upload Vendors. My issues is if I do the recording without checking the check box "Not a batch Input session" then its not displaying all the fields in the recording. Then I did the recording by checking the check box "Not a batch Input Session". When I use this recording in my program by passing the paramere NOBINPT = X in CTUPARAMS to the FM, I am getting an error message "No batch input data for screen SAPMF02K 0110". This screen I am getting when I do the recording without checking the check box but not by checking the checkbox.
Can any body suggest how can I upload the vendor using FK01? with all the fields?
Thanks in Advance.
Regards,
Ranganadh.

Hi Can anybody please suggest on this?
I need to update Vendor Email ID, street2,3, through BDC I could not found it in recording. when I check the checkbox"Not a batch input session" these fields are appearing in the recording, but I am unable to use this recording in my program, its giving me the error as I posted previously.
I did search in the forums I found the note "653536" but I am unable to get these fields in the recording.
Can anybocy please help me to resolve the issue?
Thanks,
Ranganadh.

Similar Messages

  • Missing data: Unable to find a product registration record associated with your e-mail address

    Hi,
    I'm getting this error which has also been reported by other users:
    See your benefit >
    Missing data: Unable to find a product registration record associated with your e-mail address (Adobe ID). If you feel this is incorrect, please contact Adobe customer support.
    Is there something that can be done?
    Regards,
    Petteri

    Hi David,
    I logged in with my Adobe ID and was directly taken to a profile page "Your Account / Personal Information". On this page there was a banner "Claim your exclusive benefit today". By clicking the link I received the error:
    Missing data: Unable to find a product registration record associated with your e-mail address (Adobe ID). If you feel this is incorrect, please contact Adobe customer support.
    I had received similar offer already before so I was little supprised to receive it again.
    Here is similar issues experienced by two users:
    http://forums.adobe.com/message/5186156
    Regards,
    Petteri

  • So, about a week ago my macbook pro started having lots of issues: wifi connectivity, slow performance, sound issues, spotlight wasn't working. After going through the issues with apple support, they decided the best course of action was to erase it...

    So, about a week ago my macbook pro started having lots of issues: wifi connectivity, slow performance, sound issues, spotlight wasn't working. After going through the issues with apple support, they decided the best course of action was to erase the hard drive and do a reinstall. Since I have a recent backup this seemed like a good enough option. They were kind enough to send me a copy of the snow leopard disk to do the install since we couldn't get it to complete through the disk utility. Not sure why, since it says we are fully connected, it just never completed.
    Anyway, so now that you have the background here is the new issue. The macbook pro keeps spitting out the disk I'm trying to install from. Disk utility and using the 'Startup Disk' function from the apple menu doesn't read the disk.
    Can anyone suggest a solution to this vexing problem?
    Thanks in advance.

    Jeremy.Laurin,
    have you tried agb76’s approach here?

  • I have suddenly unable to upload any files through FIrefox

    I have been unable to upload files on Firefox and Chrome. This happened suddenly.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Unable to upload my apps through the app store!

    When I try to download it said that my apple account is not verified, so I try to verified it but it ask me datas about payment! (those updating are free)
    What can I do?
    Thanks

    Hi Maria ..
    Whether or not an app is paid or free, Apple "verifies" your billing credentials.
    Click Account right side of the App Store window and sign in.
    Then click Edit to the right of Payment Type
    Add a credit or debit card account or select None.
    Click Done bottom right side of the App Store window.
    Now try updating or downloading apps.

  • Recording issues with sound PLEASE HELP

    Hi I am currently trying to record a home movie from VHS to DVD.
    Playing the tape via the InterVideo MSIPVS program I have excellent video and sound. now here is where my problem lies.
    When select to record from the program it records the video perfectly but not the audio. I am just curious as to what the problem maybe. I looked in the record tab on the setup menu and it gives me the option to select the video input source but not the audio input source. I have the audio input selected in the device tab and this allows me to hear the tape that is being played on my computer.
    I have read a few of the forum posts and none really seem to cover this problem. I am just curious if there is something I may have missed or done wrong on install that may have caused this.
    Currently running  :
    AMD XP 1600
    1gig Ram
    TV@anywhere Master
    Geforce 5600XT
    onboard sound
    Win 2k Service pack 4
    DirectX 9c
    Any help would be GREATLY appreciated as I am about to throw this thing in the wood stove and light it.
    Thanks in Advance

    I have exactly the same problem!
    Record video and on playback only get picture.
    Strangley I have noticed that if I pause and dont shut MSIPVS then sound on the recorded file will play. But, if you shut down the programme you dont get sound with the picture. Also if you do this you get a file TShift in the folder where the recorded file is stored.

  • Game recording issues with ffmpeg

    Hello, I'm trying to create a script to record windowed games with ffmpeg.
    This is what I have so far:
    #!/bin/sh
    INFO=$(xwininfo -frame)
    WIN_GEO=$(echo $INFO | grep -oEe 'geometry [0-9]+x[0-9]+' | grep -oEe '[0-9]+x[0-9]+')
    WIN_XY=$(echo $INFO | grep -oEe 'Corners:\s+\+[0-9]+\+[0-9]+' | grep -oEe '[0-9]+\+[0-9]+' | sed -e 's/+/,/' )
    ffmpeg -f x11grab -y -r 60 -s $WIN_GEO -i :0.0+$WIN_XY -f alsa -i pulse -crf 18 -preset ultrafast -threads 8 -async 5000 $1.mkv
    It allows me to click on a window and record it - it works, but has some issues:
    > I manually have to redirect the game audio with pavucontrol to be able to record it
    > Audio gets out of sync, I tried many options with no luck
    > I can't find a way to record both game audio and microphone audio
    So,
    > Could the script be improved somehow for better quality/performance?
    > How can I prevent the audio going out of sync?
    > How can I record both game video, game audio and microphone audio at the same time?
    Thanks.

    SuperV1234 wrote: > I manually have to redirect the game audio with pavucontrol to be able to record it
    Usually, PulseAudio will remember the last used device. Once you run ffmpeg once, PA should remember that it listened on the monitor input and use that.
    SuperV1234 wrote: > Audio gets out of sync, I tried many options with no luck
    I got this problem too a while back. Try removing the -async option, it's deprecated and caused more trouble than I had. Also, make sure you always have enough processing power to process everything in time, otherwise it will become out of sync quickly. ffmpeg isn't smart enough yet to fill the gaps, so if you can't grab the audio fast enough (pulseaudio glitch), can't encode the video fast enough 100% of the time, or anything else, it will lose frames and result in a delay. Even funnier, also make sure the drive you output to is fast enough to save the file so ffmpeg never block on writing the file to disk (I used to send my encode directly to a streaming server, and the network latency messed it up).
    SuperV1234 wrote: > I can't find a way to record both game audio and microphone audio
    You can set this up easily with either PA or Jack. Jack is a bit easier to use, but here's the way I do it myself:
    - Create a dummy output device (module-null-sink)
    - Use a loopback to play your microphone in the dummy output (module-loopback)
    - Use a loopback to play your sound card monitor into the dummy output (module-loopback again)
    - Make ffmpeg record from the monitor of the dummy output.
    You can also juste encode 2 audio streams using ffmpeg (-f alsa -i pulse twice, or -f pulse -i "your pulseaudio input") and edit it after.
    I think jack would use less CPU to do the same thing (audio streams are piped and mixed directly in the right place instead of using loopbacks and dummy outputs)
    SuperV1234 wrote: > Could the script be improved somehow for better quality/performance?
    - Unless you really want 60 FPS output, I'd suggest reducing the FPS to 30. Keep the 60 FPS input, but output into 30 FPS. It will use half the processing power and there will be almost no noticable difference.
    - If you really want 60 FPS output and know how it will be displayed, you can actually encode in interlaced video (60i), which looks like 60 FPS but weights about the same as 30 FPS.
    - You can increase the quality, using something like -preset fast or even -preset medium given you have enough spare processing. Remember, encoding speed should be constant. If you record 30 FPS, you have to output 30 FPS all the time!
    - Like said by skottish, try not using CFR. It will cause the encoder to have to spend more time one some frames and this extra processing might be enough to cause FPS drop.
    - Tune your x264 options (-x264args). Options reference
    - Try reducing the number of threads: make room for your game and give a ffmpeg as few cores as possible. using 8 cores will make it have full processing power, but there are some cases where your game will have CPU spikes and ffmpeg will wait for a single thread to finish a frame and get out of sync. They will be rescheduled to another core, but this has some overhead, and x264 encoding uses the CPU cache a lot with inline assembler code. Having as few context switch as possible for ffmpeg is preferable over having two ffmpeg threads encoding on the same CPU.
    I hope this helps you a bit. Unfortunately, ffmpeg is still pretty bad at recording because of audio/video sync issues In the end, there will always be sync issues after a while, so I suggest you restart ffmpeg once in a while. I opened a bug on their tracker a while ago about similar issues. Never got any attention, no comment, not even moved from new to open. They need to fix the input buffer size in a way they always grab exactly N frames of video and audio. They seem to use some timecodes but it looks like the muxer often fails to resync them back. I'd fix it myself, but ffmpeg is way too big for me to find what I need, especially for a bug that seem to have existed forever and still not being fixed or even addressed.
    Last edited by Max-P (2013-07-22 19:16:12)

  • Skype recording issue with headset

    When I record with my headset (Turtle Beach p11 earforce) The recording doesn't seem to make skype that loud and clear, when i do record, I hear skype perfectly. I record with bandicam but I recorded with something else and it did the same thing. I have tried so many times to fix this but I just cant find a way. I like to record with friends and upload the videos, but that gets in the way. So any ideas? NOTE: The headset is designed for the playstation 3 but is compatible with pc. Also I use a Windows 8.1 Acer. Hope someone can help! 

     Check this out http://talk.sonymobile.com/t5/Xperia-Z3-Z3-Dual/Z3-dual-headphones-microphone-issue-5-1-1/m-p/1026187/highlight/false#M22003

  • Samplitude v7.0 recording issue (with spellcheck!)

    Okay, I've had a pro audio guy here who oversaw my install (he recommended the program), and he's clueless...the manufacturer (Magix) says it's a souncard issue. I specifically requested a quality soundcard with Dell knowing I would be multitracking and here's the problem:
    I record track 1 - a clicktrack at 100 BPM.
    I play the same click, same BPM against the recorded track and slowly (but surely) they fall out of synch....until after 40 sec or so it's totally out.
    This is not a latency issue, whereby the offset is uniform, but an issue where my recorded track is being changed in some way to make this application useless.
    I've tried moving the card to another PCI slot, updating drivers, etc....no change.
    Please help, as I've several hundred dollars in software in the balance....not to mention all these unrecorded gems.
    Thanks.

    jalbertson wrote:
    Oh - sorry!.......
    Soundblaster Live! 24 bit - Advanced HD Audio - 100 dB/Dolby/96 KHz/7.1
    Other:
    Windows XP (Home Edition)
    Service pack 2
    Intel Pentium 4 CPU (3 GHz)
    512 MB RAM
    running "ACPI Uniprocessor"
    Just what I was thinking while replying --> Live! 24-bit.
    This issue of yours have been reported so many times and it's Live! 24-bit issue (out of sync or something like that). I have not seen any commenting on if this issue can be rounded, but I suggest you to try recording using Asio4All drivers. The other common issue for this card is racording @ 24-bit (some sequencers/multitrackers don't give clean results (distortion added)).
    IMO, Live! 24-bit is usable just for playback and gaming, not for (multitrack) recording.
    Maybe you better buy another card. If you're serious w/ recording, try M-Audio, ESI/MAYA, etc. cards instead.
    jutapa
    Message Edited by jutapa on 04-04-200604:28 PM

  • Unable to log into iMessage and intermittent issues with FaceTime

    Late 2011 MacBook Pro, OS X 10.8.4.  I'm an admin level Windows guy but a relatively new (and otherwise very pleased) convert to Mac OS.
    This morning Messages started repeatedly prompting me for my iMessage password and FaceTime has starting working only intermittently.  Both work fine from my iPad and iPhone 5.  Both have been working from my MacBook Pro for months.
    This morning when I tried to fire up Messages on the MacBook I got an error saying "The server encountered an error processing registration".  After doing some Googling, I noticed that many folks said that when they had this problem they also had an issue with FaceTime.  I confirmed that FaceTime was indeed giving me the same error as iMessage. After trying some solutions from past threads that didn't work, I rebooted.  Now instead of throwing an error, Messages just keeps asking me for my iMessage password again and again.  FaceTime works occasionally but sometimes when I get a call and click answer, I get "call failed" as my iPhone and iPad continue to ring and then I'm asked to re-enter my password on the MacBook.  If I enter my password it just sits and spins.  If i quit FaceTime and start it again, it'll usually log in successfully but calls may or may not work (following the same pattern I just mentioned).
    The odd thing to me is that when I tested FaceTime on my iPad, I got notifications on my iPad and iPhone and my primary and alternate email address were now registered with FaceTime.  They have been for over a year so I'm not sure why I'm getting those notifications again.
    I'm able to log into the Mac App store without a problem using the same AppleID
    What I've tried so far based on Google results:
    1. In Keychain Access, reset my default keychain - No improvement
    2. In Keychain Access, selected Keychain First Aid, repaired and verified - No improvement
    3. On my iPad, turned iMessage off and back on - No improvement, though iMessage on the iPad still works fine
    4. Confirmed that my primary and secondary AppleID email addresses and password are correct.  The email address associated with my AppleID is not associated with any other AppleIDs.
    Thanks!

    This could be a complicated problem to solve, as there are many possible causes for it. Test after taking each of the following steps that you haven't already tried. Back up all data before making any changes.
    Before proceeding, test on another network, if possible. That could be a public Wi-Fi hotspot, if your computer is portable, or a cellular network if you have a mobile device that can share its Internet connection. If you find that iMessage works on the other network, the problem is in your network or at your ISP, not in your computer.
    Step 1
    Check the status of the service. If the service is down, wait tor it to come back up. There may be a localized outage, even if the status indicator is green.
    Step 2
    Restart your broadband device and your router, if different. You may have to skip this step if you don't control those devices.
    Step 3
    From the menu bar, select
     ▹ About This Mac
    Below the "OS X" legend in the window that opens, the OS version appears. Click the version line twice to display the serial number. If the number is missing or obviously invalid, take the machine to an Apple Store or other authorized service center to have the problem corrected.
    Step 4
    Take the steps suggested in this support article. If you don't understand some of the steps or can't carry them out, ask for guidance.
    Step 5
    From the menu bar, select
     ▹ System Preferences ▹ Network
    If the preference pane is locked, click the lock icon in the lower left corner and enter your password to unlock it. Then click the Advanced button and select the Proxies tab. If the box marked SOCKS Proxy is checked, uncheck it. You don’t need to change any other settings in the window. Click OK and then Apply. Test.
    The result may be that you can't connect to the Internet at all. Revert the change if that happens, or if iMessage still doesn't work. Remember that you must Apply any changes you make in the preference pane before they take effect.
    Step 6
    Select from the menu bar
     ▹ System Preferences… ▹ Flash Player ▹ Storage
    and click
    Block all sites from storing information on this computer
    Close the preference pane.
    Step 7
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    If iMessage worked in the guest account, stop here and post your results.
    Step 8
    Boot in safe mode and log in. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including Wi-Fi on certain iMacs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. After testing, reboot as usual (i.e., not in safe mode) and test again.
    If iMessage worked in safe mode, but didn't work when you booted out of safe mode, stop here and post your results.
    Step 9
    Reset the NVRAM.
    Step 10
    Reinstall OS X.
    Step 11
    If none of the above steps resolves the issue, make a "Genius" appointment at an Apple Store, or contact Apple Support.

  • RFC Call through BSP - Issue with RFC logon credentials

    Hi everyone,
    I have an BSP application running on a 6.40 which calls a RFC function module on a backend system (4.6c) using a trusted RFC connection.
    The BSP is started with an URL which contains in encoded form the username and password. So we don't use the standard sap-username & sap-password.
    In the first step the user is logged in with the anonym user (user type 'service') which is entered in the SICF. So sy-uname = 'anonym'.
    After a couple of checks and verifications the BSP makes a user switch using 'SUSR_INTERNET_USERSWITCH'. Exporting parameters are the now decoded values from the URL. So after the switch sy-uname is e.g.  'blabla'.
    Now a function module on the backend system is called. What I would now expect is that on the backend system sy-uname is also 'blabla'. But it isn't. The sy-uname is still 'anonym', which isn't very helpful regarding object authority checks.
    Only after an reload of the BSP page and a second RFC call of the function module the sy-uname = 'blabla'.
    I wonder what causes this problem?
    Thanks for your replies & regards
    Kruno

    Hi,
    I solved it.
    Before I execute function 'SUSR_INTERNET_USERSWITCH' I first check if user has a valid backend account by using function module 'BAPI_USER_EXISTENCE_CHECK'.
    And this is the problem. When 'BAPI_USER_EXISTENCE_CHECK' is executed once all other RFC function calls to the backend get the wrong user.
    Why? I don't know yet. Maybe I will get an useful anwer from an OSS note.

  • Can we upload more than 1000 records with BPS file upload pf

    We are using file upload functionality in BPS. Can we use this function to upload around 80,000 records at a time.
    We are unable to upload more than 1000 records because throws a time out error. Is there a setting that we can change to resolve this?

    Hi,
    Can you check the following note  about BW system parameters :
    [https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=192658]
    Check the work Process time set for your BW system
    Is your application web based ?
    Pratyush

  • Error while deploying the taskproject through jdeveloper- Unable to upload

    Hello,
    I implemented a sample process with a BPEL and Human task. am not able to deploy the taskproject through jdeveloper. getting the below in deployment log
    [01:11:57 PM] Wrote Web Application Module to C:\JDeveloper\mywork\VacationRequestHF\VacationRequestTaskFlow\deploy\VacationRequestTaskFlow.war
    [01:11:59 PM] Deploying Application...
    [01:12:32 PM] Weblogic Server Exception: weblogic.deploy.api.internal.utils.DeployerHelperException: The source 'C:\DOCUME~1\151679\LOCALS~1\Temp\VacationRequestTaskFlow.war' for the application 'VacationRequestTaskFlow' could not be loaded to the server 'http://uxunt460:7101/bea_wls_deployment_internal/DeploymentService'.
    Server returned HTTP response code: 500 for URL: http://uxunt460:7101/bea_wls_deployment_internal/DeploymentService
    [01:12:32 PM] See server logs or server console for more details.
    [01:12:32 PM] weblogic.deploy.api.spi.exceptions.ServerConnectionException: [J2EE Deployment SPI:260041]Unable to upload 'C:\JDeveloper\mywork\VacationRequestHF\VacationRequestTaskFlow\deploy\VacationRequestTaskFlow.war' to 't3://uxunt460:7101'
    [01:12:33 PM] #### Deployment incomplete. ####
    [01:12:33 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer).
    I tried to search in Server logs but no luck not sure whether the way am looking is right or wrong also i dont know where these details are present in server console.
    Am a beginner in SOA., so may be thse questions look pretty amateur but help regarding this will be truly appreciated.
    Thank You,
    Bilal

    Hello,
    I implemented a sample process with a BPEL and Human task. am not able to deploy the taskproject through jdeveloper. getting the below in deployment log
    [01:11:57 PM] Wrote Web Application Module to C:\JDeveloper\mywork\VacationRequestHF\VacationRequestTaskFlow\deploy\VacationRequestTaskFlow.war
    [01:11:59 PM] Deploying Application...
    [01:12:32 PM] Weblogic Server Exception: weblogic.deploy.api.internal.utils.DeployerHelperException: The source 'C:\DOCUME~1\151679\LOCALS~1\Temp\VacationRequestTaskFlow.war' for the application 'VacationRequestTaskFlow' could not be loaded to the server 'http://uxunt460:7101/bea_wls_deployment_internal/DeploymentService'.
    Server returned HTTP response code: 500 for URL: http://uxunt460:7101/bea_wls_deployment_internal/DeploymentService
    [01:12:32 PM] See server logs or server console for more details.
    [01:12:32 PM] weblogic.deploy.api.spi.exceptions.ServerConnectionException: [J2EE Deployment SPI:260041]Unable to upload 'C:\JDeveloper\mywork\VacationRequestHF\VacationRequestTaskFlow\deploy\VacationRequestTaskFlow.war' to 't3://uxunt460:7101'
    [01:12:33 PM] #### Deployment incomplete. ####
    [01:12:33 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer).
    I tried to search in Server logs but no luck not sure whether the way am looking is right or wrong also i dont know where these details are present in server console.
    Am a beginner in SOA., so may be thse questions look pretty amateur but help regarding this will be truly appreciated.
    Thank You,
    Bilal

  • I have just formatted by toshiba hardrive to Mac OS extended as recommended so I could upload movies onto it from my mac however I am now unable to watch these movies through my set top box like I could previously.  How can I fix this?

    I have just formatted by toshiba hardrive to Mac OS extended as recommended so I could upload movies onto it from my mac however I am now unable to watch these movies through my set top box like I could previously.  How can I fix this?

    Check the box's documentation to find out what drive formats it's capable of reading. Very few, if any, non-Apple devices natively support drives formatted as Mac OS Extended.
    (111452)

  • PO Upload through recording

    Hello All,
    I m writing upload program for PO through recording (SM35). I m facing problem at item level. I have hundred of items to upload. At item level grid there is no button like 'Insert Row'. In actual screen it is done through scroll bars of grid. It generates BDC_Code of Enter/Return. But when I run this recording (or generated program) even in SM35 it doesn't write records more than that of grid rows (visible rows) and gives error message that material group column is not writable. Actually it doesn't consider scroll bar pressing as new record entry in recording and tries to overwrite on last row that is already written. If I give row no greater than that of visible rows, it gives error. I have no problem for Condition entries because 'Insert Row' button is available there.
    Please tell me how I should handle this problem in recording?
    Regards
    Nadeem

    Hi Nadeem,
    I don't know on what release you are on. But BAPI_PO_CREATE1 does have the possibility of adding conditions. Furthermore, as far as I know, you can use an arbitrary package number just to relate the PO-item and the relevant Services. Just start with '0000000001' for the first PO-item and add 1 for any next item.
    The checks executed during screen processing should be the same  when executing using a BAPI.
    Regards,
    John.

Maybe you are looking for

  • How to pass the table name dynamically in xml parsing

    Hi All, I have created one procedure for parsing xml file which is working perfectly. FORALL i IN t_tab.first .. t_tab.last          INSERT INTO Test_AP VALUES t_tab(i);Now I want to put the table name dynamically+. For that I have added one query an

  • Nokia lumia 610 ringtone,and bluetooth file transf...

    i have nokia 610 and i have donwloaded a ringtone from marketplace i mean song and i want to set it as my ringtone  what should i do in order to set that song as my ringing tone pls tell and more thing if i want to send any file to other mobile do i

  • DB13c Error:ORA-12541: TNS:no listener for windows systems

    Hello Gurus, We are facing an issue in DB13C jobs. Background: DB13c is setup in Solution Manager. Only for windows systems DB13 jobs are failing. Job log is given below: Job started Step 001 started (program RSDBAJOB, variant &0000000002249, user ID

  • Datasource on APO Planning Area - Transportation Error

    Hi All,              I have created the Datasource on APO Planning Area. Datasource working fine check in RSA3 and also in BW side. when transporting the data source from APO Dev to APO QA i am getting following error and transport fails. Please sugg

  • I want to separate Flash players into multiple instances of plugin-container.exe

    Let's say I'm watching a video online and I feel like playing a Flash game while watching it. Let's also assume that this Flash game, like many others, has no volume options and is obnoxiously loud, drowning out the video. All running Flash players (