How programmatically set size of report element in Java

In topic
[How programmaticaly set size of some field?|How programmaticaly set size of some field?]
someone changing programmatically report element, but I think this part of code
is in .NET framework
For example I mean something like following snippet
BoxObject box = (BoxObject) reportClientDocument
.getReportDefController().findObjectByName("headerBox");
BoxObject newBoxObject=new BoxObject(box);
Border border=new Border();
border.setBorderColor(new Color(255,255,255));
newBoxObject.setBorder(border);
newBoxObject.setFillColor(new Color(255,255,255));
reportClientDocument
.getReportDefController().getReportObjectController().modify(box, newBoxObject);
Why I think this is in .NET framework because java object "ReportClientDocument" don't have "getReportDefController()" method (I donu2019t know .NET).
What I want to do, I want to take "Details" (part of report) and change size.
If there is no way to take "Details" how can I take other report element e.g. Text Object

Ernest,
What enviroment are you working in? Because my ReportClientDocument object does have the getReportDefController method. How are you declaring your object?
Try something like:
private static com.crystaldecisions.sdk.occa.report.application.ReportClientDocument myRCD;
BoxObject box = (BoxObject) myRCD.getReportDefController().findObjectByName("headerBox");
Cheers
Darren

Similar Messages

  • How to set focus on UI Element

    Hi All,
    I am using the below code to set the focus on the first row of the table given in the link  [How to set focus at UI element ? ] on enter of an event.
    data: lr_elem type ref to if_wd_view_element.
    lr_elem = view->get_element( <ID of the Link to Action field>).
    if lr_elem is bound.
    view->request_focus_on_view_elem( lr_elem ).
    endif.
    I am getting "Cannot use NULL reference as object error at view".
    Can you please tell me how to get the reference of the "view".
    Thanks
    Praveen

    >
    praveenkumar_81 wrote:
    > Hi All,
    >
    > I am using the below code to set the focus on the first row of the table given in the link  [How to set focus at UI element ? ] on enter of an event.
    >
    >
    data: lr_elem type ref to if_wd_view_element.
    > lr_elem = view->get_element( <ID of the Link to Action field>).
    >
    > if lr_elem is bound.
    > view->request_focus_on_view_elem( lr_elem ).
    > endif.
    >
    > I am getting "Cannot use NULL reference as object error at view".
    >
    > Can you please tell me how to get the reference of the "view".
    >
    > Thanks
    > Praveen
    Hallo Praveen,
    have you controlled that id of the Linktoaction ? there you made error.
    See it in the ViewElement designer .
    should be something like this
    lr_elem = view->get_element( 'LTA_name ' ).

  • How  to set focus on an element inside a datatable on load

    How to set focus on an element inside a datatable on load

    Check out https://blogs.oracle.com/groundside/entry/ever_wondered_how_uncommitteddatawarning_works and
    Decompiling ADF Binaries: Checking for dirty data
    Timo

  • Can not find out how to set size of photos

    Hi
    I have iPad 1 and iPad 3 and iPhone 4 and iPhone 4S and ATV
    bur I can not set the proper size for photos.
    My TV-set is of course 16:9 and ATV sends photos OK to screen
    but I have to resize them in iPhoto or PhotoShop.
    I have also an 6 year old Canon camera and there is the possibility to take 16:9 photos (still) direct
    Anyone know how to set iPhone to shoot 16:9 stills.
    I do not belive Apple have missed something important as this.
    Everyone must have a 16:9 TV-set today.
    Perhaps anyone know about an app as does this?

    Hi,
    Please provide more details like the OS on computer and is the printer software installed on computer using which scan can be performed.
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • How to set Size for Player

    Hi All,
    Please tell me how to set a size for Player ??
    Here is my implementation...
    //Creating MediaLocator
    mrl = new MediaLocator("vfw://0");
    //creating DataSource
    ds = createDataSource(mrl);
    //creating Realized Player
    player = createRealizedPlayer(ds);
    and i'm getting the player's visual and assigning into one Component..
    when adding the Component into a JFrame it is not with fixed size ??
    I want to know, it is possible to set the size for the Player ?
    Thanks in Advance,
    Karthikeyan R

    James,
    Sorry, I should have read your request more thoroughly. You said you want to make a select list like a multi select. Why do you want to do this? There are various tools used in web development for various reasons and sticking to those standards makes using your application easier for end users.
    Why not just use a select list, Popup LOV, or radio button to present the options?
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    http://sourceforge.net/projects/plrecur
    You can reward this reply by marking it as either Helpful or Correct ;-)

  • How to set Password protection in excel using java

    Dear all,
    I have no idea to write a java program that how to set password protection in excel. Please give me some solution using java tools. Thank a lot!
    Regards,
    kzyo

    Dear Bamkin ,
    I used your code and paste it in my program. The error is as the follow:
    Code:
         stmnt = c.createStatement();
                   String query = "select StudentNumber, Email, New_Email_Address from [Sheet1$] where Len(New_Email_Address) > 0";
                   System.out.println(query);
                   rs = stmnt.executeQuery(query);
                   stmnt.executeUpdate("SET PASSWORD=PASSWORD('Test')");
    Error:
    (Remark: Invalid SQL statement)
    java.sql.SQLException: [Microsoft][ODBC Excel Driver] �����I SQL ���q���G�a����'DELETE'�A'INSERT'�A'PROCEDURE'�A'SELECT' �� 'UPDATE' �B
         at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6958)
         at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7115)
         at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(JdbcOdbc.java:3111)
         at sun.jdbc.odbc.JdbcOdbcStatement.execute(JdbcOdbcStatement.java:338)
         at sun.jdbc.odbc.JdbcOdbcStatement.executeUpdate(JdbcOdbcStatement.java:288)
         at hk.gov.edb.util.ExcelHandle.updateNewEmail(ExcelHandle.java:414)
         at hk.gov.edb.core.AppMain.doUpdate(AppMain.java:369)
         at hk.gov.edb.core.AppMain$7.construct(AppMain.java:584)
         at hk.gov.edb.util.SwingWorker$2.run(SwingWorker.java:127)
         at java.lang.Thread.run(Thread.java:595)

  • How to set render true or false in java class

    Use case:
    i have a page in which i have one inputListOfValues attributes and two LOV .initial the LOV render attribute value is false .it means it show only one attribute in run time .inputListOfValues is content two value .suppose if first value A then the first LOV have to show and is it value is B then Second LOV have to show .i bind my LOV to class .but i do not know how to set render attribute at java class.

    <af:inputListOfValues label="Branch Name"
    popupTitle="Search and Result Dialog"
    id="ilov1"
    model="#{pageFlowScope.organizationLOV.param['bindings.Organization'].listOfValuesModel}"
    converter="#{pageFlowScope.organizationLOV.param['bindings.Organization'].convert['latinDesc']}"
    valueChangeListener="#{viewScope.salaryBenefitsReportForm.branchChange}"
    binding="#{viewScope.salaryBenefitsReportForm.branchName}"
    rendered="true" visible="false"/>
    <af:inputListOfValues label="Department Name"
    popupTitle="Search and Result Dialog"
    id="ilov2"
    model="#{pageFlowScope.objectLOV.param['bindings.Department'].listOfValuesModel}"
    converter="#{pageFlowScope.objectLOV.param['bindings.Department'].convert['latinDesc']}"
    valueChangeListener="#{viewScope.salaryBenefitsReportForm.departmentChange}"
    binding="#{viewScope.salaryBenefitsReportForm.departmentName}"
    rendered="true" visible="false"/>
    this is code in jsff .
    and class code are following
    public void reportBy(ValueChangeEvent valueChangeEvent) {
    String value=(String)valueChangeEvent.getNewValue();
    System.out.println(value);
    if(value.equals("Branch")){
    branchName.setVisible(true);
    departmentName.setVisible(false);
    AdfFacesContext.getCurrentInstance().addPartialTarget(branchName);
    AdfFacesContext.getCurrentInstance().addPartialTarget(departmentName);
    if(value.equals("Department")){
    departmentName.setVisible(true);
    branchName.setVisible(false);
    AdfFacesContext.getCurrentInstance().addPartialTarget(departmentName);
    AdfFacesContext.getCurrentInstance().addPartialTarget(branchName);
    }

  • How to set genericObject in a TaskInstance from java

    Hi,
    How can I set generiobject to a taskInstace from java?
    And
    How can I get a variable of any other taskInstace in workFlow?
    Please suggest me.
    Thanks ,
    Ravi.G

    Hi,
    How can I set generiobject to a taskInstace from java?
    And
    How can I get a variable of any other taskInstace in workFlow?
    Please suggest me.
    Thanks ,
    Ravi.G

  • How to set the number of elements dequeued?

    Hello All,
    I am relatively new to LabView. I use LabView 8.2 to detect Joystick movement using a set voltage threshold. Totally, I have 6 channels of analog input. The sampling rate is 2 Kilo Hertz with continuous sampling mode (buffer size set to 10 Kilo Samples). I show a visual stimulus on a computer monitor. Within  3 seconds from stimulus onset, the subject has to press the joystick. So I use a while loop that runs until the subject moves the joystick in any direction as detected by crossing of voltage threshold. The while loop was intended to run for a max of 3 sec if joystick was not moved. My intention while using the vi (see below) was to continuously monitor the voltage signal by means of removing voltage data points from the queue by the labview function/vi - "dequeue element". When I dequeue from inside the loop, the dequeue function removes about 100 msec worth of voltage data points ( = 198-201 points; sampling rate -2Khz) from each of the six channels. This creates problem for me because a single dequeue operation takes 40 to 85 msec during which the loop cannot be stopped. This results in miscalculation of the actual time when the joystick was moved.
    Is there a way to set how many data points the dequeue function removes? My goal is to remove about 1-2 msec worth of data points so that the loop can exit within under 5msec of the joystick movement.
    I have attached the screen shots of the subvi's I am using.
    Acquire Response.jpg - the while loop that has the subvi: Access Analog Data Queue
    Access Analog Data Queue.jpg - front panel of the subvi that has the 'dequeue element' function.
    Remove Element.jpg - a case of Access Analog Data Queue.vi showing the 'dequeue element' function
    Sorry for the long message. Any help would be greatly appreciated.
    Thanks
    Mani
    Attachments:
    Remove Element2.jpg ‏135 KB
    Acquire Response1.jpg ‏266 KB
    Remove Element1.jpg ‏135 KB

    Hello Lynn and tst,
    Thanks for your suggestions. I have attached a screen shot of a vi that has the enqueue function. As Lynn pointed out, it was the enqueueing size that was reflected in the size of the dequeueing. I tried various ways to control the enqueue element size in order to control the dequeue element size. Many of my tricks failed. I had set the data acquisition to be continuous at 2kHz with 10Ks buffer size. You may want to look at the attached image of the subvi "Analog Acquisition" while I explain my attempts. The first thing that I noticed was the 'dt' value in the input node of the timed loop which had been set by somebody to 100. I thought that was part of the reason why my dequeue size was always worth 100msec data points. So I changed it to 1 msec. This definitely made a difference in the chunk size of the dequeued element. Now dequeueing removes only data points worth 1 - 5msec. I also noticed that my data reading timer loop(the while loop in "Analog Acquisition" picture) takes about 20 -25 msec instead of the set 1 msec.
    Why does the loop take so long? I have set the 'number of samples per channel' to -1 so that DAQmx read.vi (see it in Analog Acquisition subvi block diagram) can grab whatever data is available currently and put that into the queue. Can this be a reason why the loop takes more than 20 msec? I also tried to set the number of samples per channel to 2. I reasoned that with the sampling rate of 2KHz, 1ms loop should be able to pull 2data points and enqueue them. But it gave me the much-often-seen error code ":Error -200279 occurred at DAQmx Read (Analog 1D Wfm NChan NSamp).vi:1->Timed structure(s): DAQ Loop". I tried various combinations of loop time and number of samples per channel. I get Error-200279 very often. Note that I have several state transitions and only in a couple of them during every cycle of state transitions, I remove elements and flush the data queue (one place where I remove elements is shown in my original message in the picture-'Acquire Response.jpg').
    How do I set the data acquisition loop to enqueue elements for exactly 1 msec or n msec so that I can control my dequeue size?
    Thanks a lot, I am getting really tired of fixing this problem. Please help.
    Mani
    Attachments:
    Analog Acquisition.jpg ‏363 KB

  • How to set size of buttons

    hi,
    I am working on the GUI. There are four buttons. I wanted the button's width to be just enough to show the text inside the button and not "...." or bigger than required. How should I edit my code, which is shown below?
    Thanks in advance
    regards
    * GridBagLayoutDemo.java is a 1.4 application that requires no other files.
    import java.awt.*;
    import javax.swing.*;
    public class GridBagLayoutDemo {
        final static boolean shouldFill = true;
        final static boolean shouldWeightX = true;
        final static boolean RIGHT_TO_LEFT = false;
        public static void addComponentsToPane(Container pane) {
            if (RIGHT_TO_LEFT) {
                pane.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
              GridBagLayout gbl = new GridBagLayout();
             container.setLayout(gbl);
             gbl.layoutContainer(container);
            GridBagConstraints c = new GridBagConstraints();
            c.fill = GridBagConstraints.HORIZONTAL; //natural height, maximum width
              recv = new JEditorPane();
              recv.setEditorKit(new HTMLEditorKit());
              recv.setEditable(false);
              JScrollPane pane
                   = new JScrollPane(recv,
                             JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                             JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
              c.ipady = 200;      //make this component tall
            c.weightx = 1.0;
            c.weighty = 1.0;   //request any extra vertical space
            c.gridwidth = 8;
            c.gridx = 0;
            c.gridy = 0;
            container.add(pane, c);
              to_reply = new JCheckBox("Reply to latest message", true);
                c.gridx = 0;
            c.gridy = 1;
            c.gridwidth = 4;
            container.add(to_reply, c);
              type = new JTextArea();
              type.setFont(new Font("Arial",Font.PLAIN,11));
              type.setLineWrap(true);
              JScrollPane typepane
                   = new JScrollPane(type,
                             JScrollPane.VERTICAL_SCROLLBAR_NEVER,
                             JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
              c.ipady = 50;
              c.weightx = 1.0;
              c.gridx = 0;
            c.gridy = 2;
            c.gridwidth = 6;
            container.add(typepane, c);
              send = new JButton("Send");
              c.fill = GridBagConstraints.NONE;
              c.gridx = 5;
            c.gridy = 2;
            c.ipady = 10;
            c.anchor = GridBagConstraints.LINE_END;
            container.add(send, c);
            String num_msg_just_inserted = "Newly inserted messages : 0";
              num_msg_inserted = new JLabel(num_msg_just_inserted);
              c.gridx = 0;
              c.weightx = 1.0;
            c.gridy = 3;
            //c.gridwidth = 2;
            container.add(num_msg_inserted, c);
              see = new JButton("See");
              see.setBounds(235,220,65,20);
              see.setEnabled(false);
              c.fill = GridBagConstraints.NONE;
              c.anchor = GridBagConstraints.LINE_START;
              c.ipadx = 2;
                 c.ipady = 2;
              c.gridx = 1;
            c.gridy = 3;
            container.add(see, c);
              previous_msgs = new previous_messages(thisframe);  
            previous_msgs.setBounds(10,200,220,20);
            msgPosiArray = new msgPositionArray();
            c.weightx = 1.0;
            c.gridx = 0;
            c.gridy = 4;
            c.gridwidth = 4;
            container.add(previous_msgs, c);
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("GridBagLayoutDemo");
            this.setSize(550,500);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Set up the content pane.
            addComponentsToPane(frame.getContentPane());
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    90% of people's layout woes on this forum seem tostem from the fact that they use GridBagLayout.
    I'll second that.
    And I will third that!
    If you read this article from Sun it practically ignores GridBagLayout and mentions that GridBagLayout should only be used by GUI builders. It is a dated article (it preedates BoxLayout) but is very informative in its own right. I have a suspicion that Sun meant GridBagLayout to be used by GUI builders rather than hand coded.
    http://java.sun.com/developer/onlineTraining/GUI/AWTLayoutMgr/shortcourse.html
    As far as using setPreferredSize, setMinimumSize, and setMaximumSize it is up to each layout manager whether they honer those setting. Among the layout managers included in the JDK I don't believe any of them honor setMaximumSize. Only GridBagLayout honors setMinimumSize, and then they all honor at least one component (i.e. height or width) of setPreferredSize.
    Don't take that as gospel but I believe that to be correct.
    As has already been pointed out it isn't good to set the size to a hard value. It won't play nice with all look and feels.

  • How to set a webi report's caching format?

    Hello Community,
    I have come to a hurdle that I can not conquer on my own and for as much as I have tried can not find samples or documents on how to accomplish this.
    I am writing code to schedule webi reports and the piece that handles the caching format and locales keeps failing. I have used 2 approaches:
    The first approach I used the IWebiProcessingInfo.getPrecacheTypes()
    here is some reference:
    Webi document: webi (IInfoObject)
    caching: an panelcontaining a list object containing the selected locales
    try {
                if (caching.getFormatOptionExcel()) {
                    ((IWebiProcessingInfo) webi).setPreCacheXLSEnabled(true);
                    loadLocales(IPrecacheType.CeOutputType.OUTPUT_XLS, caching.getSelelectedLocales());
    } catch (SDKException ex) {
                Exceptions.printStackTrace(ex);
    private void loadPreCacheAndLocales(int type, List locales) throws SDKException {
            IPrecacheType pt = ((IWebiProcessingInfo) webi).getPrecacheTypes().add(type);
            pt.getLocales().clear();
            pt.getLocales().addAll(locales);
    Although this bit of code executes successfully, when you try reschedule the object via the CMC I get a null pointer exception on the web page.
    The second approach I used is: ReportEngine preloadOutputCache(int, String, OutputCacheEntry[])
    try {
    if (caching.getFormatOptionExcel()) {
                    ((IWebiProcessingInfo) webi).setPreCacheXLSEnabled(true);
                    ReportEngine wbe = getWebiEngine();
                    wbe.preloadOutputCache(webi.getID(), agent.getSeverName(),
                        new OutputCacheEntry[]{new OutputCacheEntry(OutputFormatType.XLS, caching.getSelectedLocalesAsArray())});
    } catch (SDKException ex) {
                Exceptions.printStackTrace(ex);
    This approach erros out with the following:
    com.businessobjects.sdk.core.exception.common.NotImplementedException: This feature is not implemented. (Error: RWI 00013)
      at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:144)
      at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:115)
      at com.businessobjects.rebean.wi.internal.WIReportEngine.preloadOutputCache(WIReportEngine.java:519)
    Anybody know whats going on or perhaps point me in the right direction on how to correctly set the caching format and local for a webi document.
    Thanks guys!

    Is there a way to get the "CSV-Archive" option from CMS?
    Customization of existing options or features in CMC is not available, it will become an enhancement request, you have to place this request in SAP Idea place.
    WebIntelligence Rich client is a desktop tool, auto schedule of reports as .csv is not possible, save as CSV and save as to "CSV Archive" from Rich Client is a manual job.
    BI launch pad, CMC are BOE Server components have the ability to auto schedule as .csv, as a default behavior column headers will be exported to CSV along with report data.
    As a workaround, have a copy of original wibi reports in your webi reports you have to hide table headers and schedule them to save as .csv
    To hide table headers:
    Edit the report -> Select table block properties -> Chose 'Format Table' -> Under 'General' properties 'Display' options un-check "Show table headers"

  • How to set size of rectangle dynamically depending on form size ?

    Hi,
    why does the size of a rectangle is not depend on the fom size? Can i set the size of my rectangle dynamically, depending on the user form size?
    best regards
    Markus

    Markus,
    I use the following in the FormResize event:
        Private Function ItemHandler_FormResize(ByRef oCompany As SAPbobsCOM.Company, _
                ByRef oApplication As SAPbouiCOM.Application, ByRef pVal As SAPbouiCOM.ItemEvent) As Boolean
            ItemHandler_FormResize = False
            oForm = oApplication.Forms.GetForm(pVal.FormTypeEx, pVal.FormTypeCount)
            Try
                oForm.Freeze(True)
                If pVal.BeforeAction = False Then
                    oForm.Items.Item("FldRtg").Width = oForm.Width - 20
                End If
                ItemHandler_FormResize = True
            Catch ex As Exception
                oApplication.MessageBox("ItemHandler_FormResize(): " & ex.Message.ToString)
            Finally
                oForm.Freeze(False)
            End Try
        End Function
    Regards,
    Vítor Vieira

  • How to set one of the elements in contributable mode to non editable in oracle site studio

    Hi,
    I am using oracle site  studio and webcenter content.In contributable mode for a cdf I have a static element and 4 columns in that(4 elements). I want to enter data in all 4 columns and after that I want to make one of the column as non editable. Is it possible? If yes, kindly let know how this can be achieved.
    Thanks in advance

    If you don't need to actually display the non-editable region in the editor, then you could do the following:
    Add all 4 elements to the region definition.
    Add your content/data.
    Remove the non-editable element from the region definition.
    The content/data will still be stored in the CDF and should be retrievable.
    Jonathan
    https://jonathanhult.com

  • How to set af:column child element as partial trigger?

    Hi all...
    I have put a check box in side <af:column> tag inside <af:table> like below:
    <af:table id="applications" var="b" value="#{YourApplicationsandProgressMPB.productBasket}"
                                  rendered="#{!YourApplicationsandProgressMPB.productBasketEmpty}"
                                  width="100%" >
    <af:column gridVisible="false" width="20%">
                                            <af:selectBooleanCheckbox id="[b]checkBox" value="#{b.selected}" autoSubmit="true" />
                                       </af:column>
    </af:table>
    I required to enable a button when any of these check bobes is selected.
    I could do everything except refreshing the form button.
    I mentioned this check box name as partial trigger but it is not refreshing the form like other elements.
    <af:panelForm partialTriggers="[b]checkBox productSelection1 ">
    I think the problem occurs because the checkbox is inside a loop. So it is assigning its own names to each checkbox like formname:0:chceckBox
    Could anybody please help me out in this?
    How can I refresh the page when any check box is selected?
    Thanks in advance....

    You posted this in the wrong forum - this is the Designer forum. Try the JDeveloper forum at JDeveloper and ADF However, I happen to have seen a blog entry today that may help. Take a look at http://www.it-eye.nl/weblog/2007/08/02/jsf-partial-page-rendering-hell/

  • How to set Forms and Reports on an Oracle Application Server

    Hi All,
    Can anyone tell me how can i implement my all forms and reports on an Application Server. Please tell me in details cause i don't have enough knowledge abt AS.
    Thanks in Advance
    Arif

    Hi Arif,
    You can install AS Forms and Reports Standalone if you do not need infrastructure services like OID and SSO
    It is available for download from OTN search for Standalone on AS 10g R2 download page, then deploy your Forms and Reports there.
    I hope this helps.
    Thanks,
    Ahmed

Maybe you are looking for

  • IPhoto doesn't display my recent imports in "Photo"

    I have a brand new MacBook Pro with Lion 10.7.3 and iPhoto 11. I downloaded a "roll" on January 17 and another one today. I can see the photos I downloaded today only in "Recent Imports;" neither my roll from January 17 or my roll from today can be s

  • Apple appstore problem! Please help! :)

    Hello! i've got an itunes gift card (15€) from my cousin from germany.I live in romania and i cannot spend 15 € i got 0.16 € how can i remove that balance and change back my store to romania store?

  • How to assign values to extended segments in an IDoc Orders05.

    Hi All, I am working for an oil industry client. I have a requirement to develop a Sales order interface (I am using basic type ORDERS05). After analysing the segments and fields of this basic type, I understood I need to 2 extra custom segments (for

  • Trouble looking up EJB from a JSP in another server

    I'm using the Sun Reference Implementation of J2EE. I'm deploying a session EJB in one J2EE app on one machine, and accessing it from a JSP in another J2EE app on another machine. My lookup code that is called from the JSP first sets the properties o

  • Preload Data Forms in Planning

    A best practice identified with Hyperion Planning is to preload the most commonly used data forms in order to reduce the initial load time for these forms when they are first access by users. What approach do you recommend to actually preload the for