Automatic  journal create  in HFM

Hi,
How to create journal using script function and set journal custom value?
Thanks
Edited by: D. Morozov on 14/5/2010 17:09

You cannot create journals using rules, if this what you mean by script. What you can do however, is to calculate values into <Entity Curr Adjs> member of the Value dimension. The calculations may be based on values found in <Entity Currency> member. For those calculated values there will not be any journal entry which you can post, unpost or report.
The procedure will look like this:
If HS.Value.Member() = "<Entity Curr Adjs>" Then
HS.Exp "A#acct3 = A#acct1.V#<Entity Currency> * A#acct2.V#<Entity Currency>"
HS.Exp "A#acct4 = (-1) * A#acct1.V#<Entity Currency> * A#acct2.V#<Entity Currency>"End IfYou should be careful to do the calculations in pairs as above, so that you emulate balanced journal adjustments and preserve balance.

Similar Messages

  • Error "424 Object Required" when opening journal report using HFM 11.1.2.1

    Hi experts,
    I've installed EPM 11.1.2.1 along with Hyperion Financial Management and Financial Reporting on an virtual machine (OS is windows server 2008),
    when I logon to workspace and tried to open an journal report in HFM-Format, appears error message as follows:
    An error has occurred. Please contact your administrator
    Error Number:424
    Error Description: Object required
    Error Source: Microsoft VBScript runtime error
    Page On which Error Occurred:../reports/CheckStatus.asp
    I've checked oracle support and found article ID 967025.1 describing almost the same issue of mine,
    but the suggested solution was to add workspace and HFM web server to trusted site. (I'm using IE9)
    I did so as well as other recommended browser settings but still the error remains.
    The article said the solution was applied to Version 9.2.0.0 to 11.1.1.3, so I'm not sure if version 11.1.2.1 has other causes or solutions.
    Could experts provide any ideas?

    I believe you might have already done with the below steps, but please reconfirm:
    1) Ensure, that both the Hyperion Workspace URL AND the HFM webservername i.e(Http://<hfmwebservername>/hfm) is added in the sites button in the Trusted sites option. under Security tab.
    2) Here is a list of Internet Explorer settings which are recommended to be set on the client machine:
    1. Configure browser to check for new version every time user visits a page
    * Open Internet Explorer
    * Go to Tools > Internet options > General
    In 'Browsing history' section select 'Every time I visit the webpage'
    * Click Ok, then Apply.
    2. Disable default pop-up blocking
    * Open Internet Explorer
    * Go to Tools > Internet options > Privacy tab
    Uncheck 'Turn on Pop-up Blocker'
    3. Add workspace URL to trusted sites
    * Open Internet Explorer
    * Go to Tools > Internet options > Security tab
    * Select Trusted sites from Select a zone to view or change security settings.
    * Type your workspace URL in form http://workspaceserver:portnumber in 'Add this website to the zone'
    * Uncheck 'Require server verification (https:) for all sites in this zone'
    * Click Add, then Close.
    * Click Ok and Apply.
    4. Minimize security setting for trusted sites
    * Open Internet Explorer
    * Go to Tools > Internet options > Security tab
    * Select Trusted Sites from select a zone to view or change security settings
    * Select custom level
    * From Reset to list select Low
    * Click Ok
    * Click Apply, then Ok
    5. Customize security settings
    * Open Internet Explorer
    * Go to Tools > Internet options > Security Tab > Custom Level
    * In 'Miscellaneous' section enable the option "Allow script-initiated windows without size or position constraints"
    * In 'ActiveX controls and plug-ins' section enable “Run ActiveX controls and plug-ins” and “Script ActiveX controls marked safe for scripting.”
    6. Enable option "Always allow session cookies".
    * Open Internet Explorer
    * Go to Tools > Internet options > Privacy Tab > Advanced > Check the "Override automatic cookie handling" and accept the first and third party cookies and check the "Always allow session cookies" option.
    7. Disable option "Enable Native XMLHTTP".
    * Open Internet Explorer
    * Go to Tools > Internet options > Advanced Tab > Uncheck the option "Enable Native XMLHTTP"
    If still facing the same issue, perform the below action plan:
    1) Give full permission to Filetransferfolder and try generating the reports.
    2) Add the Everyone user and dcom user to BIPubSystemReports.
    DCOM Config-> BIPubSystemReports-> Security tab-> add the users in Launch and Activation Permission, Access permissions and Configuration Permissions.
    Best regards.

  • Issue on automatic journal entry for TDS entries

    Hi Experts
    when i am doing incoming paymnets for some invoices  continouslly, which has TDS, two or more automatic journal entries are created for single invoice only saometimes it is happing
    Can any one help me on this issue
    Regards
    Boopathi.T

    Hi
    Can u explaing detially wt kind of JE was automatically posted....wt is the version of ur TDS addon, It might be Bug of TDS addon so pls contact ur TDS vendor....
    Also copy ur Db and test in Demo DB by stoping the TDS addon it still happens then we have to look seriously wt is going on...........
    Giri

  • Journal tempate in HFM

    Is it possible to create a single Journal template in HFM that can be used by all entities (single entity journal only)? In the template creation, it seems entity needs to be provided in the header and it will be applicable only for that entity?

    You could create a Multiple Entity template and then require the users to select the entity, even if it is only 1.

  • How do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it when you just play a slideshow.

    how do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it with presets when you just play a slideshow, but i don't see an option to randomly shuffle the slide order when you create a new slideshow.  i know you can sort it by different fields, but i want it to be random.  thanks.

    If you want to rearrange images in random order you can try an AppleScript:
    retrieve a list of selected images from Aperture
    shuffe the list properly
    create an album in Aperture and add the images from the list to the album (make sure that the album set to be orederd manually)
    Here  is a sample script that shuffles the selected images and displays them in random order in Full Screen Mode:
    on removeItem(ims, i)
      -- remove the item at position "i" from a list ims
              if ims is {} then return {}
              if (length of ims is 1) then return {}
              if i < 2 then return rest of ims
              if (i = length of ims) then return (items 1 thru (i - 1) of ims)
              if i > (length of ims) then return ims -- should be error?
              return (items 1 thru (i - 1) of ims) & (items (i + 1) thru (length of ims) of ims)
    end removeItem
    on shuffle_items(ims)
      -- shuffle the items of the list "ims" randomly
              local numitems, ims_shuffled, nextrest, nextpick, i
              set numitems to length of ims
              if length of ims < 2 then return ims
              set ims_shuffled to {}
              set nextrest to ims
              repeat until nextrest is {}
                        set i to (random number (numitems - 1)) + 1
                        set nextpick to item i of nextrest
                        set beginning of ims_shuffled to nextpick
                        set numitems to numitems - 1
                        set nextrest to removeItem(nextrest, i)
              end repeat
              return ims_shuffled
    end shuffle_items
    on shuffleIms()
      -- retrieve the selected images from Aperture
      -- and display them in random order in full screen mode
              local imageSel, shuffled, i
              tell application "Aperture"
      activate
                        set imageSel to (get selection)
                        set shuffled to my shuffle_items(imageSel)
                        set fullscreen to true
                        if imageSel is {} then error "Please select some images."
                        repeat with i from 1 to count of shuffled
                                  reveal {item i of shuffled}
      delay 3 -- chnage that to the time you want
                        end repeat
                        set fullscreen to false
                        return shuffled
              end tell
    end shuffleIms
    shuffleIms()
    Some more code snippets to go from here:
    To create an album:
                        tell library 1
                                  if not (exists album "shuffledAlbum") then
      make new album with properties {name:"shuffledAlbum", image version:shuffled}
                                  end if
                        end tell
    And to add the images from the shuffled list to the album:
                        repeat with i from 1 to count of shuffled
                                  duplicate item i of shuffled to album "shuffledAlbum"
                        end repeat
    Regards
    Léonie

  • Create credit memo automatically when creating returns to vendor...

    How can i create create "Credit Memo" automatically upon creating
    returns to vendor (Movement Type 122) considering right calculation of
    the sales tax & withholding tax.

    Hi,
    There is a special display variant in the item list for invoice reduction. You enter
    the invoice quantities or values that differ to the quantities or values suggested by
    the system separately into the item list. (You can only enter data in these fields
    when you have flagged the item as Vendor error: reduce invoice).
    When you post a reduced invoice, the system creates two accounting documents.
    The first document contains the invoice postings with the actual quantities and
    values. The second document contains a credit memo for the difference between
    the actual quantities and values and the default quantities and values.
    Therefore, with invoice reduction, you do not actually reduce an invoice. Instead,
    you also post a credit memo for the amount of the reduction. The amount payable
    to the vendor is the value of the invoice reduced by the credit memo amount.
    The PO history is updated with the unchanged default values.
    When you post an invoice reduction, the system creates a message record. You
    can use this to send a letter of complaint (notification of credit memo posting)
    to the vendor.
    Regards
    Ankur

  • Is it possible, automatically, to create a border when a text is inserted.

    Is it possible, automatically, to create a border when a text is inserted.
    Example:
    List with subjects is:
    Name:
    address:
    etcetera...
    When the first subject (Name) is typed then a border will appear around the whole text
    Is this possible in Indesgn?
    Hans

    No. Indesign can't draw borders around text during an interaction. You can either set a border for a text frame or draw an unfilled rectangle around text, which then is an overlaying object, but this can't be automated.
    For an interactive PDF with forms, you can assign actions to a form field, but none to make a frame visible, a frame that would surround the text or show a border on one side.

  • No journal created after clearing

    Dear Experts,
    I have new account which has been assigned in OB09- for valuation.
    After the gl account was cleared using F-03, we have had an accounting document number xxxx.
    While the document number checked through FB03, there was no journal created  there(message: the list contain no data).
    Why is this happen?
    Kindly advice.
    Thank you

    Hi Dianne,
    The new account type is balance sheet account
    in OB 09, I have changed the acoount for loss and gain from account xxx to yyy
    Before changed account to YYY for exchange rate differences the gl account could be cleared and the journal created successfully.
    But after changed no journal created.
    please advice

  • Do iPhoto journals created on iOS now sync on iPhoto 9.5 for mac?

    hi all,
    ive spent a lot of time on my iPad touching up travel photos and creating journals. I've just upgraded to Mavericks, and am thinking about getting the new iPhoto 9.5 for iMac.
    Will the journals i have suddenly appear if i make this upgrade on my iMac, or is there a much longer, convoluted process to do this?
    Also, will the quality of the images be the same?
    Thanks in advance!!

    There is no way to view journals created on your iPhoto for iOS on your Mac's iPhoto.

  • How can I print (into a physical book) a photo journal created by iPhoto using iPad?

    How can I print (into a physical book) a photo journal created by iPhoto using iPad?

    I think I worked out a clunky but workable way to do this.  There is an app for iPad called PhotoSync.  It is not free for the iPad but free for computers you want to sync with.  Install it.  When you edit photos in iPhoto on your iPad make sure to save them to Camera Roll.  PhotoSync will take the edited pictures from your iPad that have been saved into Camera Roll and will move them to your computer in batch (so long as it is on the same wireless network) where you merely import them into iPhoto or whatever software you use, and you can build a book for print.  The secret is to save the pictures into Camera Roll as you edit them, there is no batching function into camera roll, so doing it afterwards is tedious.  It actually works quite simply and because PhotoSync is free for computers, you can transfer photos to any computer that has downloaded the free software that is on the same wireless network - works great to get pictures to kids' or spouses computers.

  • Automatic Journal Entry in Internal reconcilation

    Hi Experts,
    I  have a issue regarding Internal reconcilation. I am reconcile BP master ledger. I select manual type and select some credit entries and some debit entries of that BP, balance was zero.  I did not select Ajustment button but it create a journal entry automatically. It select same BP in credit side and debit side. I am not understand when it create a journal entry. I know about the Ajustment Button,it shows JE when balance is not zero.   kindly give your suggestions.
    Thanks
    Regards
    Jitender

    Dear Jitendra,
    Automaticaly JV created when you deal with foreign currency.
    The entry posted when your your reconcilation transation with differant exchange rate.
    like
    1)You received advance form customer  100 usd 46 rate
    2)Your AR invoice posted 100 Usd 44.5 exchange rate
    When you reconciled the same automatic JV posted in system for exchange Loss or gain.
    If you reconciled with JV so sytem take exchange rate of that date.
    REGARDS
    MANGESH PAGDHARE.

  • F110 Automatic Payment: Create payment file and create remittance

    Hello,
    I'd like to know the steps to create payment file and remittances in Automatic payment process (F110).
    Thanks in advance

    Hello Emanula,
    payment medium entries are customized in "payment method Country details". You have to decide whether you want to use the PMW or the classical paymentprogram.
    The paymentadvices are generated from the paymentprogram by using the parameters from the CC-data of the paymentmethod - Box "Payment advice control".
    At least: Don't forget to maintain the parameters in f110 "Printout/data medium"
    Hope this gives you a help.
    Best regards
       Horst

  • How do I change the key photo of a Photo Journal created in iPhoto for iOS?

    Is there a way to choose this photo? It seems to default to the first photo in the event used to create the journal, not even first photo on first page.

    If you edit the journal, select the picture you want to use, choose "Edit" and then select the settings icon (the gear wheel) you can choose to select this picture as the "Key Photo".
    -Doug

  • Automatic event creater in iCal

    I work at a school that has a seven day cycle: A through G days. I am trying to create a workflow that will automatically create events (my classes) for each day in my cycle. For example, this Thursday will be an A Day, and I will have one class from 9:25 to 10:15 and another class from 2:00 to 2:45. Then on Friday (B Day), I will have those classes on different times. Monday (C Day) again different times. Then the following Monday will be an A Day because the cycle repeats itself every seven school days. Very complicated, I know. So what I want to do is plug into iCal all of the lettered days of the year and create a workflow that automatically adds events depending on the day of the cycle. Here’s the flow I want to create, but I can’t find the right action in Automator:
    1.Find iCal events with the name “A Day”
    2.Create new event that day called “Class 1” from 9:25 to 10:15
    3.Create new event that day called “Class 2” from 2:00 to 2:45
    The problem is that I can’t find an action that will allow me to create an event based on the date based on the input. Make sense?

    Hi,
    Hope you haven't done this manually yet!
    Try:
    1) Find Events in iCal
    - Find "Events"
    - Whose "Calendar" is "School Days" and whose "Summary" is equal to "A Day"
    2) Run AppleScript
    on run {input, parameters}
    set letterday_startdates to {}
    repeat with i from 1 to count of the input
    set letter_day to item i of the input
    tell application "iCal"
    set letterday_startdates to (letterday_startdates & (start date of the letter_day))
    end tell
    end repeat
    repeat with i from 1 to count of letterday_startdates
    set letterday_startdate to item i of letterday_startdates
    -- Class 1
    set Class1_Start to (date "9:25 am" in letterday_startdate)
    set Class1_End to (date "10:15 am" in letterday_startdate)
    -- Class 2
    set Class2_Start to (date "2:00 pm" in letterday_startdate)
    set Class2_End to (date "2:45 pm" in letterday_startdate)
    tell application "iCal"
    tell calendar "School Days"
    make new event at the end of events with properties {summary:"Class 1", start date:Class1_Start, end date:Class1_End}
    make new event at the end of events with properties {summary:"Class 2", start date:Class2_Start, end date:Class2_End}
    end tell
    end tell
    end repeat
    return input
    end run
    You would then either have to change the class times in the AppleScript for each A-G day, or make 7 different workflows with the same actions, just configured for each school day. For example, workflow A has "A Day" in the first action and the times for A Day classes in the run applescript. Workflow B has "B Day" in the first action and the times for B Day classes in the run applescript, etc.
    Hope it helps!

  • Error while creating an HFM application

    Hi,
    i am getting this error while creating an application in the HFM thick client and the workspace.
    error while creating an application in the Think client HFM.
    Error Reference Number: {20448166-D5EE-45B9-ABEB-13448BE7D956}
    Num: 0x80040225;Type: 1;DTime: 6/19/2008 3:23:40 PM;Svr: BTP8ND21;File: CHsxServerImpl.cpp;Line: 3525;Ver: 9.3.1.0.1502;
    Num: 0x80040225;Type: 0;DTime: 6/19/2008 3:23:47 PM;Svr: BTP8ND21;File: CHsxServer.cpp;Line: 1109;Ver: 9.3.1.0.1502;
    Num: 0x80040225;Type: 0;DTime: 6/19/2008 3:23:47 PM;Svr: BTP8ND21;File: CHsxServer.cpp;Line: 851;Ver: 9.3.1.0.1502;
    Num: 0x80040225;Type: 0;DTime: 6/19/2008 3:23:47 PM;Svr: BTP8ND21;File: CHsxClient.cpp;Line: 2005;Ver: 9.3.1.0.1502;
    and in the workspace,
    Error Reference Number: {89B53123-F65C-4A1D-B4F3-68B604308CD2}
    Num: 0x80040225;Type: 1;DTime: 6/19/2008 3:34:37 PM;Svr: BTP8ND21;File: CHsxServerImpl.cpp;Line: 3525;Ver: 9.3.1.0.1502;
    Num: 0x80040225;Type: 0;DTime: 6/19/2008 3:34:45 PM;Svr: BTP8ND21;File: CHsxServer.cpp;Line: 1109;Ver: 9.3.1.0.1502;
    Num: 0x80040225;Type: 0;DTime: 6/19/2008 3:34:45 PM;Svr: BTP8ND21;File: CHsxServer.cpp;Line: 851;Ver: 9.3.1.0.1502;
    If anyone can help me, then it would be great.
    Thanks in advance

    I am also getting the same error.........were you able to troubleshoot this............please advise.........any help will be appreciated

Maybe you are looking for

  • File containing semi-colon(;) cannot be loaded in JVue

    Hello, I am using AutoVue Client/Server Deployment 20.2.2 on Win7. I have file as "semi;colon.txt". When I launch autovue to load this file, I receive error as "Failed to upload file. File not found.". I have following OBJECT tag to launch autovue. <

  • The backlight of keyboard doesn't work in win7, with a well setup bootcamp drivers

    The backlight of keyboard doesn't work in win7, with a well setup bootcamp drivers

  • XMLAnonymizer: namespace deleted

    Hi All, I am trying to use the XMLAnonymizer bean with the Receiver File adapter. My problem is that, the namespace prefix is getting substituted correctly, but the namespace itself is getting deleted from the node. i..e.: the XML looks like this: <n

  • Youtube videos to imovie11

    Does anyone out there know how to transfer youtube videos to imovie11?? I'm tasked with doing a work project and I'm too much of a meat head to figure this out. All the online "tutorials" force me to download useless aps and pay for crap.

  • [SOLVED] Mesa 8.99 and libGLU.so.1

    Hi everyone, If you are missing like me the libGLU.so.1 after a mesa upgrade, simply install the "glu" package. Thanks gtmanfred and Caleb for the tip on the chat. Regards Last edited by Cilyan (2012-10-07 18:06:47)