Profit Center Mandatory

Hi Gurus,
I need to make "Profit Center" field mandatory  in "Create Product Order" - CO01.
Regards,
Devang

Thanks sreekanth munipally,
After studying the t-code SHD0...i think that I need to create a new variant for the transaction.
Basically, In CO02 under order type RW01 - i need to keep "Profit Center" mendatory.... so I think I will create a new variant for the same.
Please help me to create the variant.
Regards,
Devang

Similar Messages

  • Profit center mandatory field in sales order !

    Hi All !
    How to make profit center mandatory field in sale order can any body let me know...
    Thanks & Rgds
    Naveen

    Hi
    You can either Transaction variant SHD0/User exit
    Refer below<a href="http://www.sap-img.com/sap-sd/supressing-fields-in-sale-order.htm">Fields in Sale Order</a>
    help required: how to makes sales office field mandatory, in inquiry and qu
    Re: supress  some fiels in sales order? user exit?
    Message was edited by:
            SHESAGIRI.G

  • How to make a field profit center mandatory in sales order?

    Dear GURUS,
    Please help in getting answer for following question.
    How to make a field profit center mandatory in sales order?
    With Regards
    Sandeep D.

    Hi,
    There are 2 ways to make profit center mandatory
    1.Transaction Variant
    2.Incompletion procedure
    1.Transaction Variant
    Step 1:Goto Tcode shd0 and input transaction as va01 and give name of transaction variant as ( example. zva01 ) and click on create or F5
    Step 2.Then it takes you to sales order screen.Just click on enter untill you see profit center field.
    Step 3.check the box required against profit center.
    Step 4.click on save ( under a package name or as local object ) and exit
    Step 5.Assign transaction variant to your sales order type through tcode v0v8.
    2.Incompletion Procedure
    You can add the field  table-vbap,field- prctr,status-04,check-warning to your existing incompletion procedure Tcode- ova2 assigned to your order type in tcode vov8  and check the box - incomplete messeges for your order type through tcode vov8.
    If incompletion procedure is not assigned to your order type than you have to create a new incompletion procedure and assign it to order type.

  • Profit Center Mandatory in Cost Center Master

    Hi Expert!
    I would like to know the configuration path to make the option Profit Center Mandatory in cost center master data.
    Thanks
    J

    If you have activated profit center accounting and if you leave profit center blank in the cost center master, system issues a warning message at the time of saving. You can convert this message to error to make profit center mandatory.
    The message number is KS096. It can be configured in transaction code OBA5. Choose application area KS. Insert message 096 and select the desired message type (E for error or W for warning).
    Regards
    Rakesh Pawaskar

  • Profit Center Mandatory in Service Order

    Hi ,
    Is there a customising to make profit center mandatory in service orders (IW31)
    Thanks and Regards,
    Vamsee

    Dear,
    You can do this with transaction variant through SHD0. Record the transaction like IW31 and make the field mandatory.
    Please try and come back.
    Regards,
    R.Brahmankar

  • Profit Center mandatory for Cost Center

    Hi,
    How do we make the profit center field in the cost center master data as optional instead of required.
    Thanks,
    Venkat

    If you have activated profit center accounting and if you leave profit center blank in the cost center master, system issues a warning message at the time of saving. You can convert this message to error to make profit center mandatory.
    Regards
    Rakesh Pawaskar

  • Gl account is set to profit center mandatory

    Hi All,
    which table can get the data of the GL account is to profit center mandatory ( i.e from tcode OBC4 )

    Hi
    try this out by running T-Code ST05 ( SQL Trace )
    http://help.sap.com/saphelp_erp2005/helpdata/en/17/358df9c9fee2469105731e10756921/frameset.htm
    Follow this way...
    Performing an SQL Trace
    1.Open a new window and choose System ® Utilities ® SQL Trace.
    The Trace Requests screen appears.
    2.Choose Trace On to activate the trace.
    3.Perform a typical database access in the first window (for example, an application transaction or the transaction SE16).
    4.To turn the trace off, choose Trace Off and examine the SQL statement with List Trace.
    5.Position the cursor on one of the PREPARE, OPEN, or REOPEN statements, and choose Explain SQL.
    The system displays detail information. The index used is specified in the line beginning with Index.
    Please reward for the same.
    Message was edited by: Prakhar Saxena

  • How to make Profit Center Mandatory

    Dear Sir,
    We are using New GL functionality in ECC-6 . During Document Splitting we desire that Profit Center must be mandatory , so that no entry is posted in "Non Assigned Profit Center"
    Kindly guide us as how can we make Profit Center mandatory .
    With Thanks and Rgds
    Sonia

    Hi Sonia,
    May i know for which account assign object u are planning for document splitting, if you want doucment splitting for profit center. In "Define document splitting Characteristics for GL Accounting" step u has to specify Profit Center in the -field, PPRCTR in Partner field and select "Madatory field" check box. I think this will help to a extent.
    By,
    R.K

  • How to Possibal in Profit Center Mandatory in AR Invoice

    Dear Experts,
    How to Possibal in Profit Center Mandatory in AR Invoice through SP_Transaction _Notification ??
    I have write the code below
    <If @object_type = '13' and (@transaction_type = 'A')
    begin
    IF EXISTS (SELECT DOCENTRY FROM inv1 WHERE (ocrcode is null or ocrcode2 is null or ocrcode3 is null or ocrcode4 is null) AND DOCENTRY= @list_of_cols_val_tab_del)
    begin
    set @error = 1
    set @error_message = 'Please enter a Profit Center before Save'
    end
    end>
    Dixit Patel

    Hi Dixit Patel,
    Try this,
    IF @object_type = '13' AND @transaction_type IN ('A', 'U')
    BEGIN
    IF EXISTS (SELECT T1.DocEntry FROM OINV T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    WHERE (T1.OcrCode IS NULL OR T1.OcrCode = ' ') AND T0.DocEntry = @list_of_cols_val_tab_del)
    BEGIN
    Set @error =1
    set @error_message = 'Please enter a Profit Center before Save'
    SELECT @error , @error_message
    END
    END
    OR
    IF @object_type = '13' AND @transaction_type IN ('A', 'U')
    BEGIN
    IF EXISTS (SELECT T1.DocEntry FROM OINV T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    WHERE (T1.OcrCode IS NULL OR T1.OcrCode2 IS NULL OR T1.OcrCode3 IS NULL OR T1.OcrCode4 IS NULL)
    AND T0.DocEntry = @list_of_cols_val_tab_del)
    BEGIN
    Set @error =1
    set @error_message = 'Please enter a Profit Center before Save'
    SELECT @error , @error_message
    END
    END
    Regards,
    Madhan.

  • Profit center mandatory field in F-58 and F-48

    Hello Experts,
    We need to make profit center is mandatory field in the F-58, F-53 and F-48 while posting payment to vendor.
    Kindly let us know is there any possibility to make required entry for the same.
    Thanks in advance!
    Regards,
    Ratnam.

    Hello Ajay,
    Thanks for the replay, I used field Bank accounts field status group only for making profit center mandatory. Problem got solved now.
    For Reference key mandatory field, I written validation for Required TCodes but Reference key field is not available in the FBCJ kept pending. The same problem is there in MIRO screen also, we are doing enhancement for fetching Ref1, 2, 3 fields the MIRO screen.
    Regards,
    Ratnam

  • Profit Center Mandatory in Cost Center Master Data

    Hi guys,
    Can any one suggest,where can we make settings for profit center mandatory in the cost center master data?

    Hi Swapvik,
                    I was just surfing and came across the concept for the profit centre.Have a look at it , it might help you or even resolve the issue.
    Here is the Link: [Centre1|Re: Gl account is set to profit center mandatory;
    There is another link for configuration problem relating to the query.
    Link: [Centre2|Profit Center Column;
    I am sure this will resolve your query.
    Have a best day ahead.

  • Profit Center Mandatory when creating Cost Center

    Hi,
    How do we make Profit Center Mandatory when creating Cost Center, I remember doing this and cannot recollect as to how i did this in a previous version 4.0b.
    Pls advise how to do the same in ECC 5.0 and higher..
    Thanks,
    Praveen

    Dear Praveen ,
    First u will creat PCA then u will acitvit .
    while creating cost center u have to give profit cnenter accounting .
    ur not enter pca aacoutno then it will give the error message account is activted but profit cneter account not given
    Regards
    Suresh

  • Profit Center Mandatory in all the Order type

    Hi All,
    I want to make Profit center field as mandatory for all the order types[Standard and Z type].
    I have made settings in PM configuration settings:
    SPRO>Plant Maintenance and customer services>Maintenance and service processing>Maintenance and service orders>Define field selection for order Header Data[PM]>Field Selection for Order Header Data and Reference Object
    But here I am able to do mandatory for Pm orders.
    I want Mandatory for Orders like Process, PM Orders, Sales orders Prodcution orders [In single setting]
    Regards
    Honyal

    Hi
    U can do this with transaction variant SHD0. Record the transaction like CO01 and make the fielf mandatory.

  • Mandatory field of Profit Center in Cost Center

    Hi
    Can I know how to consider profit center as mandatory field in cost center because at present it is optional.
    Urgent.
    thanks

    Dear Manisha Sarma!
    I think you want to make Profit Center as mandatory while creating/Modifying Cost Center <b>KS01/KS02</b>. If yes, <b>YOU CAN'T</b> because SAP has provided flexibility to derivate the Profit Center by defining "Default account assignment" in <b>OKB9</b>. Since, there may be different Profit Centers per one Cost Center for different Cost Elements.
    So, as per your request if SAP makes Profit Center mandatory in <b>KS01/KS02</b> we can't define Derivation Rules (OKB9) flexibly, because it is confined to only one Profit Center if we give in <b>KS01/KS02</b>. Moreover, Profit Centers are automatically derivated by the system based on configuration done in <b>OKB9</b>.
    All these are only applicable only when you <b>Activate Profit Center</b>.
    Reward the points if you got the solution for your query.
    Regards,
    <b>D Srinivas Kumar</b>

  • Profit center filed mandatory in T.code F-29 for dwon payment

    Dear Gurus,
    How to make a field profit center mandatory in T.code F-29 for dwon payment?
    Thanks & Regrads,
    Dharma raju.

    Hi
    In field status group OBC4  and in  OB41 (posting key)you can make the profit centre field as  mandatory field.
    The priorities of SDRO would apply. so you need to give profit centre as  mandatory in both ( OBC4 and OB41)

Maybe you are looking for

  • HOw to maximize a portlet on click of a link.

    Hi, Can some one help me as to how to maximize a portlet on click of a button? I am calling Page A.jsp to Page B.jsp. in the .jpf file, in the method which is being used to render Page B.jsp contains the below mentioned code. Do I have to do somethin

  • HP OFFICEJET 6500 Wireless Doesn't Work

    I have new desktop with Windows 7 and cannot install wireless for this 6500 printer. Followed directions from CD and website and each time it locks up after I plug in USB cable. Says device is installed properly but locks up at configuring device rig

  • DW 8.0 or CS3 - don't know which one I should get

    Looking for advice on which DW version to go for. I'm extremely new to DW and have designed many sites in the past using FP, so it looks like I will be converting sites from FP to DW AFTER I figure out what I am doing. I am confused on which DW I sho

  • Can't get rid of my high power consumption (Thinkpad X60 Tablet)

    This is really driving me nuts. On Windows 7, I can achieve a power consumption of around 11-12W (with moderate web surfing usage over WLAN and full screen brightness, just Aero turned off). On Arch, I can't get below 13W *ever* with full screen brig

  • Photo Geo tags are not being used by Places

    I have been importing photos into iPhoto with valid geo tags and none of the photos are being shown on the Places map. When I initially starting using iPhoto I imported some pictures from my iPhone and realised that the pictures were identified on th