Project Definition field to be editable mode.

Hi Experts,
we have uploaded the open projects with bdc in to production.
Project Definition field for all the clients are i  editable mode.
But only in production client,t only project definition field is display mode. rest of all the fields are in editable mode in the same client.
we have not mentained any controls for the above.
thanks for sharing in advance, since it is emergency.
regards,

Check field control settings fro Proejct defination filed and infulences.
With Regards
Nitin P.

Similar Messages

  • Issue in CJ20N tcode for project definition field

    Hi guys,
    After the project definition is created in the system, I have executed the transaction code and when I clicked on change icon(toggle button which is available in the application toolbar) the project definition field is in edit mode. This should not happen at all.
    Kindly let me know your findings on this.
    Thanks & Regards,
    Rg

    Hi,
    For project defination internal number is assigned by system.
    When you saves's project then system allocate one number to project defination, you can view it,
    SE11 >>> table  PROJ >> Click on contents >>> execute,
    here you will get your project defination & number is assigned to project defination.
    kapil

  • How to make a field in non Editable mode

    Hi All:
    Now i created one form through wizard method this consists of following details
    Table name:T1
    Fields:No,Name
    here my requirement is how to make this "No" field in non editable mode after the insertion of the first record.

    You can make it a display item, you can disable the item, or you can set the update property to No. See the set_item_property in the Help documentation.

  • Item field to non-editable mode(display mode) in Purchase Order(ME22n).

    Hi SDN,
    Based on the Comany code i need to modify the item level fields like <b>Item, Account Assignment, Material</b> to non-editable mode(display mode) in Purchase Order(ME22n).
    So i modifed in the method MODIFY_SCREEN_TC_LINE of class CL_TABLE_VIEW_MM and set the value L_FIELD_STATUS = *  for the screen filed MEPO1211-EBELP. When i execute, the whole column changed to display mode and the empty rows filled with 0(zero). But i want only grey mode for the line items that are present for that PO but not for the whole column. So can any one guide me to do so. I am using 4.6c.
    Thanks in Advance
    Regards
    Basha

    Hi Ramesh,
    Normally you can change the currency field, after entering information in Data base's table, go to Detail's table and change the rate as you want, then directly choose your PO number.
    so the system accept the rate entered aven though the PO had another rate.
    Regards.

  • How to make the field in no edit mode

    Hi Experts,
    In the selection screen with default value I am giving one date field. But user wants it in NO EDIT mode. only display.. how to do this. pl. give me sample code. Thanks & Rewards.

    hi
    in at selection screen o/p event
    in the screen table
    make its input = 0
    tables : mara.
    SELECT-OPTIONS :  s_matnr for mara-matnr MODIF ID m default 1000 to 1002.
    AT SELECTION-SCREEN OUTPUT.
         loop at screen.
          if screen-group1 = 'M'.
            screen-input = 0.
           modify screen.
          endif.
        endloop.
    reward if helpful
    prasanth

  • Needs the table from which "project definition" field is to be extracted

    Hi,
    As a requirement in BW, we have to add the new field project definition in the BW cube 0COOM_C02(description of the cube:- CO-OM: Costs and Allocations Project (Delta Extraction)).For this, we have to add the same in all the data sources related to this cube.
    Data sources under this cube are:
    0CO_OM_CCA_9 (Cost Centers: Actual Costs Through Delta Extraction)
    Take any one of the data source and search that in the R/3 side tcode RSA6, double click and you will find the entire structure (fields) for that data source.Double click the extract structure appearing above it to find the technical details of each field.
    Now we have to add the field project definition in the data source.For extracting the same, we have to write the logic which will extract the value of project field from a table.
    We dont have any problem in writing the code but
    Our requirement is that during coding, from which table we should extract the value ? and also on what basis?(means what should be the selecting criteria for populating that field) .
    If you want any information on these data sources, do reply me.
    Thanking you in advance,
    Tarun Brijwani.

    The cube is related to module
    Financials Management & Controlling----->Controlling----->Overhead Cost Controlling

  • To make a field in non editable mode

    hi all,
    I have a requirement. In which i want a field to be in display mode.
    i want the user to select the data into the field only from the f4 option and not to entre manually.
    How can i code this. this is a report and not a module pool program.
    when i tried at selection screen even and loop at screen and input = 0 then i cant pass the value from f4 into the field.
    Kindly suggest.
    Regards & thanks
    vidhya

    Hi VIdya,
    use AT SELECTION-SCREEN ON VALUE-REQUEST Event.
    in the CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
    *   DDIC_STRUCTURE         = ' '      " Pass remaining Values as usual !
        retfield               = retfield
    *   PVALKEY                = ' '
    *   DYNPPROG               = ' '
    *   DYNPNR                 = ' '
    *   DYNPROFIELD            = ' '
    *   STEPL                  = 0
    *   WINDOW_TITLE           = WINDOW_TITLE
    *   VALUE                  = ' '
    *   VALUE_ORG              = 'S'
    *   MULTIPLE_CHOICE        = ' '
       DISPLAY                = ' F'  " Here Passing F forces the F4 Help for Display Field.
    *   CALLBACK_PROGRAM       = ' '
    *   CALLBACK_FORM          = ' '
    *   MARK_TAB               = MARK_TAB
    * IMPORTING
    *   USER_RESET             = USER_RESET
      TABLES
        value_tab              = value_tab
    *   FIELD_TAB              = FIELD_TAB
    *   RETURN_TAB             = RETURN_TAB
    *   DYNPFLD_MAPPING        = DYNPFLD_MAPPING
    * EXCEPTIONS
    *   PARAMETER_ERROR        = 1
    *   NO_VALUES_FOUND        = 2
    *   OTHERS                 = 3
    Hope this simple advice solves your problem
    Cheerz
    Ram

  • Editing Project Definition

    Hi experts,
    My client needs project definition field should only be displayed(Not editable) once project status becomes'Released'.
    How would I do this?
    Regards,
    Laxminarsimha

    Hi,
    If the requirement is not to allow change in proj def once the project definition is released then try following
    1) It can achieved through small development.
    2) Use BAdi BUS2001--- with the help of ABAPer write an implementation.
    3) Use BAPI_BUS2001_GET_STATUS and pass Project definition as input. Output will be system status. If it is released ( in background it will be stored as I0002) than check value of PROJ : PSPID same as input else throw an error " Change in proj def name not allowed after release".
    4) Also exits available in validations--- can explore same. However logic for the code can be as xplained above.
    I donn think it can be possible by just customizing. I verifed in Field selection criteria for Project definition....system status is not in infulencing criteria.
    Post ur observations after u try as advised.
    Thanks
    Saikishore Ganga.

  • ALV Grid fields from editable to non-editable mode

    Hi,
    I am displaying my data through ALV Grid. In my grid the non-key fields are in editable mode.
    When I edit any of the editable fields and place the cursor on other field the field which I have edited should become disable(non-editable). Again if I want to edit the same field which is now in non-editable mode should again change to editable mode when the cursor is placed on it.
    Thanks & Regards,
    Adithya M.

    Hi Adithya,
    I am confused by your statement "place the cursor on other field the field which I have edited should become disable" -- are you stating that this is the requirement or what is currently happening with your program.  The way the edit fields should work by default is they are editable at all times unless you tell it otherwise. 
    If you are saying your requirement is to change the field to disabled once the field is edited (runtime change), first you want to handle the event on data changed then within your method of handling on data changed, you can disable the field from being edited by using cell styles and changing the value to disabled. 
    If you look at program BCALV_GRID_EDIT,
    You will find code where it disables the field for edit using Cell Style -- this will give you an idea how Cell Style controls editable fields and display fields:
            ls_cell-style  = cl_gui_alv_grid=>mc_style_enabled.
            ls_cell-maxlen = 4.
            ls_cell-fieldname = 'CARRNAME'.
            append ls_cell to gt_sflight-cell.
    This specific code will set the field disabled when the program is first exectued, in your case if you need to do this at run time, after someone edits the field, you need to implement handling the event on data changed, in the same program you will find:
    method handle_data_changed.                 
       perform data_changed using er_data_changed.
    endmethod.                     
    It is within this method that you can disable a field for editing.
    However, once it is disabled you will not get back into the handle_data_changed method.  I'm not sure I understand your statement "Again if I want to edit the same field which is now in non-editable mode should again change to editable mode when the cursor is placed on it."  Why would you want the user to be able to edit something, then show it disabled, then let them click on it and edit it again?  Why not just leave it in edit mode?  Maybe if I understand the requirement better, I can answer this portion of the question. 
    If this is based on security or changing from edit to display for the entire grid, you can run the same program mentioned above and click on the Change/Display button in the top left to see how it enables and disables the entire grid for editing.
    Cheers,
    Bonnie

  • Fields are still in EDIT mode even after Saving the Transaction in UI

    Hello Experts ,
    We are facing one problem in UI .
    We have added the BLOCK " Subject" in Complaint transaction ( BT120H_CPL) .
    We are able to fill the data in the fields for subject block like " Code, Code Gruppe etc, but even after saving the transaction these fields are in Edit mode .
    Can anyone give some pointers/solution to this ?
    Regards
    VB

    Hello,
    if the fields are in Edit mode or closed is controlled by the attribute VIEW_GROUP_CONTEXT of the controller class (*IMPL).
    There are also methods to change this VIEW_GROUP_CONTEXT depending on the requirement like "DISABLE_VIEW_GROUP_CONTEXT".
    But as i understood you correctly you do not have a own developed view but a SAP standard view. In this case i would create a OSS-Message for the issue.
    But feel free to do some debugging on this VIEW_GROUP_CONTEXT.
    Best regards
    Manfred

  • Is ther any FM for next free Number of project Definition number?

    Hi Guys,
                Is there any FM or logic for finding the next free Project definition number.?
    Thanks,
    Gopi.

    Hi,
    Tcode OPSK Maiantain the special character in "ANo".
    Now whenever a new project is to be created in CJ20N, just hit enter in the Project definition field and give a start or finish number and hit Find the system automatically finds the number available.
    Hope its useful.
    thanks.

  • Validation for Project definition

    Hi Gurus,
    We create project definitions with 12 char. Some time user misses out some characters hence I want to restric the same. I am trying to check the blank fields in the project definition using validation. I could succeed in stopping the user from proceeding in IDES through validation but when I applied the same logic in dev. client, it is checking but not stopping it from going ahead (I have given Error message only). The difference in the dev. client is that I have already created some validations for the PROJ-PSPID field. Is this disallowing the check or what should be the logic I should use to ensure all the 12 characters of the project definition fields are filled.
    thanks in advance
    Vinodh

    Hi Vinodh,
    Try this,
    Pre-requisite:
    PROJ-PSPID Not Equals Symbol ' '
    Check:
    PROJ-PSPID :1-12: Not Equals Symbol ' '
    This should help.
    Note: The place where i have written Not equals symbol, there you insert not equals symbol. Its not getting displayed here.
    Also, input validation name in OPSA in Project defn. field and Tick on Automatic Validation
    Regards,
    Kabir

  • Grey field for project definition and WBS element

    Dear all,
    I have created a project and WBS element in CJ01. Now I go via CJ02 to the change mode and the project ID and WBS element ID is not greyed out. But I would like that the system shows these key fields as not changeable anymore, only fields like description should be changable. Can you please tell me, which customizing step I missed to get the grey field for project ID/WBS element ID?
    FYI  I do not use a project mask to create the project.
    Thanks for your answer.
    Heidi

    Hi Heidi ,
    I don't think you can grey out the Project Definition and the WBS Element fields after the creation .
    If you want to restrict the users to change the Proj definition and WBS , a better way is through
    Authorization objects and restricting only specified users to change the WBS
    Kish

  • Project Profile Field in CJ20n is in display mode

    Dear All,
    When we click on create a new Project in CJ20n transaction code, the field Project profile will be in display mode. Even though i can see all my project profiles in drop down list, I am not able to select any one, as its in display mode. Where can we do the changes to make it as editable.
    Regds,
    CB

    Hi CB,
    Please check setting in OPUJ. May be project profile in display mode.
    thanks
    Sunil

  • Text Caption appears in Edit Mode but not in Preview Project or Web Browser

    I'm using Cp4 and have downloaded Adobe Flash 10 Active X, it's ver 10.1.82.76.  I've added a simple text caption with these options:
    Timing Display:  Rest of slide
    Appear after:  2.0 seconds
    Transition effect:  Fade in only
    In: .5 seconds
    And Visible is checked
    I also have a simple line that I drew with the draw line tool and included an arrow on the end of it.
    Everything on the screen works including the click box, the animated text and the failure caption.  For some reason the text caption and the arrow are not appearing except in Edit Mode.  In Preview Project, they disapper but the click box, failure caption and animated text work fine.
    I've rebooted, copied this screen into a new instance of Cp4, re-created these objects on a freshly recorded screen, chosen Order: Bring to Front, created a brand new screen completely from scratch and downloaded the Flash 10 Active X version mentioned above.
    They funny thing is, is that the text caption and arrow works fine on other screens in the project.  I have 76 screens total.
    I'm running Windows XP.
    Any suggestions?

    Hi there
    Can you post a screen capture of what your Timeline looks like?
    Odds are your Click Box is pausing in a weird place.
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

Maybe you are looking for

  • Transfer iMac to MacBook Pro

    Yesterday I purchased a new 15" Retina Macbook Pro to replace my current 27" iMac.  When I asked the salesperson for the best way to transfer my info over I was told to purchase a firewire cable & use Migration Assistant.  Well, I get home & open the

  • How to create lossless PDF from DOCX?

    Hi everyone, Im currently trying to convert my Diploma´s Thesis to PDF but am having a hard time with the images. No matter which converter I try, the pictures come out skewed and low quality, just like below: Not only are the pictures skewed, but th

  • USER COMMAND FOR INTERACTIVE ALV REPORT

    Hi Frens I am making an interactive alv report showing a cost center hierarchy. I could scuccessfully capture the first click event in the user command using  '&IC1'. Now i want to capture the second click event for the third hierarchy. When i try to

  • Video hangs while playing but audio still keeps pl...

    capturing a video works fine in my nokia c6-00. .but wen i play the captured video the video hangs for some minutes but the audio keeps on playing.  i am saving the videos on mass storage 8gb sd with 5gb free space. software version m using is 40.

  • URGENT!!!  Need help now!!!

    I have now downloaded iTunes. Can I just connect my iPod nano to my computer and will it just import my songs and pics from my iPod onto my PC? Or do I have to do something to keep my stuff?