Basic plant settings in FI

Hi Friends,
We have created new plant and assigned to  company code from MM side.
What are the basic settings for Plant from FI side.
Is there any other configuration needed.
I know about OBYC.
Regards,
Suresh

If valuation is done at plant level or grouping level.
If grouping level - assign the plant to the group - No more setting required.
All automatic account assignments are at COA level which is attached to Company code.

Similar Messages

  • BASIC PLANT DATA VIEW in BAPI_MATERIAL_SAVEDATA

    HI,
        I need to save some fields in the BASIC PLANT DATA View using BAPI_MATERIAL_SAVEDATA. Would anyone know the HEADER VIEW DATA I need to select and how I am going to go about this?
    I am able to successfully save a material but I am having problems in creating the material's BASIC PLANT DATA VIEW.
    Thanks!

    Check out this code:
    *& Report  ZBAPI_MATERIAL_SAVEDATA
    *& AUTHOR
    *& PURPOSE : THIS REPORT USES BAPI MATERIAL SAVE DATA TO UPDATE AND CREATE
    *&           THE MATERIAL
    REPORT  ZBAPI_MATERIAL_SAVEDATA NO STANDARD PAGE HEADING MESSAGE-ID (ZHNC).
    TYPES:BEGIN OF TY_MAT,
           MATERIAL(4),
           IND_SECTOR(1),
           MATL_TYPE(4),
    **       BASIC_VIEW(1),
    **       SALES_VIEW(1),
    **       PURCHASE_VIEW(1),
    *       STORAGE_VIEW(1),
           MATL_GROUP(9),
           BASE_UOM(3),
           BASE_UOM_ISO(3),
    *       MATL_GROUP1(1),
    *       BASE_UOM1(1),
    *       BASE_UOM_ISO1(1),
           PLANT(4),
           DEL_FLAG(1),
           PUR_GROUP(3),
           BASE_QTY(13),
    *       PLANT2(4),
    *       DEL_FLAG5(1),
    *       PUR_GROUP1(1),
    *       BASE_QTY1(1),
    *       PLANT3(4),
           STGE_LOC(4),
           MRP_IND(1),
    *       PLANT4(4),
    *       STGE_LOC1(4),
    *       MRP_IND1(1),
           SALES_ORG(4),
           DISTR_CHAN(2),
           DEL_FLAG1(1),
           MIN_ORDER(13),
    *       SALES_ORG1(4),
    *       DISTR_CHAN1(2),
    *       DEL_FLAG2(1),
    *       MIN_ORDER1(1),
           LANGU(2),
          MATL_DESC(40),
       END OF TY_MAT.
    DATA: IT_DATA TYPE TABLE OF TY_MAT,
          WA_DATA LIKE LINE  OF IT_DATA.
    *decalraing flag
    data: v_flag value ''.
    *DECLARING WORK AREAs  TO BE PASSED TO THE FUNCTION MODULE.
    DATA: BAPI_HEAD LIKE BAPIMATHEAD,
          BAPI_CLIENTDATA LIKE BAPI_MARA,
          BAPI_CLIENTDATAX LIKE BAPI_MARAX,
          BAPI_PLANTDATA LIKE BAPI_MARC,
          BAPI_PLANTDATAX LIKE  BAPI_MARCX,
          BAPI_STORAGELOCATIONDATA LIKE BAPI_MARD,
          BAPI_STORAGELOCATIONDATAX LIKE BAPI_MARDX,
          BAPI_SALESDATA LIKE BAPI_MVKE,
          BAPI_SALESDATAX LIKE BAPI_MVKEX,
          BAPI_MAKT LIKE BAPI_MAKT,
          BAPI_RETURN LIKE BAPIRET2.
    *INTERNAL TABLE TO HOLD THE MATERIAL DESCRIPTION
    DATA: BEGIN OF IT_MAKT OCCURS 0.
    INCLUDE STRUCTURE BAPI_MAKT.
    DATA END OF IT_MAKT.
    DATA:BEGIN OF IT_RET OCCURS 0.
    INCLUDE STRUCTURE BAPIRET2.
    DATA END OF IT_RET.
    *INTERNAL TABLE TO HOLD HEADER DATA
    DATA: IT_EXCEL TYPE ALSMEX_TABLINE OCCURS 0 WITH HEADER LINE.
    *SELECTION-SCREEN ELEMENTS
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETER: FNAME TYPE RLGRAP-FILENAME OBLIGATORY DEFAULT 'C:\Documents and Settings\Administrator\Desktop\MATMAS.XLS' .
    PARAMETERS: P_BEGCOL TYPE I DEFAULT 1 NO-DISPLAY,
                P_BEGROW TYPE I DEFAULT 1 NO-DISPLAY,
                P_ENDCOL TYPE I DEFAULT 100 NO-DISPLAY,
                P_ENDROW TYPE I DEFAULT 32000 NO-DISPLAY.
    SELECTION-SCREEN END OF BLOCK B1.
    *DECLARATION OF EXCELAL TABLE
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FNAME.
    PERFORM F_GET_FILE USING FNAME.
    START-OF-SELECTION.
    PERFORM F_XLS_ITAB USING FNAME
                       CHANGING IT_EXCEL.
    PERFORM F_MOVE_DATA.
    perform F_GET_DATA.
    *&      Form  F_GET_FILE
    *       text
    *      -->P_FNAME  text
    *      <--P_SY_SUBRC  text
    FORM F_GET_FILE  USING    P_FNAME LIKE FNAME.
    CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
    EXPORTING
       PROGRAM_NAME        = SYST-REPID
       DYNPRO_NUMBER       = SYST-DYNNR
    *   FIELD_NAME          = ' '
    *   STATIC              = ' '
    *   MASK                = ' '
      CHANGING
        FILE_NAME           = P_FNAME
    * EXCEPTIONS
    *   MASK_TOO_LONG       = 1
    *   OTHERS              = 2
    IF SY-SUBRC  0.
    MESSAGE E006(ZHNC).
    ENDIF.
    ENDFORM.                    " F_GET_FILE
    *&      Form  F_XLS_ITAB
    *       text
    *      -->P_FNAME  text
    *      <--P_IT_EXCEL  text
    FORM F_XLS_ITAB  USING    P_FNAME
                     CHANGING P_IT_EXCEL.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
      EXPORTING
        FILENAME                      = FNAME
        I_BEGIN_COL                   = P_BEGCOL
        I_BEGIN_ROW                   = P_BEGROW
        I_END_COL                     = P_ENDCOL
        I_END_ROW                     = P_ENDROW
      TABLES
        INTERN                        = IT_EXCEL
    EXCEPTIONS
       INCONSISTENT_PARAMETERS       = 1
       UPLOAD_OLE                    = 2
       OTHERS                        = 3
    IF SY-SUBRC  0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.                    " F_XLS_ITAB
    *&      Form  F_MOVE_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM F_MOVE_DATA .
    DATA : LV_INDEX TYPE I.
    FIELD-SYMBOLS <FS>.
    *--- Sorting the internal table
    SORT IT_EXCEL BY ROW COL.
    CLEAR IT_EXCEL.
    LOOP AT IT_EXCEL.
    MOVE IT_EXCEL-COL TO LV_INDEX.
    *--- Assigning the each record to an internal table row
    ASSIGN COMPONENT LV_INDEX OF STRUCTURE WA_DATA TO <FS>.
    *--- Asigning the field value to a field symbol
    MOVE IT_EXCEL-VALUE TO <FS>.
    AT END OF ROW.
    APPEND WA_DATA TO IT_DATA.
    CLEAR WA_DATA.
    ENDAT.
    ENDLOOP.
    ENDFORM.                    " F_MOVE_DATA
    *&      Form  F_GET_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM F_GET_DATA .
    LOOP AT IT_DATA INTO WA_DATA.
    MOVE-CORRESPONDING WA_DATA  TO  BAPI_HEAD.
    BAPI_HEAD-BASIC_VIEW ='X'.
    BAPI_HEAD-SALES_VIEW ='X'.
    BAPI_HEAD-PURCHASE_VIEW ='X'.
    BAPI_HEAD-STORAGE_VIEW ='X'.
    MOVE-CORRESPONDING WA_DATA TO BAPI_CLIENTDATA.
    BAPI_CLIENTDATAX-MATL_GROUP = 'X'.
    BAPI_CLIENTDATAX-BASE_UOM = 'X'.
    BAPI_CLIENTDATAX-BASE_UOM_ISO = 'X'.
    MOVE-CORRESPONDING WA_DATA TO BAPI_PLANTDATA.
    BAPI_PLANTDATAX-PLANT = BAPI_PLANTDATA-PLANT.
    BAPI_PLANTDATAX-DEL_FLAG = 'X'.
    BAPI_PLANTDATAX-PUR_GROUP = 'X'.
    BAPI_PLANTDATAX-BASE_QTY = 'X'.
    MOVE-CORRESPONDING WA_DATA TO BAPI_STORAGELOCATIONDATA.
    BAPI_STORAGELOCATIONDATA-PLANT = BAPI_PLANTDATA-PLANT.
    BAPI_STORAGELOCATIONDATAX-PLANT = BAPI_STORAGELOCATIONDATA-PLANT.
    BAPI_STORAGELOCATIONDATAX-STGE_LOC = BAPI_STORAGELOCATIONDATA-STGE_LOC.
    BAPI_STORAGELOCATIONDATAX-MRP_IND = 'X'.
    MOVE-CORRESPONDING WA_DATA TO BAPI_SALESDATA.
    BAPI_SALESDATAX-SALES_ORG = BAPI_SALESDATA-SALES_ORG.
    BAPI_SALESDATAX-DISTR_CHAN = BAPI_SALESDATA-DISTR_CHAN.
    BAPI_SALESDATAX-DEL_FLAG = BAPI_SALESDATA-DEL_FLAG.
    BAPI_SALESDATAX-MIN_ORDER = 'X'.
    REFRESH IT_MAKT.
    IT_MAKT-LANGU = WA_DATA-LANGU.
    IT_MAKT-MATL_DESC = WA_DATA-MATL_DESC.
    APPEND IT_MAKT.
    CLEAR IT_RET.
    REFRESH IT_RET.
    PERFORM F_CALL_BAPI.
    READ TABLE IT_RET WITH KEY TYPE = 'S'.
    IF SY-SUBRC EQ 0.
    PERFORM F_BAPI_COMMIT.
    WRITE:/ 'MATERIAL CREATED OR UPDATED SUCESSFULLY WITH MATERIAL NO',WA_DATA-MATERIAL.
    ELSE.
    MESSAGE E000(ZHNC) WITH 'ERROR IN CREATING THE MATERIAL'.
    *WRITE: / 'ERROR IN CREATIN MATERIAL',IT_RET-MESSAGE.
    *PERFORM F_DOWNLOAD.
    ENDIF.
    *ENDIF.
    ENDLOOP.
    ENDFORM.                    " F_GET_DATA
    *&      Form  F_CALL_BAPI
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM F_CALL_BAPI .
    CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
      EXPORTING
        HEADDATA                   = BAPI_HEAD
       CLIENTDATA                 =  BAPI_CLIENTDATA
       CLIENTDATAX                =  BAPI_CLIENTDATAX
       PLANTDATA                  =  BAPI_PLANTDATA
       PLANTDATAX                 =  BAPI_PLANTDATAX
       STORAGELOCATIONDATA        =  BAPI_STORAGELOCATIONDATA
       STORAGELOCATIONDATAX       =  BAPI_STORAGELOCATIONDATAX
       SALESDATA                  =  BAPI_SALESDATA
       SALESDATAX                 =  BAPI_SALESDATAX
    IMPORTING
       RETURN                     =  IT_RET
    TABLES
       MATERIALDESCRIPTION        = IT_MAKT
    *   UNITSOFMEASURE             =
    *   UNITSOFMEASUREX            =
    *   INTERNATIONALARTNOS        =
    *   MATERIALLONGTEXT           =
    *   TAXCLASSIFICATIONS         =
    *   RETURNMESSAGES             =
    *   PRTDATA                    =
    *   PRTDATAX                   =
    *   EXTENSIONIN                =
    *   EXTENSIONINX               =
    APPEND IT_RET.
    ENDFORM.                    " F_CALL_BAPI
    *&      Form  F_BAPI_COMMIT
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM F_BAPI_COMMIT .
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    * EXPORTING
    *   WAIT         =
    * IMPORTING
    *   RETURN        =
    ENDFORM.                    " F_BAPI_COMMIT

  • New depo plant settings in SD CIN

    Dear Experts,
    we have created new Depo Plant, I would like to know configuration settings and assignments related SD CIN, we are using 4.6version with CIN related  Settings,
    is there any document, I tried in SDN search forumn i did not get, if you have please let me know,
    Earliest reply is highly appreciated.
    Thanks and Best Regards,
    Muralidharan S

    Hai,
    I am aware of 6.0 version for the SD CIN Settings for the Depot excised plant.
    But any how i will provide some suggestions ,that may useful to you.
    Create the new plant from MM Side.
    Create the Plant settings from SD Side like,creation of shipping point, assignment of sales line,,OVFO,OVXC,OVXD,OVL2,OVL3 and create the shipping data like create the plant as depot and then assign to the purchase order in that screen.
    and later go the logistics general  - taxes on goods and movements - india  - basic settings,master data,account determinatinon,and in the business transactions only do the outgoing excises invoices configuration settings.
    then create the sto sales process and some other excise sales and then check ,
    Revert for any
    Kalyan

  • Customization for Plant  missing in table Plant settings

    Hi CIN Experts,
    The CIN setting are maintained for Plant and company. J1IIN, Excise invoice creation is OK for billing docs.
    But the error is while using J1IIN for proforma invoice(Delivery based). Message no. 8I303.
    Thank You.

    Check this thread
    [Re: Error during excise invoice creation|http://forums.sdn.sap.com/thread.jspa?threadID=1517554]
    Else, go to IMG Logistics-General > Tax on Goods Movements > India > Basic Settings > Maintain Plant settings.  There check whether you have maintained the plant code with the Excise Registration code.  Most probably, the said error will also come if any setting is not done properly here.
    G. Lakshmipathi

  • How to make like Encarta encyclopedia and basic screen settings and how to lock the documents in the entire data.

    dear guys how can i make like a off line Encarta encyclopedia and basic screen settings and how to lock the documents in the entire data in visual studio.                 
       thank you. 
                                                              Million
    Getu

    Dave,
    I will +1 Pixelan's products. They are great, simple, and have about the best support that I know of. When you explore, say Pixelan's SpiceMaster, dig deeply. Things appear rather mundane, on the surface, but there is so very much power lurking, just below the surface. I could almost imagine a 1000 page manual to cover every possible aspect of that program... Every time that I use it, I learn something new, and wonderful.
    Good luck,
    Hunt

  • QM PLant settings - Cost center

    HI QM Gurus,
    In the inspection lot completion tab for QM Plant settings in customization
    we have two feilds
    Cost Center - Scrap and Destruction
    What is the significance of Cost center feilds in QM Plant settings?
    What will happen if I do not use any of these feilds?
    Are they only for reporting purpose?
    I believe for each movement type we define one cost center.
    What is the need to define a different cost center for QM.
    Kindly give ur comments
    Regards
    JEEVAN

    Hi Jeevan,
    You can post quantities of material from an inspection lot to the following destinations:
    1. To unrestricted-use stock
    2. To scrap
    3. To sample usage
    4. To blocked stock
    5. To new material
    6. To sample reserves
    7. Return delivery
    In system, Each and every movement will be monitored.
    If you are collecting costs on manufacturing orders, you can post the scrap costs to a cost center. You cannot settle scrap costs to a cost center if you are using a product cost collector.
    **Process Flow**
    The planned quantity of the order is 10 units. The yield is 8 pieces and the scrap quantity is 2 pieces.
    You change the settlement rule so that 80% of the costs can be settled to the material stock account for that material. You then create a new distribution rule in which the remaining 20% of the costs is settled to a cost center.
    The actual costs for the order are USD 2,800. When 8 pieces are delivered to stock, the system charges USD 2,000 to the order.
    80% of the total cost is USD 2,240.
    20% of the total cost is USD 560.
    The order was already credited by USD 2,000 upon delivery. During settlement, the system then settled USD 240 to the material stock account of the material and USD 560 to the cost center.
    Thanks,
    Rgds...

  • Basic configuration settings need to be done in ABAP-WebDynpro.

    Hello Friends,
                         Any Basic setings need to done in the configurator to run WebDynpro-ABAP smoothly, settings like http time out parameter.
    Cheers,
    Sam

    Hi Sam,
    The basic FQDN settings need to be done to run the Webdynpro Abap..
    Here's the link regarding it,
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/e86de5008b4d9ae10000000a155369/frameset.htm

  • Use of Selection period in Plant settings

    Hi Masters,
    Can any body explain me what is the use of selection period(general settings tab) in QM plant settings?
    -Mohan

    If the MRP see a requirement of a SO, it looks for forecasts if they can be decreased according to this SOu2019s requirement. It looks for it from the date of the SO first backward or forward according to the setting.
    And if looks for the forecast in the given day in the appropriate direction.

  • Settings: Why are basic webservices settings not included (i.e. OneDrive behavioural settings are hidden in the system tray)?

    What is the idea of a new control panel if you can not in fact get an overview or kind of dash board?
    Settings includes PC+Cloud, i.e. Accounts let you do settings for the cloud, i.e. connect to your live account.
    But why are basic webservices settings not included (i.e. OneDrive settings is in the system tray)?
    Great consolidation is happening now between settings, control panel - i.e. getting rid of obfuscation, blur and complexity between legacy settings (control panel) and actual kind of settings. However do not recreate the problem by leaving the
    next step of integrating cloud settings across the middleware. What is the idea of a new control panel if you can not in fact get an overview or kind of dash board?

    Hi,
    Interesting issue, what about other configuration or settings? Do they work fine or keep reverting after a reboot? Have you tested this issue in another user account? What is the result?
    Regarding to unable to save settigs for current user hive, I doubt whether there's an application you installed recently or an malware\virus changes the permission of registry entry or value of registry keys like
    HKCU\Software\Classes which causes this issue.
    Yolanda Zhu
    TechNet Community Support
    Hmm... I don't understand. Nothing is reverting after a reboot, as well I'm
    not unable to save settings in the current user's hive. The correspondent registry keys can be saved perfectly fine and they are
    deleted, not reverted after a reboot. I pointed to the exact code that does it, the code is located in Microsoft DLL with all certificates and digital signatures intact. Permissions obviously don't matter, since svchost.exe is executed with the highest
    integrity level and under the System user account, the keys in question inherit permissions, which allow System to do whatever it needs without restrictions
    by default, you can't change it to allow more.
    So can you explain how it can be some malware?
    The issue is intermittent, I don't have a 100% repro, therefore “testing” under another user account is doubtful.
    Dei nostra Matrix est.

  • Depot Plant Settings in CIN

    HI
    I need some information related to Depot Plant. I do have one Production plant and one depot plant. If I want to make one plant as depot plant in CIN. What extra setting i need to do on it. I have made the settings in Production Plant.
    Regards
    Rahul

    This indicator will decide whether RG23D register will come in picture for the plant or not. And also if this is activated then Plant is considered as Depot in Excise.
    Go to SPRO > Logistics - General > Tax on Goods Movements > India > Basic Settings > Maintain Excise Groups > Here activate "Depot indicator" for your plant and Excise Group combination and also activate "Folio Numbers" and "Depot Excise Invoice"
    At the time of GR, you will get an option of "RG23D Entry" in MIGO
    Also refer the following link for Depot Sales Process;
    [ J95 - Sales at Depot (New)|http://help.sap.com/bestpractices/BBLibrary/html/J95_BB_Description_V2_EN_IN.htm]

  • Basic system settings in ECC & In BW

    Dear SDNers,
    What are system basic settings(Configuration settings) in ECC need to be done relevant to BW if the BW system has to stsart.
    Please guide me with some SAP best practice guides to follow .
    Thnaks,
    Satya

    Hi
    You can more information in this B84_BB_ConfigGuide_EN_DE.doc file , search that doument in Google.
    RFC main T.code is SM59, need to set the inbound and out bound settings.
    Regards

  • QT Useful Basic Export Settings?

    OK, I know I'm fairly new to all this mullarky so apologies for the blindingly obvious post but what I could really do with right now (apart from another beer) is some BASIC settings for exporting a PAL timetine to a self-contained PAL movie. Actually i don't quite know whether that's the correct name but at the moment I've a shed load of clips all in the right order on the timeline and i'd like to have just one IDENTICAL FORMAT file available. Is there a basic set of settings I can apply when "exporting using quicktime conversion" which will give me the same resolution and size - there's just too many options at the mo and my brain hurts!! (also I've run out of beer...) R.L. xx

    redlobster
    there must be another beer somewhere ... have you tried behind the sofa or any other of those places that people hide their beer at a party?
    on the fcp export front, use File > Export > Quicktime Movie... (not Conversion)
    in trhe QT Movie export window, give it a name and point it somewhere on your disc ... keep the settings as "Current Settings"
    now, if you want a standalone file that you can give to someone else and/or use after all the original media files have been deleted, then you must also check the box labelled "Make movie self-contained" (but don't recompress all frames)
    if you don't check that box then it will only create a "reference" movie, which will look and feel just like a normal one, but actually is just pointers to the original media (so if you then delete the original files it won't work anymore)
    hope it helps
    Andy

  • Cannot save Basic privacy settings

    Hi,
    I'm trying to save "Only allow people in my Contact list to contact me" under the Basic options in the Privacy options. When I press save and return to check that that choice has been retained the setting is back to "Allow anyone to contact me". Meanwhile in the Advanced options similar choices save without any problem. However, I continue to receive notices from unknown people wanting to become contacts.
    I have tried one solution of signing out for 5 seconds and then signing back in, but this didn't work.
    I use W7 x64 and Skype 6.10.0.104. on 2 PCs and I have an Android device running skype too, a Samsung Galaxy S3 and occasionally a Samsung Galaxy Note.
    Your help is much appreciated,

    There are no Privacy settings that can prevent people from sending new contact invitations to you. Privacy settings have only effect on chat messages and calls, but not on new contact invitations.

  • Edit basic users settings but not security group assignments

    Hello,
    Is there a way to configure a security group so that users can manage basic user details but cannot add or remove users from security groups?
    Thank you,

    Hi,
    your question is not clear , what do you mean with "security group" in Oracle database ?

  • EDI Basic configuration settings for Third party sales

    Dear All,
    Could you help step by step how to configure EDI to send PO automatically to outsourcing company for the Third party sales order.
    Thanks
    CG Balaji

    Hi roberto
    Please send me basic EDI configuration document to my mail id [email protected] this will help me a lot.
    Thanks and regards,
    CG Balaji

Maybe you are looking for