How to make Mvt allowed indicator editable in CJ20N transection ?

Dear Experts,
How to make Mvt allowed indicator editable in CJ20N transaction ,I want to control material issue by reservations,waiting for your suggestions.
Thanks

What is the object status? if the status is Started, you might have problems becouse that status does not permit cost assignments.
As the previous reply, at the moment of the release, you will have this field editable.
Best Regards.

Similar Messages

  • HOW TO MAKE TABLE CONTROL NON EDITABLE

    hi all
    how to make table control non editable
    Thanks & Regards
    harsha

    Hi,
    Try this code in the PBO inside the module in the LOOP...ENDLOOP.
       IF SY-TCODE EQ 'ZEMPLDISPLAY'.
        LOOP AT SCREEN.
         if screen-name eq 'column1' or screen-name eq 'column2'.  "Give the names of the columns in the table control
          SCREEN-INPUT = '0'.
          MODIFY SCREEN.
        endif.
        ENDLOOP.
      ENDIF.
    Or you can go the Layout of the table control in Change mode and for every column's attributes, make it 'Output' only field. Check  'Output only' field.

  • How to make a select list editable or searchable like the combobox

    Does anybody know, How to make a select list editable or searchable like the combobox? Do we need a plugin here, where I can get it.

    Hi Nilesh,
    If this is what you are looking for http://apex.oracle.com/pls/apex/f?p=32395:3:1202144397644679
    get the combobox plug-in
    http://www.apex-plugin.com/oracle-apex-plugins/item-plugin/searchable-combobox.html
    I have not tried this though. Found it while searching for some other plug-ins.
    Regards,
    -Senthil

  • How to make all the rows editable in webdynpro alv output

    Hi,
    How to make all the rows editable in webdynpro alv output.
    Thanks
    Rakshar

    Hi Rakshar,
    Check this wiki:
    http://wiki.sdn.sap.com/wiki/display/WDABAP/HowtoeditconditionallyrowofaALVtableinWebDynprofor+ABAP
    Regards

  • How to make the text_field to editable in the adobe document?

    Hi, expert,
    I meet a problem when I develop a WDA. I hope to get your help. Thanks a lot. The following is my action:
    Action:
    1. I am using "Text Field" control rather "Text" Control in the pfd form by transfer code "sfp". I make sure in Object Palette under value tab type is : user entered - optional in the layout tab in the pfd form. The textfield is editable in the PDF preview.
    2. Add the pdf forms to webdynpro application and set "sss" to the inputfield("Text Field") through context in the WDA.
    3. Run the WDA. In the IE, I found the textfield in the PDF is not editable. How can I make the  textfield to editable?
    Whether I need  change the code or others to make text_field to editable?
    Do you give me some hints? Thank you very much.
    The following is my code in the WDA:
    method WDDOMODIFYVIEW .
    ********Make INTERACTIVE_FORM to editable。******
    data:
    lr_interactive_form type ref to cl_wd_interactive_form,
    lr_method_handler type ref to if_wd_iactive_form_method_hndl.
    lr_interactive_form ?= view->get_element( 'INTERACTIVE_FORM' ).
    lr_method_handler ?= lr_interactive_form->_method_handler.
    lr_method_handler->set_legacy_editing_enabled( abap_true ).
    data:
    Node_Zz_00_Test_Form_000 type ref to If_Wd_Context_Node,
    Elem_Zz_00_Test_Form_000 type ref to If_Wd_Context_Element,
    Stru_Zz_00_Test_Form_000 type Wd_This->Element_Zz_00_Test_Form_000 ,
    Item_TEST1 like Stru_Zz_00_Test_Form_000-TEST1.
    navigate from <CONTEXT> to <ZZ_00_TEST_FORM_000> via lead selection
    Node_Zz_00_Test_Form_000 = wd_Context->get_Child_Node( Name = wd_This->wdctx_Zz_00_Test_Form_000 ).
    get element via lead selection
    Elem_Zz_00_Test_Form_000 = Node_Zz_00_Test_Form_000->get_Element( ).
    get single attribute
    Elem_Zz_00_Test_Form_000->set_Attribute(
    exporting
    Name = `TEST1`
    Value = 'sss' ).
    endmethod.
    Best regards,
    tao

    Hi Volker,
    Thanks a lot for your help.:)
    When I compile the WDA, the WDA don't occur any error. The WDA occurs error when I run the WDA.
    1. In the st22 transcation code, I found the following code:
    method RAISE .
      DATA: error TYPE STRING.
      error = MSG_STRING( msg = msg a = a b = b c = c i = i j = j k = k ).
    ************************begin of error************************************
      RAISE EXCEPTION TYPE CX_WD_GENERAL EXPORTING msg = error.
    ************************end of error*********************************
    endmethod.
    I think the method RAISE is invoked by CREATE_ADOBE method at the point:
          if sy-subrc ne 0.
    --- there was an error; check, if it was an ADS related problem
            call function 'FP_GET_LAST_ADS_ERRSTR'
              importing
                e_adserrstr = lv_adserrstr.
          cx_wd_general=>raise( msg = lv_adserrstr ).
          endif.
    --- close spool job 
    The following is the code of the CREATE_PDF method:
    method CREATE_PDF.
        data:
          data_source_info          type ref to if_wd_context_node_info,
          data_source_attributes    type wdr_context_attr_info_map,
          interface_type            type fpinterfacetype,
          name                      type string,
          value                     type string,
          fm_name                   type rs38l_fnam,
          fp_docparams              type sfpdocparams,
          fp_outputparams           type sfpoutputparams,
          fp_output                 type fpformoutput,
          pdf_ref                   type ref to fpformoutput,
          output                    type fpformoutput,
          rest                      type string,
          lv_adserrstr              type string.              "#EC NEEDED
        field-symbols:
          <source> type wdr_context_attribute_info.
        data_source_info       = data_source->get_node_info( ).
        data_source_attributes = data_source_info->get_attributes( ).
    --- now build pdf content using the form api
          try.
    --- get name and type of the generated function module
              call function 'FP_FUNCTION_MODULE_NAME'
                exporting
                  i_name     = form_name
                importing
                  e_funcname = fm_name
                  e_interface_type = interface_type.
    ----- what about error handling
            catch cx_fp_api_usage.      "#EC NO_HANDLER
            catch cx_fp_api_repository. "#EC NO_HANDLER
            catch cx_fp_api_internal.   "#EC NO_HANDLER
          endtry.
    --- set output parameters and open spool job
          fp_outputparams-nodialog = 'X'.
          fp_outputparams-getpdf   = 'X'.
    --- workaround ADS drop 8c
        fp_outputparams-connection = 'ADS_PWDF2036'.
          call function 'FP_JOB_OPEN'
            changing
              ie_outputparams = fp_outputparams.
    --- set form language and country (->form locale)
          fp_docparams-langu   = sy-langu.
          call function 'WP_USER_COUNTRY_GET'
            exporting
              user_name           = sy-uname
            importing
              country             = fp_docparams-country
            exceptions
              no_country_assigned = 1
              others              = 2.
          if sy-subrc <> 0.
            fp_docparams-country = 'DE'.
          endif.
    --- this flag indicates that we want to generate an interactive(!) form
          fp_docparams-fillable = enabled.
    --- interface type: SMART FORMS => raise error
    --- interface type: DDIC        => use DDIC interface and render display only form
    --- interface type: XML Schema  => use XML  interface and render interactive form if enabled is true
        case interface_type.
      Smart Forms -> not allowed
          when if_fp_interface=>c_interface_type_sf.
            message x000(00).
       Good old DDIC
          when if_fp_interface=>c_interface_type_new.
        no interactivity for DDIC stuff allowed, but it can be overwritten
          if enabled = abap_true.
            fp_docparams-fillable = legacy_editing_enabled.
          else.
            fp_docparams-fillable = abap_false.
          endif.
          data:
            exception_list    type table of rsexc,
            export_parameters type table of rsexp,
            import_parameters type table of rsimp,
            tables_parameters type table of rstbl.
    --- get the interface of the generated function module
          call function 'FUNCTION_IMPORT_INTERFACE'
            exporting
              funcname                 = fm_name
            tables
              exception_list           = exception_list
              export_parameter         = export_parameters
              import_parameter         = import_parameters
            changing_parameter       =
              tables_parameter         = tables_parameters.
          data:
            ptab type abap_func_parmbind_tab,
            ptab_line type abap_func_parmbind,
            etab type abap_func_excpbind_tab,
            etab_line type abap_func_excpbind.
          field-symbols:
            <import> type rsimp.
    --- dynamical filling of the interface of the generated function module
          loop at import_parameters assigning <import>.
            ptab_line-name = <import>-parameter.
            ptab_line-kind = abap_func_exporting.
            if ptab_line-name cs '/1bcdwb/docparams'.
              get reference of fp_docparams into ptab_line-value.
            else.
    --- is this an attribute?
              data dref type ref to data.
              create data dref type (<import>-typ).
              read table data_source_attributes with key name = <import>-parameter assigning <source>.
              if sy-subrc = 0.
                data: node_name type string.
                node_name = <import>-parameter.
                try.
                    field-symbols <statatt> type any.
                    assign dref->* to <statatt>.
                    data_source->get_attribute( exporting name = node_name importing value = <statatt> ).
                    get reference of <statatt> into ptab_line-value.
                  catch cx_root.             "#EC CATCH_ALL
                    ptab_line-value = dref.
                endtry.
              else.
                ptab_line-value = dref.
              endif.
            endif.
            insert ptab_line into table ptab.
          endloop.
          ptab_line-name = '/1BCDWB/FORMOUTPUT'.
          ptab_line-kind = abap_func_importing.
          get reference of fp_output into ptab_line-value.
          insert ptab_line into table ptab.
    --- error handling
          etab_line-name = 'OTHERS'.
          etab_line-value = 10.
          insert etab_line into table etab.
    --- dynamic call of the generated function module
    --- this is "smart forms style"
          call function fm_name
            parameter-table
              ptab
            exception-table
              etab.
          if sy-subrc ne 0.
    --- there was an error; check, if it was an ADS related problem
            call function 'FP_GET_LAST_ADS_ERRSTR'
              importing
                e_adserrstr = lv_adserrstr.
          cx_wd_general=>raise( msg = lv_adserrstr ).
          endif.
    --- close spool job
          call function 'FP_JOB_CLOSE'.
    --- check the result
          read table ptab with key name = '/1BCDWB/FORMOUTPUT' into ptab_line.
          pdf_ref ?= ptab_line-value.
          pdf = pdf_ref->pdf.
      XML Schema based interface
          when if_fp_interface=>c_interface_type_xsd.
            data: xml type string.
            xml = data_source->to_xml( ).
          data:
            context_node type string.
          context_node = data_source_info->get_name( ).
          data: x_xml type xstring.
          if not data_xml is supplied.
            call transformation wdr_interactive_from_in
              parameters datasource = context_node
              source xml xml
              result xml x_xml.
          else.
            x_xml = data_xml.
          endif.
          call function fm_name
            exporting
              /1bcdwb/docparams        = fp_docparams
              /1bcdwb/docxml           = x_xml
            importing
              /1bcdwb/formoutput       = output
            exceptions
             usage_error              = 1
             system_error             = 2
             internal_error           = 3
             others                   = 4.
          if sy-subrc ne 0.
    --- there was an error; check, if it was an ADS related problem
            call function 'FP_GET_LAST_ADS_ERRSTR'
              importing
                e_adserrstr = lv_adserrstr.
          cx_wd_general=>raise( msg = lv_adserrstr ).
          endif.
    --- close spool job
          call function 'FP_JOB_CLOSE'.
          pdf = output-pdf.
          when others.
            message x000(00).
        endcase.
    endmethod.
    2. I found the defaultTrace.0.trc in the $sap_home$\DEV\DVEBMGS00\j2ee\cluster\server0\log\:
    #1.5#001485BBC8ED0076000000140000044000043973130FA533#1189066310671#com.adobe.AdobeDocumentServicesWorker#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServicesWorker#ADSUSER#228#SAP J2EE Engine JTA Transaction : [018ffffff826002ffffffcc]#devserver_DEV_1606150#Guest#d1f02e705c5011dcb0f5001485bbc8ed#SAPEngine_Application_Thread[impl:3]_22##0#0#Error#1#/System/Server#Plain###Processing exception during a "UsageRights" operation.
    Request start time: Thu Sep 06 16:11:50 CST 2007
    com.adobe.ProcessingError: Error while retrieving a password for credential: ReaderRights:
    java.lang.Exception: Could not retrieve a password for credential: ReaderRights
    Exception Stack Trace:
    com.adobe.ProcessingError: Error while retrieving a password for credential: ReaderRights:
    java.lang.Exception: Could not retrieve a password for credential: ReaderRights
         at com.adobe.ads.request.UsageRights.execute(Unknown Source)
         at com.adobe.BaseADSRequest.doWork(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.5#001485BBC8ED0076000000150000044000043973130FAAAC#1189066310671#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#228#SAP J2EE Engine JTA Transaction : [018ffffff826002ffffffcc]#devserver_DEV_1606150#Guest#d1f02e705c5011dcb0f5001485bbc8ed#SAPEngine_Application_Thread[impl:3]_22##0#0#Error##Plain###Client: 800 SystemId: DEV AppName: SAFP
    Processing exception during a "UsageRights" operation.
    Request start time: Thu Sep 06 16:11:50 CST 2007
    com.adobe.ProcessingError: Error while retrieving a password for credential: ReaderRights:
    java.lang.Exception: Could not retrieve a password for credential: ReaderRights
         at com.adobe.ads.request.UsageRights.execute(Unknown Source)
         at com.adobe.BaseADSRequest.doWork(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    According the exception in the defaultTrace.0.trc:" Could not retrieve a password for credential: ReaderRights ", beacause Adobe reader8 don't get the credential in my machine, the error is occured when run the WDA. 
    My question is how can I to get credential for Adobe Reader8 ?
    Thanks a billion for your support and help.:-)
    Best regards,
    Tao

  • How to make report output non editable

    Hi can any body give me sample code on how to make the report output non editable.
    thanks in advance
    kp

    Hi
    What are you meaning?
    U don't want to allow to change the data in the selection-screen?
    If it's so:
    AT SELECTION-SCREEN OUTPUT.
       LOOP AT SCREEN.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
      ENDLOOP.
    If you need to change only certain fields:
    PARAMETERS: P1 ......,
                P2 ...... MODIF ID AAA.
    SELECT-OPTIONS: SO_1 FOR .....,
                    SO_2 FOR ..... MODIF ID AAA.
    AT SELECTION-SCREEN OUTPUT.
       LOOP AT SCREEN.
          CHECK SCREEN-GROUP1 = 'AAA'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
      ENDLOOP.
    Max

  • How to make a field un editable in one screen

    Dear Experts,
    I want to know how to make one field as un editable in one screen.I will explain in detail. I want to make "Reconciliation account" field as un editable in XD02 t-code.
    Regards,
    Surendra babu.

    Hi Surendra,
    Use this path in spro:
    Financial Accounting-> A/P&A/R-> CustomerAccounts->MasterData->Preparatons for CreatingCustomerMasterData
    use the transactions & u can update for creation of customer master or hange of customer master.
    Hope this helps you
    Award points if helpful
    chaitanya

  • How to make a particular field editable in a Form/Empty View

    Hi All,
    I want make a particular field editable in a Form View. Means i have 5 fields in the Form View and out of 5 fields i want to make one field editable or input field. Can you plz tell me how to do that?
    thanks & regards
    Madhusudan

    Hi,
    You can achieve the same by two methords.
    1) Goto configuration of the view in which you want to make fields editable/ non editable. Click on your field. Click on field properties. On the menu you can click on Display only. It will make your field non editable. If you remove the check, it will be editable.
    2) Goto Get_I_fieldname methord of your field. There write code rv_disable= 'FALSE'. Field will become editable. rv_disable= 'TRUE' will make field non editable.
    Best regards
    Pankaj Kumar

  • How to make Double Click To Edit work instead of ClickToEdit for Af:Table

    Hi All,
    We use AF:Table in clickToEdit mode and most of the time the users use this table for selecting a master record then work on the detail records. To avoid the cost of rendering the selected row as editable we would like to change the behavior to Double Click To edit. This way the user can intentionally put the selected row in edit mode when needed. What would be the best approach to achieve this ?
    We use 11.1.1.6 and ADF BC.
    Thanks

    Not sure if you can get it to work in 11.1.1.6.0 as you don't have the ActiveRowKey property which can be used to make a table row editable. The property comes with 11gr2.
    What you can try is to set the tabel to clicktoedit, add a clientListener which you use to listen to the click event and then cancel the event. Add another clientListener whihc handles the doubleClick event, make the clicked row the current row (see http://www.oracle.com/technetwork/developer-tools/adf/learnmore/56-handle-doubleclick-in-table-170924.pdf) and, well now comes the problem, make the current row editable. I don't know how to do this without the ActiveRowKey property.
    One other possible solution is a trick described here http://dstas.blogspot.com/2010/08/press-edit-button-to-make-table-row.html
    here a transient attribute is used to manipulate the isEditable() status of an attribute of the VO. This should do the trick, but is much more work.
    May be someone else knows a better solution.
    Timo

  • IMovie trailer - how to make a copy to edit

    I have an iMovie trailer I've created and I want to now make a copy, new name, etc., that I can change up a bit and publish separately.  I do not want to lose the current version either though.  Is there an easy way to make a copy to edit without starting from scratch?
    Thanks

    Hello NCGator82,
    You can duplicate trailers in iMovie, allowing you a new instance of the trailer that can be edited to your heart's content without affecting the original.
    Duplicate a trailer
    http://help.apple.com/imovie/ipad/1.4/index.html#knafb848d6d
    Cheers,
    Allen

  • How to make a row non-editable depending on a db column value

    HI,
    I've an editable report region and the requirement is to make the row non-editable according to the value in one of the column. Like if the value for that column is null the row should be editable else non-editable. Any option to do this in Oracle APEX.
    Regards,
    Prasanth

    I assume you are using a tabular form. In that case, you would have to run a loop in Javascript to read all the rows in the Form. The example is given below. You can use Firebug in Firefox to identify your field names and replace f02, f03 and f04 with your field names.
    <script language="JavaScript" type="text/javascript">
    function f_readonly_items(){
    for (i=0;i<document.wwv_flow.length;i++)
    if (document.wwv_flow.f02.value) != Null
    document.wwv_flow.f02[i].readOnly = true;
    document.wwv_flow.f03[i].readOnly = true;
    document.wwv_flow.f04[i].readOnly = true;
    </script>
    Hope this helps.

  • How to make field MRP controller optional in Cj20n

    Hi All,
    Please help to make field MRP controller optional in CJ20n
    Cheers,
    Nies

    Hi ,
    we can create a dummy MRP in system and assigne it to the required project profile so that system will not ask u to make this entry. As per my knowledge Mandetory MRP is system requirement we cant by pass it.
    Rgds

  • How to make the text_field to editable in a adobe document in the WDA?

    Hi, expert,
    I meet a  problem when I develop a WDA. I hope to get your help. Thanks a lot. The following is my action:
    Action:
    1. Make a pdf forms (interactive form) with textfield named “A_textfield” in the webdynpro application. The textfield is editable in the PDF preview when I creat the pdf form using transfer code 'sfp'.
    2. Add the pdf forms to webdynpro application and set "sss" to the inputfield through context in the WDA.
    3. Run the WDA. In the IE, I found the PDF document with the text_field, but the textfield in the PDF is not editable.
    How can I change the code or others to make text_field to editable?
    Do you give me some hints? Thank you very much.
    The following is my code in the WDA:
    method WDDOMODIFYVIEW .
    ********Make INTERACTIVE_FORM to editable&#12290;******
    data:
        lr_interactive_form type ref to cl_wd_interactive_form,
        lr_method_handler   type ref to if_wd_iactive_form_method_hndl.
      lr_interactive_form ?= view->get_element( 'INTERACTIVE_FORM' ).
      lr_method_handler ?= lr_interactive_form->_method_handler.
      lr_method_handler->set_legacy_editing_enabled( abap_true ).
      data:
        Node_Zz_00_Test_Form_000            type ref to If_Wd_Context_Node,
        Elem_Zz_00_Test_Form_000            type ref to If_Wd_Context_Element,
        Stru_Zz_00_Test_Form_000            type Wd_This->Element_Zz_00_Test_Form_000 ,
        Item_TEST1                          like Stru_Zz_00_Test_Form_000-TEST1.
    navigate from <CONTEXT> to <ZZ_00_TEST_FORM_000> via lead selection
      Node_Zz_00_Test_Form_000 = wd_Context->get_Child_Node( Name = wd_This->wdctx_Zz_00_Test_Form_000 ).
    get element via lead selection
      Elem_Zz_00_Test_Form_000 = Node_Zz_00_Test_Form_000->get_Element(  ).
    get single attribute
      Elem_Zz_00_Test_Form_000->set_Attribute(
        exporting
          Name =  `TEST1`
          Value = 'sss' ).
    endmethod.
    Best regards,
    tao

    Hello Wang,
    Just for confirmation: The interactiveform ui element is enabled, right? By default, it's disabled.
    Best regards,
    Thomas

  • How to make all "allowed" clients visible at the log on/welcome screen at start of the computer

    Assuming this is controlled by the Active Directory Server 2012 R2..
    I allow 3 users to be able to log on to computer A.
    I now start computer A. At the welcome / start screen I only see the person who was logged on latest.
    However, it would be great to see which 3 users actually can log on to that computer, have their user pic and names
    on the welcome / start screen instead of the "latest logged on" and then click on the person you are to log on.
    How do I configure the Server 2012 R2, or Client computer, so they won't see last person logged on, but simply everyone
    who actually is able to log on?

    You are not going to be able to do this on a domain computer. You can disable the last logged on user prompt though. This would make the computer prompt for a username at all times. That group policy setting is called: Interactive logon: Do not display
    last user name and is available under Computer Configuration\Policies\Windows Settings\Security Settings\Local Policies\Security Options.
    If my answer helped you, check out my blog:
    Deploy Happiness

  • How to make Popup LOV Not Editable?

    Hello,
    I started using a Select List (named LOV) as an element in a report. However, I go the error:
    ORA-20001: Error fetching column value: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    So I switched to a Popup LOV (named LOV) which is working. However the Popup LOV is a list of part numbers that I donot want the user to change. I want him to select from the list I give him and only this list. After the Popup LOV closes the user can modify the text box that the part number the user selected from the Popup LOV appears in. So how do I make the text box next to the Popup LOV icon not editable??
    Thanks for the help...

    Hello, not sure if you are using "Popup LOV(fetches first rowset)" or not, but switching to "Popup Key LOV(Displays description, returns key value)" might
    work for you.
    Regards,
    Geoff

Maybe you are looking for