Function Code can not be selected

Dear expert,
Please help me, there is a uploader For MIGO, USer is uploading data using this uploader, Sometimes when user try to upload data, he gets a message on status BAR:
Function cannot be selected, When i Double Click on that Message i Get Following Information:
Message NO: 00255
Diagnosis
You entered an Inactive function code
You can trigger this by:
inputting directly in the OK code field
inputting the fastpath of an inactive menu function
choosing an inactice function key, or even by
choosing enter, if enter has an inactive function
In batch input a function code is included in field BDC_OKCODE of the session, as long as this function Code is not assigned to Enter
As well as activating function codes stastically in the menu painter(Transaction SE41), they can also be deactivated dynamically using the excluding addition with PF-STATUS.
Now one more thing i want to tell you is when user just open MIGO directly and try to enter some data and get back before saving and then Execute uploader then user can upload data without any error,
Kindly tell me what shoul i do to remove this error permanently
Thanks in advance
Regards
Shelly Malik

There is an error in this uploader, it should not call this command which is not available on that screen. What is this uploader? If it's a custom abap program, you must debug it.

Similar Messages

  • DataGrid data can not be selected after inlcluded automation library

    In order to use QTP for my Flex project, I included the automation libraries.
    But I found that the data in DataGrid can not be selected, and double click function not working.
    After I excluded the following two of the automation libraries, it works fine.
    automation_agent.swc
    qtp.swc
    FLex SDK version:  4.1.0.16076
    Anyone can help?

    It occurred to me that this might be a permissions problem - I had repaired permissions using TechTool Pro a few days ago and that may have caused this - who knows!
    Anyway, I'm just re-repairing permissions using Disk Utility. It says 'Estimated Time: 3 hours' which considering previous permissions repair seems a long time - maybe that is an indication of the problem.
    I'll post again in 3 hours!

  • HT4236 when i try deleting pictures on my ipod touch i can not choose "selected albums" i can only choose all my albums

    when i try deleting pictures on my ipod touch i can not choose "selected albums" i can only choose all my albums

    Yes, that's the way it works with pictures synced from a comptuer to an iOS device.
    If you want to remove specific picstures/albums, do so via iTunes on the computer.

  • HT4236 I can not enable selected photos to sync to my iphone 5. It is greyed out. I do not want to sync my entire iPhoto library.. help!

    I can not enable selected photos to sync to my iphone 5. It is greyed out. I do not want to sync my entire iPhoto library.. help!

    Guys, I found another user and what he said to do worked!!! I have copied the information below:
    This was 1 of the things that happend to me too, the other one was that at the bottom of the itunes page were it says all the memory info, it marked that I had over 3gb of other memory wich I didn't.
    Anyways what I did was to unmark the calendar, contacts etc. ( so that they wont sync with the computer ), pressed apply,  then I marked all of them again, apply again and for last I pressed Sync wich is at the bottom right coner by the apply botton.
    I'm not sure that had anything to do with it but it worked, my music appeard both of my itunes playlists and the ones I bought in itunes.  Also the other memory dissapeard and it's all good.
    I'm not sure this will help you but thats my 5 cents, if the problem continues its better to call customer service and ask for a technician.
    Hope your problem gets solved. Have a nice day.

  • License Code Can not allowed after change my sim c...

    I 've just changed to my new sim card after my old sim card always disturbing me with "insert sim card".
    After that my license code for navigation Nokia Maps can not used.
    How to use my license code again ?
    Is the license code followed my IMEI or my sim card ?
    Please help me.
    Thank you.
    Best regards,
    Tjandra.

    It follows the sim card. But you can try updating your licenses. If that does not work then contact your Nokia Care and they will transfer the license for you.
    To update, when in Maps, goto Options>Extras>licences. You have to be online when doing this.

  • The servlet include a send mail function,and can not retrun immediately!

    In the post/get funtion ,a send mail function is present,and this will make the client wait a long time to continue to browse,how to let it return as soon as possible?

    Not sure I understand your question, but I think you want to know how to handle a lengthly operation (send mail in your case) without making the client wait a long time for a response. If that is the question, you can kick off a new thread to handle the mail sending while replying to the browser client immediately. There's a good intro to threads and examples in the Jave tutorial (http://java.sun.com/docs/books/tutorial/essential/threads/index.html)

  • I can not upload selected music from my computer to my iPhone.

    I have already tried checking the song and clicking the sync button, that did not work, nor did it work when I checked the box to only sync checked music. Ever since itunes changed everything has been so much more complicated and confusing! I wish they would make simple tasks simple to do.

    I tried that and I dont see the apple ID in the lower right. Its just a box with a bunch of tabs info, sorting, options, etc. Nothing else. I know the apple ID in the itunes is the same as the iphone because when it asks me for my password I enter in my password for my apple ID. This is a song that was emailed to me, it's music that has been cut with different songs on it. I tried adding a different song (one that I purchased) and I am still having the same problem. It used to be so easy, just drag and drop. Not sure why they have made so many changes making things so complicated. =(

  • What is a function Code?

    Can anybody tell me What is a Function Code while creating Application tool bar  with SET PF-STATUS?
    How many function codes are there?
    What are they?
    if I want to associate a new functionality with a new ICON....can I add custom fuction code or there are only SAP function codes available.....?

    Hi
    Function code is the CODE assigned to a particular through which the SAP recognises its action.
    It is something like OK code or Sy-UCOMM.
    see the doc of OK CODE
    In your ABAP programs, you should work with the OK_CODE field instead of SY-UCOMM. There are two reasons for this: Firstly, the ABAP program has full control over fields declared within it, and secondly, you should never change the value of an ABAP system field. However, you should also always initialize the OK_CODE field in an ABAP program for the following reason:
    In the same way that the OK_CODE field in the ABAP program and the system field SY-UCOMM receive the contents of the corresponding screen fields in the PAI event, their contents are also assigned to the OK_CODE screen field and system field SYST-UCOMM in the PBO event. Therefore, you must clear the OK_CODE field in the ABAP program to ensure that the function code of a screen is not already filled in the PBO event with an unwanted value. This is particularly important when the next PAI event can be triggered with an empty function code (for example, using ENTER). Empty function codes do not affect SY-UCOMM or the OK_CODE field, and consequently, the old field contents are transported.
    In your application programs, the first step in PAI processing should be to save the function code in an auxiliary variable and then initialize the OK_CODE field. You can then read the function code from the auxiliary variable (for example, using a CASE structure), and control the program flow from there.
    The OK_CODE field can have a different name on each screen. However, common practice is to use the same name for the field on each screen of an ABAP program. You then only need one field in the ABAP program, with the same name, into which the function code is placed, and from which you can read it.
    Refer the link:
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/801e61454211d189710000e8322d00/frameset.htm
    regards
    Anji

  • Can not access cache in entry processor

    Why the cache where the entry object exists can not be accessed in entry processor?
    The calculation in entry processor will not always be one grid object operation.
    One object would be related to other objects.
    If we could not do such thing in entry processor, we have to process calculation outside of the entry processor. However, caculation out of grid would not be a very efficient way for generating result.
    Does anyone have good idea on this?

    Hi, Robert,
    I understood your meaning.
    Invocable is an alternative solution for processing data. Use it outside of entry-processor, no dead lock would happen.
    I paste piece of my code here. Following codes can not work properly. Just like you said, can not wait for result inside of entry-processor. My original purpose is that get "Nation" property from another data object. Now, I only can do it outside of entry-processor.
    public class UpdateFxProcessor extends AbstractProcessor {
         public Object process(Entry entry) {
              HtWsMeasuresUsdFx hfx = (HtWsMeasuresUsdFx)entry.getValue();
         InvocationService service = (InvocationService)
    CacheFactory.getConfigurableCacheFactory()
    .ensureService("InvocationService");
         Map map = service.query(new NationInvocable(hfx.getWsNationCode()), null);
         String nation= (String)map.get(service.getCluster().getLocalMember());
              hfx.setNation(nation);     
    // ... other logics for calculating hfx....
              return null;
    My data grid environment will store more than 10 million HtWsMeasuresUsdFx objects. I hope that calculation on these objects could be executed in parallel. Maybe I misunderstood the function of entry-processor. If we use Invocable outside of entry-processor, it is hard to control its calculation in parallel, isn't it?
    Best regards,
    Copper

  • My application can not connect to FMS2

    My application can not connect to FMS2
    hi,all, Some things block me. Who can you help me? I
    appreciate your support.
    Server: FMS 2.0
    Client : Flash 8 ,Flex 2.0.1
    I find Flash 8 code is fine. It can connect to FMS2 with on
    error. I can find connect show in FMS console.
    But I find AS3 codes can not connect to FMS2. Why? I am very
    puzzle...:-(
    Error messages is nse.info.code:NetConnection.Connect.Failed
    nse.info.level:error...help me please..Thank you very much.
    My codes below.
    ==========Flash 8 code =========
    stop();
    // Open connection to FlashCom
    client_nc = new NetConnection();
    // Handle status message
    client_nc.onStatus = function(info) {
    trace("Level: " + info.level + newline + "Code: " +
    info.code);
    client_nc.connect("rtmp://127.0.0.1/tutorial_text");
    // Initialize the typing stage
    TypingStage.text = "";
    // Create a remote shared object. client_nc.uri is the URI of
    the
    // NetConnection the shared object will use to connect to the
    // server. I.e., the one just created.
    text_so = SharedObject.getRemote("sharedtext", client_nc.uri,
    false);
    // The following is very important, nothing happens otherwise
    text_so.connect(client_nc);
    // Each time something changes in the shared object, the
    server
    // sends out a synchronization message. This onSync handler
    // updates the movie based on the information.
    text_so.onSync = function(list) {
    // Update the textArea in the typing stage with the latest
    // text from the shared object. The 'for' loop condition
    searches
    // through the list of changes, and the 'if' condition
    ensures
    // that we apply the relevant change only if someone other
    than
    // this client has changed the value.
    for ( var i = 0; i < list.length; i++ )
    if ( list.name == "textValue" && list.code !=
    "success")
    TypingStage.text = text_so.data.textValue;
    break;
    // Update the shared object every time the user types in new
    text
    TypingStage.onChanged = function()
    text_so.data.textValue = TypingStage.text;
    ===============Flex2
    代码如下====================
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" creati>
    <mx:Script>
    <![CDATA[
    import flash.net.*;
    import mx.controls.Alert;
    import flash.events.SyncEvent;
    private var client_nc:NetConnection;
    private var text_so:SharedObject;
    public function init():void
    flash.system.Security.allowDomain("
    http://127.0.0.1");
    rte.text = "";
    public function ioEvent(ioe:IOErrorEvent):void
    rte.text = rte.text+"/n"+" io:"+ioe.text;
    public function connectStatus(nse:NetStatusEvent):void
    //trace("Level: " + nse.info);
    rte.text = rte.text+"/n"+" nse.info.code:"+nse.info.code+"
    nse.info.level:"+nse.info.level;
    public function click():void
    client_nc = new NetConnection();
    client_nc.addEventListener(NetStatusEvent.NET_STATUS
    ,connectStatus);
    client_nc.addEventListener(IOErrorEvent.IO_ERROR,ioEvent);
    rte.text = "connect rtmp://127.0.0.1/tutorial_text ";
    client_nc.connect("rtmp://127.0.0.1/tutorial_text");
    ///tutorial_text
    text_so = SharedObject.getRemote("sharedtext",
    client_nc.uri, false);
    text_so.addEventListener(SyncEvent.SYNC,syncShareObject);
    text_so.connect(client_nc);
    public function syncShareObject(se:SyncEvent ):void
    var list:Array = se.changeList;
    var i:int;
    for (i = 0; i < list.length; i++ ){
    if ( list.name == "textValue" && list.code !=
    "success"){
    rte.text = text_so.data.textValue;
    break;
    public function changeRTE():void
    text_so.data.textValue = rte.text;
    public function disconnect():void{
    if (client_nc.connected){
    client_nc.close();
    ]]>
    </mx:Script>
    <mx:RichTextEditor id="rte" x="23" y="19" width="626"
    height="337" cornerRadius="20" change="changeRTE()">
    </mx:RichTextEditor>
    <mx:Button x="105" y="381" label="Start Connection"
    width="204" click="click()"/>
    <mx:Button x="317" y="381" label="Disconnect" width="209"
    click="disconnect()"/>
    </mx:Application>

    Action Script uses AMF3 format to communicate. However, Flash
    Media Server 2 only understands the AMF0 format.....
    Do the following:
    var client_nc:NetConnection = new NetConnection();
    client_nc.objectEncoding = flash.net.ObjectEncoding.AMF0;
    client_nc.connect("rtmp:/FLEX");
    This should connect .... however, you might run into other
    issues like me... I am having issues with NetStream after that ...
    however, let me know if this works ...

  • Can not start frame 11

    dear all
    i don't know what is wrong with my frame 11. until yesterday i had frame 10, 11 and 12 installed parallel on my win7 x64 machine. all of a sudden the creative cloud thingy came up and prompted me to login, etc. after that frame 10-12 didn't work anymore. i received the cryptic internal errors. happend already couple of times, i then ran the installers again and frame 10 & 12 worked after that. only frame 11 is still not functioning. i can start it, select wether structured or unstructred and that's it. it pops up quickly in the taskmanager but then disappears. latest updates are applied. deleting local maker.ini just brings the dialogue again. no effect after i made a decision. frame 11 refuses to start.
    i then deleted all frames and cleansed the registry by hand (i know what i am doing!), tried to reinstall just frame 11 - no success.
    now i start to wonder if my installer is corrupt somehow. can not find frame 11 or TCS4 anywhere to download. it's all gone.
    any clues or hints are highly appreciated.
    thanks.
    chris.

    According to any number of prior responses to questions like these, the answer is: "Call Adobe Support. Support calls regarding installation issues are free."

  • Function codes in BADI

    HI,
    I am learning BADI's. while going thru a document i got strucked with this can anyone explain me and how to do this.
    1)"*Function codes can be entered for a BADI *for the corresponding menu entries in the user interface definition"
    2) "Subscreen areas can be entered for a BADI. Screen enhancements can be implemented for these in the form of subscreen screens".

    hi,
    Function codes in Menu exits i.e Menu exits are the exits for adding new menu's to the standard transaction.
    when you check with any badi that provide menu exits it has function code like 'CU1', 'CU2',  and so on.
    for that particular fctcode you can add your own functionality,so that it appear for that transaction.
    reward points if useful,
    siri

  • Language recognition: why can I only select english for transcription?

    I found an introductory video explaining language recognition. there the user could transcribe audio metadata and select different languages. when I do this, all lanugages apart from English (USA) are grey and can not be selected. Why could this be? Just a question of downloading a language plugin?
    Thank you in advance,
    Niklas

    I can't replicate this. It gives me a number of options, German, US, UK, Korean, Italian etc. and none are greyed out.
    AFAIK there is no plugin to install. IIRC you have the opportunity to select the transcription languages on installation. In that case a reinstall may help.

  • New I pot touch can not be synchronized by itunes

    Hello
    My dauthers new I pot touch is regognized by itunes but can not be synchronized with it. Under Device the I pot touch is listed but can not be opened. Neither can the i pot synchronisation be selected in the menue. The problem could be with a wrong initialisation at the beginning but I don't know how to reset ipot touch and start again.
    thanks for the support

    When I open itunes and connect the ipot than I see the ipot as "ipot touch" in the device list. But I can not choose any tab or so on it. I assume it was wrongly initialized or the synchronisation features have been deactived. When I click on that ipot in the itunes there is nothing there to choose. When I go to the main menu the synchronisation feature can not be selected either. I guess I should reinstal the ipot again but don't know how to completely reset it.  -- thanks

  • I can not compile successfully!

    I use jmf2.1.1 to capture audio data from mic,but the following code can not be complie successfully.
    I have added the jmf.jar and sound.jar in the classpath env variable.
    please help me with this problem thanks.
    Vector deviceList = CaptureDeviceManager.getDeviceList(new AudioFormat("linear", 44100, 16, 2));
    "MediaPlayer.java": Error #: 300 : constructor AudioFormat(java.lang.String, int, int, int) not found in class javax.sound.sampled.AudioFormat at line 110, column 64

    Thanks for your reply!
    I have tried many times as your instruction,
    but the error still occurs.I have also checked the constructor of the class
    AudioFormat ,the parameters are (String,double,int,int).
    I have inported the packages needed as follow.Could you please find the problem for me .Thanks again.
    import javax.media.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.sound.sampled.*;

Maybe you are looking for

  • New iMac as second display for MacBook Pro not working

    I just bought the new thin 2012 27" iMac as a replacement to the last model I had. I want to use the iMac as a second display for my 2012 MacBook Pro. I have a Mini Display Port to Mini Display Port cable that used to work with my previous setup and

  • How to store the data instead of memoryengine to database when use XML file

    Hi Experts, I have doubt which is into XML to database data transfer. While transferring the data from XML to database the tables will be store in memory for the xml files, my aim is instead of storing this in memory engine is there any way to store

  • How to Determine Text File Encoding is UNICODE

    Hi Gurus, How to determine whether the file is a UNICODE format or not? I have the file stored as a BLOB column in a table Thanks, Sombit

  • Using BEA Weblogic Portal with Sun Access Manager

    Hello all, I am wondering if anyone has had experience with using Weblogic Portal (versions 8.1 or 9.2) with Sun's Access Manager tool (part of the Identity Management suite). In particular, I would like to know what access control tasks were perform

  • IPhone 5 on Cincinnati Bell Wireless

    I just got an iPhone 5 model MD654LL/A and I'm using it on Cincinnati bell. I can only receive calls and text and I only have Internet when connected to Wifi, when I'm not connected to wifi the phone just has a E instead of the 3G. I was wondering if