How to block copying incomplete template projects

In our business we work with template projects from where we copy (CJ20N) the operational projects.
It does happen that these template projects are ´in maintenance´ or are being defined... there is even a status field for that.
The problem is that a user is able to create a copy of an incomplete template (they are geographically spread - so they do not easily communicate between template builders + operational project mgrs) - the system does not prevent a user from doing so... and according to our friends at SAP, the system works as designed..
Has anyone of you experts seen this problem before, and how did you handle it to make sure that a user cannot copy from a template which is in maintenance?
Edited by: Rony Cools on Aug 13, 2009 6:34 AM

Hello,
you can enter a lower limit in the condition record:
Lower limit of the condition rate/amount
Indicates whether, during document processing, the system checks if manual changes fall short of the lower limit allowed for the corresponding condition record.
Use
When you maintain the scales in a condition record, the system checks whether the scale value falls below the lower limit.
Or you can use the flag 'conditon update'.
Condition update
Controls whether limit values are relevant for pricing.
E.g.: you can make the use of a particular condition record in the document dependent on a specified total value.
This total value can be specified in the condition record.
I hope that the information are helpful.
With best regards
Claudia Neudeck

Similar Messages

  • How do you copy the templates from another webstie and use them as your own?

    Hi Everyone, I was told that with Dreamweaver it is possible to copy another websites templates? What are the steps in copying another websites template with Dreamweaver? I would like to know I am a newbie when it comes to this program so please make your statement understandable for me, thanks. Also, I am having problems creating a drop down menu for each of my web pages. When I go to highlight a specific box on my homepage I want the dropdown menu to appear vertically and not horizontally. I may have missed something when watching the video tutorials or I didn't quite understand what they meant. Thank you for any information on the series of questions that I have asked in this new thread.

    Hi Everyone, I was told that with Dreamweaver it is possible to copy another websites templates? What are the steps in copying another websites template with Dreamweaver?
    This is difficult to understand.   How are you copying templates from another site?
    If you have all the files that make up the template, then it's only a matter of saving all the files to a folder on your hard drive and setting up a site definition pointing to this folder.  You then work on the files as usual.
    Also, I am having problems creating a drop down menu for each of my web pages. When I go to highlight a specific box on my homepage I want the dropdown menu to appear vertically and not horizontally. I may have missed something when watching the video tutorials or I didn't quite understand what they meant. Thank you for any information on the series of questions that I have asked in this new thread.
    Without seeing the page it's difficult to judge what your problem is.  If possible, please upload the files to a remote server and provide a link to the page. It's the only way people can help - if they see your page in action.
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Configuration steps not copied from Template project

    Hi All,
    We are creating a project using an existing template project (our own defined). The business processes are copied but the configuration steps and documentation in configuration does not come in the new project (SOLAR02).
    Could any one help.

    Goto solar01 transaction here first choose the business scenario of ur template project which you have added in the structure tab on the right side you have something known as attribute column
    Here choose the appropriate one for you
    Global
    A process is global when it is integrated throughout the enterprise, that is, it is cross-functional or cross-organizational. An element that is flagged as global cannot be changed in a Local Rollout, i.e. the structure element and all associated business content is pre-determined.
    Standard Complete
    A process is standardized if it must be executed in the same way in the entire enterprise (in all relevant organizational units). A standardized complete element (and its business content) can be seen as a proposition from the Global Template that should be used as delivered. However the local team may extend the structure element with additional substructures and with additional business content.
    Standard Partial
    A process is standardized if it must be executed in the same way in the entire enterprise (in all relevant organizational units). A standardized partial element (and its business content) can be seen as a proposition from the Global Template that should be used as delivered, but the process consist of sub-processes that are locally regulated by legal requirement and these need to be defined on a local level. The local team can design own process if agreed by the parent company. Therefore the local team may extend the structure element with additional substructures and with additional business content. Template business content may even be changed or deleted by the local team. Whenever a template object is deleted there is a warning message.
    Harmonized
    These Business Process, Master Data, Organizational Units will be standardized in the future. It is recommended that the Local Rollout uses the harmonized structure elements. A process is harmonized if it is recommended to execute the process in a specific way. Harmonization is a first step towards standardization, but without mandatory elements. One reason can be for organizational readiness or many legal requirements preventing standardization. For the local teaam the same activities are allowed/forbidden as for Standard Partial.
    Local
    A process is local if it is not possible or it makes no sense to define it as global, standardized, or harmonized. Local units must design this process for their needs. These processes are necessary for obtaining an executable system for testing. For the local teaam the same activities are allowed/forbidden as for Standard Partial.
    Note You can use the pass tab available next to +/- button which is used to pass this attribute which you have assign to the lower levels.
    Hope you got what you are looking for
    Regards
    Prakhar
    Edited by: Prakhar Saxena on Mar 20, 2009 2:12 PM

  • How to reference Excel 2010 template project in my ViewModel

    Hi,
    I have 3 separate projects :
    Excel 2010 template project
    Class Library project
    WPF Application project
    Excel 2010 template project hosts wpf user controls developed in WPF Application project. Those controls use command bindings to Class Library project which contains my ViewModels. When user clicks on button on hosted WPF control in Excel 2010 template project
    ViewModel generating BindingList.
    Now I need to show content of generated BindingList on Excel worksheet in Excel 2010 template project by using ListObject.
    Can anyone provide me with instructions or even better with example or solution to my problem in order to make this working OK.
     Thank you in advance.
    Almir

    Hi,
    thank you for your reply. In order to solve problem, I have build the same WPF user controls in Excel 2010 template and pass DataContext behind working sheet in order to populate ListObject and show data in Excel datagrid.
    Here is how I did it
    private PlanningAreaDimensionDetailsViewModel ViewModel
    get
    return (PlanningAreaDimensionDetailsViewModel)DataContext;
    private void Buton_Clicking(object sender, RoutedEventArgs e)
    Sheet1 ws = (Sheet1)Globals.Sheet1;
    ws.ShowResult(ViewModel);
    I don't like this code behind my button_click (I prefer no code behind) but don't know how to do this differently in Excel templeting. Any proposal will be more than Welcome.
    Also, I have created ShowResult method  behind my Sheet1 and it looks as follows:
    public void ShowResult(PlanningAreaDimensionDetailsViewModel ViewModel)
    PlanningAreaDimensionDetailsViewModel myList = ViewModel;
    int ListObjectCount = this.ListObjects.Count;
    this.Columns.Delete();
    inputTable = Controls.AddListObject(Range["A8", "E11"], ViewModel.SelectedPlanningArea.ToString());
    inputTable.SetDataBinding(myList.PlanningDimensions, string.Empty, null);
    Do you maybe know how can I delete ListObject if already exist the one with the same name? This is where I stuck right now:(
    Sorry for this questions, but I have never before used VSTO. Just trying to reuse my ViewModels and WPF controls in order to provide solution to my boss he asked (he is Excel man and wants Excel as Front)
    Kind regards,
    Almir

  • How do I copy an iMovie project from iMovie 11 to an SD card

    How do I copy/export an iMovie project from iMovie 11 to an sd card on an iMac?

    In iMovie, use SHARE/EXPORT MOVIE in the size that you want, and then specify a name and location that you can find, such as on your desktop.
    Then, in the Finder, drag the movie you just made to the SD card.

  • How can I copy an existing project?

    I am using RoboHelp 9 on a virtual server. 
    I copied the entire folder of original project.
    Named New Folder the name of 2nd project.
    Can;t find copied project when I view open projects in robohelp.
    I am very new to this but I desparately need to copy my original project asap as of next week, there will be two versions of the product and I will need to keep the two projects separate.
    Thanks in advance for any help.

    Hi there
    You're on the right track.
    Copy the folder to a new location.
    From RoboHelp, click File > Open and navigate to the new location.
    Open the ProjectName.xpj file you should find there.
    After you open the project, click File > Rename Project and give it a new name.
    Cheers... Rick

  • How to block reusage of archived Project definition and WBS element numbers

    Dear All,
    We have archived our projects using the TC SARA and the Project definition and WBS elements numbers no more exist in tables PROJ and PRPS etc.. When I now try to create a new project, the system proposes the next open number or allows to enter a number which is the same as one of the archived projects. But in our organization we cannot reuse the Project definition and WBS element numbers (even if it is archived) as a rule.
    Can anybody guide me what are the possibilities to block or avoid the reusage of the numbers of archived project definition and WBS elements in a fool-proof way? 
    Thanks and regards

    One Workaround:
    Use T code OPSJ and lock the project coding mask. Doing this you can not use this mask any more.
    But you want to continue using the mask but with different numbers. Not sure how this can be acheived. lets wait for others view
    Regards
    Sreenivas

  • How do i copy an entire project of photos

    Good evening,
    I am a "new" Aperture user and am looking to make a "duplicate" project and tweak the photos so I have 2 different projects
    containing different dpi & bordered photos.
    Is this possible ?
    Thanx,
    Marcus

    markovavitch wrote:
    & the learning continues...
    Aperture is a brilliantly conceived and implemented application that has at its core a different paradigm of data management.  Your question shows that you are thinking of Aperture as a _file-manager_ and _file-creator_.  It's ... different, in a way that is almost impossible to grasp at first.  Aperture was designed — afaict — to address a problem photographers using digital cameras faced.  As cameras recorded more data, the files containing the data for each exposure got larger and larger, and both storage and data throughput were becoming problems.  All artists ever have been fond of making and trying variants — in painting schools Cling Wrap is used as a disposable clear film on which to paint ephemeral variants that don't alter the painting underneath.  As photographers took advantage of the ease with which variants of digital image files could be created, they were unintentionally using up all the computer resources they had available.  Enter Aperture.  Instead of creating _whole_ new files, it creates variants by saving _the instructions for how to create the variant_ instead of the variant itself.  The instructions require very _very_ little storage space.  The trade-off is that files that can be used by other programs _do not exist_ and are not saved to disk as image-format files.  When you need a file to use in another program, you create it by exporting an Image from Aperture.
    Aperture is a workspace that saves your work as _the potential to make files_, but does not save those files themselves.
    The "tweaking" that is done in Aperture is to make each digital camera file into an Image that is good as it can be for a particular use.  You specify DPI, and add borders, to files based on your Images when you produce those files by exported Images in Aperture.  For borders, use the excellent and highly-recommended Aperture plug-in BorderFX.
    HTH.  You may find my concise intro to Aperture's parts useful.  I echo Léonie's recommendation of the User Manual.  The first 8 chapters provide a good overview of the program and some much-needed information about the UI.  In particular, understanding Projects, Albums, Smart Albums, and Folders — how they operate and how they differ — is essential for using Aperture without frustration.
    —Kirby.

  • How do I copy an iMovie project from one computer to another (without using aliased files)?

    I followed the instructions at http://support.apple.com/kb/PH14745 to copy an event to one library to another.  The added library was accessed through a network share.  A new folder was created in the iMovie Library package, but the media files were all aliases to the media on the original computer.  Is there any way to actually copy the files and not have iMovie just create aliases?

    I think the trick is to 'Considate source media' on the new library.  See: 
    http://help.apple.com/imovie/mac/10.0/#mov882dee351
    Geoff.

  • Copying template project

    hello all,
    We are trying to copy our template project which holds the complete business process structure including all content and documentation in our production system, to safeguard our template project. The target project type is also a template project.  If we copy the template project with transaction solar_project_admin, we cannot get into the copied template project. We receive the next error message the "process structure doesn't not exist" and SAP refers to the SOLAR_GEN_* batch job, which didn;t run correctly. If we copy the template project in our test environment we don't have any problems. Only thing is that in the source template project in the template tab of project administration, the number of templates is growing each time we do a copy template project.
    It seems that it is not possible to copy templates in production and probably that is why no process structure is created in the target template project.
    Does anybody come across this issue?
    thanks in advance,
    Ralph

    Hi Srini,
    If you want to copy your template project e.g. for saveguarding your template project, you can copy the template project by using the transaction solar_project_admin. It is only possible to copy template to template.
    The moment you copy the template project the assigned templates will be copied because they need to be unique. The background batch job does copy these assigned templates and will name the template an unique name e.g. template1.
    For copying these templates you need to open your customizing otherwise the background job cannot copy the templates.
    hope this will help.
    Ralph

  • Template Project Usage in Implementation Project

    hi,
    I have defined the Template project in Solar_project_admin. Now how I can use this template project in Implementation project.
    What are the steps of copying the template project into implemenation project.
    Regards
    PK

    Hi Aditya,
    Many Thanks. I am new to this feature ( Template project & roll out).  My requirement is like, I need to define one template project & same has to be rolled out in other contries implementation projects. This is in a broder sense.
    Now what are the steps to go about. How to proceed.
    Will there be only one Solution Manager or different countries will have sepearte Solman. Will one Solman will do all rollouts.
    Can you give me some useful stuff as a biginner, how the project management is used  ( especially Template project & roll out )
    Regards
    PK

  • How do I copy/paste full numerical-only account strings into the Projects WebADI template when the account segment fields in the template require use of the dropdown because they're formatted as alpha-numeric values?

    How do I copy/paste full numerical-only account strings into the Projects WebADI template when the account segment fields in the template require use of the dropdown because they're formatted as alpha-numeric values? I'm using the Integrator named "Projects - Transaction Import" and a custom Layout created based on the seeded Layout named "Transaction Import - Accounted". Do I need to somehow change my Layout to make the Document accept numerical values instead of requiring alpha-numeric values? I need to be able to populate the Document with a large amount of transactions and cannot feasibly go through every transaction to add the alpha-valued name of the account segment to every segment that requires it. The segments in particular causing the problem are "Expnd Type" and "Organization Name" which are both alpha-numeric and as such contain the segment number and name; I need to be able to only have to enter the Natural Account Number (6-digit number only) and the Organization Number (5-digit number only).

    How do I copy/paste full numerical-only account strings into the Projects WebADI template when the account segment fields in the template require use of the dropdown because they're formatted as alpha-numeric values? I'm using the Integrator named "Projects - Transaction Import" and a custom Layout created based on the seeded Layout named "Transaction Import - Accounted". Do I need to somehow change my Layout to make the Document accept numerical values instead of requiring alpha-numeric values? I need to be able to populate the Document with a large amount of transactions and cannot feasibly go through every transaction to add the alpha-valued name of the account segment to every segment that requires it. The segments in particular causing the problem are "Expnd Type" and "Organization Name" which are both alpha-numeric and as such contain the segment number and name; I need to be able to only have to enter the Natural Account Number (6-digit number only) and the Organization Number (5-digit number only).

  • How to compare between two versions of template project???

    Dear All,
    We are doing some cleanup activity in our solution manager system. For this actually we have created the replica of this project from production system to a sandbox system. We can do the cleanup of this project and can transport this new project to our production system and can move on.
    But the pbm we are facing now is, how do we bring in the data captured or added to the production system after we have copied it to the sandbox system?
    Can anybody throw in some light into this issue?
    We tried the option of creating different version for the template and using the sa_project_upgrade transaction to compare between two versions of the template using "Current Version in Project" option. Not sure whether this will work out.
    {{We thought that if we try in this way, we can find the difference between the two versions of the template project, and from there, might be we can bring in the new changes into our new project manually. We do agree that this is not the right approach.}}
    But the end result we got was like we got the information regarding where all there is the difference between the current version in the template project to that of the original(in our case it checked against BPR as we selected the scenarios from BPR for this template). But what we expected was a difference between two versions of the template.
    Pls help. Pls make a try to help. Any thoughts in this direction will help us to move forward.
    Any info will be suitably rewarded.
    best regards,
    Krishna.

    Hi Andreas,
    Thanks a lot for your immediate reply.
    I too had that doubt that my appraoch will not work. But wanted to get confirmation that it will not work. Also wanted to know about any other approach. Thank you for providing me with some alternative approach.
    I tried the option suggested by you. But while running the comparison report for the newly copied project with the option "New Version of Original", I am getting the below error. I do agree that this approach should work. But for some reason I am getting the below error. Can you pls look into the same and help me out.
    Internal error
    Message no. AI_COMPARE006
    Diagnosis
    An unexpected error has occurred in:
               program CL_SA_PROJECT_UPGRADE_ONLINE==CP
               include CL_SA_PROJECT_UPGRADE_ONLINE==CM002
               line                                                  102
    Procedure
    Restart the transaction. If the problem persists, check if a SAP note is existing for this problem. If not please send a message to the SAP hotline.
    Thanks a lot in advance.
    best regards,
    Krishna.

  • How to map business scenarios from implementation project to template project

    Hi
    We have a template project and in this we have maintained few business scenarios. And also some specific scenarions are configured in the implementation project. Now we need to make template project as Global Template and for this we need map all existing scenarios in implementation project to template project.
    Please suggest how we can map from implementation project to template project.
    Thank you

    Hello,
    Along with Sandeep recommendation, you can do it by several ways.It all depends on how are the current projects organized.
    Did you create the template project and then rolled out the templates to the impl. project?
    In case you want to update these scenarios in the Template project based on the changes you performed in te Impl. Project, you can use the Compare & Adjust functionality.
    You can Copy Scenarios from one project into another by using the right click/context menu directly in the node in solar01.
    If you just want to copy the structure, you could export the  Impl. project structure in solar_project_admin by using the "fill business blueprint" functionality, then adjust the structure similarly for the template project and upload.
    and so on..
    regards,
    Fabricius

  • OSB : How can we copy  actions from one project folder to other projects?

    How can we copy actions from one project folder to other projects in OSB?
    For eg:
    I have a service call out action in Project1/proxySer1
    I want to copy this to Project2/proxySer2.
    Espicially, in our case error handling callout is common to all of our projects and we should be able to copy from one to another.
    Edited by: user10367892 on Aug 20, 2009 12:28 PM

    Thank you for the reply.
    It was my fault. I was on two different servers, while i was doing this and so didn't work. But copy /past action works as you suggested.
    Can I select multiple actions from one stage and paste to different proxy service? I have too many options to copy/paste and hence I have this question.
    Is there any other way of copying all selected actions in one stage to another, but not the complete stage itselft?

Maybe you are looking for

  • Referencing a instance inside a Class

    Hi -- I am working on converting a movie clip to a Class so that I can more easily reuse it in later projects. I have pretty succesfully converted my AS code from my include file to a Class file. However, I have two objects on the stage, topBG and bo

  • Db 11.2.0.3 install fails with this exception

    Hello All, To give a background : have Virtual box on windows 7.. Virtual box have the oracle linux 6. Completed installed for clusterware. I have successfully installed clusterware, while attempting to install database i get a alert at the step 2 of

  • Airport Extreme - when will it be available again?

    Hi folks I've been waiting patiently for the new Airport Extreme to be released. Does anyone have any idea when that might be? Cheers Stuart

  • Videographer Wants To Live Stream - Lost At Amazon

    I am a freelance videographer and I am researching methods of live video streaming. I want to offer my clients, some of whom are entertainers and event promoters, the ability to stream events, and on-demand recordings, and also to control access to t

  • Installing Printer from terminal in MAC OS 10.6

    Hello everyone! I have 30 Imacs and 1 Xerox DocuPrint N2125. The Imacs are bound to Active and Open directory. The printer has a reservation on a windows print server running server 2003. I manage the Imacs from a Mac OS X server (10.6.4) in conjunct