IW31 how to set functional area as mandatory field?

Hi,
Can anyone guide me, is any way to set "functional area" as mandatory field (t-code iw31 Additional Data -> Functional area)? Thanks in advance.

go to the config:
SPRO:  PM & CS -> Maint. & Serv. Processing -> Maint. and Service Orders -> Define Field Selection  for Order Header Data (PM)
...Choose "Field Selection for order header data"
...toggle to change mode (use menu "field selection at the top left".  Then find your field (functional area CAUFVD-FUNC_AREA) and put the radio button to "required"
This will make it mandatory for all order types.  If you want only specific order types, use the influencing fields to pick only certain order types.

Similar Messages

  • IW31 how to set functional area as a default value?

    Dear all:
    Can anyone guide me, is any way to set "functional area" as a default value (t-code iw31 Additional Data -> Functional area)?
    Thanks in advance.

    Hello ,
    The standard funtionality is set to default the Functional Area from the Order Type.  I believe it is possible to change the default value for the Functional Area in Transaction KOT2. The PM order types should be selectable in this transaction.
    I hope this information has been helpful.
    Best Regards,
    Frank

  • Functional Area and Grant Fields on work Order

    Hi Experts,
    I want to know, how would I hide / set optional Functional area and Grant fields?
    There fields are appeared on IW31 (Header data tab -> GOTO -> Assignments -> Funds Management)
    Best Regards,

    Hi,
    I am going to perform FI Vs PM integration, In our case if funds are available then I can be planned and execute maintenance order, We have very experience resource in FI and that consultant advised me to set off these fields.
    What is GuiXT? from where I can use this? how I will use this?
    Regards,

  • What are the mandatory fields while creation of material master in differen

    what are the mandatory fields while creation of material master in different views?

    Hi Gopi,
      This is purely depends on the function configuration, which would be done MM consultants.  Kindly check with them.
    thanks & regards
    Kishore Kumar Maram

  • How to put Sales employee (Splcode) Mandatory Field, when adding A/R invoice

    Hi,
    Kindly solve, How to put Sales employee (Splcode) Mandatory Field, when adding A/R invoice.
    Regards,
    Rajeev.

    Follow this step..
    1. In SQL Server, go to the SAP B1 Database you're using. 
    2. then on the Object Explorer , go to Database Folder, explode the SAP DB->Programmability->Stored Procedures->SBO_SP_TransactionNotification * the only Stored Procedure that is allowed to be edited. Just right click and modify
    3.  Try to paste this -> and click F5
    If
    @object_type ='13' and @transaction_type in ('A','U')
    Begin
    If EXISTS
    select DocEntry from ONIV
    Where DocEntry = @list_of_cols_val_tab_del
    and  SlpCode<>'-1'
    Begin
    set @error_message = 'Please select the Sales Employee'
    set @error = 1
    END
    END
    Regards
    Kennedy

  • What and Which are the Mandatory fields in a Purchase Order?

    Please advise how I can check what the Mandatory fields are in a purchase order and which fields are not Mandatory ?
    Also, Please advise where this information can be found in the manual?
    Thanks in advance.
    Edited by: Darpal Thiarha on Feb 26, 2008 3:49 PM

    Hi,
    mandatory fields are:
    vendor
    docdate
    delivery date
    and other fields you may test in sbo_transactionnotification procedure.
    I don`t think that this is written in manual, you have to test to add the document with few fields filled and check it.
    Petr

  • What are the mandatory fields needed to setup/register the SIP phone manually in CUCM

    What are the mandatory fields needed to setup/register the SIP phone manually.Also, if someone can let me know the mandatory fields for Cisco based SIP phone and also the third party SIP hard phones like Avaya or any other Third party SIP phones both Soft phone and physical phone requirements...in CUCM
    Please suggest...I need to know if MAC address is mandatory for all Cisco SIP phone to setup 

    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/admin/7_1_2/ccmcfg/bccm-712-cm/b09sip3p.html
    http://www.cisco.com/c/en/us/support/docs/voice-unified-communications/unified-communications-manager-version-70/112110-phone-add-00.html

  • What are the mandatory fields in DTW for opening balances imports?

    Hi All,
    As the title mentions could you please help by listing all the mandatory fields in DTW for importing opening balances ?
    Thank you for your help,
    MB

    Hi Gordon and all,
    I have a look at the SDk help files and almost cried but am i right in thinking it is Account Code, Debit and Credit fields that are the mandatory fields for opening balances?
    These sdk help files are awful by the way...really awful.
    MB

  • How to set white spaces between the fields in dataset??

    Hi all,
    I am writing a set on information to from infotypes to a text file. Its a fixed width file. How do set white spaces in the fields for dataset?
    Example:
    TYPES: begin of header,
                    filler(40)  type c,
                    id(3)        type c,
                    filler2(7) type  c,
                    delimiter  type  c,
                 end of header.
    DATA header type header.
    header-filler1 = ' '.
    header-id       = '100'.
    header-filler2 = ' '.
    header-delimiter = cl_abap_char_utilities=>newline.   ( do it to get a new line)
    my_table = header.
    append my_table.
    DATA: out_file(256) type C,
          codepage_ref type ref to CX_SY_CONVERSION_CODEPAGE,
          out_char type c,
          size type i,
          insert_string type string,
          insert_size type i.
      out_file = filename.
      open dataset out_file for output in text mode ENCODING NON-UNICODE.
      LOOP AT my_table.
        size = strlen( my_table ).
        insert_string = ''.
        DO size TIMES.
          offset = sy-index - 1.
          try.
              out_char = my_table+offset(1).
              IF out_char = SPACE.
                CONCATENATE insert_string '' INTO insert_string SEPARATED BY SPACE.
              ELSE.
                CONCATENATE insert_string out_char INTO insert_string.
                transfer insert_string to out_file NO END OF LINE .
                insert_string = ''.
              ENDIF.
            catch CX_SY_CONVERSION_CODEPAGE.
              insert_size = strlen( insert_string ) - 1.
              insert_string = insert_string(insert_size).
          endtry.
        ENDDO.
       transfer CL_ABAP_CHAR_UTILITIES=>NEWLINE TO out_file NO END OF LINE.
      ENDLOOP.
      close dataset out_file.
    How do I get to insert the space for filler1 and filler2?
    Edited by: Siong Chao on Oct 4, 2011 4:56 AM
    Edited by: Siong Chao on Oct 4, 2011 8:27 AM
    Edited by: Siong Chao on Oct 4, 2011 8:29 AM

    problem lies in the open dataset codes
    Used:
    open dataset out_file for output in text mode encoding non-unicode message msg.
    if sy-subrc= 0.
    loop at my_table.
    transfer my_table to out_file
    transfer cl_abap_char_utilities=>newline to out_file no end of line.
    endloop.

  • How to make Functional area to be mandotory in KS01

    Hi all,
    My requirement is to make the Functional area field in Transaction KS01,KS02, KS03 to be mandotory.
    are there any SPRO settings for that...?
    Or Is there any Exit ?
    Thanks in advance.
    Regards,
    Amruta

    Hi,
    There is no SPRO setting to make functional area mandatory.
    But you can use validation functionality to validate the master data before you save.
    This may Help
    Regards
    Shantanu

  • How to change Functional area in cost center master

    Dear Guru,
    As required, i have to change the Functional area in cost center master data.
    SAP Warning Message :
    Transaction data exists; note long text
    Note
    A change of the functional area can lead to inconsistencies when reversing documents.
    If documents are reversed after the functional area has been changed, in some cases,
    the reversal document may be posted with the new functional area.
    My question is how to change the new functional area to the old one after reversing documents.
    We aren't using Special Purpose Ledger . Please Help me, thanks.

    Hi
    For the transactions already posted you will not be able to change the Functional Area. Also if those documents are getting reversed now after the change, the reversal document will get posted to the new Functional Area only.
    For all those documents which gets reversed after the change, you need to pass FI journal entry by changing the Functional area in the journal entry and not in the Cost Center Master
    Regards,
    Lakshmanan Krishnan

  • SQ01 (How to set Global Area as default)

    Hi All
    In SQ01, i find 2 environments in Query Areas - Global Area & Standard Area. Everytime i execute SQ01 transaction, it takes me to Standard Area, then i have to change it to Global Area & then select the user group. I would like to know how i can set Global Area as default & also a particular user group, so that everytime i run SQ01, it directly takes me to Global Area & the particular user group, so i can execute my query directly instead of having to change it each time.
    Hope my problem is clear, await inputs.
    Vivek

    Hello Vivek,
    You need to maintian some default parameters in your User master record.
    Parameter ID :
    AQB for User Group
    AQW for Query Area.
    Select the AQB from the drop-down and give your default user group in the parameter value.
    Regards,
    Naimesh Patel

  • How to set input "Description" to mandatory?

    Hi all,
    How to set input "description", from infrastructure blueprint request form, to mandatory?
    Thanks in advance.

    Hi all,
    How to set input "description", from infrastructure blueprint request form, to mandatory?
    Thanks in advance.

  • How to get Function Area (or Cost Center) from COSP ?

    Dear experts,
    I am new to FICO and here is one question need your help:
    Now I have table COSP, can anybody let me know how can I get Function Area through joining some other table?
    Or how to get the cost center from COSP, since I know then I can go to CSKS to find the function area.
    Any post would be appreciated and thank you all in advance!
    Tim
    Edited by: ctsiszidane on Feb 12, 2011 4:07 AM

    Ajay,
    Thanks for your reply.
    Actually this is a requirement for our BW system. I checked all the records to find their OBJNR start with "OR", but we need to get the function area information. Do you know how can I get that?
    The link below listed all the fields we have on BW side, actually it has function area, but it returns blank, we tried to apply one OSS note in the source ECC system, but still no value returned for this field. So we have to find another way to get the function area.
    http://help.sap.com/saphelp_em70/helpdata/en/29/5f4cf98c9141488cda37e173549834/content.htm
    Point has been assigned to you and thanks for your time in advance!
    Tim
    Edited by: ctsiszidane on Feb 12, 2011 6:39 AM

  • How to fill Functional Area on Appropriation request

    Hi guys!
    We faced a problem to fill standart field IMAK-FKBER (functional area) on Appropriation request. Despite the fact it exists in standart table, there are no standart ways to fill that field through IMA1N or IMA11.
    However we assigned FA NG000001 to a Cost center 10000001 and defined that cost center in AR, but still after saving chnages no value changed in IMAK-FKBER?
    Does anyone know which organisational units (company code, business area, functional location) effect on the value of functional area in IMAK table? Or is there other way to define FA for appropriation request?
    Any help appreciated.

    Hi Kir Zu,
    I suspect this is an obsolete field, since it makes little sense to be derived from anything at all, while at the same time it is not on the screen.
    SAP has a number of obsolete fields even in Customizing activities that allow an entry, but ignored by standard programs.
    The best way to confirm it would be to look through ABAP code for AR data save.  You can try to populate it with a user exit, but it also makes little sense since the field is not visible.
    Also look at the function that creates WBS-element/Order from IMA11, it is passing the master data values to respective WBS/Order and your ABAPer can see if Functional Area is passed or not.
    Functional Area makes sense only for Account Assignment Objects used in Financial Accounting, while AR is not an account assignment object.
    Regards,
    Paulo

Maybe you are looking for

  • Scheduled Job to gather stats for multiple tables - Oracle 11.2.0.1.0

    Hi, My Oracle DB Version is: BANNER Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production PL/SQL Release 11.2.0.1.0 - Production CORE 11.2.0.1.0 Production TNS for Linux: Version 11.2.0.1.0 - Production NLSRTL Version 11.2.0.1.

  • Issue opening pdf's in IE8 XP

    Hello, I'm having trouble opening pdf's through an internet sharepoint. When left clicking them the page either refreshes or gives the error "Internet Explorer has stopped trying to restore this website. It appears that the website continues to have

  • Changing a Pcs date and time

    Can anyone tell me which Windows dll is used to change the date and time.

  • Need Help with Extension

    Hi, I want to be able to type in a name followed by my URL but I can't figure out how to do this. For example. If you type in www.adobe.com/type you are taken to Adobe's type page. I created a .html page named "type.html" so my URL will be "mywebsite

  • New messages in Gmail not "indicated" with blue dot

    I recently had to re-setup gmail because it started acting funky. I followed all the steps, and have double-checked my settings. I am getting new mail BUT none of the mail ever gets a "blue dot" or other indication that it's new. It just comes in as