One of the field is disabled(input not possible) after upgrade in FPE1

Hi ABAP Gurus,
  I am working on FPE1 Transaction Code and i just find out that after upgrade one of the field  on screen is not input possible but before upgrade we have that field as input/output  possible .
so now we want same functionality what we have before . so which path do i need to follow because its standard screen .
any suggestion is appreciated .
Thanks,
Jack
Edited by: jack troy on Jun 24, 2009 7:36 PM

Hi Ajay,
Thanks for your reply . My question is can we enable field for input using transaction variant .because if i go to screen layout for FPE1 ,  i can see that this field is only output possible .
Thanks,
Jack

Similar Messages

  • Wecam and USB mic input not working after upgrade to Lion

    The audio inputs (micraphones) all show up in Syetem Preferences but if I talk into the microfones (on USB soundcard/Trust Webcam) no levels are  being shown, I have tried clicking on eatch input it turh but n luck.
    I am getting the impresion Lion broke lots of audio atuff so dont hold up mutch hope for a solution (Except upgrading to Snow Leperd).
    Any ideas,
    Ben

    Beginning with Leopard, Mac OS X supports the so-called UVC web-cameras, you do not need any driver for them. I have just bought a small, pretty and cheap one, Logitech C110.
    My older Genius 1321 is unfortunately unusable from SL onwards, but works with Tiger and Leopard. It is not UVC, and drivers are not available any more.
    conclusion: if your camera is not UVC will not work via ‘plug-and-use’, you need an updated driver, check with the manufacturer. If they do not offer any, buy a UVC one, they are very cheap, but you do not need anything. The one I have just bought works fine, and also has internal mic.

  • Form field no longer allows pinpoint placement after upgrade to Adobe 10.1.2

    We use Adobe to make all of our forms.   Placing a form field Checkbox, Text Field, or other requires placement of the field where we need it.   After upgrading to 10.1.2 the form field has a mind of it's own and no longer allows placement of the form field where you need it.  Could it be that more video memory is needed.  

    I found a solution...
    In main.cf I've change the line
    mailbox_transport =
    with
    mailbox_transport = dovecot
    I also found a second similar line which I removed.

  • I have a problem with my iPhone 5 stopped working the sleep / power and simultaneously refused to obey the HOME button. I can not use either one or the other. I can not enable or disable the device, display lights up when you plug the charger. same displa

    I have a problem with my iPhone 5 stopped working the sleep / power and simultaneously refused to obey the HOME button. I can not use either one or the other. I can not enable or disable the device, display lights up when you plug the charger. same display works fine as it is surprising. or maybe someone knows what is the reason for this? is there any way to solve this problem?

    More than likely its a hardware issue, I have never encountered such a problem and best bet is to just go get it replaced. If you have insurance on your device apple will replace it as long as there was no water damage, if you dont have insurance they will charge $200 more or less. Hope you get it fixed

  • Date differences if one of the field not presenting

    Hi All,
    I have two attributes start date and end. I have created formula replacement variable.
    some  times one of the field coming as blank, in such acase system writing some garbage value but i need blank.
    How to resolve this issue.
    Reagrds,
    J B

    Hi,
    You can create a new formula in query designer with a condition such that date difference doesn't fall in the invalid value. If it that invalid value put the result as '0'.
    http://help.sap.com/saphelp_nw04/helpdata/en/23/17f13a2f160f28e10000000a114084/frameset.htm
    If the output is showing as '0' for the invalid values then in the query properties select the Display zeroes as Do Not Display Zeroes.
    http://help.sap.com/saphelp_nw04/helpdata/en/1e/99ea3bd7896f58e10000000a11402f/frameset.htm
    Hope this helps.........
    Rgs,
    Ravikanth.

  • Make my field as input not possible.....

    Hi all...
    in module pool screen.....
        How can i make one input field as "input not possible" for one perticuler condition met??
    ex:   iam having one input field in my screen.... so i can enter the values for it.... similer ly iam also having another one... here if i enter value in the second one and push the pushbotton to do some caluclation part.
    then my first input field has to appear but in no input possible mode...
    Thank you,
    Naveen

    Hi,
    You said you have two fields on your screen and a pushbutton...
    So You can do like this....
    if sy-datar = 'X'.
    loop at screen.
    if screen-name eq 'FIELD1'.
    screen-input = 0.
    endif.
    Modify screen.
    Endloop.
    Endif.
    Or you can also do like this....
    If sy-ucomm = 'PUSHBUTTON'.
    loop at screen.
    if screen-name eq 'FIELD1'.
    screen-input = 0.
    endif.
    Modify screen.
    Endloop.
    Endif.
    here PUSHBUTTON is the Fcode for the Pushbutton and FIELD1 is the screen name of the field which has to get diabled.
    Reward if helpful.
    Regards,
    Syed

  • To replace values of one of the field in the database table

    How to replace values of one of the field in the database table with a new values? Pls help to solve

    Hi
    You can use the UPDATE command to update one of the field value in a table
    see the UPDATE syntax and use it
    but in real time you should not do like this
    Regards
    Anji

  • Additional validation for one of the fields in down payment request

    Hi All ,
      I have a requirement for doing some additional validation for one of the fields in down payment request
    (F-47) .
    I need to validate a field u2018Assignmentu2019 in the down payment request .
    Here, assignment field is mandatory and user has to enter a valid contract number. Then we have to  validate the contract number entered against the tracking number field (BEDNR) in EKPO table corresponding to the vendor.
    If the contract number entered is incorrect, then system displays a message with the valid contract number. The user can modify the assignment field with this contract number. Once the field is modified, system once again validates whether the contract number entered is valid.
    Can you please provide me your valuable inputs how to achieve this.
    Regards,
    Tripti.

    Hi Vishal ,
      Thanks for your reply. I tried searching for  them but couldn't find any.
    Regards,
    Tripti.

  • How to keep the field open for input with error message in report program

    Hi,
      Need a help in solving the below issue.
    "How to keep the field open for input with error message in report program"
    Regards,
    C.Shasiraj.

    Hi...
    you have to use the event:
    <b>AT SELECTION-SCREEN ON <FIELD> EVENT.</b>
    u have to give an error message in this event.
    Consider the following <b>Example:</b>
    <b>PARAMETERS : NUMBER TYPE I.
    AT SELECTION-SCREEN ON NUMBER.
      IF NUMBER = 10.
        MESSAGE 'Number vakue is 10' TYPE 'E'.
      ENDIF.
    START-OF-SELECTION.
      WRITE NUMBER.
    </b>
    in this if u give the value of number = 10, it will not proceed further, if u give some other value other than 10 you will proceed further...
    Execute this program once u will understand....
    also Consider the following links :
    <b>Regarding events:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a237d9b511d1950e0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a23ad9b511d1950e0000e8353423/frameset.htm
    <b>Regarding messages:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    This is very useful.......
    Reward points if useful....
    Suresh....

  • Checkbox as one of the field in the internal table in the list

    Hi,
    I have a requirement of processing the certain records of the internal table for which checkboxes are selected in the list.
    The selected records need to be updated in the custom table and the unselected records need to be ignored.
    I have created the PF status and the application tool bar and a button on the tool bar.
    Then when the report is executed the list is displayed with the records with one of the field as a checkbox.
    At user-command.
    Then in the at user-command handling the button click event.
    I want to know which records are been selected and which are not.
    If some one knows please let me know.
    Thanks
    S Patel

    This is exactly what you need to do:-
    PBO
    CREATE OBJECT g_custom_container
             EXPORTING container_name = g_container.
      CREATE OBJECT g_grid
             EXPORTING i_parent = g_custom_container.
    Select data from your table
      PERFORM select_data CHANGING pt_outtab[].
    Build fieldcat
      PERFORM build_fieldcat CHANGING pt_fieldcat.
    Exclude standard buttons from the Toolbar
      PERFORM exclude_tb_functions CHANGING lt_exclude.
    Display output in ALV grid
      CALL METHOD g_grid->set_table_for_first_display
        EXPORTING
          it_toolbar_excluding = lt_exclude
        CHANGING
          it_fieldcatalog      = pt_fieldcat
          it_outtab            = pt_outtab[].
    PAI
    Get modified data
      CALL METHOD gv_grid->check_changed_data.
      LOOP AT gt_output INTO wa_output WHERE zzchkbox EQ c_x.
        MOVE-CORRESPONDING wa_output TO wa_selblk.
        APPEND wa_selblk TO lt_selblk.
      ENDLOOP.
    This method will give you all the records which are selected in the list output. Collect them and modify your custom table.
    Edited by: Rudresh Chand on Feb 28, 2010 8:26 AM

  • Disable Or Remove Extensions in Safari Open Safari. Click the Safari button, and then click Preferences. Under Preferences, click Extensions, and then do one of the following: To disable ALL extensions, click the toggle switch from ON to OFF. To disable a

    I FINALLY FOUND A WAY TO UNINSTALL "COUPON-DROP-DOWN" ANNOYING POP-UPS.
    Disable Or Remove Extensions in Safari
    Open Safari.
    Click the Safari button, and then click Preferences.
    Under Preferences, click Extensions, and then do one of the following:
    To disable ALL extensions, click the toggle switch from ON to OFF.
    To disable a single extension, click it, and then uncheck the Enable box.
    To remove a single extension, click it, and then click the Uninstall button.
    Click the X in the top right.

    Hello Wontsey & Welcome
    On 6-4-06 I installed Norton Internet Security 3.0.1 for Mac. I thought maybe my problem was related to the firewall part so I unistalled it and turned the Apple firewall that came with the computer back on.
    This did not help. In fact, when I try to open “Help” from the desktop menu the program opens and then immediately closes so I can’t access it.
    I hate to have to tell you this Norton is the problem, looking into uninstalling it, the uninstallers that came with it are not effective so no matter you do not have the CD/DVD go to their site to get the Uninstaller
    UseCocktail or OnyXto find the invisable files. Just follow Macjacks directive.
    This is covered in this Topic thread,abandoning Norton Internet Security see the files Macjack speaks of in the topic thread. If you have questions post in the same forum a new topic this thread is archive, click on the link and then click"back to topic list". This is why i first came to Apple discussions, to get help with the mess Norton can make on Panther and found help as you will. It is not a Safari issue per say, rather a Norton problem.
    Best of luck.
    Regards; )
    Eme~

  • HT204053 i have two apple id's and id like to combine them to one of the accounts in order to not lose contacts. how do i do that? help...

    i have two apple id's and id like to combine them to one of the accounts in order to not lose contacts. how do i do that? help...

    It is not possible to merge AppleID accounts...once established they stay independent.

  • One of the specified disk images could not be opened

    I cannot believe how instable my system is. I switched to Mac to get a reliable system, but I cannot do without Windows entirely, hence my heavy use of VPC.
    Today I got the small grey screen "You need to restart your computer". I was running VPC at the time. All apps were closed except Windows Explorer (the file system). The cause was merely unplugging my broadband connection. Wow!
    On rebooting VPC I got:
    "One of the specified disk images could not be opened. The disk image file is not the correct file type or uses a file format that is unsupported by this version of Virtual PC."
    I "detached" my "drives" 2+3, which were pointing to my Drive2.vhdp and Drive3.vhdp data "drives" and tried again. No luck.
    Drive 1 was pointing to Disk1.vhdp, which is a part of my Windows 2000.vpc package. I don't believe that it was pointing there before the crash.
    # side note #
    (The Windows 2000.vpc package is an old installation that I don't use but have not deleted. I currently use one called: "Windows 2000 copy 1-011105") which might or might not be a copy of "Windows 2000.vpc." I've had so many problems, it's hard to say.
    I then tried and successfully detached the Disk1.vhdp and received a warning:
    "The hard drive data previously used by Drive 1 is no longer contained in this PC document. The data has been moved to a separate Virtual Hard Drive Document "Windows 2000 copy 1-011105 Disk1.vhdp".
    On examining the above package I find:
    BaseDrive.vhd 14.45GB (size about right) dated last night when I last closed VPC
    MainPackageFile Alias
    UndoDrive1.vud dated at the time of the problems.
    On examining my "Windows 2000 copy 1-011105.vpc7 I find:
    Configuration.plist
    IconCache
    MainPackageFile Alias
    StartMenu.plist
    Do you have a suggestion as to how I can rescue my above mentioned BaseDrive.vhd please? This is more recent than my last back-up.
    Many thanks in advance.

    Problem solved.

  • How to get the Output File Name as One of the Field Value From Payload

    Hi All,
    I want to get the Output file name as one of the Field value from payload.
    Example:
    Source XML
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:MT_TEST xmlns:ns0="http://sample.com">
    - <Header>
      <NAME>Bopanna</NAME>
      </Header>
      </ns0:MT_TEST>
    I want to get the Output file name as " Bopanna.xml"
    Please suggest me on this.
    Regards
    Bopanna

    Hi,
    There are couple of links already available for this. Just for info see the below details,
    The Output file name could be used from the field value of payload. For this you need to use the UDF DynamicFile name with below code,
    //       Description: Function to create dynamic Filename
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File" , "FileName");
    conf.put(key,a);
    return "";
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File" , "FileName");
    conf.put(key,a);
    return "";
    With this udf map it with the MessageType as
    (File Name field from Payload) > DynamicFileConfiguration>MTReceiver
    Thanks
    Swarup

  • Change of costing in mm2 (the field is disabled) -(standard price)

    Hi Gurus
    change of costing in mm2 (the field is disabled) -(standard price).
    how to change the standard price ?
    is there any thing like standard TC.
    what is consting run?
    Please let me know any in puts?
    Thanks
    Greg

    Hi
    You need to go through the following transactions:
    CK74N - Create Additive Costs.
    CK11n - Create Material Costs.
    Then the field gets updated.
    Please let me know if you need more details.
    If you find this information useful or allows you to close the ticket or points you in right direction, please award points.
    Thanks,
    Ramesh

Maybe you are looking for

  • Display error after boot

    I'm having an issue where the display fails after boot, and displays only a fixed noise pattern. The screen looks completely normal through POST, GRUB, and when initially loading the kernel, when the display is still in a text mode. After that, the s

  • How to display xml to html using xsl?

    hi all...may i know how to display xml to html page? i ve included <xsl:output method="html" indent="yes" /> inside my xsl file. i clicked on output.xml file and everything is displayed correctly but the format is xml instead of html. is there anyway

  • Adding invitees to iCal event takes forever...

    Since I upgraded to Snow Leopard, adding an invitee to a calendar event takes 30-40 seconds. I start typing a name, get the spinning beachball, and thirty seconds later get a list of matching contacts from Address Book. Thirty or forty seconds is the

  • Recovery Media for windows 7 on Sat pro l450-ez1542

    The detailed specs say this laptop should have come with the recovery media in the box for windows 7. It was preloaded with 7 but downgraded to XP. I want windows 7 but there was no disk in the box. I have contacted tech support several times and hav

  • Can't activation, in the screen show message device unknown

    hi all, i have iphone 5 but can't use because activation error. my iphone 5 now installed ios 7.0.2 but can't activation, in the screen show message device unknown. please help. thanks