Automatize workflow PeopleSoft= FDM= HFM Issue

Hi all,
We have created a batch to automatize a flow from PeopleSoft (PS) to FDM and HFM. In this batch we collect data from PS, mapping in FDM and load in HFM. With FDM via export script, we execute copy data in some scenario and consolidation task. (In HFM)
But when we have an error on the load file (wrong flow on BS, input on parent account…) the workflow is stopped! And then copy and consolidation task are aborted. We need to fix it because the process spent a lot of time, we execute this batch every night.
We have some ideas:
1)     Create a second batch when the first is aborted, but what can we run copy data and consolidation in HFM ? (HFMBatch.exe)
2)     Find a solution with FDM, modify setup or script ?
Could help me?
Thanks in advance for your help.
Jean Daniel

Not silly - I suppose logically i should have thought about it a bit more before giving my two penneth. I just read the bit that stated that it applies to ERP Integrator and FDM and maybe got 2 + 2 = 5. (As FDM can be strange animal at times though, it might just be worth a try!)
Another thing i have seen from a smartview issue relates to the SSO token timeout. If the token times-out before the timeout on the applications then you can get this message. Might be worth a look at the setting. However, i still think it might be worth a punt at setting up a user on FDM to see if it works.
sorry but just remembered something else. - Have you checked what authentication options have been defined on the FDM load balance server. For SSO you used to need to define your own SSO vbscript in the SSO authentication script but i think this might have been superceded by the Shared services authentication (CCS) if shared services is being used.
Edited by: user10757003 on 19-Mar-2013 13:46

Similar Messages

  • FDM Validation Issue

    Hi All,
    When Performing the second step in workflow (Validate) the fish turns gold for success but returns the error message "Automation error" what can be the reason and what is the solution?
    Thanks
    Satyajeet

    Hi,
    Check Oracle Support FDM Validate Step Returns "Automation Error" [ID 1301133.1]:
    Applies to:
    Hyperion Financial Data Quality Management - Version 11.1.2.0.00 and later
    Microsoft Windows (32-bit)
    Symptoms
    When performing the second step of the FDM workflow (validate) the Fish turns gold for success but returns the error message "Automation Error".
    Cause
    FDM is currently unable to integrate with Hyperion Financial Management successfully to perfrom the intersection validation. The integration failure is due to the HFM Adapter not being configured to run as the FDM Service account. In order to successfully integrate with HFM the FM11x-G5-D adapter must be registered and configured with the FDM Service account. Currently the adapter has not been configured.
    Solution
    A) Login to the FDM application via the workbench client on the FDM application server
    B) Go to File menu and choose Register Adapter
    C) Browse out to Adapter folder and register 'fdmFM11XG5D.dll'
    D) Expand Target System Adapters > Right-Click on the FM11x-G5-D adapter and choose "Configure"
    E) Enter the FDM windows service account username/password/ confirm password/domain and click OK.
    References
    NOTE:597481.1 - When Running Validate Step in FDM Receive "Automation error"
    NOTE:599826.1 - FDM Validation Fails With Error: Automation Error
    Cheers,
    Mehmet

  • Using INSERT INTO for FDM Memory Issue

    All -
    We configured FDM to run an integration script into our EBS instance upon the import step. It worked fine for a time, then we began running out of memory on the FDM server. Upon Oracle's suggestion, we stopped running through a record set to append and update the values to strWorkTableName and instead began using INSERT INTO. I admit, I have never needed to use the INSERT INTO way of doing things so I may be missing something bery basic.
    Our integration script:
    Function SQLIntegration2(strLoc, lngCatKey, dblPerKey, strWorkTableName)
    'Oracle Hyperion FDM IMPORT Integration Script:
    'Created By:       karks
    'Date Created:       2011-10-26 13:05:18
    'Purpose:
    Dim strSQL     'SQL string
    Dim lngPartitionKey
    Dim strConn 'Connection string to the source data
    Set cnSS = CreateObject("ADODB.Connection")
    lngPartitionKey = RES.PlngLocKey
    strConn= "File Name=C:\Users\karksadm\Desktop\NewConnection.udl;"
    cnSS.open strConn
    strSQL = "Insert Into " & strWorkTableName & " (PartitionKey, CatKey, PeriodKey, DataView, Amount , Account, Entity, ICP, UD1, UD2, UD3, UD4) "
    strSQL = strSQL & "SELECT " & lngPartitionKey & ", " & lngCatKey & ", TO_DATE (TO_DATE ('30/12/1899','dd/mm/yyyy')+" & dblPerKey & "), 'YTD', EBS.YTD_BALANCE, EBS.ACCOUNT, EBS.SEGMENT1, EBS.SEGMENT5, EBS.SEGMENT4, EBS.SEGMENT5, '[None]', EBS.CURRENCY_CODE FROM "
    strSQL = strSQL & "(Select D.NAME, A.CODE_COMBINATION_ID, D.NAME LEDGER_NAME, A.ACTUAL_FLAG, C.PERIOD_YEAR, TO_CHAR (C.START_DATE, 'MON-YY') AS PERIOD, B.SEGMENT1, (B.SEGMENT2 || B.SEGMENT3) As ACCOUNT, B.SEGMENT4, B.SEGMENT5, A.CURRENCY_CODE, "
    strSQL = strSQL & "(SUM (A.BEGIN_BALANCE_DR) + SUM (A.PERIOD_NET_DR) - SUM (A.BEGIN_BALANCE_CR) - SUM (A.PERIOD_NET_CR)) As YTD_BALANCE "
    strSQL = strSQL & "FROM GL.GL_BALANCES A, GL.GL_CODE_COMBINATIONS B, GL.GL_PERIODS C, GL.GL_LEDGERS D "
    strSQL = strSQL & "WHERE 1 = 1 And A.LEDGER_ID = D.LEDGER_ID And A.PERIOD_NUM = C.PERIOD_NUM And C.PERIOD_YEAR = A.PERIOD_YEAR "
    strSQL = strSQL & "And A.CODE_COMBINATION_ID = B.CODE_COMBINATION_ID And B.SUMMARY_FLAG = 'N' AND C.PERIOD_SET_NAME = D.PERIOD_SET_NAME "
    strSQL = strSQL & "And (B.SEGMENT1 = 001 And A.CURRENCY_CODE = 'USD' And D.LEDGER_ID = 2022) "
    strSQL = strSQL & "And C.END_DATE = TO_DATE (TO_DATE ('30/12/1899','dd/mm/yyyy')+" & dblPerKey & ") "
    strSQL = strSQL & "And B.CHART_OF_ACCOUNTS_ID = D.CHART_OF_ACCOUNTS_ID And A.ACTUAL_FLAG = 'A' "
    strSQL = strSQL & "And ((A.BEGIN_BALANCE_DR) + (A.PERIOD_NET_DR) - ((A.BEGIN_BALANCE_CR) + (A.PERIOD_NET_CR))) <> 0 "
    strSQL = strSQL & "GROUP BY A.CODE_COMBINATION_ID, D.NAME, A.CURRENCY_CODE, TO_CHAR (C.START_DATE,'MON-YY'), C.PERIOD_YEAR, A.ACTUAL_FLAG, B.SEGMENT1, (B.SEGMENT2 || B.SEGMENT3), B.SEGMENT4, B.SEGMENT5 "
    strSQL = strSQL & "ORDER BY B.SEGMENT4) EBS"
    DW.DataManipulation.fExecuteDML(strSQL)
    'Give success message
    RES.PlngActionType = 2
    RES.PstrActionValue = "SQL Import successful!"
    'Assign Return value
    SQLIntegration2 = True
    cnSS.close
    Set cnSS = Nothing
    End FunctionI can run the SQL minus the Insert line in my SQL Developer and it works fine. When I run the script in its entirety in FDM, we receive the following:
    ** Begin FDM Runtime Error Log Entry [2012-01-23 11:37:30] **
    ERROR:
    Code............................................. -2147217865
    Description...................................... ORA-00942: table or view does not exist
    Insert Into tWibison72564424799 (PartitionKey, CatKey, PeriodKey, DataView, Amount , Account, Entity, ICP, UD1, UD2, UD3, UD4) SELECT 772, 28, TO_DATE (TO_DATE (N'30/12/1899',N'dd/mm/yyyy')+40724), N'YTD', EBS.YTD_BALANCE, EBS.ACCOUNT, EBS.SEGMENT1, EBS.SEGMENT5, EBS.SEGMENT4, EBS.SEGMENT5, N'[None]', EBS.CURRENCY_CODE FROM (Select D.NAME, A.CODE_COMBINATION_ID, D.NAME LEDGER_NAME, A.ACTUAL_FLAG, C.PERIOD_YEAR, TO_CHAR (C.START_DATE, N'MON-YY') AS PERIOD, B.SEGMENT1, (B.SEGMENT2 || B.SEGMENT3) As ACCOUNT, B.SEGMENT4, B.SEGMENT5, A.CURRENCY_CODE, (SUM (A.BEGIN_BALANCE_DR) + SUM (A.PERIOD_NET_DR) - SUM (A.BEGIN_BALANCE_CR) - SUM (A.PERIOD_NET_CR)) As YTD_BALANCE FROM GL.GL_BALANCES A, GL.GL_CODE_COMBINATIONS B, GL.GL_PERIODS C, GL.GL_LEDGERS D WHERE 1 = 1 And A.LEDGER_ID = D.LEDGER_ID And A.PERIOD_NUM = C.PERIOD_NUM And C.PERIOD_YEAR = A.PERIOD_YEAR And A.CODE_COMBINATION_ID = B.CODE_COMBINATION_ID And B.SUMMARY_FLAG = N'N' AND C.PERIOD_SET_NAME = D.PERIOD_SET_NAME And (B.SEGMENT1 = 001 And A.CURRENCY_CODE = N'USD' And D.LEDGER_ID = 2022) And C.END_DATE = TO_DATE (TO_DATE (N'30/12/1899',N'dd/mm/yyyy')+40724) And B.CHART_OF_ACCOUNTS_ID = D.CHART_OF_ACCOUNTS_ID And A.ACTUAL_FLAG = N'A' And ((A.BEGIN_BALANCE_DR) + (A.PERIOD_NET_DR) - ((A.BEGIN_BALANCE_CR) + (A.PERIOD_NET_CR))) <> 0 GROUP BY A.CODE_COMBINATION_ID, D.NAME, A.CURRENCY_CODE, TO_CHAR (C.START_DATE,N'MON-YY'), C.PERIOD_YEAR, A.ACTUAL_FLAG, B.SEGMENT1, (B.SEGMENT2 || B.SEGMENT3), B.SEGMENT4, B.SEGMENT5 ORDER BY B.SEGMENT4) EBS
    Procedure........................................ clsDataManipulation.fExecuteDML
    Component........................................ upsWDataWindowDM
    Version.......................................... 1112
    Thread........................................... 4424
    IDENTIFICATION:
    User............................................. ibisons
    Computer Name.................................... HOU-HYSDEV02
    App Name......................................... SWNFDMRC
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... ORAOLEDB.ORACLE
    Data Server......................................
    Database Name.................................... FDMDEV
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... EBSINTEGRATION
    Location ID...................................... 772
    Location Seg..................................... 25
    Category......................................... EBS2
    Category ID...................................... 28
    Period........................................... Jun - 2011
    Period ID........................................ 6/30/2011
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2012-01-23 11:37:31] **
    ERROR:
    Code............................................. -2147217865
    Description...................................... Data access error.
    At line: 33
    Procedure........................................ clsImpProcessMgr.fExecuteImpScript
    Component........................................ upsWObjectsDM
    Version.......................................... 1112
    Thread........................................... 4424
    IDENTIFICATION:
    User............................................. ibisons
    Computer Name.................................... HOU-HYSDEV02
    App Name......................................... SWNFDMRC
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... ORAOLEDB.ORACLE
    Data Server......................................
    Database Name.................................... FDMDEV
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... EBSINTEGRATION
    Location ID...................................... 772
    Location Seg..................................... 25
    Category......................................... EBS2
    Category ID...................................... 28
    Period........................................... Jun - 2011
    Period ID........................................ 6/30/2011
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2012-01-23 11:37:31] **
    ERROR:
    Code............................................. -2147217865
    Description...................................... Data access error.
    At line: 33
    Procedure........................................ clsImpProcessMgr.fLoadAndProcessFile
    Component........................................ upsWObjectsDM
    Version.......................................... 1112
    Thread........................................... 4424
    IDENTIFICATION:
    User............................................. ibisons
    Computer Name.................................... HOU-HYSDEV02
    App Name......................................... SWNFDMRC
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... ORAOLEDB.ORACLE
    Data Server......................................
    Database Name.................................... FDMDEV
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... EBSINTEGRATION
    Location ID...................................... 772
    Location Seg..................................... 25
    Category......................................... EBS2
    Category ID...................................... 28
    Period........................................... Jun - 2011
    Period ID........................................ 6/30/2011
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    I really think the issue is that I am not telling the script where to find the Oracle tables at. I left the code in where we were using the UDL to call in the opening of the record set, but since we are doing away with the record set how do I let FDM know where to find the Oracle tables?
    Thanks in advance - I've been wrestling with this for several days.
    Thanks you,
    Sarah

    Here's a script with INSERT INTO that works fine if FDM back-end is SQL DB and it's pulling from FDMHarris data warehouse which is on SQL Server.
    Problem is when FDM back-end is Oracle DB and it's pulling from FDMHarris data warehouse which is on SQL Server.
    I'm assuming the INSERT INTO statement needs to be written differently, syntax wise?
    Here's the error message displayed.
    ** Begin FDM Runtime Error Log Entry [2012-06-03 21:18:15] **
    ERROR:
    Code............................................. -2147217900
    Description...................................... ORA-00933: SQL command not properly ended
    INSERT INTO tWadmin476032843931 (PartitionKey, CatKey, PeriodKey, DataView, CalcAcctType, Entity, Account, UD1, UD2, UD4, Amount) SELECT 752, 12, N'30-Apr-2012', N'YTD', 9, Entity, Account, UD1, UD2, UD4, Amount FROM FDMHarris.dbo.tdataseg4;
    Procedure........................................ clsDataManipulation.fExecuteDML
    Component........................................ upsWDataWindowDM
    Version.......................................... 1112
    Thread........................................... 3284
    Function INSERTINTO(strLoc, lngCatKey, dblPerKey, strWorkTableName)
    'Oracle Hyperion FDM IMPORT Integration Script:
    'Created By:      admin
    'Date Created:      2012-06-03 11:31:39
    'Purpose:
    Dim objSS 'ADODB.Connection
    Dim strSQL 'SQL String
    Dim rs 'Recordset
    Dim rsAppend 'tTB table append rs Object
    Dim strPeriod
    Dim strYear
    'Period
    'strPeriod=MonthName(Month(RES.PdtePerKey))
    a=CStr(FormatDateTime(RES.PdtePerKey,1))
    'Tuesday,January 30, 2012
    b=Right(a,(Len(a)-Len(DW.Utilities.fParseString(a,1,1,",")))) '7
    c=DW.Utilities.fParseString(b,2,2,",")
    strPeriod=Left(c,3)
    'Year
    'strYear=Year(RES.PdtePerKey)
    strYear=Right(b,4)
    DW.DBTools.mLogError 1, CStr(strPeriod), CStr(strYear), Nothing
    'Initialize objects
    Set cnSS = CreateObject("ADODB.Connection")
    'Connect To SQL Server database
    cnss.open "Provider=SQLOLEDB.1;Password=datafusion;Persist Security Info=True;User ID=sa;Initial Catalog=FDMHarris;Data Source=dfv11122"
    'DW.DBTools.mLogError 1, CStr(strSQL), CStr(strSQL), Nothing
    'Initialize common SQL statement
    strSQL = "INSERT INTO " & _
    strWorkTableName & " " & _
    "(PartitionKey, CatKey, PeriodKey, DataView, CalcAcctType, Entity, Account, UD1, UD2, UD4, Amount) " & _
    "SELECT " & RES.PlngLocKey & ", " & RES.PlngCatKey & ", " & _
    "'" & Day(RES.PdtePerKey) & "-" & MonthName(Month(RES.PdtePerKey), True) & "-" & Year(RES.PdtePerKey) & "', " & _
    "'YTD', 9, Entity, Account, UD1, UD2, UD4, Amount " & _
    "FROM FDMHarris.dbo.tdataseg4;" '& _
    ' "WHERE Month = '" & strPeriod & "' And CalYear = '" & strYear & "'"
    DW.DBTools.mLogError 1, CStr(strSQL), CStr(strWorkTableName), Nothing
    DW.DataManipulation.fExecuteDML(strSQL)
    'cnss.Execute strSQL
    'Records loaded
    RES.PlngActionType = 6
    RES.PstrActionValue = "SQL Import successful!"
    'Assign Return value
    INSERTINTO = True
    cnss.Close
    Set cnss = Nothing
    End Function
    Edited by: user12152138 on Jun 3, 2012 6:43 PM

  • ODI-HFM issue with decimal separator

    Hi all,
    We are extracting data from an HFM application A and loading into an HFM application B.
    Example:
    Data extracted from applicaiton A = 21.742.139,55
    Data loaded to application B (verified from Explore Data and Smart View) = 2.174.213.955,00
    Is data loading with ODI-HFM taking the regional settings?
    Any suggestions?
    If we extract data with HFM Client (logged on with the same user configured in HFM Data server) from application A and load it into application B, data is correct in application B.
    Current configuration is:
    - User preferences for HFM Application A
         * Decimal separator = ","
         * Thousands separator = "."
    - User preferences for HFM Application B
         * Decimal separator = ","
         * Thousands separator = "."
    - Regional settings of the server where the agent is running (English US)
         * Decimal separator = "."
         * Thousands separator = ","
    This setting is the same for all HFM application servers
    - ODI Datastore HFMDatastore
         * Decimal separator set to "," (this setting was changed to see if solved the issue)
    - ODI Datastore for staging table
         * Decimal separator set to "," (this setting was changed to see if solved the issue)
    - Language Settings for DB (American English)
    Thanks in advance!

    Hi Pls Use This
        For Decimal Separator other than . we need to Code to Convert , See This Code Below and Do the Code
    Private Function ReturnQty(ByVal Qty As String) As String
    Dim strQty As String
    Dim strSQL As String
    Dim strSeprtr As String
    Dim objRS As SAPbobsCOM.Recordset
    strSQL = "SELECT ThousSep FROM OADM"
    Set objRS = oSBC.oDICompany.GetBusinessObject(BoRecordset)
    objRS.DoQuery (strSQL)
    If Not objRS.EOF Then
            strSeprtr = objRS.Fields.Item("ThousSep").Value
    End If
    If strSeprtr = "," Then
    ReturnQty = Qty
    ElseIf strSeprtr = "'" And Len(Qty) <= 6 Then
    Qty = Replace(Qty, ",", ".")
    'Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    Qty = Qty
    ElseIf strSeprtr = "'" Then
    Qty = Replace(Qty, "'", "")
    'Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    Qty = Qty
    ElseIf strSeprtr = "." And Len(Qty) <= 6 Then
    Qty = Replace(Qty, ".", ",")
    Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    ElseIf strSeprtr = "." Then
    Qty = Replace(Qty, ".", "")
    Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    End If
    End Function
    Mohamed Zubair

  • PeopleSoft SES Configuration issue (PT:8.53.04 and Application HCM:9.2)

    Hi all
    I have installed and configured PeopleSoft SES in my own machine.But When I am going to search anything through PIA I am getting issue. One issue is describing below:( Issue for any kind of search)
    I have searched with keyword "corporate" in my PIA page and all the link came and  After that I have clicked any link like her I clicked "Career Plan - Cynthia Adams | Empl ID: KU0101".
    But the page is not opening. Can anybody please tell me the solution?
    My Machine Specification:
    PeopleTools 8.53.04
    Application : HCM 9.2
    OS: Windows 7 64 Bit
    Database: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    Regards,
    Snehasish

    Pls change Contenent URI Text and Portal URI Text of all the relevand locl nodes (portal tab).  Re-generate the search indexes after doing this. You may to at least do this for PSFT_HR and HRMS nodes.

  • Workflow Pattern FYI Task Issue

    Hi,
    BPEL PM version 10.1.2.0.2.
    I am trying to create a workflow using FYI Task pattern. I have only one action 'Acknowledge'. The task gets created and shows up in the worklist application under my group, but the status of the task is 'Withdrawn' and no action displays for that task. I want the task to be 'Assigned' to the group and let the process continue. The group user can then acknowledge the task whenever. I used the workflow wizard to create the task.
    Why does the task show up as 'Withdrawn' with no action list? Has anybody encountered this issue before? Any help is appreciated!

    I'm also seeing instances of tasks arriving on the worklist and then being immediately withdrawn (bpeladmin) ?
    The call to InitiatTask fails :
    <bindingFault>
    <part name="summary" >
    <summary>null</summary>
    </part>
    </bindingFault>
    Message was edited by:
    blackrob1966

  • FDM Email issue

    I need to configure my email address according to POV Location. Users of Italy location should only recieve email if the Location is Italy, but with my script i m getting email in case of both locations. I m Pasting my code below
    Dim strFromAddress
    Dim strToAddress
    Dim strSubject
    Dim strEmailMsgLine
    Dim objMsg
    Dim objConfig
    Dim intSendUsing
    Dim strSMTPServer
    Dim intSendPort
    Dim loc
    Dim email_Add
    'Initialize message content variables
    strFromAddress = "[email protected]" 'DW.Security.fUserEmailGet(DW.Connection.PstrUserID)
    'strToAddress = "[email protected]"
    If API.POVMgr.PPOVLocation = "SPAIN" Then
    strToAddress = "[email protected]"
    ElseIf API.POVMgr.PPOVLocation = "Italy" Then
    strToAddress = "[email protected]"
    End If
    strSubject = "TEST"
    strEmailMsgLine = "Hi Anuj This is email sent by FDM No need to respond " &API.POVMgr.PPOVLocation &" "&API.POVMgr.PPOVPeriod& " " &Date & " " &Time
    'Initialize Mail Server variables
    'SMTP server name
    strSMTPServer = "icfsmtp01.cmf.ad.abc.com"
    'CdoSendUsing enumeration-1=use smtp on local machine, 2=use smtp over network
    intSendUsing = 2
    'SMTP port on server
    intSMTPPort = 25
    'Create CDO configuration object
    Set objConfig = CreateObject("CDO.Configuration")     
    'Set Config object settings
    With objConfig.Fields
         .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = intSendUsing
         .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strSMTPServer
         .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")= intSMTPPort
         .Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 10
         .Update
    End With
    'Create CDO message object
    Set objMsg = CreateObject("CDO.Message")     
    'Assign config object to configuration property of message object
    Set objMsg.Configuration = objConfig
    'Set Message object settings and send mail
    With objMsg
         .To = strToAddress
         .From = strFromAddress
         .Subject = strSubject
         .TextBody = strEmailMsgLine
         .Send
    End With
    'Destroy message objects
    Set objMsg = Nothing
    Set objConfig = Nothing

    This seems like a logic issue,
    You can use the MsgBox command as output for debugging and run the script from the FDM workbench.
    Just put some MsgBox prompts to display what the value of the POV Location is and help indicate what blocks of the code are being executed and track it down from there...
    You can test the logic without even using the email to ensure it's working then add the email directives back in. That might be quicker.
    Nick

  • FDM Performance Issue

    Hi all,
    We are having issues while uploading and importing our financials into Hyperion.
    1) I cannot upload the file. Once I chose the file and select upload it starts to process, but then the processing screen goes white and freezes.
    Sometimes the upload will work after several attempts, but then why trying to import the screen says processing please wait, but nothing happens.
    2) can log in without issue but completing an operation, like changing a mapping, takes a long time or times out.
    Please advise to resolve this issue.
    Thanks,
    Edited by: user@99 on Sep 13, 2010 10:24 AM

    Are any error logs generated? FDM User error log? Any server error logs? Which DB is this using?
    This seems more like an issue with the environment than the application.

  • FDM validate issue

    Hi,
    I am loading data from FDM to HFM. I notice during Validate ste, data is getting round off.
    for eg: 13.12 is rounding off to 13.10 and 504.55 is rounded to 504.60.
    Do we have any setting in FDM to make sure data gets loaded as it is to HFM without getting rounded off
    Thanks in advance

    Hi,
    I have not used any round function in import format.Infact, i am loading data thorugh table using Import integration script.Are there any settings which I need to check to make sure data gets loaded with complete decimal values
    Thanks

  • FDM security issue

    Hi,
    I'm connecting to a FDM (v.9.3.3.) application as a user to test out the multiload function but once I click on Activities>Multiload I get logged off from the application and get a message saying my connection has timed out or I have been logged out. I just logged in so it can not have timed out and I checked the security settings and these user have access to the proper locations and to multiload. Has anyone had this issue before?
    Thanks

    What is the users security level?

  • HD WorkFlow, Having Real Time Issues

    Hey I've captured 422 ProRess, I need to know is there a quicker way of working with it in realtime Mulitclip editing, other than conforming back down to HDV. I'm experiencing a lot of dropped frame issues.
    In HDV I could cut realtime mutlclips but now that I've online with ProRess My system acts like it can't handle it which is nutz, I've got a killer system. I thought the proRess codec was suppose to be better than the HDV for this reason. Any workflow solutions would be greatly appreciated.
    Thanks
    J.

    What sort of drives is your media stored on? ProRes has a MUCH higher data rate than HDV. HDV is in the ballpark of 4MB/s, whereas ProRes is between 18MB/s and 24Mb/s. Getting multiple streams of HDV for multicam shouldn't be too difficult, but getting the same for ProRes...multiple streams? You need a pretty hefty RAID for this. Two Drive eSATA Raid 0 might work. Better to have a 4-5 drive Raid 0 or Raid 5. ProRes is lighter than Uncompressed HD, but more taxing than HDV...and again, you are trying to play back multiple streams when you are using the Multicam feature.
    Shane

  • Standard Workflow - Lead to Opportunity -Issue

    Hi All,
    i am working on stand alone CRM 5.0. the standard workflow  WS10001011 (Lead to Opportunity) does not have complete workflow definition , it has only the event start, it does not have other steps in the workflow  .is there any sap Notes or batches which address this issue.
    Thanks in Advance
    vels

    Hi,
    I saw our system which is CRM4.0.
    I found some steps like below.
    Task:TS10008156,TS10008154,etc
    Pls check these Tasks.
    Regards,
    Yohei

  • PeopleSoft Installation - DataMover Issue

    Hello,
    Installing PeopleSoft 9.0 on PT 8.49, Oracle 10g on Windows.
    Currently at build oracle step (using manual steps), completed psroles.sql, psadmin.sql ..connect.sql
    and trying to use the datamover in bootstrap mode using the PSADMIN account that was created in psadmin.sql , it is not coming up.
    any idea what would be the issue?
    Thanks

    there is no error message ..
    when i go and provide Access ID and Pwd in datamover and click OK, DM does not come up.
    nor it gives me any error message.
    any clues on what is going on ? or what to check?

  • Smartview connectivity to HFM issue

    Problem Description
    Smartview is not connecting to HFM application. Other apps like Essbase, Workspace (IR & FR) all are fine.
    Smarview v 11.1.2.2 & HFM v.11.1.2.2;
    Error Codes
    Failed to Authenticate users.
    Problem Category/Subcategory
    Shared Services
    Template Question Responses
    1) ### Impact on Business ###
    We are in phase of Hyperion Upgrade & go live is in a month. Smartview is throwing connection/failed authentication error when connecting to HFM rest other apps are all fine. Even Admin account throws the same error,
    HFM is all fine and same user is able to connect to the apps .
    We tried few tips from Knowledge base and yet the error persists. Go live is on hold so are users testing it. its very severe impact for users.

    Hi,
    Do anyone face the same Issue.If yes,pls help me in this regards.We have even raised a SR for this.
    Cheers,
    Charan

  • User/FDM/HFM logs

    Is there a way to see who loaded a specific entity in HFM/FDM weeks ago?

    The reports I like to look at are :
    - Map Monitor for Location (this shows you a historical break down of mapping changes for a location) [This is under the Map Monitor Reports]
    - System Log for Location (Start Date, End Date ) : This shows history of events for the given date range and current location. Not exactly what you want, but you can glean the info you want. [This is under the Location Analysis Reports]

Maybe you are looking for

  • Sync error for Ovi Maps

    I tried downloading new maps for my 5800XpressMusic via Ovi Suite but it reported 'Internal error. Please try again later' - despite my functioning maps on the phone Ovi Suite cannot detect any maps, let alone adding new ones in.  I have tried reinst

  • With apple insurance, how much does it cost to get the home button fixed?

    My home button is not working reliably; I would like to know how much it would cost to get it fixed if I have the apple insurance.

  • LR and CS3?

    I haven't found any info about installing LR on a PC running CS3. CS3 uses ACR 4.0, and LR 1.0 uses ACR 3.7. I am wondering about conflicts and whether I should uninstall CS3 before installing LR 1.0 Anyone have a link to info on installing LR 1 with

  • Nokia C3-01 Handset Speaker Quality

    I revently installed software version V07.32 Since the upgrade the quality of the built in handset speaker (not loudspeaker) has changed - the quality sounds verry 'tinny'. I've activated the voice clarity function but this has made no improvement. C

  • What is the best SSD to install in the Macbook Pro?

    I just got the new 2012 13-inch Macbook Pro. It came with the slow 500GB hard drive but I want to upgrate that to a Soldid State Drive. Which SSD should I get? Thanks!