Orientation Active FDM reports

Hi all

Sorry to bother you again, but I just met another problem.
The problem I have is that I don't seem to have the posibility to report
using the page orientation is landscape.
If I open the report with "Design Report" in the established client and go to
'Settings'-> 'Orientation', I am only able to select "Default printer" or "Portrait".
But the landscape is missing and "Default printer" doesn't seem to work.

Is there a trick on how to modify a report in landscape orientation?

Thanks in advance,
Markus

Markus,

All the FDM reports are designed around "portrait" style sheets There are very few that are designed for the landscape.

You can open the. RPX file and make the following changes of landscape.

<>
RightMargin = "360".
TopMargin = "360".
BottomMargin = "360".
Orientation = '2 '.
>

Thank you

Tags: Business Intelligence

Similar Questions

  • Thunderbird activity Manager reports several times the gmail trash Emptied over and over every few seconds. Solved by trash Compact/repair

    First of all, thank you for an amazing product! Life-changer.

    Thunderbird Activity Manager reports repeatedly trash emptied over and over every few seconds. The account he reports that empty the trash has no trash. I have repaired the trash folder, repaired the Inbox folder, compacted the account, does not. I've left Thunderbird worked during 10 hours see if it was a natural process, but the continuous emptied trash messages. The mail folder, I am using for this account occupies approximately 7 GB. Thank you! Mike

    Ignore my suggestion on unsubscribe to solve the problem of trash - you already solved.

  • Activation of Windows7 get error 0xc004c020 "the activation server reported that the Multiple Activation key has exceeded its limit."

    I installed Win7 Pro 64 - bit about 4 - 5 times with the same original key on the same computer, but now I have a problem; When I want to activate key, always error has occurred with this 0xC004C020 with description error Code: the activation server reported that the Multiple Activation key has exceeded its limit. How do I fix this problem?

    Hello

    Please find your resolution from this link: http://technet.microsoft.com/en-us/library/ff793399.aspx

    MAKs by design have a limited number of activations. Contact the Microsoft Activation call center.

    Hope that helps.

    Kind regards

    Joel

  • "The activation server reported that the product key has exceeded its limit of unlocking". Error

    Hello

    I recently changed my motherboard and processor because my old card mother and fried CPU. I had Windows 8 Pro (64-bit) installed earlier, an upgrade to Windows 7 (64-bit). As soon as I started first of all, I got a notification asking me to re - activate my Windows but when I try to activate it with my original key, I get this error: "the activation server reported that the product key has exceeded its limit of unlocking".

    I tried to activate by phone, but instead connect to the automated system, I keep to redirect to voicemail after a few rings. Can someone help me to activate my Windows again? I'm in Karachi, Pakistan.

    The report shows that it is been activated previously, but that the material has changed considerably since the activation - hence the request for reactivation.

    Not too surprising if you traded motherboards. :))

    Telephone activation is definitely the way to go - but it's in the lap of the gods (i.. activation e. operator the MS) as to if they will allow it if the original Win7 installation was an OEM.

    My belief is that they will allow him - of some people hold that they will not :)

  • FDM reports

    Hi Experts,

    I see that the format of PDF of FDM reports circulating in when you publish the reports in Excel which looks really very bad. The header and footer come after each few lines in excellent locations, scenario, details period etc., and page numbers.

    Can you tell me where and what I can change to keep this header and detail footer only at the beginning of the report when the excellent publication so that it looks cleaner?

    Your help is appreciated.

    I am able to do well.

  • Run the FDM report on several places

    Hello

    We are the FDM 11.1.2.1. What I'm trying to do is the design/FDM reports may change so that she can turn on several locations. I can get the report to run on the current location, a location selected by the user or can get it to work on all locations (takes way too long). I want to be able to do is put up to run the report for all children under a review of control location. Anyone who has ever tried this or you have understand how? Any suggestion would be appreciated.

    Thank you
    Jason

    To think.

    The best way to proceed would be to have a stored procedure / SQL query that the report will hit that will give him exactly what he needs.

    -If you're OK with hard coding values in places, I agree that it is a good idea to group Tag. You can retrieve all the places with a query such as:

    select * from tPOVPartition where PartNotes = 'GroupNameHere'
    

    or assuming that it will be used where clause:

    Select blah blah blah
    the blah blah blah
    where blah blah blah and (PartitionKey to (select PartitionKey from tPOVPartition where PartNotes = 'GroupNameHere'))

    ------------------------

    -If you are NOT OK with rigid group coding labels and just want to let the natural hierarchy works, there is hope.

    By using the tStructParitionLinks table, you can browse the hierarchy and get your list.

    Assuming that You have nothing deeper that the 1 level, the SQL tracking will work:
    (NOTE: place of departure would be the parent and Endlocation child)

    SELECT     a.StartLocationID, a.EndLocationID, b.PartName
    FROM         tStructPartitionLinks AS a INNER JOIN
                          tPOVPartition AS b ON a.EndLocationID = b.PartitionKey
    where a.StartLocationID = 
    

    The problem here is that if you have several nested levels, this query will not return all the basic elements. If you need something to do, what you want to do is to create a nested stored procedure. I won't provide a because it would take me a bit to write.

    The basic premise is:
    -The stored procedure accepts an input parameter, ParentID
    -The stored procedure uses a temporary table to store the results of
    -The stored procedure keeps track of its recursive level and starts at one. (SQL Server handles this built in, assume as well done oracle)
    -When you call the routine, he takes the ParentID, analyzes the link Partition table and out of all the children who are directly linked to it.
    -For each of the children, it adds an entry to the temporary database table.
    -Then, it checks to see if this book of the child is also a parent in the table.
    -If it's a parent, he calls another instance of itself (stored procedure) this time passing the ID of the child as the ID of the parent
    -Possibly after you have exhausted all children/parents, you find yourself at the end of the initial call and at this stage, you return the content of the temporary table.

    ----------------------------------

    -A third option would be to use the FDM script to achieve this. In theory, you could throw something in a script, have it pull the list of children and do pass this info on to the report and run it. The following script will give you a list of children for a parent:

    Sub ShowChildren()
    '------------------------------------------------------------------
    'Hyperion FDM CUSTOM Script:
    '
    'Created By:       cbeyer
    'Date Created:       2012-02-22-10:43:06
    '
    'Purpose:
    '
    '------------------------------------------------------------------
    
    'Declare variables
    Dim lngLocID
    Dim lngParentID
    Dim strParentName
    Dim strChildren 
    
    'Get current ID by current POV
    'NOTE: You could easily change this around to accept a parameter, etc, by using GetName/GetID calls shown below.
    lngLocID = STRUCTMGR.fGetLocationIDFromName(API.POVMgr.PPOVLocation)
    
    'Get parent ID
    lngParentID = STRUCTMGR.fGetLocationParent("Controls", lngLocID)
    
    'Get Name of parent
    strParentName = STRUCTMGR.fGetLocationName("Controls", lngParentID)
    
    'Create recordset and Enumerate children
    With STRUCTMGR.frsChildrenAll("Controls", lngLocID)
       If Not .BOF And Not .EOF Then
           Do While Not .EOF
              strChildren = strChildren & .Fields("PartName").Value & vbCrLf
              .MoveNext
           Loop
       Else
           'No children
           strChildren = "Location has no children"
       End If
       'Close recordset
       .Close
    End With
    
    'Display the children information
    If LCase(API.DataWindow.Connection.PstrClientType) = "workbench" Then
         MsgBox "List of Children for " & strParentName & " : " & strChildren
    Else
         'Web Client (Set API action properties)
         RES.PlngActionType = 2
         RES.PstrActionValue = "List of Children for " & strParentName & " : " & strChildren
    End If
    
    End Sub
    
  • How to set the default print orientation in oracle reports 6i

    Can someone help please how to set the orientation of the printing default reports Oracle 6i? Currently the document is printed in Portrait orientation, but I need to print in landscape orientation. Is this possible?

    It is now resolved. Go to page-> main Section layout model, press F4. In the palette property, select the Orientation that should be selected when printing is taken for this report.

  • Enter key should be activated to report

    Hi all

    I want a solution, I report searches backend, I have a free text field, I want a solution in such a way that research should be activated when you press the button I mean research must occur when press us the Enter key enter. Can someone help me with this please.

    Thank you

    DIL,

    Change the item type to: text field (always submits page when you press enter)

    Kind regards
    Dan

    http://danielmcghan.us
    http://sourceforge.NET/projects/tapigen
    http://sourceforge.NET/projects/plrecur

  • FDM: Import performance Tuning, where "import processes: Map" is more times that takes the report

    Hi Experts,

    FDM report shows the "import process: map ' activity is much more time during the import process completed by do from the web interface for a unique time period (file 1 month = 4 MB). Please suggest how I can improve it?

    Thank you

    Vivek

    In this doc attached are details on parameters DB contribute to improve performance.

    http://docs.Oracle.com/CD/E40248_01/EPM.1112/fdm_dba.PDF

    A tip, I would also give is the importance of the order of mapping. Basically, if you like the mappings you should order based on volume. If a similar mapping affects a large volume of documents, you want to apply only the first. This allows to reduce the Recordset down over time so that the least used mappings go against the smallest possible demappe data set.

  • FDM activity log

    Hi the FDM Experts,

    Given that our activity log tends to become very big, I want to get in practice to delete it before the end of each month of closing.

    My question is what are the consequences of this in terms reports / drill-back feature.

    The activity log cleaning will prevent security audit reports or reports of mapping is filled?

    The cleaning of the activity log will impact our ability to drill back to planning/Essbase and HFM?

    In other words, are audit reports (or any other FDM report) or Pierce return depends on the activity log data?

    Thank you
    Mark

    Hello

    The activity log cleaning will prevent security audit reports or reports of mapping is filled?

    The cleaning of the activity log will impact our ability to drill back to planning/Essbase and HFM?

    You should not have any impact on drill back to target applications as this process is looking like the intersections of the target of your data.

    Activity log records activities of FDM information and audit information. That's why your audit reports may be affected if you turn off this table.

  • FDM - MS Office report engine

    I need to publish the FDM report in the default view - MS Office Excel in Web on the verification step (4 fish).

    I passed in parameter report properties Workbench "Report Engine' Active to MS Office, I got an error when launching a reportt.

    There may be a few additional settings or scripts additional xml I need to make to the success of reports with parameter in Report Engine View - MS Office?

    Waiting for your answers.

    Thank you

    El

    The report engine must be on 'Active' for all reports run correctly, it cannot be changed.

    The report default publication type can be changed in the settings of the "Web".

    Choose administration > Web site settings

    The Type of post report default value default setting of PDF PASSWORD and save.

    If you want to users to change that in their settings check the "enable default report Type Override" and then user can change this in the user settings if they do not want it to be the word.

  • Script of FDM workbench report

    Hello

    FDM report, I would like the part detail is visible only if the value in field 26 is 5320.

    I put the following piece of code in the script editor in the detail section.

    Void OnFormat

    If (rpt.sections("Detail").controls ("Field26") .dataValue is 5320)

    {

    RPT.sections ("retail"). Visible = True

    }

    End Sub

    The report runs, but the excel file is completely empty, even if there are those records where the field 26 = 5320.

    Did I miss something in the script above?

    Hello

    two points:

    -your syntax is not valid VB síntax. For example you use {}

    -East area 26 in you the detail Section.

    Here you have an example script in the detail Section.

    I hope that helps

    Void OnFormat

    srcAccount = RPT. Sections ("retail"). Controls ("Field8"). Text

    If srcAccount = "611001" Then

    RPT. Sections ("retail"). Visible = False

    On the other

    RPT. Sections ("retail"). Visible = True

    End If

    End Sub

  • FDM and Hyperion Financial Reporting

    Hi all

    Is it possible to create reports Financial Reporting for application FDM? If possible, how to connect to via FinRep FDM?

    Thank you in advance.

    Hello

    I Don t think you can connect Financial Reporting to the relational database, you would be unable to the FDM sql data query.

    Why Don t use you FDM reports?

    HTH

  • FDM log archiving

    Hello

    We are the FDM 11.1.2.1. On a quarterly basis run us reports on map/security changes and reports are huge because they have data since the beginning of time (actually the security reports are very good because they provide a prompt for the start/end dates). My question is where can I find the papers that these reports are drawing in so I can archive the data off the coast and the report displays only the most recent activity? In particular, I would like to delete old data showing in the following reports:

    Audit reports - map to user and site map
    System - system activity log reports

    Any ideas/suggestions would be appreciated.

    Thank you and best regards,
    Jason

    Another approach would be to create additional custom reports based on the originals, but with some additional settings that allowed the specification, a date range. Easy to do if you look at the SQL code for the report which is already.

  • Activity log does not...

    The activity log for my son appears not any activity, even if it was on the internet... I got the active log activity for about two weeks... no idea how I make it work?

    Hi MichelleRob,

    Thank you for the presentation of what we are concerned about. It is possible that you experience this problem because you are using an older version of Windows Live Family Safety. To do this, connect to the client Windows Live parental controls with the parent account, once connected, click on the questionmark icon and select parental control. The latest version is 15.4.3555.0308.

    If you use the version dated the customer exit, we recommend that you download and install the latest version. You can check the link below:

    http://Windows.Microsoft.com/en-us/Windows-Live/Essentials-other-programs

    I also want to confirm if the activity report feature enabled on the parental control Web site?

    Go to https://fss.live.com and sign in with the parent account, select the account from the child that you analyze and confirm if the activity of reporting on behalf of the child is running.

    Finally, have you tried to update the client of parental control filter?

    Sign in to the family of customer security with the parent account, on the top right click on the icon that has 2 arrows (get latest settings from the Web site).

    After having been prompt that you have the last parameters, you can then check on the Family Safety website if activities work after your child is doing certain activities on the computer.

    In addition, Family Safety will send an email from the summary of activities a week after that the activity tracking has been enabled. You will receive mail to the parent account.

    Please let us know if the same problem still persists.

    Thank you!

Maybe you are looking for

  • Basket grey, italic and is not accessible

    I have a 2nd IMAP account I use successfully for years... then all of a sudden his trash is gray & italic and will not accept the deleted messages. I tried everything suggested in this Forum, and nothing works... in fact, when I try to resubscribe, I

  • HP 15-af008nm: unknown device from hp 15-af008nm on win 10

    After the upgrade to windows 10... and installation of latest win 10 drivers of hp support assistant... Windows update tries to download and install some hp another device driver and does not have 2 times... After that, no further attempt tried Howev

  • Vista - boot failure after installing Windows updates

    Hi, I use windows vista and for the last two days every time I shut down my computer, load 16 updates. Then when I restart my computer, it will start up repair and system restore. It would seem that these updates are causing a problem launching. 4 ar

  • Windows unsuccessfully

    Automatic update of Windows install not the update of silverlight don't know what to do now.  keep trying to update.

  • How to recover disk space?

    Delete the files in the Windows\winsxs folder? Seems to be filling with a large number of records and take too much disk space?