How to define on cell-level: ready for input or not?

Hello,
we would like to define on each cell of a table if it's ready for input or not.
Not only rows or columns should be marked as input-ready but single cells.
E.g. The user should be able to say A2 is ready for input, B3 ist not.
Thank you,
Daniel

Hi Daniel,
I can not imagine such a function.
What is possible, is that you define the data slices according to what you want to be able to enter. so if you include several char with certain values in your data slices, your mask in the end will have the look, that certail cells are not ready for input.
Unfortunatly you can not set data slices on key figures, so maybe you need an account model.
regards
Cornelia

Similar Messages

  • Cl_salv_table - How to set grid ready for input

    Hi,
    I am using the class "cl_salv_table" on a 6.40 system to display an ALV grid.  How can I set the grid cells are ready for input/editing? 
    ( Something similar to slis_layout_alv-edit parameter  
    use in the REUSE_ALV_GRID_DISPLAY function )
    I have looked at the demo programs SALV_TEST_TABLE* and
    SALV_DEMO_TABLE*.  Unless I am blind I cannot find a way.
    Any suggestions?
    Lukas
    Message was edited by: van vuuren lukas

    Hi,
    thanks for the reply,
    I do not call the SET_TABLE_FOR_FIRST_DISPLAY,
    as far as I can tell SALV does not require this. 
    Here is in short  what my program looks like:
    data: lr_salvgrid  type ref to cl_salv_table,
          lr_columns type ref to cl_salv_columns_table,
          lr_column  type ref to cl_salv_column,
          gt_matdoc type mb_mkpf.
    I call method  cl_salv_table=>factory to get a reference to my itab:
            call method cl_salv_table=>factory
              exporting
                list_display = if_salv_c_bool_sap=>false
              importing
                r_salv_table = lr_salvgrid
              changing
                t_table      = gt_matdoc.
    Then for fieldcatalogue:
    i.e. hide columns etc
      lr_columns = lr_salvgrid->get_columns( ).
      lr_columns->set_optimize( abap_true ).
      lr_column = lr_columns->get_column( 'MANDT' ). 
      lr_column->set_visible( abap_false ).
    Then to display:
      lr_salvgrid->display( ).
    I would have thought that the edit parameter would be somewhere in the fieldcat ( in class CL_SALV_COLUMN )
    but I cannot find it there.  Everything else like text/edit mask/currency/visible etc is here but not edit.

  • Bex variable ready for input not displayed in webi

    Hi,
    I created bex query with some variables.
    Variables are defined as "optional" but "ready for input". On productive system the prompts are all displayed, but when i transported the webi report to dev, some prompts are not displayed.
    we are on BW 7.31 and BO 4.0. I also tried with BO 4.1. but the problem is the same.
    I have no idea what's wrong here! Attached you can find some screenshots on my current settings.
    thanks,
    Katharina

    Hi,
    yes the reports are based on BICS and I moved them from prod to dev.
    I already checked, the query panel does not show these variables!
    I copied query and saved under new name, and i also created a new webi report upon this query, but some variables ready for input are still not displayed.
    Regards,
    Katharina

  • How to define our own selection screen for logical database  in abap-hr?

    Hi Friends,
    Can u please help me
    How to define your own selection screens for  logical database.
    we use to do like(goto->attributes-HRReportcatagerious ).but How to desin using  customer table like t599c, t599f and how to add to my logical database?
    Thanks in advance
    charan

    check out this online help
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/dba65c35c111d1829f0000e829fbfe/frameset.htm
    Regards
    Raja

  • How do I save a PDF ready for print. I have a problem with the fonts. The fonts are blurry after pri

    How do I save a PDF ready for print. I have a problem with the fonts. The fonts are blurry after printing. There is a trick in saving PDF.

    Hi el_giclee,
    Important to note from the beginning is that when you create your Photoshop document make sure you chose 300 Pixels/inch as your resolution.
    I'm interested in seeing your Save Adobe PDF dialog box after you choose to save the PDF.
    Could you post a screenshot of this dialog box with the Compression menu selected on the left side?
    It's a good idea to select High Quality Print or Press Quality in the Adobe PDF Preset menu at the top of this box. It will automatically select the best default settings for a printed piece.
    Michael

  • How to hide a varible that is ready for input and personalized for a value

    Hi All,
    Is there anyway to hide a variable in variable screen selection which is ready for input and its personalized value is stored in the ODS.
    Any help greatly appreciated.
    Suresh.

    Hi Roberto,
    Is there anyway to hide that variable from the variable screen(with still option being selected as ready for input).I ried all the options such as replacemetn type & copy from another variable.Always it appears in the varaible screen.
    I don't want user to change the value of this variable.
    Cheers,
    Suresh.

  • Set specific rows in ALV grid ready for input

    Hi everyone,
      I have a question about how to set specific rows in ALV grid ready for input.
      I know that I can make some columns ready for input before the ALV displayed,but I have no idea how to make specific rows displayed in the ALV ready for input.

    Hello Aaron
    For editable columns we can use the fieldcatalog (LVC_S_FCAT-EDIT = 'X') but for rows you need to define editability on cell level.
    The required steps are documented in sample report BCALV_EDIT_02. Below I point out a few crucial points:
    *§1.Extend your output table for a field, e.g., CELLTAB, that holds
    *   information about the edit status of each cell for the
    *   corresponding row (the table type is SORTED!).
    DATA: BEGIN OF gt_outtab occurs 0.  "with header line
            include structure sflight.
    DATA: celltab type LVC_T_STYL.
    DATA: END OF gt_outtab.
    *§3.Provide the fieldname of the celltab field by using field
    *   STYLEFNAME of the layout structure.
       gs_layout-stylefname = 'CELLTAB'.
       CALL METHOD grid1->set_table_for_first_display
             EXPORTING i_structure_name = 'SFLIGHT'
                       is_layout        = gs_layout
             CHANGING  it_outtab        = gt_outtab[].
    Note: in the sample report only field SEATSMAX is editable. In your case you need
    to fill CELLTAB for all fields in a row.
    *§2.After selecting data, set edit status for each row in a loop
    *   according to field SEATSMAX.
      LOOP AT gt_outtab.
        l_index = sy-tabix.
        refresh lt_celltab.
        if gt_outtab-seatsmax ge 300.
            perform fill_celltab using 'RW'
                                 changing lt_celltab.
        else.
            perform fill_celltab using 'RO'
                                 changing lt_celltab.
        endif.
    *§2c.Copy your celltab to the celltab of the current row of gt_outtab.
        INSERT LINES OF lt_celltab INTO TABLE gt_outtab-celltab.
        MODIFY gt_outtab INDEX l_index.
      ENDLOOP.
    ENDFORM.                               " SELECT_DATA_AND_INIT_STYLE
    NOTE: LVC_T_STYL is a SORTED table type. Thus, take care that you are using the
    INSERT ... INTO TABLE statement and not APPEND (because then nothing is appended
    to the CELLTAB itab).
      IF p_mode EQ 'RW'.
    *§2a.Use attribute CL_GUI_ALV_GRID=>MC_STYLE_ENABLED to set a cell
    *    to status "editable".
        l_mode = cl_gui_alv_grid=>mc_style_enabled.
      ELSE. "p_mode eq 'RO'
    *§2b.Use attribute CL_GUI_ALV_GRID=>MC_STYLE_DISABLED to set a cell
    *    to status "non-editable".
        l_mode = cl_gui_alv_grid=>mc_style_disabled.
      ENDIF.
      ls_celltab-fieldname = 'SEATSMAX'.
      ls_celltab-style = cl_gui_alv_grid=>mc_style_disabled.
      INSERT ls_celltab INTO TABLE pt_celltab.
    Regards
      Uwe

  • Input ready query - not ready for input

    I have created the following in IP:
    1. A multiprovider based on an actuals cube (Standard infocube) and a plan cube (realtime - data can be planned not loaded).
    2. An Aggregation level on the multiprovider - containing infoobjects: 0version, employee, WBS element, infoprovider, fiscal year, fiscal year variant, 0currency and 0amount.
    3. A filter on the following infoobjects: employee (=123456), wbs element(XX.XX.XXX.X), version (variable - mandatory; ready for input), fiscal year(2008) and fiscal year variant(XX).
    4. A planning function to copy from version 0 (actual) to version 866 (random Value - Master data exists).
    I have created a query on the multiprovider and set the query properties correctly. I have also created two restricted key figures as follows:
    1. Actual (Restricted by infoprovider = actual; version = 0; fy = 2007; fyvar = XX)
    2. Plan   (Restricted by infoprovider = plan  ; version = input-ready variable; fy = 2008; fyvar = XX)
    I have used all the infoobjects in the agg. level in the query. I am using the same version number (866) on the query selection screen as defined in the filter.
    When I run the query, I can see only the actuals line. The plan keyfigure is not ready for input (although keyfigure properties are set to "Data can be changed using user entries or planning functions).   
    What am I doing wrong which is preventing the plan keyfigure from opening up for planning?
    I have also tried to create an agg. level on the plan infocube with similar settings as above. When I run the query, I get a no data found result - which I think is right because there is no data in the planning cube.
    PS: When I use the wizard in the planning modeler the keyfigure (0amount) can be changed.

    Hi Avya,
    Use a filter on the 0currency, for a particular currency type. (if problem is: currency type keyfigures are not input ready)
    This will mak it input ready.
    **Reward Points for useful answers**
    Regards,
    Naveenan

  • Ready for Input Variables for Multiple Queries in I_T_VAR_RANGE

    Hi
    I created Web template which contains multiple views/queries. Two views/queries contain Ready for Input Variables. I have custeomer exit code for this Web template. I wrote code by using Ready for input variable which pass to customer exit code. But the variables which contain in two views/queries not appearing in I_T_VAR_RANGE. The two variables belongs to different views and I required those variables. please find below code:
        WHEN 'ZVBCUST'.
          LOOP AT i_t_var_range INTO w_var_range WHERE vnam = 'ZVAR1'. 
            g_soldto = w_var_range-low.
          ENDLOOP.
          LOOP AT i_t_var_range INTO w_var_range WHERE vnam = 'ZVAR2'
            g_zvbsshto = w_var_range-vnam.
            g_shipto = w_var_range-low.
          ENDLOOP.
    The above 'ZVAR1' is ready for input variable which belongs to one Query and below 'ZVAR2' is other ready for input variable which belongs to second query. I required these two at a time when customer exit variable 'ZVBCUST' executes.
    But in I_T_VAR_RANGE only one variable appears when I execute Web Template . Kindly help me in this regard
    Thanks
    luci

    Hi,
    First thing is to how you have defined your variable such as
    Customer exit or
    Replacement path or
    Manual input etc..
    If you want your variable filled through the exit select Customer Exit, then you have to look at the variable options such as Single value or range. According to your definition you have code as you defined such as wa_range-opt = 'BT' or 'EQ'.
    Next..
    In CMOD -> your project -> EXIT_SAPLRRS0_001 -> include 'ZXRSRU01' ->
    ISTEP = 1 -> before the variable pop up will be filled by the exit
    when 'your variable'
    your code
    ISTEP = 2 -> after the variable pop up i.e after running your selections, calculates the values for your variables after selection screen execution.
    when 'your varaible'
    your code
    ISTEP = 3 -> Validation purpose and message handling purpose
    when 'your variable'
    your code

  • Recon account ready for Input-Not possible to change during MIRO

    Hello
    We are on ECC 6.0
    System does not allow users to change Vendor Recon A/c during invoice verification through MIRO. Recon A/c field is greyed out under Details tab in MIRO.
    Recon Account has been declared as Ready for Input and Alternative Recon A/c has been mapped wrt GL A/c by assigning it an ID.
    However, i am able to change recon A/c during invoice booking through FB60 or F-43 t codes.
    What am i missing?
    Does sytem allow change of Recon A/c in MIRO? If yes, how?
    Thanks.
    Vimal

    Hi, check vendor rec. account for this Company code, then check Accounts Receivable and Accounts Payable-Business Transactions-Postings with Alternative Reconciliation Account-Define Alternative Reconciliation Accounts
    If there exists such Defining, so check may be Alternative account just for Aut.posting, or forbided for posting in this Currency

  • BADI Error: Field GOITEM-ACCT is not ready for input ? HELP!

    I get this error message when testing my BADI in the MIGO Transaction.  The BADI is the MB_MIGO_BADI.  It is from the Line_modify method.  Here is the entrie message:
    BAdI: Field GOITEM-ZZREG_ACCT is not ready for input. (Change is not copied over)
    Message no. MIGO050
    Diagnosis
    The contents of field GOITEM-ZZREG_ACCT have been changed in BAdI MB_MIGO_BADI (method LINE_MODIFY). The field, however, is not ready for input, so the change cannot be copied.
    In method LINE_MODIFY, only the contents of fields that are ready for input can be changed.
    The field is defined correctly in the screen as an input/output field - so it does not relate to that.
    HELP!!!!!

    Yes - I have reviewed all of the code and I never do any modify to the screen attributes of a field - although it sure acts like it.  The screen lets me put in data and it stays there up until it finishes the method line_modify.  The error is when i press return after i enter the field- it completes the BADI method and then goes to the main program and does field validation and always comes back with some internal table field called "work" with a value of 0 and it should be a value of 6.
    Thanks! 
    Scott

  • Where is the "not ready for input" field stored in SAP?

    Hi,
    In the tcode CT04, the 'Additional Data' tab has a field called 'not ready for input'. I want to find this value in a table. I thought it was in CABN-ATINP but this does not seem to be populated all the time.
    e.g.
    1. characteristic ABCDE has the value checked in CT04 but there is no entry in CABN-ATINP
    2. characteristic ZYXWV has the value checked in CT04 and there is an entry in CABN-ATINP
    Does anyone know:
    a) why?
    b) how to find the value for point 1 above?
    Thanks,
    Kroc.

    obviously, that is wrong.
    It is true that the ATINP value for batches which have a reference field in CT04 does not ever change but having a reference field does not necessarily mean that it should be display mode.
    Anyone know why the reference field stops the ATINP field update?
    And how does the program know that it should be 'not ready for input' when the ATINP flag is not changed?
    Thanks.

  • Interactive form within WebDynpro not ready for input

    Hi,
    After building a simple interactive form with the form builder, I want to fill in the fields in the adobe form. The form is included in a ABAP web dynpro application as Interactive form and the enabled property is checked. But the form fields are still read only and not ready for input.
    The interactive form uses ZCI layout and an ABAP dictionary based interface. The menu item include scripting was hit and I can not fill in the fields. Instead I only see read only fields. When previewing the form in the forms designer, the fields are open.
    Please assist.
    Regards
    Ravikumar

    hi Ravikumar,
    The following code fragment shows how this input readiness can be set up:
    method WDDOMODIFYVIEW.
    data: LR_INTERACTIVE_FORM type ref to CL_WD_INTERACTIVE_FORM,
    LR_METHOD_HANDLER type ref to IF_WD_IACTIVE_FORM_METHOD_HNDL.
    check first_time = abap_true.
    LR_INTERACTIVE_FORM ?= VIEW->GET_ELEMENT(u2018INTERACTIVE_FORM_1u2019).
    LR_METHOD_HANDLER ?= LR_INTERACTIVE_FORM->_METHOD_HANDLER.
    LR_METHOD_HANDLER->SET_LEGACY_EDITING_ENABLED( abap_true ).
    endmethod.
    Hope this helps.

  • Authorization Variables ready for input

    I have a problem whit a variable, is an authorization variable and ready for input, but when i use this variable and clean the input box this variable don't works as an authorization variable...
    I hope that this variable return all the values where the user has authorization but it return ALL values and not only where the user is authorized...
    How can I make that a blank variable gives me all the values the user is authorized to see?
    Hope someone can help me!
    Best regards
    Enrique

    Steps that you may be missing:
    1. Make the info object authorization relevent. You make this setting in info object maintenance screen -RSA1 .
    2. Create a authorization objects in RSSM for this object.
    3. Maintain values for this object in PFCG for the role that you  assign  to the users.
    After that, run the query.
    Ravi Thothadri

  • Hidden variable but ready for Input - BEx

    Hello everyone,
    I wanted to know if it's possible to create a variable for selection screen in the BEx which is hidden but still ready for input.
    I guess that if I uncheck the option "Variable is Ready for Input" in the variable properties in BEx, I will have a variable which is hidden and can be manipulated in a SAP Exit function module. I don't want to manipulate the variable there but send a value through RRI to this report (where the Variable should be hidden). If I uncheck the option "Variable is Ready for Input" I cannot set this in the RRI settings because I don't see the variable since it is not ready for input
    Do you know a possible solution for this?
    Thanks,
    Carlos

    Hello Bob,
    Thanks for your fast answer. I got what you said, but it is not as simple as it is, for that reason I will describe the scenario a little bit more:
    Source query has:
    Variable: Key Date (Single, mandatory) -> InfoObject /APC/ACCTRADAT
    Key date means "all before that date" (defined in the extractor).
    Target query has:
    Variable: Transaction Date (selection Option, optional) -> InfoObject /APC/ACCTRADAT
    Transaction Date means "only that date" or "from one date to other date".
    If I send the date through RRI, the target query will think that the value it is getting is a single value, but it's actually a range (all before that date).
    For that reason I created a new InfoObject called Key Date for Recon. (/APC/RCTKEYDAT) with a single optional variable. I don't want to show the InfoObject as a free char because it makes no sence on it. So, depending on the variable I get, the extractor will decide either if it is a range or a single value. Any ideas?
    Regards,
    Carlos

Maybe you are looking for

  • Help! My email push isn't working even when I hit the refresh button!

    Please help me. I got a Palm Pixi in December. It worked perfectly until about 2 weeks ago. It suddenly stopped pushing my email, including when I hit the refresh button! I spent many many hours on the phone with both verizon and palm, we tried start

  • .jpg gone bad in a file????wont do pdf!!!

    Today I was trying do make a pdf out of a catalogue I`m working on, but it cancels it midway and says that one of the jpg files is bad. Well, this is 40 pages of nothing but pictures, so how do I find out which is the bad one?

  • Mac OS erase and reinstall and Boot Camp

    Greetings, I am totally confused. I need to wipe my OS side and I am unsure how this will affect my windows boot camp. One complication is that I do not have my boot camp CD with me nor will I be able to get it any time soon. SO, if I wipe my Mac OS,

  • The nVidia 258.96 drivers crash Photoshop CS4 (64bit)

    I have the latest nVidia drivers installed yesterday and I noticed that PS CS4 crashes within 15minutes of use (by crashing the display driver and then crashing itself). Any solutions for this issue? I am an advanced user (11years of PC usage and IT-

  • Populating an ArrayList of ArrayList

    Hi, Could anyone pls help me with this one. I'm trying with the following code to populate an ArrayList (alDataRows) which contain several ArrayLists(alCols). variable rsResultSet is the resultset from which I want to populate this arraylist and vari