Baseline Date field to be grayed out

Hi ,
I have requirement wherein i want to gray out (not modifiable ) Baseline date field in f-28 .
When u Simulate the document that time the baseline date field is modifialble , i want to make it not modifiable .
Before save it is modifiable i want it to be grayed out.
Please suggest .

HI,
Try this,
This can be acheived through the Transaction Variant.
Transaction Code is SHD0.
In SHD0 you can change the Properties of the Field of a Particular transaction.
Regards,
Sathish

Similar Messages

  • The data fields in a filled-out PDF form disappeared after a crash.  Is there any way to restore the lost entries?

    Adobe Reader crashed while I had a filled-out Adobe PDF form open.  When I reopened the file, I found that all of the data that had been entered into the form fields had disappeared.  Is there any way to restore the data that is missing?
    I note that the "Restore" command in the Adobe Reader file menu is not available (grayed out).
    Thanks for your time.

    Hi a2jc4life,
    maybe you can restore your deleted profile with this tool
    http://www.chip.de/downloads/FileRestorePlus_29645008.html

  • Creation of Vendor Invoice  - BADI to control "Payment Baseline Date field"

    Hi ,
    In SRM - Creation of Vendor Invoice  or Credit memo  -
    In the process of creation of vendor invoice in Header Data - Payment Data tab there is a field "Payment Baseline Date" and I want to populate custom value to this field using BADI. But I could not find any BADI to do this.
    Can any one please let me know if any idea what BADI I can use.
    I tried DOC_CHANGE_BADI and this one does not have this field in the ET_HEADER.
    Thanks in advance.
    Venkat

    Hi,
    Any ideas please?
    Thanks for ur time.

  • I am unable to import my favorites from internet explorer dueto the import data from option being grayed out under history, library, import tab, any help please

    i am unable to import my favorites from internet explor due to the import data from... option being grayed out under his, library, import. any help please

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.com/kb/Private+Browsing
    To see all History and Cookie settings, choose:
    *Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    *Deselect: [ ] "Always use private browsing mode"

  • Show/hide field options are grayed out

    If a drop down value is 1, I want to show field #1. If the drop down value is 2, I want to show fields #1 & 2. If the value is 3, I want to show fields # 1 2 & 3, etc. This appears not to be possible; a show hide rule is already created for value 1 and appears unavailable for a new rule for value 2. Any ideas for a workaround?

    Yes you can do this using the hide show logic. In the case you describe you want to use the if any rule rather than the if all rule. For drop down item one the logic is if any (1, 2 or 3) are selected show item one. For item two the logic is if (2 or 3) are selected show item 2.
    Andrew

  • Shipment Cost Relevance field grayed out. Possibility to make this editable

    When we create a TD shipment document, based on the shipment type control data, the value of the field Shipment cost relevance is updated.
    This field is always grayed out, where there is no option to edit.
    When we check the standard description, we can see that this is an proposal for shipment cost relevance and can be modified if required.
    Is there any such possibility to do so (other than by customising the shipment type parameters),  if so, please proivde the process.
    Thanks & Regards,
    Pavan.

    Use t-code T_57,
    select shipment type then click on shipment cost relevance, make sure is there tick mark for header.
    if any quiry revert back.
    kapil

  • Invoice posting-baseline date-uneditable field

    Hi Expert!
    Is there any way to make default baseline date field in MIRO,FB60,FB65,FV60 and FV65 as unchangeable field? I set the document date as the default baseline date but is there any way to make it unchageable for a specific company code only?
    Thanks

    Hi,
    For making the baseline payment date uneditable, use this path :
    Financial Accounting(New) > Financial Accounting Global Settings > Document > Rules for changing documents >
    Document Change Rules line item > choose Account type K + Field Name BSEG-ZFBDT > click copy as and
    in the change view enter your Company Code and remove the tick from the box of possiblity of changing field
    "Field can be changed" and save the entries.
    Regards,
    Sadashivan

  • How to gray out certain fields on the selection screen based on the radio b

    HI All,
      I have an ALV report. On the selection screen I have 2 radio buttons ..for eg..A and B.
    When radio button A(its on by default) is on..certain fields not relevant to this should be grayed out. Similarly when radio button B is on, certain fields should be grayed out.
    I did the AT SELECTION SCREEN OUTPUT and also did the
    LOOP AT SCREEN....ENDLOOP logic. The logic works but when I click the radio button B...the screen fields automatically does not gray out. I have to press ENTER and then its grays out.
    I know a USER_COMMAND needs to be attached.
    Can anyone give me a step by step details of how to do this. I truly appreciate it. if a screen painter thing is required..please give me the tcode and step by step detail to do this.
    Thanks

    Try this one too:
    REPORT ztest.
    TABLES: mara,
            bkpf.
    CONSTANTS:
                  c_pos(3) TYPE c VALUE 'POS',
                  c_acc(3) TYPE c VALUE 'ACC',
                  c_all(3) TYPE c VALUE 'ALL',
                  c_x TYPE c VALUE 'X'.
    The Selection Screen Definition
    SELECTION-SCREEN BEGIN OF BLOCK b_0 WITH FRAME TITLE text-000.
    SELECT-OPTIONS: s_mara FOR mara-matnr.
    SELECTION-SCREEN END OF BLOCK b_0.
    SELECTION-SCREEN BEGIN OF BLOCK b_1 WITH FRAME TITLE text-037.
    PARAMETER: rb_all RADIOBUTTON GROUP rb1 USER-COMMAND rad default 'X',
               rb_acc RADIOBUTTON GROUP rb1.
    SELECTION-SCREEN END OF BLOCK b_1.
    SELECTION-SCREEN BEGIN OF BLOCK b_2 WITH FRAME TITLE text-011. "Acct
    SELECT-OPTIONS:   s_blrtc1 FOR bkpf-blart MODIF ID acc,
                      s_blrti1 FOR bkpf-blart MODIF ID acc.
    SELECTION-SCREEN END OF BLOCK b_2.
    SELECTION-SCREEN BEGIN OF BLOCK b_3 WITH FRAME TITLE text-011. "Acct
    SELECT-OPTIONS:   s_blrtc2 FOR bkpf-blart MODIF ID all,
                      s_blrti2 FOR bkpf-blart MODIF ID all,
                      s_blrtv2 FOR bkpf-blart MODIF ID all.
    SELECTION-SCREEN END OF BLOCK b_3.
    AT SELECTION-SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      PERFORM f0200_screenfield_hide_logic.
    initialization.
      PERFORM f0200_screenfield_hide_logic.
          FORM f0200_screenfield_hide_logic                             *
    FORM f0200_screenfield_hide_logic.
      LOOP AT SCREEN.
        IF rb_acc = c_x.
          IF screen-group1 = c_all.
            screen-active = 0.
          ELSE.
            screen-active = 1.
          ENDIF.
        ENDIF.
        MODIFY SCREEN.
        IF rb_all = c_x.
          IF screen-group1 = c_acc.
            screen-active = 0.
          ELSE.
            screen-active = 1.
          ENDIF.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    ENDFORM.                    " F0200_SCREENFIELD_HIDE_LOGIC

  • Mail on OSX 10.7.5  has incoming mail server field grayed out

    Trying to configure my iCloud email using Mail in OSX10.7.5   and in the settings the field for incoming mail is grayed out, yet every time I try to save to exit that window, it gives me an error message that it needs an incoming mail server.  Can't enter it because I can't get into the field, which is showing po2-imap.mail.me.com     Any thoughts on how to remedy?

    I tried this and it entered the same info that was there and the incoming mail server field is still grayed out and I still get the "The incoming mail server cannot be empty" message when I go to exit the iCloud account window.

  • I/O field grayed out after check box checked ( Dynpro)

    Hi ,
    I have dynpro  dialog screen  with several check boxes linked with input/output field
    When check box is checked the I/O field is editable when check box is empty I/O field should be grayed out.
    I am trying to find the way how checking the check box can trigger the change of attribute of I/O field.
    The IO field should be gray out after checking check box without hitting enter or any other button.
    Please advice
    Chris

    Hi ,
    Thank you for your answer. I was missing Functional code of my check boxes.
    Now i have still issue my I/O field do not turns in gray ( only output) In loop
    I dide like you said ( this is example from my PAI module user-command)
    when 'CB1'.
          loop at screen .
            if screen-name = 'LT_FORMAT_IO'
              and lt_format_cb is initial.
              screen-input = '0'.
              screen-invisible = '1'.
              modify screen.
            endif.
          endloop..
    Once screen is displayed again , the IO field stll remains non grayed out.
    Please advice
    Chris

  • Service PR Currency Field Grayed out

    Hi Experts,
    We find that for PM Orders created for Control Key for Service Requisitions, the Price and Currency Field is always grayed out while this is not the case for Material PRs.
    Is there any PM specific setting to make that Field as Editable
    Field Name is AFVGD-WAERS
    Prompt reply for this will be Highly appreciated
    Regards
    Manish

    Hi Gurus,
    Any user exit for the same, i.e. to change/edit the currency field in service PR.
    I think the logic here is correct.
    In Material PR we can edit the field but in Service PR we are not allowed to do so.
    Let me take an example, In a company dealing with some products, needs a big welding work to be done. One service PR will be raised and if so how the payment would be made because that vendor will ask for local currency only.
    @Tyag need your help I think the issue is clear.
    Kindly input some suggestions.
    Thanks & Regards.
    GS

  • Forms -- Run Auto Field Detection Grayed Out

    After using Adobe Acrobat Pro 8 successfully for 2 1/2 years I have run into a problem: all of a sudden I cannot create forms from already created PDF files.
    My last form was in March, but now the " Run Auto Field Detection" is grayed out.
    What should I do to correct this problem ? For our business this is important and the time difference is 1-2 hours versus 3-5 minutes.

    After using Adobe Acrobat Pro 8 successfully for 2 1/2 years I have run into a problem: all of a sudden I cannot create forms from already created PDF files.
    My last form was in March, but now the " Run Auto Field Detection" is grayed out.
    What should I do to correct this problem ? For our business this is important and the time difference is 1-2 hours versus 3-5 minutes.

  • Payment term and Baseline date are not appear after residual clearing

    Hi Friends,
    We have an issue in Payment term. Recently small changes were made in OBA3.Here they enable the option of "Payment term from invoice". the function of this is to - copy  the payment term and baseline date form invoice to Partial item .Due to enable of this function after residual clearing the payment term and base line fields are get empty.
    Now user want to get these fields to be updated even not changes take place in OBA3.Can you please suggest me the way,  with out changes in OBA3 can we get payment term and baseline date field after residual clearing .Please suggest .
    Thank you
    Regards,
    Dharma

    Hi Julie,
    Thanks for your reply..
    Here the issue is, the user using Baseline date for two specific purpose.
    1.Due day calculation-auditing purpose
    2.Agning report
    For due day calculation they recently enable the option "payment term from invoice in -OBA3".Due to active the function,system copy the payment term and baseline date from invoice to residual item.it means the residual item having baseline data as invoice date not posting date.
    But for aging report purpose it has to be update posting date.
    now user want to meet these both requirement .How can it possible .Please suggest.
    Thank you
    Regards
    Dharma

  • Invoice Baseline Date = GR Doc. Date

    Hi all,
    I have a requirement to fetch the GR Doc. Date into the Baseline Date Field in MIRO.
    What are the settings to be done.
    Regards,
    Baskar

    Have a look into OSS Note 1156325 - BAdIs in the Logistics Invoice Verification environment
    among much more information:
    How does the BAdI affect the application?
    The (possibly) changed terms of payment are provided for the application. They form the basis for further processing in the Logistics Invoice Verification and in accounting.
    Example
    You want to carry out a determination of the terms of payment that differs from the standard; this could be, for example:
    The baseline date for payment is to be derived from the goods receipt date.
    The terms of payment entered by the user and available in the purchase orders are to be checked and the most favorable terms of payment are to be determined from this.
    You want to set a payment block in the document header for certain transactions.
    More information
    Documentation for the BAdI interface IF_EX_MRM_PAYMENT_TERMS

  • Change of baseline date in customer document

    Hi Experts,
    Baseline date field is uneditable and when we tried changing it through Mass, it throws error and it is obvious. But user has earlier change this field without changing the payment term. He has directly changed the baseline date. Is there any standard setting exists for this other than OB32?
    Regards
    Partha

    To change mass level, go to FBL5N and select the appropriate customer & perameters then select the line items. select the icon which is shown below then change baseline date as per your requirement then execute.
    Hi,
    Hope it will work.

Maybe you are looking for