Need cost of materials of plant to be posted to different profit center

hi,
when we create a maintenance order in plant maintenance module, profit center is getting defaulted from the cost center assigned to main work center, all the material costs are psoted to this profit center, but my requirement is cost of materials of specific plant should be posted to different profit center. is there any way i can do this.
thanks

Dear Monica,
One way is to maintain the entries in a ztable for material and cost center relation and implement a proper BAdi/Enhancement.
Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
REPORT ZTEST.
TABLES: TSTC,
TADIR,
MODSAPT,
MODACT,
TRDIR,
TFDIR,
ENLFDIR,
SXS_ATTRT ,
TSTCT.
DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
DATA: FIELD1(30).
DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
PARAMETERS: P_TCODE LIKE TSTC-TCODE,
P_PGMNA LIKE TSTC-PGMNA .
DATA: WA_TADIR TYPE TADIR.
START-OF-SELECTION.
IF NOT P_TCODE IS INITIAL.
SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
ELSEIF NOT P_PGMNA IS INITIAL.
TSTC-PGMNA = P_PGMNA.
ENDIF.
IF SY-SUBRC EQ 0.
SELECT SINGLE * FROM TADIR
WHERE PGMID = 'R3TR'
AND OBJECT = 'PROG'
AND OBJ_NAME = TSTC-PGMNA.
MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
IF SY-SUBRC NE 0.
SELECT SINGLE * FROM TRDIR
WHERE NAME = TSTC-PGMNA.
IF TRDIR-SUBC EQ 'F'.
SELECT SINGLE * FROM TFDIR
WHERE PNAME = TSTC-PGMNA.
SELECT SINGLE * FROM ENLFDIR
WHERE FUNCNAME = TFDIR-FUNCNAME.
SELECT SINGLE * FROM TADIR
WHERE PGMID = 'R3TR'
AND OBJECT = 'FUGR'
AND OBJ_NAME EQ ENLFDIR-AREA.
MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
ENDIF.
ENDIF.
SELECT * FROM TADIR INTO TABLE JTAB
WHERE PGMID = 'R3TR'
AND OBJECT in ('SMOD', 'SXSD')
AND DEVCLASS = V_DEVCLASS.
SELECT SINGLE * FROM TSTCT
WHERE SPRSL EQ SY-LANGU
AND TCODE EQ P_TCODE.
FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
WRITE:/(19) 'Transaction Code - ',
20(20) P_TCODE,
45(50) TSTCT-TTEXT.
SKIP.
IF NOT JTAB[] IS INITIAL.
WRITE:/(105) SY-ULINE.
FORMAT COLOR COL_HEADING INTENSIFIED ON.
Sorting the internal Table
sort jtab by OBJECT.
data : wf_txt(60) type c,
wf_smod type i ,
wf_badi type i ,
wf_object2(30) type C.
clear : wf_smod, wf_badi , wf_object2.
Get the total SMOD.
LOOP AT JTAB into wa_tadir.
at first.
FORMAT COLOR COL_HEADING INTENSIFIED ON.
WRITE:/1 SY-VLINE,
2 'Enhancement/ Business Add-in',
41 SY-VLINE ,
42 'Description',
105 SY-VLINE.
WRITE:/(105) SY-ULINE.
endat.
clear wf_txt.
at new object.
if wa_tadir-object = 'SMOD'.
wf_object2 = 'Enhancement' .
elseif wa_tadir-object = 'SXSD'.
wf_object2 = ' Business Add-in'.
endif.
FORMAT COLOR COL_GROUP INTENSIFIED ON.
WRITE:/1 SY-VLINE,
2 wf_object2,
105 SY-VLINE.
endat.
case wa_tadir-object.
when 'SMOD'.
wf_smod = wf_smod + 1.
SELECT SINGLE MODTEXT into wf_txt
FROM MODSAPT
WHERE SPRSL = SY-LANGU
AND NAME = wa_tadir-OBJ_NAME.
FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
when 'SXSD'.
For BADis
wf_badi = wf_badi + 1 .
select single TEXT into wf_txt
from SXS_ATTRT
where sprsl = sy-langu
and EXIT_NAME = wa_tadir-OBJ_NAME.
FORMAT COLOR COL_NORMAL INTENSIFIED ON.
endcase.
WRITE:/1 SY-VLINE,
2 wa_tadir-OBJ_NAME hotspot on,
41 SY-VLINE ,
42 wf_txt,
105 SY-VLINE.
AT END OF object.
write : /(105) sy-ULINE.
ENDAT.
ENDLOOP.
WRITE:/(105) SY-ULINE.
SKIP.
FORMAT COLOR COL_TOTAL INTENSIFIED ON.
WRITE:/ 'No.of Exits:' , wf_smod.
WRITE:/ 'No.of BADis:' , wf_badi.
ELSE.
FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
WRITE:/(105) 'No userexits or BADis exist'.
ENDIF.
ELSE.
FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
WRITE:/(105) 'Transaction does not exist'.
ENDIF.
AT LINE-SELECTION.
data : wf_object type tadir-object.
clear wf_object.
GET CURSOR FIELD FIELD1.
CHECK FIELD1(8) EQ 'WA_TADIR'.
read table jtab with key obj_name = sy-lisel+1(20).
move jtab-object to wf_object.
case wf_object.
when 'SMOD'.
SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
when 'SXSD'.
SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
ENDCASE.
Alternatively, you can do the following:
1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
2. Double click on to the program name and go inside the program (Abap editor)
3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
ull get a list of Enhancements related to that Componene....
5. Choose which ever enhancement will suit ur business need ..
6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
For a user exit......
Finding whether there is any User Exit or not for tcode VA42
1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
2. Double click on to the program name and go inside the program (Abap editor)
3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
Hope this will help.
Regards,
Naveen.

Similar Messages

  • Plant transfer with margin with different profit centers

    Dear Experts,
    We have a scenario wherein we manufacture the product at plant 100 and sell through plant 200.
    As per new requirement, above plant transfer should be done with the margin.
    Example:
    Plant 100, product Std price: 1000
    At the time of transfer to plant 200, product price should be 1500.
    Rs. 500 will be the fixed margin for the year. next year it may change.
    Plant 100, Prodcut price: 1000, profit center 101
    Plant 200, product price 1500, profit center 201
    Please guide me hoe to set up above case
    Thanks

    Hello Simi,
    You can define a new condition type for the price at the second plant 200 (say ZP01 in the below screenshot) and maintain this condition type once in a year using MEK1. The condition class of this should be B - prices
    Also, both plant 100 and 200 will need to have price control Standard at 1000 and 1500 respectively.
    Now define a condition type(say Z000 in the screenshot below) and call it STO notional profit/margin ( I call this notional as you are gaining a profit from 'selling' to your own plant). This condition type should have condition class A -Discount/Surcharge
    In the pricing procedure, assign subtotal E against condition type P101 (this standard condition type automatically picks Standard price in plant 100). Against ZP01, assign subtotal D.
    Now against Z000 assign calculation type 12 (calculates ZP01 - P101). Against Z000, maintain an accrual key ZW1 (say) and assign this to an 'STO profit' G/L in OBYC.
    Your postings in PGI should look as below in the 2nd screenshot. The profit centers in my case is the same, however, you can maintain different profit centers in Plant data 1 for the material in the 2 plants.

  • Cost elements Assign to different profit center

    Hi All,
    I have 3 costelements are, these cost elements i have to assign to profit center.
    Where i have to assign these things, i mean which transaction code i have to use.
    Thanks
    Rams
    09833624515

    Dear,
    Use transaction OKB9 to assgin cost elements to a profit center.
    One cost element can be assgined to one profit center only.
    Regards,
    Chintan Joshi

  • Profit Center Master Data- Segement need to be changed

    Hello Gurus,
    We have somehow set wrong segment in Profit Center Master Data, We need to change the segment. Transction is posted to the profit center what is the easy way out to change the segment for profit Center master data?
    Any help will be apreciated? i have gone through the SAP Note
    940721  - KE52: Segment in prof center master record cannot be changed
    Or a work around solution.
    Thanks
    Prasad

    Hi Prasad,
    As you already find out, once there is transaction data on a profit center, the segment field is no longer changeable in order to prevent inconsistencies and incorrect result from the segment reporting point of view. This is standard system behaviour!
    You can try with the the following *Notes. It will provide further corrections relevant for your issue.
    *Notes:1373616    Segment in profit center changed despite transaction data
                1037986    KE52: Changing the segment in the profit center master data
    Regards
    Eugene

  • Profit Center design by plant wise

    Hi Experts,
    My client is having central procurement unit and having 8 branches(warehouses) and they transfer the goods from head office to branch later on for their sale.And the legal requirement here is that cost is same across all warehouses and we adopted each branch as profit center for reporting.
    My question is
    1.How can I meet my requirement of cost is same as above at each storage location if I treated each one as plant ?
    2.How I can assign profit centers if MM setup only one plant ?
    3.And eventhough if I pick profit centers in above case as I need through substitution how can I record stock trnsfer in receiving profit center becz SAP we cannot get the fi/co document with intra plant transfer scenario with valaution type is same ?
    Please give me your suggesitions and alternatives which is very helpful fo my project.
    Good points will be assigned with better answer.

    Hello,
    I hope I understood the question properly.
    Assumption - Each branch is a profit center (i.e. you would like to allocate the sales of each branch and the COGS of each branch to a different profit center).
    You have 2 (quite exotic) options:
    1. Define each branch as a profit center. in customizing for MM you can define that the valuation level is the copmany code and not the plant. This is not a very common approach but I have tested it a little and it works. This means that the moving average price for ALL of the plants in the company code for a certaing material will be identical. Be careful when implementing this in an environment with transaction data in MM.
    2. Define each branch as a profit center. Use one plant and each branch as storage location. In this case since it is all one plant, the material will have one value. Try using the profit center substitution for sales order to assign the profit center to the sales order according to the storage location.
    Please note - you will probably not be able to use transfer prices in PCA If you select option 2.
    Kind regards,
    Avihay

  • Can we limit the profit center at plant level?

    Hi Experts,
    I need to limit a profit center for certain plant, is this possible?
    Example:
    Profit center should be inactive for plant P100.
    Thanks,
    Kumar

    Hi Kumar
    This will have larger implications
    1. You need to ensure that Mat Masters are updated with right PC.. You can use a BADI to substitute the PC automatically at the time of Mat master creation
    2. In Cost centers, that you make per plant, you will have to ensure this manually or using Exit COOMKS02
    3. Similarly, for Int orders and other Cost objects
    4. you can also write a substituion in FI to check Plant and PC combination.. But if master data is ensured, you dont need substitution
    Br. Ajay M

  • Balance sheet per plant via profit center

    Greetings!
    Because of the reqt to create balance sheet reports per plant, I have assigned some of the balance sheet accounts as cost elements with CE category of 90.  I was able to do this to the asset accounts but when I tried to do the same for the other GL accounts e.g. AR, AP, etc..., its not being shown in the list when I clicked the "Create batch input session" although its already included in the "Make Default Settings" list.  Would appreciate any advice.  Thanks.

    Hi Tess Sapico,
    1. Create profit center for each Plant
    2. you don't have to create Cost Element with category 90.
    3. what you need to do is Add all the balance sheet items for Profit Center accounting in configuration under the setting "Controlling==>Profit Center Accounting==>Actual Posting==>Choose Additional Balance sheet and P&L Account"
    Here you need to add all the balance sheet accounts and P&L account which are not cost elements.
    Note: If you dont have NEW GL and Document Splitting, then it is not possible to get fullfledged Balance Sheet per Profit Center (Plant wise in you case).  You can only get some of the Balance sheet items like Accounts receivable, Accounts payable, Fixed Assets and Inventory in to Profit center
    In anycase, if you have NEW GL in implementation, then your problem would be solved. 
    I can give soem more information this regard, if you have new gl in place.
    Please let me know
    Best Regards
    Surya

  • Stock transfer between plants in a company with different price

    Hi, expert,
    i want to transfer materials between plants inside a company with different price which set by supply plant randomly, not the valuation price, how can i achieve this?
    Thxs & best wishes,
    David

    Hi,
    In short, you cannot.
    Within SAP you cannot make a profit or loss by transferring an item between two Plants within the same company code.
    This is not necessarily an SAP restriction as such, it is due to basic accounting rules.
    The company code is seen as the legal entity for accounting and so if a movement within that company resulted in a loss or profit then this would break the rules.
    I am not saying that it is impossible to set it up this way (nothing is impossible) but I personally recommend that you find another way of achieving this. Trying to modify the system to break such an important rule will definitely cause problems.
    In previous implementations I have used the following option.
    Simple use basic STOs that transfer the items at the material valuation price. But then at the end of each month produce a report that shows what materials have been transferred between the relevant plants and at THAT stage make a financial posting to reflect the "benefit" that has been realised (based on prices held in a new table, that represent the price that would have been charged).
    It does appear to be a failing of the SAP system but it really isn't. What it normally indicates is that somehow the wrong org structure may have been built and perhaps the two plant should really be attached to separate company codes (especially if you need to show "profits and loss" in this way)?
    Steve B

  • Material Code with Different profit Centers in One Plant

    Hi Experts,
    There is one requirement in my project that given in detailed below please:
    Material code                     Plant                       Profit Center
    MSR009                            2011                       2011
                                                                            2012
                                                                            2013
    one material code, one plant and 3 profit center,. the material should trigger with different profit center from sales order to revenue booking..
    So is it possible to map that configuration in SAP, if yes please guide me
    Thanks and regards
    Madhu

    Hi,
    Profit centre is trigured through
    Material master
    Company code + Cost element
    When you create sales order it id derived form material master if you maintained in material master
    Else at the time of invoice creation and account posting it is derived from company code + cost element combination(Which is mentianed in OKB9 by FICO people)
    kapil

  • Materials management small differences - DIF - Profit Center assignment.

    Hi,
    We have created one G/L for posting the u201CMaterials management small differencesu201D at the time of generating MIRO document via transaction u201CDIFu201D in Tcode - OBYC.
    For e.g. if the GR amount is 90 and IR (Invoice received from party) is of Rs. 91/- or vice-versa then for posting the difference of Rs. 1/- we have made the above assignment.
    System is generating the line item for the u201CSmall Diff -Invoice Verificationu201D but posting automatically to a "Dummy Profit Center u201C in the absence of any other data.
    Our point is that we want to change the profit center to the related Business area, which is there in the line item of u201CSmall Diff -Invoice Verificationu201D account.
    We tried the FI substitution (Tcode u2013 GGB1/ OBBH) for the Profit Center derivation on the basis of Business Area but that is working with the FI documents (Manual FI entry) only and not with the automatic line generation like MIRO in the above case.
    Later on I tried Tcode u2013 OKB9, but in that case after giving business area wise cost center substitution, system is correctly showing the entry (in simulation mode of MIRO transaction) in the required Cost Center & on that basis in the Profit Center, but still system requires u201CCO-Objectu201D
    Initially we tried other way of creating a Cost Element under the category of u201C11 u2013 Revenueu201D to maintain Business Area u2013 Profit Center link but still in that case also it requires co-object hence turned to changing the Cost Element Category to u201C1 u2013 Primary Costu201D for capturing Profit center on the basis of Business Area u2013 Cost Center link since basically G/L u2013 u201Csmall Diff -Invoice Verificationu201D we have created under u201CExpense Groupu201D.
    Our requirement is to post the entry in related profit center per Business Area in the line item of "Small Diff -Invoice Verification" since there are 6 to 7 business areas, which are active in system.
    Regards,
    Shridhar

    Hi,
    Thanks for the reply. But I would like to correct you. I have mentioned in my subject line - "DIF" i.e the Transaction Key maintained in Transaction Code - OBYC for posting the small difference (Between GR and IR values) arriving at the time of MIRO transaction posting.
    Now meanwhile I have come across u201CSAP Note : 32654u201D which mentioned that "Account assignment for the transaction (KDR, DIF, UPF) on the highest level i.e. the 1st screen where we set the Cost Center or Profit Center assignment to Cost Element with Acct Assignment details (1 or 2 or 3) is possible.
    Same is not possible on details level means Acct Assignment details level per Valuation Area or Business Area for Cost Center or Profit Center linkage (2nd screen of OKB9).
    Please do correct me if I am making any wrong statement.
    Now would like to have an advise about the transaction Code - OKC9 with the scenario (MIRO document u2013 Dummy Profit center linkage) that I have mentioned above.
    Do I require to maintain OKB9 (At highest level) and then need to work out CO- Substitution via OKC9 ? Or OKC9 is enough to cover my scenario ?
    Do any body have a knowledge about that? Points will be assigned.
    Regards,
    Shridhar

  • Substituting Cost of Goods Sold Account Profit Center

    Hi
    I am using Sales Order substitution to change the Profit Center according to Sales Org + Product Hierarchy + Customer Group + Acct Asst Grp.  This perfectly replace the Profit Center in Sales Order.  The Profit Center from Sales Order is perfectly flowing to Outbound Delivery.
    While doing PGI, in accounting document, Cost of Goods Sold line item is not getting the profit center from outbound delivery.  It post COGS line item with Material Master profit center.  We want profit center of Cost of Goods Sold line item is same as Sales order / Outbound Delivery.
    I checked SCN, everyone provided the solution of using FI Substitution to change the Profit Center of COGS line item.
    Is it any other way it can be achieved?  if FI Substitution is only the way, can anyone provide the sample code, so that it can be developed fast.
    Thanks
    Venkat Ramachandran

    For those who may need an answer to this, our solution was the following: 
    1)       Created new types for SO, SO Item, Sched. Line, Delivery, Delivery Item, Billing type  
    2)       Created new Pricing procedure
    3)       Created new movement type Y61/Y62 modeled after 601/602
    4)       Mapped Y61/Y62 to account modifier ZAX.
    5)       Mapped GBB/ZAX to the new account.
    Benefits, they now have better view of the orders going inter-company.  It is flexible enough to adjusting prices for intercompany separate from standard orders, even though for now it is a straight copy of cost.  They are able to remove the sales/use tax, from the calculations. They are able to plan with these orders separated out.  Plus, this will standardize their process for inter-company. 
    Hope this helps someone. 
    Cheers!
    Rick

  • Cost center line items by profit center

    Hi,
    We have an issue, where user has processed a document in FI with profit center "X" however the cost center of the document has profit center "Y" in the master data.
    In FI, accounting document showed against the profit center "X" with which user has processed.
    In CO document profit center was coming with "Y whcih is in cost center master data.
    There is a variance between FI and CO for profit centers.
    However profit center account is not completly configured, it is configured minimally. So GLPCA, GLPCT do not fetch data for the given profit centers, I do not have profit center appearing in CO line item reports. We are using ECC 6.0 version.
    Please help me to reconcile the difference.
    Regards,
    Ramesh.

    Hi,
    I think your case for SAP is not normal process. Normally, if user assign separate profit center which is different to profit center in the Cost Object, lets say the cost center, during the posting the system will issue message that the profit center is changed the profit center assigned in the Cost object. System would not accept two different profit center on one posting process.
    For example:
    Posting material using assigment cost center X  that contain profit center 1000, then also assign own profit center 1402.
    During posting, the system will issue message " the profit center is changed to 1000". This is what happen when there is discrepancy in profit center during posting.
    So, by having one profit center in a document,  the data that flow from FI will follow the assignment in the Cost Object.
    For this problem, I think you need to raise this issue to OSS.
    Regards,
    Irhasni

  • Maintain Profit center and Plant

    Helloo all,
    We have One Company code 1xxx, one profit center 1xxx, and plants are 21xx, 31xx. To map a scenario need to maintain two different profit center seperatly for each plant. ie.
    plant    Profit cntr.
    21xx    1xxx
    31xx    2xxx
    1st i would like to know is there specific setting or rule is to be done to maintain plant or profit.
    2nd During creation of Material code by MM01 if i select plant 21xx and profit center 2xxx (Different as per maintained), system not giving any kind of error message (profit center doest not exit)
    how it will be done.
    Please suggest

    Profit Centers are Company Code specific. Unless you use a user exit that does the check there is no way of making profit center plant specific. You should put the Profit centers in material master to seperate the plants and get the correct postings.
    Regards
    Adeel

  • Link between Plant and Profit Center

    Hi,
    Can any one let me know how to derive profit center for a plant or where this info is stored.
    thanks,
    preetham s

    Hi
    There is no direct relationship between a plant and profit center. Based on your configuration in the system, however, you can have various relationships. For eg, if your plant is one valuation arrea, there is a relationship for various cost center and cost elements at the valuation area level in T Code OKB9. In such a case, every valuation area relates to a plant and profit center derives the data for a plant from the cost center and cost element combination. Another way could be through the material master, where, for every plant view, you can assign a profit center. Another way of looking things could be a scenario, where every plant is also a profit center. In such a scenario, in EEC 6.0, you can draw Financial Statements also at Profit center level.
    Thanks & Best Regards
    Sanil K Bhandari

  • Dummy cost center, Dummy profit center

    Hi everybody,
    anyone tell me, why is necessary to use dummy cost center and profit center ? what does dummy cost center, profit center mean?
    I don't clear about dummy cost center and profit center
    Thank in advance
    Minhtb
    Edited by: Tran Binh Minh on Sep 5, 2008 10:38 AM

    Hi Tran,
    Dummy Profit Center
    In SAP, we need to create a dummy profit center when you activate profit center. It is mandatory. This dummy profit center gets values when the system could not find regular profit center in its attempt. We need to configure the system such a way, there is no posting into dummy profit center. Or otherwise, by mistake, if it gets posting, the same have to be post PCA documents to clear them. Then only we get balanced Profit Center wise statement of income or balance sheet.
    Dummy Cost Center
    There is no such term in SAP and there is no need to use any of the cost center as dummy cost center. Only very few companies use some cost center for making accounting adjustments and shall not be allocated to other cost objects including products, I think that it is better that we need not such term in our consulting and practice of Controlling.
    Trust this answers your query!

Maybe you are looking for

  • Adobe Media Encoder for CS4 error Could not read from the source

    Hello, I get an error when I try to export from Premiere CS4. It doesn't matter how I export. Seems like an easy fix, but I can't figure it out. Any help is appreciated: - Source File: C:\DOCUME~1\ARTWHI~1\LOCALS~1\Temp\extra and b roll.prproj - Outp

  • USB Keyboard/Mouse do not function in Bios (Bios Change log too)

    I have 1.7 and the system seems fairly stable, a few BSOD's occasionally and it normally seems to occur when the system is idle. I can work on that, but now when I boot my usb keyboard will not function for the EFI/Bios. I have a Old PS2 keyboard wor

  • Security in Web Dynpro screens

    I have a generic web dynpro screen which allows users to create / edit some records.  The users are supposed to create records only for the profit centers that they are authorized to. 1. I have a profit center lookup in the screen that I created that

  • Navbars created generated wrong code in dw cs4. why?

    I created my navbars using the Insert>Image Objects>Navigation Bar function in DW CS4. When I validate the page, it is saying that the onmouseover, onmouseout, etc. don't conform to the upper and lowercase standards. The code generated is onMouseOver

  • Systemd (auto)mount USB fails due to fsck

    Hi, I am trying to get 'hotplugging' functionality working for usb storage devices with systemd with the ultimate goal of running a backup service via systemd which will require certain devices and mounts to be active. After a few searchers, I decide