Create formula profile programmatically

Hello All,
I want to create formula profiles through a program. The bottleneck is to assign the formula and then assigning the input profiles.
The standard FM ISU_S_PROFHEAD_CREATE doesnt have the options. Could anyone please share some code or a standard FM/class/program to create one?
Thanks and Regards
D Chandra Sekhar

See my reply a while ago to a [similar question|Re: EEDM06: Formula Profile]
Best for me was to ley a programmer have a look at the sample program and work this into a function module.

Similar Messages

  • Function module to create formula profile : Device Management/ EDM

    Hi experts!
    We create Formula profile against register 2 of the bi-directional device using transaction EEDM06.
    We create profile header by using function module "ISU_S_PROFHEAD_CREATE" but this function module doesn't have input parameter that need to passed specifically creating Formula profile like-
    Formula Prof. Calc = ZNET (fixed)
    Status Group = (i.e., value valid, est man, changed/entered, from date) fixed
    Profile = Profile1 as allocated to RG-002. (always)
    After saving this Formula profile header, allocate the profile to Device is also couldn't be done using function module ISU_S_PROFHEAD_CREATE .
    Please help me is there specific function module to create Formula profile. If you need any clarification, please suggest.
    Thanks,
    Rohit

    you could also create a master data template in EPRODCUST for MD Template Category   INSTALLATION & EDM_PROFHEAD if you need to create the profile header.
    We've wrapped some in function module interfaces for easy automation.
    ISU_S_LPASSLIST_MAINTAIN is an internal function, so I dont recommend building anything on it.

  • How to to programmatically create diagnostic profile : Please , Help!

    Hi,
    I already opened a question about that , but since I got a wrong answer ( I think , or i did something wrong ..) , and , since it is very
    important for me :
    May I have a full example showing how to create diagnostic profile programmatically ?
    I tried many ways to do that , but nothing works !
    Among the things i did was ( for example ) , something like this :
    DiagnosticProfileBean bean=new DiagnosticProfileBean();
    // setting the bean ..
    bean.setLatency(latency);
                   bean.setThroughput(throughput);
                   String profileName="EyalProfile";
                   //DataAggregation d;
                   bean.setProfileName(profileName);
                   bean.setApplicationId("com.oracle.training.jms@defaultserver");
                   //bean.setApplicationId("Application");
                   bean.setState(true);
                   bean.setStageObjectName(this.stageObjectIn);
                   bean.setServerId("defaultserver");
    .... and so on ..
         try {
              dataServiceName =ObjectName.getInstance("com.bea.wlevs:Name=DataServiceFactory,Type=DataServiceFactory,Application=com.oracle.cep.training.jms");
              //     DataServiceFactoryMBeanImpl dsfmb=     (DataServiceFactoryMBeanImpl) MBeanServerInvocationHandler.newProxyInstance(connection,dataServiceName, "com.bea.wlevs:Name=DataServiceFactory,Type=DataServiceFactory,Application=com.oracle.cep.training.jms", ObjectName.class, false);
              } catch (Exception e) {
         throw new RuntimeException(e);
         DataServiceFactoryMBean dataServiceFactory=null;
         DiagnosticProfileBean bean=new DiagnosticProfileBean();
         try {
              dataServiceFactory=(DataServiceFactoryMBean) MBeanServerInvocationHandler.newProxyInstance(connection, dataServiceName, DataServiceFactoryMBean.class, false);
                   // dataServiceFactory=(DataServiceFactoryMBean) MBeanServerInvocationHandler.newProxyInstance(connection, dataServiceName, DataServiceFactoryMBean.class, false);
    it all works fine untul now , but when the program runs this :
              dataServiceFactory.createDiagnosticProfileMBean(bean, bean.getServerId());
    I got the "InstanceNotFoundException " ..
    It seems that the problem related to the connection object , but I'm not sure about it.
    The connection was created in 2 different ways , neither of them worked.
    1. ..
    connector = JMXConnectorFactory.newJMXConnector(serviceUrl, env);
                             connector.connect(env);
                             connection = connector.getMBeanServerConnection();
    2.
    MBeanServer connection =ManagementFactory.getPlatformMBeanServer();
    Does anyone have a clue about it??
    Example ( that works ..) will be appriciated !
    If someone has anothar way that works, it is OK to.just something to create a profile ..
    Again, it very important for me, i'm stuck because of that .
    Thanks.

    Hi
    my project includes many files, but a attached thre relevant parts here :
    // connect to server ( like in the examples )
    env.put(JMXConnectorFactory.DEFAULT_CLASS_LOADER, com.bea.core.jmx.remote.provider.msarmi.ServerProvider.class.getClassLoader());
                             env.put(JMXConnectorFactory.PROTOCOL_PROVIDER_CLASS_LOADER, com.bea.core.jmx.remote.provider.msarmi.ServerProvider.class.getClassLoader());
                             JMXServiceURL serviceUrl = new JMXServiceURL("MSARMI", "localhost", port, "/jndi/jmxconnector");
                             env.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,     "com.bea.core.jmx.remote.provider");
                             System.setProperty("mx4j.remote.resolver.pkgs", "com.bea.core.jmx.remote.resolver");
                             connector = JMXConnectorFactory.newJMXConnector(serviceUrl, env);
                             connector.connect(env);
                             connection = connector.getMBeanServerConnection();
    and then :getting MonitorRuntimeMBean object..
    monitorMBean = (MonitorRuntimeMBean)MBeanServerInvocationHandler.newProxyInstance(connection, monitorName, MonitorRuntimeMBean.class, false);
    and then :
    ObjectName thruputObject = monitorMBean.monitorAvgThroughput(stageObjectIn, (new Long(averageThroughputInterval)).longValue(), (new Long(averageThroughputInterval)).longValue());
                   ProbeRuntimeMBean probeAvgThroughput = (ProbeRuntimeMBean)MBeanServerInvocationHandler.newProxyInstance(connection, thruputObject, ProbeRuntimeMBean.class, false);
                   listener = new AverageThroughputJMXNotificationListener(stageName,connection );
    When i done i use:
    probeAvgThroughput .terminate();
    ofcource , i just cut the relevant parts , but I'm sure that what I'm doing is right.
    My question is not about the latency but about AvgThroughput which shows wrong numbers each time i reconnect to thr server .
    The numbers get smaller each time i reconnect ( I described it in my previuos post ).
    My questions are very simple :
    *1. How to add a profile via api ? ( DiagnosticProfile )*
    *2.How to get DataAggregationMBean ?*
    *3. How to get DataServiceFactoryMBean 'and then use it to add profile?*
    PLEASE , I JUST WANT A GOOD EXAMPLE OF DOING THOSE THINGS !!!
    If there is no answer to those, just tell me , because it's been to much time trying to figure it out.
    Having my code , and asking why do I need this , does not contribute to my quetions ..
    I'm sure you ( the oracle company team ) wants to help , but the mosy helpfull help is via GOOD  examples.
    Thanks.

  • How to to programmatically create diagnostic profile ?

    Hi,
    I'm trying to create a diaganostic profile programmatically .
    I didn't see any example like this. My purpose is to create a profile like in the ' Visualizer ' tool.
    I'm trying to use these lines:
    Application a=new ApplicationImpl(myApp);
    DiagnosticProfileManagerImpl diagnosticProfileManagerImpl=new DiagnosticProfileManagerImpl(a);
    probeNames=new ObjectName;
    diagnosticProfileManagerImpl.createDiagnosticProfile(profileName, probeNames);
    I got a NullPointerException .
    Any ideas? examples ?

    Hi again ..
    I think I know where is the problem but I don't know how to solve it:
    i use these lines to make a connection :
         env.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,     "com.bea.core.jmx.remote.provider");
                             System.setProperty("mx4j.remote.resolver.pkgs", "com.bea.core.jmx.remote.resolver");
                             connector = JMXConnectorFactory.newJMXConnector(serviceUrl, env);
                             connector.connect(env);
                             connection = connector.getMBeanServerConnection();
    and you suggested to use this :
                             connection=ManagementFactory.getPlatformMBeanServer();
    I think there is inconsistency in the typs of the connection mbean.
    Neither of of them works fine:
    The first one works fine for getting troughput , averageLatency and so on ,
    BUT, when i try to terminate ( unregister from the mbean server ),
    and than re-connect again, the numbers i'm getting are wrong.
    In the second type (ManagementFactory.getPlatformMBeanServer() ) , when I want to use as a profile creator ( like in the 'Visualizer' tool - which works fine )
    I don't know which of the types to use.
    What is your recommendation to to use : for temintinag the probeRuntime, and for making a profile .
    again, neither of them works all the way!
    Plz help.

  • Error in creating Formula Variable

    Hi All:
    I'm having problems in creating formula variable. Trying to create FV on a characteristic using replacement path with attribute value , but the wierd part is it's not giving me any attributes it's just blank. Any help would be appreciated....
    Thanks,
    Manasa.

    Right click on the FM, create -> Characteristic -> attribute value -> but the attribute are not showing up.  This happens if the attribute is of key figure type. I was able to do this in another system (ASIA DEV) but now trying in Europe Dev.

  • How to create a profile set for a campaign.

    HI  Friends,
    I am working on CRM 7.0.
    My requirement is to create a Batch program for  campaign creation and automation.
    i have used the class 'cl_crm_mktpl_appl_base' to copy the existing campaign .
    It copied the entire target groups,campaign  elements, profile sets.
    My requirement is for the created campaign id, i need to create a profile set in that i need to create target goups.
    Fm : BAPI_PROFILESET_CREATE is not helpful for me in my case.bacause it is asking parent guid ..etc...
    I have ony one guid ,ie. campaign guid . if i give this in parent guid it is thriwing error.
    can any suggest how to create a custom profile set.
    If any one  worked on this batch program please reply to this thread.
    Edited by: jagadheeswara raju on Feb 10, 2010 7:02 PM

    Hi,
    I have replied to the below thread mentioning the FM's to create Profile sets, profiles and also target groups. This may be helpful to you.
    Re: target group creation
    Regards,
    Priyanka

  • Is there a way to create Preflight Profile using Java Script / C++ SDK?

    Hi ,
    I need to dynamically create preflight profiles depending on the analysis of the document. I am using Adobe's C++ SDK to access the Adobe Acrobat Pro X as a server to perform the actions I need to. Maybe I failed in my search for the function to create a preflight profile. Is there any other SDK to create the preflight proflies within the Adobe Acrobat environment.

    Hi,
    As discuss above , we have to create the XML response  ,before that first you have to
    GetConfiguration() details of existing virtual network. 
    string.format("@<NetworkConfiguration xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns='http://schemas.microsoft.com/ServiceHosting/2011/07/NetworkConfiguration'>
                <VirtualNetworkConfiguration>
                <Dns />
                <VirtualNetworkSites>
                <VirtualNetworkSite name=""{0}"" Location=""{1}"">
                <AddressSpace>
                <AddressPrefix>10.0.0.0/8</AddressPrefix>
                </AddressSpace>
                <Subnets>
                <Subnet name=""Subnet-2"">
                <AddressPrefix>10.0.0.0/11</AddressPrefix>
                </Subnet>
                </Subnets>
                </VirtualNetworkSite>",Networkname,location)+(@"<VirtualNetworkSite name=""demodsf1"" Location=""West Europe"">
            <AddressSpace>
              <AddressPrefix>10.0.0.0/8</AddressPrefix>
            </AddressSpace>
            <Subnets>
              <Subnet name=""Subnet-1"">
                <AddressPrefix>10.0.0.0/11</AddressPrefix>
              </Subnet>
            </Subnets>
          </VirtualNetworkSite>  </VirtualNetworkSites>
                </VirtualNetworkConfiguration>
                </NetworkConfiguration>")
    you have to append the node for existing node with new values , i got it its adding new virtual network 
    Best regards,

  • How to create a profile value at user level programatically

    Dear all,
    I want to create a profile value at user level programatically, I refer to the developer guide and try to use fnd_profile.put() to create a new value.
    But I find out the value is just created in session level, not be inserted into base table.
    So is there anyone know how to realize this function in PL/SQL?
    Any idea is appreciated.
    Best Regards,
    Kenny

    Check Note: 364503.1 - How to Set a System Profile Value Without Logging in to the Applications
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=364503.1

  • LoadUserProfile() creates a profile with Chinese characters on a remote system

    Hi,
    I'm working on an application where LoadUserProfile() is being used to remotely load a user profile on a machine. The token being passed to LoadUserProfile() is obtained from LogonUser(). 
    When doing this only with a Domain Admin user which is added in Active Directory, it creates a profile with Chinese characters in the C:\Users\ folder of the remote machine. Note that this happens only when logging in for the first time with
    this Domain Admin account remotely on that machine.
         // code:
          PROFILEINFO pi;
          memset((void *) &pi, 0, sizeof(PROFILEINFO));
          pi.dwSize = sizeof(PROFILEINFO);
          pi.dwFlags = PI_NOUI;
          pi.lpUserName = (TCHAR *)strUser;   //strUser is the User name, and it shows correctly here when debugging
          if (LoadUserProfile(hToken, &pi))
    //It is actually successful, and comes here when debugging.
    Although the name shows up correctly when debugging (remotely), why is it creating a profile with Chinese characters on the remote machine? 
    TIA,
    Jy

    CreateProfile won't load the profile.  You need to use LoadUserProfile to load the profile, and you need to query for a roaming profile path to put in the lpProfileInfo parameter if you want to include that as well.  You need a token for a
    user to call LoadUserProfile, but not a profile handle.  LoadUserProfile will populate that for you before it returns if it was successful.  See this excerpt from
    https://msdn.microsoft.com/en-us/library/windows/desktop/bb762281%28v=vs.85%29.aspx:
    Upon successful return, the hProfile member
    of PROFILEINFO is
    a registry key handle opened to the root of the user's hive. It has been opened with full access (KEY_ALL_ACCESS). If a service that is impersonating a user needs to read or write to the user's registry file, use this handle instead of HKEY_CURRENT_USER.
    Do not close thehProfile handle.
    Instead, pass it to the UnloadUserProfile function.
    This function closes the handle. You should ensure that all handles to keys in the user's registry hive are closed. If you do not close all open registry handles, the user's profile fails to unload. For more information, see Registry
    Key Security and Access Rights and Registry
    Hives.
    WinSDK Support Team Blog: http://blogs.msdn.com/b/winsdk/

  • I am getting the following error when i am trying to check in new created content profile

    Hi All,
    I am getting the following error when i am trying to check in new created content profile as:
    An error has occurred. The stack trace below shows more information.
    !csUserEventMessage,weblogic,localhost:16200!$!csServiceDataException,CHECKIN_NEW_SUB,validateStandard!$!syParameterNotFound,dDocTitle
    intradoc.common.ServiceException: !csServiceDataException,CHECKIN_NEW_SUB,validateStandard!$
    *ScriptStack CHECKIN_NEW_SUB
    3:doScriptableAction,**no captured values**3:doSubService,**no captured values**CHECKIN_NEW_SUB,**no captured values**3:validateStandard,dDocName=myucm-005202
      at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115)
      at intradoc.server.Service.buildServiceException(Service.java:2260)
      at intradoc.server.Service.createServiceExceptionEx(Service.java:2254)
      at intradoc.server.Service.createServiceException(Service.java:2249)
      at intradoc.server.ServiceRequestImplementor.handleActionException(ServiceRequestImplementor.java:1766)
      at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1716)
      at intradoc.server.Service.doAction(Service.java:477)
      at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1458)
      at intradoc.server.Service.doActions(Service.java:472)
      at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1322)
      at intradoc.server.Service.executeSubServiceCode(Service.java:3866)
      at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:1200)
      at intradoc.server.Service.executeServiceEx(Service.java:3861)
      at intradoc.server.Service.executeService(Service.java:3845)
      at intradoc.server.Service.doSubService(Service.java:3760)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
      at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
      at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
      at intradoc.server.Service.doCodeEx(Service.java:550)
      at intradoc.server.Service.doCode(Service.java:505)
      at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643)
      at intradoc.server.Service.doAction(Service.java:477)
      at intradoc.server.Service.doScriptableAction(Service.java:3807)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
      at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
      at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
      at intradoc.server.Service.doCodeEx(Service.java:550)
      at intradoc.server.Service.doCode(Service.java:505)
      at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643)
      at intradoc.server.Service.doAction(Service.java:477)
      at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1458)
      at intradoc.server.Service.doActions(Service.java:472)
      at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1391)
      at intradoc.server.Service.executeActions(Service.java:458)
      at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:737)
      at intradoc.server.Service.doRequest(Service.java:1890)
      at intradoc.server.ServiceManager.processCommand(ServiceManager.java:435)
      at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
      at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1343)
      at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1715)
      at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:222)
      at sun.reflect.GeneratedMethodAccessor133.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.executeContentServerIntegrateMethodOnConfig(ServletUtils.java:1600)
      at idcservlet.IdcFilter.doFilter(IdcFilter.java:352)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: intradoc.data.DataException: !syParameterNotFound,dDocTitle
      at intradoc.data.DataBinder.getEx(DataBinder.java:1251)
      at intradoc.data.DataBinder.get(DataBinder.java:1050)
      at intradoc.server.DocServiceHandler.validateStandard(DocServiceHandler.java:1257)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
      at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
      at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
      at intradoc.server.Service.doCodeEx(Service.java:533)
      at intradoc.server.Service.doCode(Service.java:505)
      at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643)
      ... 79 more

    Your error states:
    !syParameterNotFound,dDocTitle
    Can you confirm that your profile includes all required data, specifically, the dDocTitle? Fix this issue, then re-check your logs. if there are other missing required parameters, fix each one.
    Eventually, you should have a successful check-in.
    Hope this helps,
    -ryan

  • How to create Formula based value field in COPA

    Hi,
    I want to know how to create formula based  value field in COPA
    My Requirement is i want to collect some value in formula based value field and want to use in copa allocation cycle as a tracing
    factor.
    anybody give some light on the same topic or requirement ?
    Thanks
    Nilesh R

    The key figure you are creating in KE2K is not a value field, i.e. you can't post to it and you can't use it in a report. It is a caluculated value that can be used only in assessment and top-down-distribution.
    In Ke2K, enter a name for your key figure, then click on the the white sheet button to create it. Now the formular area is open for input. Input your formular (e.g. VV001 + VV002 - VV003 .... where VVXXX are the technical names of value fields).
    Now click the "check formuar"-button. Then save.
    Before you can use the key figure in assessment, execute TC KEUG.
    Now the key figure is available as any value field in the tracing factor selection of your assessment cycle.
    I hope this made it clearer.
    Regards
    Nikolas

  • Can't create a profile or find newtwork

    I have a WRT300N and a WMP300N card with 3 computers in my house. My bro's computer is wired. My sisters has one WMP300N card and works fine. My Computer was working fine I used it this morning then I lost my connection and my linksys wireless network box was greyed out and it couldnt find the network to connect to. After trying a few things I decided to uninstall and re install the WMP300N card and I did so now the first thing that pops up is Create A Profile. But there is no network being found and i can't click anything other than exit. Any Idea what to do? I know I've solved this problem in the past. And my sister's computer still works fine and has access to the internet. Any help would be appreciated thanks

    Check the Wireless network settings from router ... Install the CD ... once it will show you settings to create the Profile .... Use the same settings as to configure the Profile .....
    Reboot the computer after installtion .... see if it shows connected ....

  • I can't get firefox to open. Try creating another profile as suggested in another answer, and it says that firefox has crashed, how do I get firefox working?

    I had to restore my computer to a previous restore point. When I tried opening firefox 4.0, nothing happened. Frustrated, I tried removing the program, but ran into the same problem: nothing happened. I went to Processes in Windows Task Manager, and firefox.exe was not running. Tried using the suggestions to create another profile, and entering the command into run brought up an error saying that firefox has crashed.

    OK - undo the changes you made to DEP.
    Open Firefox - take a screenshot of any message that appears and post back here

  • How do I create a profile to play app i can not move beyond this screen

    I have downloaded a free app from itunes and the first screen  is requesting I create a profile name. I keep tapping on the screen to create one but that part is dead.
    On the screen it has
    CREATE A PROFILE
    First Name   Johnny (this is shaded)
    Email (optional)  [email protected](this is shaded)
    or Login with Facebook - of couse this works but I do not have nor want a facebook account.
    I have tried installing and uninstalling twice but it make no difference.
    Any suggestions

    This assumes that none of the layer are already in layerSets( group ) and none have layer locking.
    if(app.documents.length>0){
        var doc = app.activeDocument;
        while(!doc.artLayers[0].isBackgroundLayer && doc.artLayers.length>0  ){
            var newSet = doc.layerSets.add();
            newSet.name = doc.artLayers[0].name;
            doc.artLayers[0].move(newSet,ElementPlacement.INSIDE);

  • Creating a Profile in Mail

    Using XP on a HP. When trying to send photos through e-mail, the instruction say to create a profile in the control panel, mail. Do not know what to put in that field. Thanks.

    Hi,
    The application sends the photos via the default mail client that has been set in the system. So you need to create a new eMail account. For that go to Control Panel->Mail -> E-Mail Accounts.and create a new account.
    Also, you can modify the email settings in PSA itself in Edit-> preferences -> EMail , here you can mention the email client to be selected for sharing photos.
    Thanx.

Maybe you are looking for

  • Mail client settings for Sony Z2 tablet

    Tried to use standard mail client. However incoming mails are ok and are being downloaded. As for outgoing mails...here there is no synchronization with other devices, if You send mail there, it will appear in outgoing folder, if some message is sent

  • Prime Infrastructure 2.0 and add a WLC device

    Hi, One question regarding to add a device / WLC Controller  into NCS 2.0. I done this in the past with NCS 1.3 without problems but now I don´t know why but if I add a device into the NCS 2.0  I get the the message CLI Failure /  timeout. I doublech

  • How to create new canvas at photoshop and apply a layer by layer name?

    How to create new canvas at Photoshop and apply a layer by layer name ? So simply what i want is Create a new canvas certain size such as 150x40 pixels Apply a layer to that canvas. Script will select the layer by layer name How can i do that these 2

  • Standard mime type for .acsm file

    What is the standard mime type that should be used for an .acsm file? Is it this? - application/vnd.adobe.adept+xml I can see few eBook sellers sharing this mime type: application/vnd.adobe.adept (without the +xml).  I can see in such cases few of th

  • Create a black border for select list item

    Need help on creating border on a select list item. I tried using style ="border:1px solid black"; in HTML Form Element Attribute , but its not working for select list item, though it works on text field item. Nilesh