Loading metadata and creating users in FDM

hi friends ,
1) I am using HFM and FDM9.3.1 Can we load HFM metadata using FDM.If yes pls tell me how?
2)Pls tell me the steps to configure shared services with FDM.Can we configure only msad and ldap with FDM?
Is there any role of vb authentication scripts for shared services user or is it only forusers created in user management in FDM?

Hello,
Currently FDM can not load metadata to HFM. You would need something like MDM/DRM as that is their job.
FDM 9.3.1.x only integrates with MSAD/LDAP/NTML providers. While SharedServices leverages the OpenLDAP software, it may be possible. I would recommend creating a Support SR to obtain the process.
Fusion Edition (11.1.1.x) directly integrates with SharedServices.
Thank you.

Similar Messages

  • Error Loading Metadata while creating KPIs in SSAS

    Hi,
    i have created a cube for my local database. On opening the cube in the SSAS solution when i clicked on the calculations tab (and subsequently in the other tabs - KPI, Actions etc ) i get an error "error loading metadata: Either the user, DOMAIN\UserName, does not have access to the analysis services, or the database does not exist" in the metadata tab of the calculation window...
    I am using SQL Server 2005 SP2 with Windows Server 2003 on a 32-bit machine and currently connected as the admin on the box.
    I tried running the sample SSAS solution (SSAS samples from program files ) just to verify if there is some problem in my solution parameters but the error persists.
    All my sql server 2005 services are up and running (with the exception of SQL Active Directory helper and SSRS which i dont need!!!)
    Any help is appreciated ...
    Thanks
    Dev

    hi jwelch,
    yes the database i have used as the data source in SSAS is deployed on my local database engine and so is adventureworksDW (i am sorry, being new to SSAS, just to confirm if thats what you meant by the database deployment here or are you referring to some separate deployment for the Analysis Service)
    I have not defined any roles for the database and i am running the BIDS as a system admin.
    Thanks
    Dev

  • Load Metadata and Extract Metadata tasks in EPMA hfm app not appearning

    Hello,
    I have deployemed a hfm app in EPMA.
    But the options of Load Metadata and Extract metadata does not appear under Load task and Extract task.
    Version of EPMA is 9.3.1.3.
    Is this some limitation with this version of EPMA or have I done something wrong during the installation.
    The user has all the privileges for this app.
    Please help.
    Thanks and Regards
    Hemanth

    Sorry,
    Posted in a wrong forum.
    Thanks
    Hemanth

  • Loading Metadata to HFM Classic from FDM

    Hi,
    Can anyone please explain is there any possibility to load Metadata (Members) in HFM Classic Application using FDM.
    If so please explain in detailed.
    Thanks in advance

    FDM is not designed to load metadata but data. It can be done but would involve a fair bit of custom code (including a wrapper dll) as the metadata load functionality is not exposed by the HFM web SDK. I'd look at alternative method for doing this and stick to loading data via FDM.

  • How To create custom login and create user pages

    Where can I find documentation that discusses how I can create a custom login page and create new user page?
    Also, I cannot find how to get away from the default login page.
    I am using 9iAS/Portal R2.
    Bill G...

    Well - I did find some docs;
    Chapter 8 of the Oracle9 iAS Single Sign-On.pdf file titled "Customizing the Single Sign-On Interface" has some good info but I'm wondering about the "create new user part".
    Bill G...

  • Question on icloud and creating users

    I have noticed that my Macbook Pro will create its own user.  I immediately deleted this user since I didn't create it and thought it was taken care of.  Well, I turned on my computer again today and the user was created again, without my consent.  My initial reaction is to think that this is a virus but I started using iCloud recently to share photos with my family and thought maybe using iCloud will create a user for some reason.  This hasn't happened before in the 4 years I have owned the Macbook Pro.  I updated to Mavericks so maybe something finally came through in the update.  I really have no idea what is going on.  All I am used to seeing when I turn on my computer is the administrator (me) and another user I created.  Now there is a third user that has been created all by itself.  Has anyone encountered this before?  Any help would be appreciated!!  Basically, I am stressed out because now I think I have a virus. 

    The Guest account is built-in. It has probably been activated again by a recent system update. Updates will sometimes reset the preference settings to default values.   But I would keep the Guest Account active. This account cannot be used by remote users. And it is a nice honey pot, if you ever lose your Mac. If the thief will log in using the guest account, you can detect this with Find My Mac.
    guest user: Guest users can use your computer temporarily without you having to add them as individual users. You can set restrictions guests can access only the items you want to share. Files created by a guest are stored in a temporary folder, but this folder and its contents are deleted when the guest logs out. The guest account works with the Find My Mac feature of iCloud, which can help you find your Mac if you lose it. You can locate your Mac if someone finds it, logs in as a guest, then uses Safari to access the Internet. Guests:
    Don’t need a password to log in
    Can’t change user or computer settings
    Can’t log in remotely when remote login is turned on in Sharing preferences

  • Amanda; And creating user accounts BEFORE the build process

    I am trying to make a package for amanda (Advanced Maryland Automatic Network Disk Archiver) http://www.amanda.org.
    I have gotten everything to run fine, but the way the devs have set up their configure file (and the resulting build process),
    I HAVE to specify a user account that the program will run as. If I do not specify (and create an account) the PKGBUILD will not run. Is this normal?
    Is there a way to make the PKGBUILD create an account and a group? This account and group are need both DURING the build and during the install.
    It has to be a pre-existing user account.  Here is my PKGBUILD script:
    pkgname=amanda
    pkgver=2.6.0p1
    pkgrel=1
    pkgdesc="The Advanced Maryland Automatic Network Disk Archiver"
    url="http://www.amanda.org/"
    license=('BSD')
    depends=("glibc")
    #If you need amplot and/or samba support (for backing up windows clients) delete the line above and uncomment the line below this line
    #depends=("glibc" "samba" "gnuplot")
    install=(amanda.install)
    arch=('x86_64' 'i686')
    source=(
    http://downloads.sourceforge.net/amanda/amanda-2.6.0p1.tar.gz
    md5sums=('afadad80e0a27963a24b510755470983')
    build() {
    cd $startdir/src/amanda-2.6.0p1
    # These config options are documented at:
    # http://wiki.zmanda.com/index.php/Installation/Installing_Amanda_Source
    ./configure CFLAGS="-03 -Wall" \
    --with-user=amanda \
    --with-group=backup \
    --prefix=$startdir/pkg/usr/local \
    --with-amperldir=$startdir/pkg/usr/local/share/perl5/site_perl/5.10.0
    make || return 1
    make install prefix=$startdir/pkg/usr/local
    I would really appreciate some help (this is my first pkg)
    Also remember; this will not finish building without creating a user and a group
    #groupadd backup
    #useradd -g backup amanda
    Last edited by timetrap (2008-06-19 19:08:09)

    I didn't take it any farther than the first post. I became frustrated with the chicken/egg relationship with account/makepkg.
    The package works (as long as the user accounts are created first) if you can figure out a way around this issue feel free to update the pkg (then upload it to AUR).
    The nobody/nobody idea didn't work for me, I cannot remember the reason why. It had something to do with permissions. Let me know if you need any help.
    Last edited by timetrap (2009-01-01 03:12:17)

  • Logging in and creating user programmatically

    Greetings,
    I would like to embed Stardust into my Spring-based web application. I created the tables for Stardust in my database and I'm trying to create a new user through the UserService interface in code.
    userService.createUser(request.getUsername(), null, null, null, request.getPassword(), null, null, null);
    The above code results in an AccessForbiddenException with the following error code: AUTHx00101 - Not logged in.
    The UserService interface doesn't have a login method but I looked up the UserServiceBean class and it has it. I logged into the default domain and partition with the default (motu) user with the code below:
    Map<String, String> properties = new HashMap<String, String>();
    properties.put(SecurityProperties.PARTITION, "default");
    properties.put(SecurityProperties.DOMAIN, "default");
    ((UserServiceBean) userService).login("motu", "motu", properties);
    The login method returns a LoggedInUser object for the motu account. Now if after this I call the UserService.createUser(...) method I get the same error code what I described above. I also tried to call the UserService.startSession(...) method after login but that didn't work either.
    What is the proper way to do this? Do I really have to authenticate myself in code to perform a user creation operation? Having to cast the interface to a concrete class doesn't seem right to me, the other option would be to cast it to ManagedService I guess but that doesn't feel right either. What am I missing here?

    Is using the ServiceFactoryLocator the proper way for Spring-based applications? I generated a standalone Spring-based Stardust application with the tc7-ipp-portal-war Maven archetype and it defines service beans in the carnot-spring-services-context.xml file this way:
    <bean id="carnotWorkflowService"
    parent="abstractPublicCarnotService"
    class="org.eclipse.stardust.engine.api.spring.WorkflowServiceBean" />
    <bean id="carnotUserService"
    parent="abstractPublicCarnotService"
    class="org.eclipse.stardust.engine.api.spring.UserServiceBean" />
    <bean id="carnotQueryService"
    parent="abstractPublicCarnotService"
    class="org.eclipse.stardust.engine.api.spring.QueryServiceBean" />
    <bean id="carnotAdministrationService"
    parent="abstractPublicCarnotService"
    class="org.eclipse.stardust.engine.api.spring.AdministrationServiceBean" />
    <bean id="carnotDocumentManagementService"
    parent="abstractPublicCarnotService"
    class="org.eclipse.stardust.engine.api.spring.DocumentManagementServiceBean" />
    <bean id="carnotReportingService" lazy-init="true"
    parent="abstractPublicCarnotService"
    class="org.eclipse.stardust.reporting.rt.service.spring.ReportingServiceBean" />
    <bean abstract="true" id="abstractCarnotService"
    class="org.eclipse.stardust.engine.api.spring.AbstractSpringServiceBean">
    <property name="carnotProperties" ref="customCarnotProperties" />
    <property name="transactionManager" ref="carnotTxManager" />
    <property name="dataSource" ref="xaAuditTrailConnectionFactory" />
    <property name="jcaResourceProvider" ref="carnotJcaResourceResolver" />
    <property name="jmsResourceProvider" ref="carnotJmsResourceResolver" />
    </bean>
    <bean abstract="true" name="abstractPublicCarnotService"
    parent="abstractCarnotService">
    <!--property name="principalProvider" ref="whatever" / -->
    </bean>
    My problem is that services acquired through the ServiceFactoryLocator won't be part of the ApplicationContext, thus they won't be managed by the Spring IoC-container at all.

  • Delete and create user

    hi,
    i deleted a user and if i wanna create a user with same name i doesn't work..
    why?
    Thx,
    skydriver

    If the original account's home folder is still present in /Users/, move it to the /Users/Shared/ folder and try creating the account again; in some circumstances, the existence of a former account's home folder in /Users/ will interfere with the creation of a new account with the same short name. One situation which will cause it is if you are rebuilding the NetInfo database and recreated your accounts in a different order from the one they were originally created in.
    (11539)

  • Need to design a website that loads files and creates inventory

    I work for an engineering firm that would like to make a website that on one page you can upload PDF files to directories that would be named according to the project number that the user inputs.  After that I would like another page that would be able to list all of these project and have a link that would allow for the PDF file to be viewed.  Unfortunately I am very green to fancy website designs so any help of how to get started would be greatly appreciated.
    Our Web server runs Apache 2 / MySQL and PHP
    Thanks in advance.
    KHeinz

    bregent wrote:
    Without a solid foundation in the underlying technologies, it's pointless to start building a specific solution. It's like starting to build a house without knowing how to use a saw and hammer.
    I agree entirely.
    However, as it happens, I have just added a PHP recipe to the Dreamweaver Cookbook that describes how to upload images to a website. The principle behind uploading PDF files is identical. All that you need to change is the test for the MIME type. The recipe can be found here: http://cookbooks.adobe.com/post_Need_code_to_upload_image-16389.html.

  • How to create SR Queue and Custom User Role for technician only see which SR assigned Him/Her and Resolve

    Hi 
    I have created workitem SR advance and Criteria with ID [Assigned To ME] and created user role in Advance operators.
    But in technician Console showing which SR he/she created not service desk assigned to him/her.
    Please suggest...
    Regards
    Sheetla Maurya

    I have find out Solution .......Create Queue with Service Request Advance and we not need to create any criteria option, After that create custom User role on Advance
    operators with View "Assigned To ME"
    Regards
    Sheetla Maurya

  • Need to authenticate a user and create session thru a procedure.

    I am doing loadtest on portal and I need to authenticate a user and create user session to simulate user logging thru the web and I want to see a record is created in the wwctx_sso_session$ table.
    can we do this from stored procedure ?
    thanks.

    Hi,
    I guess the message is pretty clear !! you lack privilege.
    SQL> conn imx/imx
    Connected.
    SQL>
    SQL> create user testproc identified by testproc;
    create user testproc identified by testproc
    ERROR at line 1:
    ORA-01031: insufficient privileges
    SQL> create or replace procedure sp_createsuser(username varchar2)
      2  as
      3  begin
      4  execute immediate 'create user ' || username || ' identified by ' || username;
      5  end;
      6  /
    Procedure created.
    SQL> exec sp_createsuser('testproc');
    BEGIN sp_createsuser('testproc'); END;
    ERROR at line 1:
    ORA-01031: insufficient privileges
    ORA-06512: at "IMX.SP_CREATESUSER", line 4
    ORA-06512: at line 1
    SQL> conn sys/******* as sysdba
    Connected.
    SQL> grant create user to imx;
    Grant succeeded.
    SQL> conn imx/imx
    Connected.
    SQL> exec sp_createsuser('testproc');
    PL/SQL procedure successfully completed.
    SQL> conn sys/syssys as sysdba
    Connected.
    SQL> select username from dba_users where username like 'TESTP%';
    USERNAME
    TESTPROC
    SQL>Regards

  • OIM 11GR2 - mechanism for restoring default adf user forms - create user

    Hi All
    Our developers has pubkished multiple OIM sandbox and create user form is broken
    : the user creation form does not appear - only a html <div> tag .
    The developer reverted the form using the em/console - then he ran the catalog sync job but all he can acheive is a blank form not the original user create forms
    How do we restore the forms to thier original state.
    Thanks

    Not sure if this helps. But try these steps mentioned in the developer's guide. Once I did some UI customization in identity console and could not load my page after that. I followed these steps and was successfully able to restore it back. You can give a try and in step 6 try to select some known sandbox name which did not have any issues.
    1. Login to Oracle Enterprise Manager.
    2. In Application Deployments, select oracle.iam.ui.console.self-service.ear.
    3. On the top-right of the page, select Application Deployment, and then select MDS Configuration from the list.
    4. At the bottom of the screen, select Runtime MBean Browser under the Advanced Configuration section. The right side of the screen refreshes.
    5. Click the Operations tab.
    6. Scroll down and identify the listMetadataLabels MBean operation and invoke it. Select the MBean operation that does not take any parameters. Select the sandbox precreate that you want to restore, and copy it to the clipboard.
    For example, the value you copy can be similar to: Creation_IdM_test_09:25:00.
    7. Click Return to go back to the Operation tab.
    8. Find the promoteMetadataLabel MBean operation.
    9. Invoke the promoteMetadataLabel MBean operation, and enter the value that you copied in step 6.
    10. Restart Oracle Identity Manager.

  • SRM Post Installation - Webadmin and EBP users

    Hello SRM gurus,
    I am new to SDN but I am familiar with SAP Basis Administration. I have recently installed the SRM 5.0(NW04s). I configured the shopping cart link and the integrated ITS. I was asked to create userid for webadmin (who creates users through the browser). I searched through SDN but was not able to find it. Please let me know the procedure to get the webadmin and creation of EBP users. I appreciate your time and business. Thanks in advance. Waiting for your replies......
    Raj

    Hello Raj,
    1. Create webadmin user in SU01 transaction, assign SAP_BBP_STAL_ADMINISTRATOR role
    2. Go to USERS_GEN transaction and create user from existing SU01 user
    3. Go to PPOMA_BBP transaction and search the created webadmin user, Select position level and check the ROLE attributes. If no ROLE attributes are maintained, add SAP_BBP_STAL_EMPLOYEE
    4. logon to SRM with webadmin user
    Regards,
    Masa

  • Re-provisioning to RTC for re-created users

    Seems that there's a problem with RTC provisioning when re-creating a user with the same name in OID. The only workaround I've found so far is to restart the RTC component with opmnctl. Doing this, there was another problem - restart fails:
    [oracle@pluto ~]$ /home/oracle/product/10.1.2/ocs_1/apps/opmn/bin/opmnctl restartproc ias-component=RTC
    opmnctl: restarting opmn managed processes...
    ================================================================================
    opmn id=pluto.krnap.cz:6201
    0 of 1 processes restarted.
    ias-instance id=ocsapps.pluto.krnap.cz
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    RTC/rtcpm/rtcpm
    Error
    --> Process (pid=17350)
    process crashed during restart
    Log:
    /home/oracle/product/10.1.2/ocs_1/apps/opmn/logs/RTC~rtcpm~1
    I have to use this sequence to sucessfully restart RTC:
    [oracle@pluto ~]$ /home/oracle/product/10.1.2/ocs_1/apps/opmn/bin/opmnctl stopproc ias-component=RTC
    opmnctl: stopping opmn managed processes...
    [oracle@pluto ~]$ /home/oracle/product/10.1.2/ocs_1/apps/opmn/bin/opmnctl startproc ias-component=RTC
    opmnctl: starting opmn managed processes...
    Anybody dealing with this or similar issues?
    Thanks a lot.
    Zdenek

    Hello there,
    This is what I took as remedy steps:
    Created a new versin of the OID form. Checked the prepop adapters are attached properly or not - everything looks good there.
    Then I tried doing direct provisioning the OID resource to a user unchecking the auto save on the process defn. Saw and checked the process form values. All the values are prepop'ed perfectly. As soon as you click the last 'Continue' button - the user gets provisioned. If you click 'OID User', it'll only show 2 tasks 'System Validation' and 'Create User' as 'Completed'.
    Activated the Access policy on OID User.
    Now again tried to create a single user.So now if you click 'OID User', it'll show 2 tasks 'System Validation' as 'Completed' and 'Create User'
    as 'Rejected' with the response as 'User Creation Failed' and description as 'Could not create user'.
    The logs still show the same error.
    I don't know what's exactly wrong with this 'Auto-Save' option? or may be it has to do with the Access policy process form - any info needs to be provided at the time of creating the access policy when we click 'Next' on OID process form?
    Thanks,
    - oidm.

Maybe you are looking for