Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

HFM - Workspace Customisation

obiee123Nov 13 2012
Hi,

I need to customize HFM Workspace and add UI elements (i.e. Browse Button, check box) etc.

I need to automate run of Books (not scheduled one, based on user request) and reports, from Financial reporting and specify POV.

Can someone please guide me about how to use APIs? Which APIs should I be using? And possible any sample example, which I can use to understand to call APIs from workspace.

I am very new to HFM.

Kind Regards,
Diptesh

Comments

Ruben Rodriguez

Hello,

You can add an inputText and an inputDate.

<af:panelLabelAndMessage label="Label 1" id="plam1">

     <af:inputText simple="true" id="it1" partialTriggers="id1">

     <af:inputDate label="Label 1" simple="true" id="id1" autoSubmit="true" styleClass="myClass"

                            valueChangeListener="#{testBean.valueChangeInputDate}"/>

</af:panelLabelAndMessage>

Then hide inputDate label using simple="true" and content in the skin:

af|inputDate.myClass::content{

    display:none;

}

you have to pass the value to the inputtext and you can do it in the valueChangeListener.

    public void valueChangeDate(ValueChangeEvent valueChangeEvent) {

        Object o = valueChangeEvent.getNewValue();

        RichInputText rit = (RichInputText)findComponentInRoot("it1");

        rit.setValue(o);

    }

regards,

Ruben

dvohra21

I need a textbox which can insert words or a date

In af:inputDate words or a date may be specified without selecting a date from the calendar popup.

Ashish Awasthi

User

Go with what @"Ruben Rodriguez" suggested

Ashish

1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details