Get the csv output

I need to make a script that pulls the server uptime information and saves the results into csv format. I am able to create a csv file, however the values are not coming in the different columns.. The data is getting saved only in one column.
$OutputFile="Output.csv"
Function Columns_Table($columns)
$data = ""
For($i=0; $i -le $columns.Length-1; $i++)
$col = $columns[$i]
$data = "$data $col",","
$data >> $OutputFile
Function Rows_Table($rowData)
$data = ""
For($i=0; $i -le $rowData.Length-1; $i++)
$row = $rowData[$i]
$data = "$data $row",","
$data >> $OutputFile
Function TestServerUp($Server)
Try
If (Test-Connection -Computername $Server -count 1 -quiet)
$UpTimeCheck = gwmi Win32_OperatingSystem -computer $Server
$LastBootedTime = $UpTimeCheck.ConvertToDateTime($UpTimeCheck.Lastbootuptime)
[TimeSpan]$uptime = New-TimeSpan $LastBootedTime $(get-date)
$Day = $Uptime.days
$Hours = $Uptime.hours
$Minutes = $Uptime.minutes
Rows_Table @("Server is up", $Day, $Hours, $Minutes)
Else
Rows_Table @("Server is not reachable! Hence No 3rd party results", "Server is down", "Server is down", "Server is down")
Catch
Rows_Table @("Server is not reachable! Hence No 3rd party results", "Server is down", "Server is down", "Server is down")
Columns_Table @("Server", "Server Information", "Days", "Hours", "Minutes")
TestServerUp K0z0s
 

I ran your code, gave  a lot of errors
[ordered] is not available in PowerShell V2
Unable to find type [ordered]: make sure that the assembly containing this type is loaded.
At line:13 char:25
+ $props=[ordered] <<<< @{
+ CategoryInfo : InvalidOperation: (ordered:String) [], RuntimeException
+ FullyQualifiedErrorId : TypeNotFound
Property 'Online' cannot be found on this object; make sure it exists and is settable.
At line:27 char:17
+ $props. <<<< Online=$true
+ CategoryInfo : InvalidOperation: (Online:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Property 'LastBootedTime' cannot be found on this object; make sure it exists and is settable.
At line:29 char:20
+ $props. <<<< LastBootedTime=$os.ConvertToDateTime($os.Lastbootuptime)
+ CategoryInfo : InvalidOperation: (LastBootedTime:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Cannot find an overload for "op_Subtraction" and the argument count: "2".
At line:30 char:44
+ $props.Uptime=[DateTime]::Now - <<<< $props.LastBootedTime
+ CategoryInfo : NotSpecified: (:) [], MethodException
+ FullyQualifiedErrorId : MethodCountCouldNotFindBest
Property 'Days' cannot be found on this object; make sure it exists and is settable.
At line:31 char:20
+ $props. <<<< Days=$props.Uptime.days
+ CategoryInfo : InvalidOperation: (Days:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Property 'Hours' cannot be found on this object; make sure it exists and is settable.
At line:32 char:20
+ $props. <<<< Hours=$props.Uptime.hours
+ CategoryInfo : InvalidOperation: (Hours:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Property 'Minutes' cannot be found on this object; make sure it exists and is settable.
At line:33 char:20
+ $props. <<<< Minutes=$props.Uptime.minutes
+ CategoryInfo : InvalidOperation: (Minutes:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Property 'Manufacturer' cannot be found on this object; make sure it exists and is settable.
At line:34 char:20
+ $props. <<<< Manufacturer=$os.Manufacturer
+ CategoryInfo : InvalidOperation: (Manufacturer:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Get-WmiObject : Cannot validate argument on parameter 'ComputerName'. The argument is null or empty. Supply an argument that is not nul
l or empty and then try the command again.
At line:35 char:78
+ $props.OSLevel=(Get-WmiObject Win32_OperatingSystem -computerName <<<< $props.Server).Caption
+ CategoryInfo : InvalidData: (:) [Get-WmiObject], ParameterBindingValidationException
+ FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.PowerShell.Commands.GetWmiObjectCommand
New-Object : Cannot validate argument on parameter 'Property'. The argument is null or empty. Supply an argument that is not null or em
pty and then try the command again.
At line:38 char:38
+ new-object psobject -Property <<<< $props
+ CategoryInfo : InvalidData: (:) [New-Object], ParameterBindingValidationException
+ FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.PowerShell.Commands.NewObjectCommand
Unable to find type [ordered]: make sure that the assembly containing this type is loaded.
At line:13 char:25
+ $props=[ordered] <<<< @{
+ CategoryInfo : InvalidOperation: (ordered:String) [], RuntimeException
+ FullyQualifiedErrorId : TypeNotFound
Property 'Online' cannot be found on this object; make sure it exists and is settable.
At line:27 char:17
+ $props. <<<< Online=$true
+ CategoryInfo : InvalidOperation: (Online:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Property 'LastBootedTime' cannot be found on this object; make sure it exists and is settable.
At line:29 char:20
+ $props. <<<< LastBootedTime=$os.ConvertToDateTime($os.Lastbootuptime)
+ CategoryInfo : InvalidOperation: (LastBootedTime:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Cannot find an overload for "op_Subtraction" and the argument count: "2".
At line:30 char:44
+ $props.Uptime=[DateTime]::Now - <<<< $props.LastBootedTime
+ CategoryInfo : NotSpecified: (:) [], MethodException
+ FullyQualifiedErrorId : MethodCountCouldNotFindBest
Property 'Days' cannot be found on this object; make sure it exists and is settable.
At line:31 char:20
+ $props. <<<< Days=$props.Uptime.days
+ CategoryInfo : InvalidOperation: (Days:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Property 'Hours' cannot be found on this object; make sure it exists and is settable.
At line:32 char:20
+ $props. <<<< Hours=$props.Uptime.hours
+ CategoryInfo : InvalidOperation: (Hours:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Property 'Minutes' cannot be found on this object; make sure it exists and is settable.
At line:33 char:20
+ $props. <<<< Minutes=$props.Uptime.minutes
+ CategoryInfo : InvalidOperation: (Minutes:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Property 'Manufacturer' cannot be found on this object; make sure it exists and is settable.
At line:34 char:20
+ $props. <<<< Manufacturer=$os.Manufacturer
+ CategoryInfo : InvalidOperation: (Manufacturer:String) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Get-WmiObject : Cannot validate argument on parameter 'ComputerName'. The argument is null or empty. Supply an argument that is not nul
l or empty and then try the command again.
At line:35 char:78
+ $props.OSLevel=(Get-WmiObject Win32_OperatingSystem -computerName <<<< $props.Server).Caption
+ CategoryInfo : InvalidData: (:) [Get-WmiObject], ParameterBindingValidationException
+ FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.PowerShell.Commands.GetWmiObjectCommand
New-Object : Cannot validate argument on parameter 'Property'. The argument is null or empty. Supply an argument that is not null or em
pty and then try the command again.
At line:38 char:38
+ new-object psobject -Property <<<< $props
+ CategoryInfo : InvalidData: (:) [New-Object], ParameterBindingValidationException
+ FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.PowerShell.Commands.NewObjectCommand

Similar Messages

  • Restricting the CSV Output

    Hi
    we want to restrict some of the columns in the csv output is there any way to do it other than using extext templates.
    Thanks in Advance,
    Have a Nice day

    Thanks for your reply .
    But i am having some idea will it can be implemented.
    as you said it will depend on the datamodel .
    Consider i am having 2 datasets in my datamodel for my report to get the pdf,html,excel.
    so i want to add one more data set in the same data model with llimited number of columns in the select query and i want to use that dataset in the datamodel in the report generation when i choose the csv ouput.
    Is it possible i am using bi publisher 11g.
    So if it is possbile i can restrict my output in csv format too.
    This is my idea i dont know whether it is possible or not.

  • How to add delimiters to the csv output sent to outlook?

    Hi, our application server 10.1.2 host oracle reports, we need to send the csv output of the oracle reports to the emails of clients, we can send in format = 'ascii' but delimiter such as double quote("), comma(,) can not be added.

    Hi Chaitanya,
    As we include key figure sets in column of report writer report. First you need to create required Key figure set for your table/structure using T-code GS01.
    Go to GR32; give Library name and your reportu2019s name, Click on u2018Columnu2019 button of application toolbar.
    You will get the list of column sets, to add new column sets click on + icon (Insert       row) displayed in same screen.
    Save the report.
    Generate related report group and execute it .
    Let me know if you need any more details.
    Regards,
    Dinesh Tiwari

  • PAYABLES NOT GETTING THE REPORT OUTPUT IN PDF AFTER APPLYING RUP5 R12

    Hi All,
    RDBMS:10.2.0.3.0
    Oracle Apps :12.0.4
    OS:AIX 5.3
    Problem Description:
    We are presently facing an issue in Payables not getting the report output in PDF esp for the reports "Invoice Register", Invoice Hold Report and also other reports. We were able to generate the reports till our last test performed on last Thursday. This instance was cloned over the last weekend and probably the new upgrade to RUP5 R12,would have impacted it.
    Concurrent Programs submitted are completed normal but on clicking "view output" results in Blank PDF output.
    The error message what was shown is as below:
    "Adobe Reader could not open 'AcrC.tmp' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)".
    Where could we locate ther above 'AcrC.tmp' of Adobe Reader..
    could anyone please share such an experience encountered for resolution..
    Would appreciate an early response..
    Thanks for your time!
    Regards,

    I suggest you speak to your DBA/sysadmin. This is not likely to be a reports problem.
    Check that you can see the output from apps through the viewer (the report may not hav output anything)
    Check whether you can print anything on that printer from apps.
    May also be worth checking to see if you can print to another printer from this report.

  • How to get the Query output to Excel

    Hi ,
    Can you tell me how to get the Query output to excel with out using any third party tool?
    Can you tell me how to write the code in Webservice and call it..
    Please explain it Elaboartly..
    Thanks in Advance!!!
    Mini

    whats your source system?
    you can use Live office, or query as a webservice if you are getting data from universe
    if you're getting data from SAP BI query and you have a java stack on your netweaver then you can get the data directly using sap bi connector in xcelsius.
    good luck

  • Need Help in Getting the below output

    Hi All,
    The below is the table data.
    col1     col2     col3     col4     col5     col6
    Aa     1     Con     100     10     -1
    Ba     2     Cam     50     2     33
    Aa     1     Con     200     20     -2
    Ca     3     val     2     5     -10
    Aa     1     Con     150     30     -3
    Ba     2     Cam     20     3     11
    Ca     3     val     3     5     -20
    Ba     2     Cam     30     5     22
    Ca     3     val     5     4     -30
    I need the output as below. Please help me in getting the output.
    col1     col2     col3     col4     col5     col6
    Aa     1     Con     100     10     -1
    Aa     1     Con     200     20     -2
    Aa     1     Con     150     30     -3
    Aa-Con Subtotal          450     60     -6
    Ba     2     Cam     20     3     11
    Ba     2     Cam     30     5     22
    Ba     2     Cam     50     2     33
    Ba-Cam Subtotal          100     10     66
    Ca     3     val     2     5     -10
    Ca     3     val     3     5     -20
    Ca     3     val     5     4     -30
    Ca-val Subtotal          10     14     -60
    I am using Oracle 10g. Let me know if other details required.
    Thanks in Advance.
    Regards,
    Ravi Kumar Ankarapu.

    You can try using ROLLUP and GROUPING SETS like how some of the other forum members have suggested. Another way of getting the desired output would be :
    with t as
    select 'Aa' col1, 1 col2, 'Con' col3, 100 col4, 10 col5, -1 col6 from dual
    union all
    select 'Ba', 2, 'Cam', 50, 2, 33 from dual
    union all
    select 'Aa', 1, 'Con', 200, 20, -2 from dual
    union all
    select 'Ca', 3, 'val', 2, 5, -10 from dual
    union all
    select 'Aa', 1, 'Con', 150, 30, -3 from dual
    union all
    select 'Ba', 2, 'Cam', 20, 3, 11 from dual
    union all
    select 'Ca', 3 ,'val', 3, 5, -20 from dual
    union all
    select 'Ba', 2, 'Cam', 30, 5, 22 from dual
    union all
    select 'Ca', 3, 'val', 5, 4, -30 from dual
    select * from
        select * from t
        union all
        select distinct * from
            select col1 || '-' || col3 || ' Sub-total' col1, null col2, null col3,
            sum(col4) over (partition by col1 order by col1) col4,
            sum(col5) over (partition by col1 order by col1) col5,
            sum(col6) over (partition by col1 order by col1) col6
            from t
    order by col1, col2, col3
    Output:
    "COL1"     "COL2"     "COL3"     "COL4"     "COL5"     "COL6"
    "Aa"     "1"     "Con"     "150"     "30"     "-3"
    "Aa"     "1"     "Con"     "100"     "10"     "-1"
    "Aa"     "1"     "Con"     "200"     "20"     "-2"
    "Aa-Con Sub-total"     ""     ""     "450"     "60"     "-6"
    "Ba"     "2"     "Cam"     "50"     "2"     "33"
    "Ba"     "2"     "Cam"     "20"     "3"     "11"
    "Ba"     "2"     "Cam"     "30"     "5"     "22"
    "Ba-Cam Sub-total"     ""     ""     "100"     "10"     "66"
    "Ca"     "3"     "val"     "5"     "4"     "-30"
    "Ca"     "3"     "val"     "2"     "5"     "-10"
    "Ca"     "3"     "val"     "3"     "5"     "-20"
    "Ca-val Sub-total"     ""     ""     "10"     "14"     "-60"

  • Is it possible to get the current output level??

    Is it possible to get the audio output level of a stream (in this case a mic input going through GSM compression to an RTP socket).
    I would like a couple of volume bars in my application so people can see how loudly they are talking.
    If anyone has any ideas on how to achieve this it would be much appreciated!
    Thanks,
    Dex

    You want a volumeter, i am also interesting in it

  • VISA: How to get the CSV file through C/C++ code?

    How to get the CSV file through C/C++ code?
    I'm communicating with a USB oscilloscope using VISA.

    Thank you for your reply.
    I am using Apache Commons File Upload. Here is the code where I got the "fi".
         DiskFileUpload fu = new DiskFileUpload();
              fu.setSizeMax(1000000000);
              List fileItems = fu.parseRequest(request);
             Iterator itr = fileItems.iterator();
              FileItem fi = (FileItem)itr.next();
              if(!fi.isFormField())
                File tempFileRef  = new File(fi.getName());
         System.out.println("Field = "+tempFileRef.getAbsolutePath());
         }

  • Get the exact output that i was designed in report builder

    Hi,
    i have a report. In that report i made a gap between last field(amount,currency..) and the signature. pls look below link.
    http://imageshack.us/photo/my-images/217/unled2ve.png/
    i run the report. im getting the output that the space got decreased between last field(amount,currency..) and the signature. pls refer below link.
    http://imageshack.us/photo/my-images/40/unled1de.png/
    How do i get the exact output that i was designed in report builder.?
    My report builder version is 10.1.2.0.2
    Skud.

    This is the Forum you want Reports
    Edited by: spilgrim on May 18, 2011 8:37 AM

  • Help require to get the XML output to design template- JDE

    Hi Friends,
    I am asking this question from JDE perspective.I want to design XMLP Template for R40572 Check Printing.
    When I upload an blank template and after attaching RD, When ever I initiate a check from P04572 Application.RThe Write Row exit will lead to check printing which in turn will call a batch R04571 and this batch will call R04572(Which I require the XML output) since it is the second report and we cant direct it to local server I am not able to get the XML output..
    Another think is since its running in server i think its not taking the RD modification we done in loacl because it always fires PDF .

    Hi,
    I assume you're Using XMPOSA for generating the files locally. What I suggest is, you set the application to run with the report definition by default. That way, even when it is called, it will be called along with the report definition. You can take the resultant XML file from P95630
    hope this helps,
    -Domnic

  • How to get the CSV,DATA output from RTF template

    Hi Jorge
    Thanks for your help.
    as in the link you have given RTF template can have the output type CSV,DATA but in the preview i can see only html,powerpoint,pdf,html excel .
    How to see the output in SCV,DATA format using my RTF template do i need to do specific design for those outputs.
    Thnaks in Advance

    It is because it has been preconfigured with such outputs.
    To modify and add more output types simply go to:
    1. Edit your Report
    2. Click on "View a List" (upper right hand corner)
    3. Click on the "output formats" (corresponding to your layout) and
    4. Check (add) the additional output formats you want your report to have.
    cheers
    Jorge

  • Not getting the complete output in the crontab script

    Hi All,
    I am running a script to find the CPU and memory utilization of the Oracle 10g server. Script name is atul.sh. When i run this script then it gives the desired output as mentioned below:
    bash-3.00$ cat ./SCRIPTS/atul.sh
    *A=`date| cut -d" " -f1-9; top -d 1| awk '/^CPU states/ {print $3,$5,$7,$9} /^Mem/ {print $2,$3,$4,$5,$6,$7,$8,$9,$10}'*
    echo $A
    bash-3.00$
    bash-3.00$ ./SCRIPTS/atul.sh >> /oracle/SCRIPTS/toplog
    bash-3.00$ cat /oracle/SCRIPTS/toplog
    Thu Sep 8 11:43:49 IST 2011 99.5% 0.0% 0.5% 0.0% 2048M phys mem, 77M free mem, 8193M total swap,
    bash-3.00$
    However, when i run this script through crontab, it gives incomplete output. It only display the date and not the cpu and memory utilization.:
    bash-3.00$ crontab -l
    * * * * * /oracle/SCRIPTS/atul.sh >> /oracle/SCRIPTS/toplog
    bash-3.00$
    bash-3.00$ cat /oracle/SCRIPTS/toplog
    Thu Sep 8 11:43:49 IST 2011 99.5% 0.0% 0.5% 0.0% 2048M phys mem, 77M free mem, 8193M total swap,
    Thu Sep 8 11:44:00 IST 2011
    Thu Sep 8 11:45:00 IST 2011
    bash-3.00$
    Kindly, provide me the soluton.
    Edited by: 883925 on Sep 7, 2011 11:24 PM
    Edited by: 883925 on Sep 7, 2011 11:29 PM

    Thanks everyone for the reply.
    *@DUDE*
    Still problem is not solved. I have used the command given by you but problem is same..*its displaying only date when scheduled from crontab*.
    bash-3.00$ crontab -l
    * * * * * /oracle/SCRIPTS/sm >> /oracle/SCRIPTS/memorylog.csv
    * * * * * /oracle/SCRIPTS/sc >> /oracle/SCRIPTS/cpulog.csv
    * * * * * /oracle/SCRIPTS/atul.sh >> /oracle/SCRIPTS/toplog.csv
    bash-3.00$
    bash-3.00$ cat atul.sh
    *A=`date| cut -d" " -f1-9; top -d 1 -n 1 | awk '/^Cpu/ {print $3,$5,$7,$9} /^Mem/ {print $2,$3,$4,$5,$6,$7,$8,$9,$10}'`*
    echo $A
    bash-3.00$
    bash-3.00$ cat toplog.csv
    Fri Sep 9 10:06:00 IST 2011
    Fri Sep 9 10:07:00 IST 2011
    Fri Sep 9 10:08:00 IST 2011
    bash-3.00$
    However, expected output is that it should display the CPU and memory utilization along with the date.
    bash-3.00$ ./atul.sh
    Fri Sep 9 10:08:52 IST 2011 2048M phys mem, 33M free mem, 8193M total swap,
    bash-3.00$
    Edited by: 883925 on Sep 8, 2011 9:43 PM

  • Using analytic function to get the right output.

    Dear all;
    I have the following sample date below
    create table temp_one
           id number(30),  
          placeid varchar2(400),
          issuedate  date,
          person varchar2(400),
          failures number(30),
          primary key(id)
    insert into temp_one values (1, 'NY', to_date('03/04/2011', 'MM/DD/YYYY'), 'John', 3);
    insert into temp_one values (2, 'NY', to_date('03/03/2011', 'MM/DD/YYYY'), 'Adam', 7);
    insert into temp_one values (3, 'Mexico', to_date('03/04/2011', 'MM/DD/YYYY'), 'Wendy', 3);
    insert into temp_one values (4, 'Mexico', to_date('03/14/2011', 'MM/DD/YYYY'), 'Gerry', 3);
    insert into temp_one values (5, 'Mexico', to_date('03/15/2011', 'MM/DD/YYYY'), 'Zick', 9);
    insert into temp_one values (6, 'London', to_date('03/16/2011', 'MM/DD/YYYY'), 'Mike', 8);this is output I desire
    placeid       issueperiod                               failures
    NY              02/28/2011 - 03/06/2011          10
    Mexico       02/28/2011 - 03/06/2011           3
    Mexico        03/14/2011 - 03/20/2011          12
    London        03/14/2011 - 03/20/2011          8All help is appreciated. I will post my query as soon as I am able to think of a good logic for this...

    hI,
    user13328581 wrote:
    ... Kindly note, I am still learning how to use analytic functions.That doesn't matter; analytic functions won't help in this problem. The aggregate SUM function is all you need.
    But what do you need to GROUP BY? What is each row of the result set going to represent? A placeid? Yes, each row will represent only one placedid, but it's going to be divided further. You want a separate row of output for every placeid and week, so you'll want to GROUP BY placeid and week. You don't want to GROUP BY the raw issuedate; that would put March 3 and March 4 into separate groups. And you don't want to GROUP BY failures; that would mean a row with 3 failures could never be in the same group as a row with 9 failures.
    This gets the output you posted from the sample data you posted:
    SELECT       placeid
    ,             TO_CHAR ( TRUNC (issuedate, 'IW')
                  , 'MM/DD/YYYY'
                ) || ' - '|| TO_CHAR ( TRUNC (issuedate, 'IW') + 6
                                             , 'MM/DD/YYY'
                               )     AS issueperiod
    ,       SUM (failures)                  AS sumfailures
    FROM        temp_one
    GROUP BY  placeid
    ,            TRUNC (issuedate, 'IW')
    ;You could use a sub-query to compute TRUNC (issuedate, 'IW') once. The code would be about as complicated, efficiency probably won't improve noticeably, and the the results would be the same.

  • How to get the given output format..

    Hi,I want to write a code in ABAP in such a way that I should get the output in the right side format.
    Ex:
    1200 - > 1,200
    12000  - > 12,000
    120000 ->  120,000
    1200000 -> 1,200,000
    12000000 -> 12,000,000
    120000000 - > 120,000,000
    Thanks.

    HI tushar,
    1. I don't know whether i understood u r question !
    2. FOr writing with COMMA,
      if we use simple WRITE,
      then it will show just as u want !
    regards,
    amit m.

  • Where do I apply this CSS file in the login page to get the required output

    Hi,
    I am an apex beginner. I got this html text from a 'Google Blank Search' for beautifying the login page. I have no idea where to copy and paste this CSS file in the 'login' edit page. If I open 'Edit Page template option, I can see page 'Definition' , 'Header' and 'Footer' and so many codes. In which part of these areas I Should copy this script to get the output.
    Thanks in advance...
    Please find the script below.
    html, body {
         font:normal 12px verdana;
         padding:0;
         border:0 none;
         overflow:hidden;
         height:100%;
         body {
         padding: 0px;
         background-image:url(&LOGIN_BACKGROUND_IMAGE.);
         background-repeat:repeat;
         background-position:center;
         background-attachment: fixed;
         text-align:center;
         margin:0 auto;
         vertical-align:middle;
         #Messages {
         width:345px;
         margin-left:-180px;
         position:absolute;
         top:50%;
         left:50%;
         margin-top:-35px;
         #BoxBody {
         width:345px;
         margin-left:-170px;
         position:absolute;
         top:50%;
         left:50%;
         margin-top:30px;
    Edited by: user13561710 on Jan 9, 2011 5:32 PM
    Edited by: user13561710 on Jan 9, 2011 5:33 PM
    Edited by: user13561710 on Jan 9, 2011 5:37 PM

    Hi,
    Edit the page and add the styles into the HTML Header setting. Also ensure that the styles are enclosed within STYLE tags:
    &lt;style type="text/css"&gt;
    html, body {
    margin-top:30px;
    &lt;/style&gt;Andy

Maybe you are looking for

  • Vendor Classification Issue very urgent

    Hi Guys     I have to show the report with Geo Characteristics in my Vendor Master . When I see the attributes I can see 0POSTCD_GIS . Which is Geo relavant. I have also 0LONGITUDE and  0LATITUDE etc....Now when Load Master Data for vendor I found no

  • How to run a script from Oracle Form (Beside using HOST command)

    I would like to run a script from Forms 6.0. I know that we can actually issue this command : host('plus80.exe' username/password@connect_string @c:\scriptname); BUT, is there any other alternative ?

  • IDEAS for NEW Iphone like Built-in IR

    I think there should be an topic about what people really want on the next model. I personally would like it if i could use it to turn aircon, tv... on and of. Also Flash support would be nice. What do you guys want

  • ME49 enhancement (vendor name will always appear)

    Hi gurus, In ME49 Price Comparison List, I can get price comparisons by either inputting 1)Quotation Numbers or 2)Collective RFQ Inputting only quotation numbers will display the price comparison output WITH vendor names ONLY. Inputting only collecti

  • Logs in immediately, but shows no one online, then gets all hectic...HELP

    OK... So, ill click iChat, then immediately it logs on...but shows no one online. then after like 5 or so minutes it goes crazy logging on a bunch of times, then ill get this message, "you have attempted to log in to often in a short amount of time.