"Automatically create a cProjects project when this item is created"

Hi,
In the creation screen (after the item type is entered),then input the 'cProject template ', AND
selection the option, 'Automatically create a cProjects project when this item is created'
(typically in the bottom.)
I need to change the check box to Disabled. can i know the were we need to change?
Please Provide me Field name and Table name.
Regards,
Dhananjaya

Dear Dhananjaya;
Check this thread --> Re: Default values while item create
Best regards;
Mariano

Similar Messages

  • My iMovie voice recording is suddenly not working. As I record, it shows the green bars; however, when I play the recording it does not play my voice over at all nor show the green bars. I was mid-way through my project when this problem occured.

    As I record, it shows the green bars; however, when I play the recording it does not play my voice over at all nor show the green bars. I was mid-way through my project when this problem occured. HELP!!!!

    As far as I can see, it's random. Everything. Nothing makes any sense!
    A the moment, the iPhone is playing music with the SIM card, but without anything plugged into it, but it's occasionally fading in and out.
    Oh, and I doubt this is related, but about two months ago the iPhone failed to show that the battery was draining - it was stuck at 100%. This went on for a few days, it wouldn't even warn me at the 20% mark, it would just shut off. This happened for at least three full charges - I remember at one point it suddenly started working again at about the 70% mark, I'm not sure if it was alright after that or if it went glitchy on the next charge... but in any case, the problem mysteriously never reappeared after those few days.
    Message was edited by: Shiranai

  • What is error code =-50?  how can I export my project when this error arrives?

    what is error code=-50?  How can I resolve this issue to be able to burn my project to a disc?
    Thanks!

    Hello Russ,
    I have FPC X 10.1.3 and Yosemite. Thanks for your concern but i solved my problem. I created new library and copied event in new library.
    Everything is back to normal now. The share button lives again.
    kindest regards

  • Programmed control of availability cProjects project fields.

    Hello all.
    We want to have programmatically control of availability cProjects project fields in case, when execute following event: cProjects project assign/unassign to xRPM item.  
    For example:
    We have the following event: assign cProjects project to xRPM item. 
    At this moment we transfer value from field «location» xRPM item to field «location» cProjects project (abap development). Also, we want to change «read only» attribute of  field «location» cProjects project.
    What functional module used to control availability cProjects project fields? How it possible to do this?

    Hi Aleksey,
    Please see your other post, as I see, the UI configuration supported by webdynpro can not be used, because it depends on the condition. It worth to try, if it can be realized via cProject  field cotnrol, actually it is not very easy but powerful.
    Kind regards,
    Zhenbo

  • 'Released' System Status in Automatically created PS Project from Cproject

    Hi,
        My questions are related to  Automatic creation of PS project from cProject
    When We create a PS Project automatically from cProject, the Top Level WBS under Project definition is ' Released' Status . But We need it should be 'created' Status. Pls guide me to change this behaviour .
    regards,
    Ramesh Nachimuthu

    Hi Ramesh,
    In the current cProjects application design, nothing exists in standard. You have to create your own implementation, either by enhancing standard accounting class, or your own subsystem to trigger the interface at save.
    Zhenbo Wang started to write a sample code that could help you:
    Prototype 'Using Subsystem to synchronize the status of linked WBS elements
    BR
    Matthias

  • Creation of C project from xRPM item and automatic creation of proj in PS

    Hi all,
    My requirement is to create a cproject from xRPM, once the status of the item is "Approved" and a BAdI is there(RPM_PROJ_CUST_WF) which will trigger, when the status is changed to "Approved".
    My problem is how to create a cproject from xRPM item, any FM or BAPI available? If cproject is created, then automatically a project needs to be created in PS (ECC).
    Also how to create a project in PS from cproject, any config? Please help in this regard. How I can proceed?. I need to make any config. for acheiving the same?
    Regards,
    V Kumar
    Edited by: V Kumar on Sep 18, 2009 3:06 PM
    Edited by: V Kumar on Sep 18, 2009 3:09 PM

    Hi,
    I don't know how to create PS upon approval of item but I have done auto creation of cProject upon approval of item. Use FM
    DFM_DO_CREATE_PROCESSING.
    Here is sample code for this. In this code you have to create a cProject from a template.
    FUNCTION Z_RPM_ITEM_CPROJECT_LINK2.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_ITEM_GUID) TYPE  /RPM/TV_GUID OPTIONAL
    *"     VALUE(I_BUCKET_ID) TYPE  /RPM/TV_BUCKET_ID OPTIONAL
    *"  EXPORTING
    *"     VALUE(EV_RC) TYPE  I
    Data declaration
    Data:
          lt_rpm_messages        TYPE /rpm/tt_messages,
          ls_source_context      TYPE inm_object_context,
          ls_operation_context   TYPE inm_operation_context,
          IT_TARGET_TEMPLATES TYPE  INM_TT_GROUP_TEMPLATE_ASSOC,
          ls_target_templates TYPE INM_TS_GROUP_TEMPLATE_ASSOC,
          lt_triggering_objects  TYPE inm_tt_object_context,
          ls_triggering_object   TYPE inm_object_context,
          lt_params              TYPE inm_of_tt_field_names_values,
          ls_params              TYPE inm_of_ts_field_name_value,
          lv_object_id           TYPE  INM_OF_TV_OBJECT_KEY,
          lv_templateId           TYPE  INM_OF_TV_OBJECT_KEY,
          lv_parent_guid        TYPE  /RPM/TV_GUID,
          lv_portfolio_guid      TYPE  /RPM/TV_GUID,
          lv_parent_guid1        TYPE  INM_OF_TV_FIELD_VALUE,
          lv_portfolio_guid1      TYPE  INM_OF_TV_FIELD_VALUE,
          ET_Messages    TYPE INM_OF_TT_MESSAGES,
          ls_ilink_db      TYPE /rpm/item_il.
    Data:  lv_cproject_template  TYPE  ZTEMPLATE1-CPROJECT_TEMP,
           lv_cproject_template2  TYPE  DPR_TV_PROJECT_ID,
           lv_temp_guid  TYPE  DPR_TV_ENTITY_GUID,
           lv_log_sys  TYPE  string.
    lv_object_id = I_ITEM_GUID.
    Get the cproject template guid
    select single CPROJECT_TEMP into lv_cproject_template
    from ZTEMPLATE1
    where EXTERNAL_ID = I_BUCKET_ID.
    lv_cproject_template2 = lv_cproject_template.
    select single GUID into lv_temp_guid
    from DPR_PROJECT
    where  PROJECT_ID = lv_cproject_template2.
    lv_templateId = lv_temp_guid.
    Get Parent & Portfolio guid
    Select single PORTFOLIO_GUID PARENT_GUID into
    (lv_portfolio_guid, lv_parent_guid)
    from /rpm/item_d
    where guid = i_item_guid.
    lv_portfolio_guid1 = lv_portfolio_guid.
    lv_parent_guid1 = lv_parent_guid.
    Get logistic system
    concatenate SY-SYSID 'CLNT' SY-MANDT into lv_log_sys.
    condense lv_log_sys.
    Assigning more data
    ls_source_context-OBJECT_ID = lv_object_id.
    *ls_source_context-LOGSYS = 'DY1CLNT200'.
    ls_source_context-LOGSYS = lv_log_sys.
    ls_source_context-GROUPING = 'PPO'.
    ls_source_context-OBJECT_LINK_TYPE = '0INMITEM'.
    ls_source_context-CREATE_TEMPLATE_TYPE = '1'.
    ls_source_context-TEMPLATE_ID = lv_templateId.
    ls_source_context-TARGET_OBJECT_GROUPING = 'PDCP'.
    ls_operation_context-OPERATION = 'C'.
    ls_target_templates-GROUPING = 'PDCP'.
    *ls_target_templates-LOGSYS = 'DY1CLNT200'.
    ls_target_templates-LOGSYS = lv_log_sys.
    ls_target_templates-TEMPLATE_ID = lv_templateId.
    ls_target_templates-TYPE = '1'.
    append ls_target_templates to IT_TARGET_TEMPLATES.
    ls_params-EXT_FIELD_NAME = 'PARENT_GUID'.
    ls_params-EXT_FIELD_VALUE = lv_parent_guid1.
    append ls_params to lt_params.
    ls_params-EXT_FIELD_NAME = 'PORTFOLIO_GUID'.
    ls_params-EXT_FIELD_VALUE = lv_portfolio_guid1.
    append ls_params to lt_params.
    Calling FM to create cproject & linking to item
    CALL FUNCTION 'DFM_DO_CREATE_PROCESSING'
      EXPORTING
        IS_SOURCE_OBJECT_CONTEXT = ls_source_context
        IS_OPERATION_CONTEXT     = ls_operation_context
        IT_TARGET_TEMPLATES      = it_target_templates
        IT_PARAMS                = lt_params
        IT_TRIGGERING_OBJECTS    = lt_triggering_objects
      IMPORTING
        ET_MESSAGES              = ET_Messages
        EV_RC                    = EV_RC.
    commit changes
    ENDFUNCTION.
    Please let me know if you find a way to create PS from xRPM or cProject.
    Regards
    Mohinder

  • Error when deleting file: Could not find this item. This is no longer located in ...

    We are setting up a new Windows 2012 server. Users access this server using a 'terminal services'. We have mapped some folders from a legacy server (different domain). Using group policy preferences, we map this folder as a drive for a user.
    When user wants to delete some files, he get's the error: 'Could not find this item ..' The error is displayed to the user and it looks like the file can't be deleted. But when I press the F5 (refresh) button, the file is gone. My problem is very similar
    to a problem in the following post: http://social.technet.microsoft.com/Forums/windowsserver/en-US/042e747a-0e25-4190-b0a2-82f3e9635eb0/can-not-delete-file-error-is-could-not-find-this-item?forum=w7itprogeneral
    When I create 'txt' (or 'pdf', 'zip') file, i can delete it without the error. When I create 'xlsx', 'docx', 'pptx', 'bmp', 'jpg', I get the error.
    Does somebody have an idea, how can I fix the cause of this problem? (I can't tell to users to hit the F5 button everytime when they face this issue)
    Thank you for your help in advance!
    Juraj

    Hi,
    Please check if the problematic files’ filename ended with a dot. If so, you could refer to the article below to troubleshoot the issue:
    Solved: “Cannot read from the source file or disk”
    http://blog.dotsmart.net/2008/06/12/solved-cannot-read-from-the-source-file-or-disk/
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Automatic batch determination when more items have the same material

    Hi guys,
    I have a problem with automatic batch determination in the delivery note where more items has the same material number.
    For example:
    Sales order items
    Item   Material   Q
    1        130         5 kg
    2        130         4 kg
    Stock for this storage location is:
    material    batch    Q
    130           1000     3kg
    130           1001     7kg
    When I create delivery note I get this:
    Item   Material   Q   Batch
    1       130            
    90001 130       3     1000
    90002 130       2     1001
    2       130
    90003 130       3     1000
    30004 130       1     1001
    As you can see, both items has the same batches. This is not good, when post goods issue. Normally there is no stock availaible for both items.
    Is there any customizing to do this correctlly?
    Thanks for an ansver.
    BR, Matic

    What is the purpose of giving the same material as second line item.
    specify in the first line item itself.
    or els the condition record which you have specified that for 100 material of A gives 10 material of B modify it to 10 of A should give 1 material of B
    The first you will be useful for you.

  • Line item Settlement and KOB5 for automatically created AUCs to PM orders

    Hello Experts,
    I am trying to set up line item settlement for automatically created AUCs. We would like to use line item settlement because we want to see the costs split up by either percentage or amount when settled to the AUC.  If I can't settle by percentage or amount to the AUC then i'd like to be able to temporarily block some of the costs from settling.  This is for billing not capitalization purposes since all costs will eventually settle to one final asset. The settlement is done using transaction KO88 or KO8G and automatic processing type.  I’ve configured a PM Order type as an investment order and set up the related investment profile and investment asset class.  Some of the things I've determined from my testing:
    Using transaction KOB5, costs can be split up by creating other distribution rules, but only to another object (i.e. another
    asset, order, cost center etc. by using the Preliminary) not to the automatically created AUC linked to the order
    The default settlement rule is account assignment category FXA, percentage rate 100%, settlement type AUC to the AUC
    and therefore cannot be updated/altered when using KOB5 or any other transaction.
    Once the costs are settled to another object other than the AUC, those costs cannot be settled to the final asset. Creating Preliminary
    settlement rules to a receiver IO and changing the period or fiscal year will not “block” costs from settling whether the processing type is automatic, by period, partial capitalization or full settlement.
    I’ve been testing this out in our development client and need verification that this is the way that transaction KOB5 works with line item settlement or did I do something incorrect . 
    Your feedback is greatly appreciated.  Thank you in advance.

    Hi Zaid,
    Thank you for your response.  Assets are not my area so I’m not sure if I missed a transaction or step in the process.   I tested this out by doing the following steps:
    Created AUC Asset class with line item checked
    Assigned PM Order type as non-investment with no investment profile and created order number
    Created a main asset number 
    Created an AUC sub asset number to step 3
    Created settlement rule to sub asset number on order
    Posted costs to order
    Settled from order to AUC with transaction KO88
    Created distribution rules for asset with transaction AIAB
    Settled from sub asset to main asset number with transaction AIBU
    When I settled from the sub to the main asset number in step 9, I found I lost the line item detail.  Is there another configuration setting I need to make to allow me to see the line item detail when I use AIBU?
    Thank you,

  • Automatically created line items will be deleted-Withholding tax

    Dear Experts,
    Please let me know the reason for generating message as Automatically created line items will be deleted while simulating.On second simulation onwards,TDS entries is deleting and the same is disappearing on posting.

    Hi,
    You might be getting this error while do clearing of vendor who is liable for withholding tax.
    You are getting this error because you have to do payment of Withholding tax.
    If this is not the scenario please revert with exactly when you are getting said error.
    Regards,
    Tejas

  • Is it possible to automatically create new folder for each project?

    Hi! Here´s another (maybe stupid) question:
    I wonder if it's possible for Premiere to also automatically create a new folder on the harddrive when a new project is created. This to get all material, preview files etc for each project in a separate folder.
    It´s easy to forget to manually do this and I tend to end up with many projects and files in the same folder. Makes it hard when I want to "clean house" and delete some stuff and backup other.
    Thank's for any help with this!

    Everyone develops their own method of project organization,
    but this has worked for me through several versions of Premiere.
    I keep a 'Project Template' folder that contains all of the sub-directories
    that I will normally need for each job... Media, Approvals, Documents, Audio,
    Rendered Image Sequences, Still Images, Finals etc.
    This 'Project Template' folder also contains a template Premiere project that is
    pre-set with the interface settings, column layout and project folders I will always use...
    Audio (vo, music, sfx), Graphics (sequences, stills, titles, slates),
    Cuts (approval versions, finals, and broadcast distribution finals).
    When I start a new project I simply duplicate the entire 'Project Template' folder along
    with all of its contents, then rename the folder and Premiere project to suit the current job.

  • Where has 'do you want to replace this file' gone when copying items in lion?

    Hello, can anyone tell me if I can still have the option when copying items from one folder to another to be asked ' do you want to replace this file' instead of only having the new options to: stop / keep both / or replace all?  thanks for your help.

    If you don't mind losing them, it's all right to do it.
    Maybe you just want to delete them instead?
    Or do you mean you want to replace the faulty one in your Projects folder with a correct one from your Applications folder?
    Is this the Application you're talking about moving?

  • New coverage line created when update item instance

    Hi,
    Does anyone know why when I'm performing update item instance (CSI_ITEM_INSTANCE_PUB.UPDATE_ITEM_INSTANCE) somehow it will create a new coverage/contract record?
    This item initially is like to a coverage/contract but after perform update item instance it somehow create a new coverage/contract which is identical in most of the column info.
    Could someone let me know why and how CSI_ITEM_INSTANCE_PUB.UPDATE_ITEM_INSTANCE would relate to creating coverage/contract ?
    Thanks

    Todd
    The issue seems to because this:
    x_instance_rec.inventory_item_id := ib_rec3.inventory_item_id;
    You are selecting the item id from your staging table. But the serial number in the csi_item_instances is associated with the instance is a different item id than ib_rec3.inventory_item_id. Hence this error. You cannot change the item in the IB once the instance is created.
    You have two choices: comment this out or change the inventory_item_id in staging table to match with the csi_item_instances.
    Also a lot depends on what is your serial number uniqueness. If you are using the same serial number for two different items (uniqueness with item_Id) you need to be careful which one you are picking (based on serial number).
    Thanks
    Nagamohan

  • Tax Cide Field as editable for Automatically created Line Item

    Hi
    How can we make the tax code editable for automatically created line item, when an FI Document is simulated.
    Thanks & Regards
    Sanil K Bhandari

    Hi
    I want to edit the line item which has been created by the system, when the document is in simulation mode. The entry has not been posted yet.
    Thanks & Regards
    Sanil K Bhandari

  • Automatically create Sub site With the Name of List Item from the list of parent site ,

     Hi all
    I am using Share Point 2010 And
    I have one task That is create new sub site automatically with the name of list item which I Am added in main site List 
    for Example: I have a list name "Projects"  in my main site I am going to add new project as a item ,with that project name i want a new sub site will create automatically .Is there any work flow or any setup
    or any feature please help me by giving guidance  
    Thanking You,
    Arun Darly.

    you can use ECMA script.
    For adding a list item.
    http://adicodes.com/add-update-and-delete-list-items-using-ecmascript/
    Once the item has been added, on success function create a sub site
    http://withinsharepoint.com/archives/285
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

Maybe you are looking for

  • Confusing question re apple id's as it relates to match

    i have my old apple id that i've used for years - for app and music purchases, etc. when i got my iphone 4s, i set it up using the apple id associated with my mobileme account... thinking that it would make sense for the migration to icloud. so now i

  • Flash/Flash Player will not open link to web page when clicked

    Hi there, I am testing a FLASH animation ad that has links to a website.   When I click on the links, it opens firefox but it doesn't go to the  link!  I have added the links and the file names in the Adobe Flash  Settings Manager, restarted several

  • Problems subscribing to iTunes match

    I'm trying to subscribe to iTunes match but whenever I click on the link I'm told - 'iPad purchases page Todo' - help!

  • Former pc user converted to mac..ipod not recognised? help please

    I have just changed my operating system from windows to mac osx. I plugged in my ipod and it only recharges,it doesn't recognise ipod. I assume this is becauseI need to reformat the ipod.Can anyone inform the the process involved,I have looked throug

  • How can I download photos from Mac iPhoto? (Programme error)

    With five discs to choose from, and advice to use discs  3-5, I wonder whether I have made a mistake in installation - disc 4 didn't work so I installed 3 and 5, which seemed to be duplicated.  Has this caused the programme error?