Center image and table in Standard Report

Team,
I am having an image and a table to be printed. I use the Standard Report format. Customer's requirement is to make the table columns to be of different widths, center the table and make the image to be of the same size as the table. I have achieved different column widths by customizing the Report Generation VIs. For the next items - centering the table & choosing the image size, I have considered A4 as paper size and set the left and right margins & set the image size accordingly. Now the problem is the customer prefers not to limit the paper size to A4. So is there a way to set the center-alignment to the image & table (instead of me setting the suitable margins to make it appear centered)? There is an alignment control in Append Image to Report VI, but this is not used by the Standard Report. Is there a workaround for this and the table? Any help is greatly appreciated.
P.S.: HTML report is not an option, since I need the ability to choose a printer and print to it from our software. HTML reports, by default, prints to the printer configured in the default browser, using the margins configured in the browser.
Thanks,
Priyadarsini S

Hi Kamlesh,
the variation is set to 'do not explode' in the report 1SLK-001 (S_ALR_87013614)
You can check this  using the following path in transaction GRR3 (library 1VK) report 1SLK-001:
Menu: Edit -> Variation, you will see that the variation is set to 'Do not explode'.
This is why navigation between the different reports or variation is not
available in this report, (the icons are greyed out).
Iif you wish to have this functionality, then you can copy the report and change
the variation as follows:
-> via GRR1 create a copy of the standard report using report 1SLK-001 as
    a reference, ('Copy from'-field).
->  in this new report you can then via Edit->Variation change 'Cost Element
     from 'Do not explode' to 'explode', and CO area from 'Do not explode'
     to 'Variation sing. val'."
Regards,
Greta

Similar Messages

  • Wrong record for PSA in Education and Training (SAP Standard) report

    Hello All,
    Assuming I have 2 records for a particular Personnel number in Infotype 0001,
    1) First record
    Personnel Nubmer: 10000000
    End Date: 05/30/2004 
    Start Date: 12/31/2004
    Personnel subarea: A
    2) Second record
    Personnel Nubmer: 10000000
    End Date: 01/01/2005 
    Start Date: 12/31/9999
    Personnel subarea: B
    When I executed the Education and Training (SAP Standard) report, I then selected the PSA-"B" and the other period which is From: 01/01/2005 to 12/31/999. The result is that it still displays the first record which is already delimited.
    How come this happen?
    Thanks!
    - Annalyn

    Hi,
    Check PAR1 and PAR2,
    Can you seen two records for that emp.
    And aslo check IT 0001, 0041 overview from pa30 and if you see the two dates delete the incorrect date and checkthe report.
    Vibin

  • HT202879 Since opening an existing Pages doc, all the previously centred images and tables are now too far to the rights - leaving a large blank space to the left of each page. Any ideas reducing?

    Since opening an existing Pages doc, all the previously centred images and tables are now too far to the rights - leaving a large blank space to the left of each page. Any ideas re fixing this?  Problem remains even when I open an earlier version on the previous version of Pages

    It has always been that the upgrade tries to be the "master" over the older version.
    Anyway in Pages 09 you have probably the Comments field showing, making all contetn to move to the right.
    Go to View menu > Hide Comments.

  • 2 tables in standard report

    how do I insert two tables of different dimensions side by side in standard report..........
    I am using Labview 2011
    please help.............
    thank you in advance...............

    You don't say what you mean by a "Standard Report".  If you want to use the Report Generator to make an Excel file with two tables, look up a post I made here in January called Revised "Generate Excel Report" Example.  Note that the quotes actually are part of the title -- if you use the Search feature, you should see this pop up when you type the word Revised and then type a space.
    If this is not what you are looking for, give us further details.
    Bob Schor

  • Dynamic value in TVARVC table for standard report

    Hello,
    I am trying to archive objects like FI_DOCUMNT. For this purpose I want to create dynamic variant for the date. ( Date not in complete format) yyyy/mm.
    So, I created an entrie in TVARVC table, and I linked it with the attribute of my variant by choosing "T" option.
    My question is, how Can I fill the dynamic value for TVARVC entry?, knowing that it a standard report that is responsible for archiving.
    Cordialy,

    Hi Merou,
    this might help:
    Create Variant for dynamic population of current date
    Check the reponses about saving dynamic variants with column "L" and follow the rest of the instructions.
    Best,
    Sander    

  • How to use different parameters for two tables(chart and Table) in one report in SSRS?

    Hi,
    Here is my requirement, i have 7 parameters in my report(Site,Account,LOB,year,Month,WeekDay and Date_Filter),
    and in my report i have one table and one Chart,
    my requirement is the table in the report has to show the data for 6 parameters only i.e(Site,Account,LOB,year,Month and WeekDay).so the table has to consider only 6 parameters, and it has ignore the 7th parameter, table should not consider Date_Filter parameter.
    And Chart has to consider all 7 parameters.
    so, when we preview the report table has to show the data for only 6 parameters and chart has to show the data for all 7 parameters.
    if there is a way to get this Please reply me ASAP, it is an urgent requirement.
    Thanks in Advance,
    Naveen

    Hi Naveen,
    Refer below link to create multiple datasets as suggested by Gnanadurai
    http://technet.microsoft.com/en-us/library/ff714047(v=sql.105).aspx
    Thanks
    Swapna

  • Displaying BLOB images from table in a report

    I am trying to upload images to a table, display them in a report afterwards. I have succeeded in the first part, but not in the second.<br>
    <br>
    I can display images in a report if they are in located in wwv_flow_file_objects$ where they are automatically put after 'File browse... + Submit'. <br>
    But, if I move (insert into table + delete from ..object$) I cant display it in a report correctly. I saw the HOWTO document (the code was from there), but for some reason, it doesn't work.<br>
    <br>
    What am I doing wrong? How should I correct the column link or the procedure?<br>
    <br>
    REPORT SQL:<br>
    <br>
    id,<br>
    name,<br>
    filename,<br>
    img src="display?p_photo_id=' || nvl(id,0) || '" height="50" width="50"'<br>
    --wwv_flow_file_objects$ display<br>
    --img src="p?n=' || nvl(id,0) || '" height="50" width="50" ' img,<br>
    BLOB_CONTENT,<br>
    MIME_TYPE<br>
    from images;<br>
    PROCEDURE 'display':<br>
    create or replace procedure display (p_photo_id in number)<br>
    as<br>
    l_mime varchar2(255);<br>
    l_length number;<br>
    l_file_name varchar2(2000);<br>
    lob_loc BLOB;<br>
    begin<br>
    select mime_type, blob_content, name, dbms_lob.getlength(blob_content)<br>
    into l_mime, lob_loc, l_file_name, l_length<br>
    from images where id = p_photo_id;<br>
    owa_util.mime_header(nvl(l_mime,'application/octet'), FALSE );<br>
    htp.p('Content-length: ' || l_length);<br>
    htp.p('Content-Disposition: filename="' || l_file_name || '"');<br>
    owa_util.http_header_close;<br>
    wpg_docload.download_file( Lob_loc );<br>
    end;<br>
    <br>
    Many thanks!<br>

    Alayan - If you're using XE, that shoud be the first thing you tell us. There is a separate forum for that product.
    But as long as you're here, a couple points: you reference the "display" procedure in the img tag without qualifying it with an owner. How is the Embeded PL/SQL Gateway supposed to know what "display" is (unless you created a public synonym)? Next, in XE you need to explicitly enable access to procedures that are invoked this way. See the XE forum for discussion about that technique and read the doc here: http://download-uk.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25309/adm_wrkspc.htm#BEJCGJFJ.
    Scott

  • Images and Tables jump around in text

    I have a document with text and images. The image arrange settings are set to: Move withText - Above and Below.
    But it doesn't seem to work correctly as you can see here:
    How is this even possible? Clearly the image should be where the blue handle is, right? Is anything wrong with my settings?
    I hope someone can help me. I really want to use Pages with iCloud.
    Thanks!
    Seb

    DW is not a WYSIWYG app.  At best, Design view is a rough approximation of what you can expect to see in some older browsers.   Live View is slightly better because it's based on a webkit browser engine.  But even that has certain limitations.
    Previewing in all major browsers often during development is the only way to know if your design is holding up.
    When things go wrong, validate code and fix reported errors.  98% of browser rendering issues are code related.
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    Nancy O.

  • Image and table size help

    Hey all:
    I'm obviously new to Dreamweaver MX, and I've been having
    quite a problem with my banner at the top of my site. Using
    photoshop, I made a banner and tried to put it at the top of my
    site. However, when I inserted the image, the image doesn't fit and
    leaves a white space around the image...it doesn't fit into the
    table. So what I had to do is make the background color in that
    specific cell black so it looks like the entire banner fit into the
    table. But I want to change the banner so it's a better designed
    image, but I know that no matter what I do, the image will not fit
    the cell perfectly. How can I do this?
    The site is: www.tudortastic.com
    Thanks!
    -H

    A table cell will expand to exactly contain an inserted image
    assuming
    the table's cellpadding and cellspacing are both set to zero
    and you
    have not specified an oversized height or width.
    "HappyHelen" <[email protected]> wrote in
    message
    news:eksu5e$4n6$[email protected]..
    > Hey all:
    >
    > I'm obviously new to Dreamweaver MX, and I've been
    having quite a problem
    > with
    > my banner at the top of my site. Using photoshop, I made
    a banner and
    > tried
    > to put it at the top of my site. However, when I
    inserted the image, the
    > image
    > doesn't fit and leaves a white space around the
    image...it doesn't fit
    > into the
    > table. So what I had to do is make the background color
    in that specific
    > cell
    > black so it looks like the entire banner fit into the
    table. But I want
    > to
    > change the banner so it's a better designed image, but I
    know that no
    > matter
    > what I do, the image will not fit the cell perfectly.
    How can I do this?
    >
    > Thanks!
    > -H
    >

  • Please help... overlaying images and tables

    Hello.. i'm relatively new to Dreamweaver so excuse me if
    this is a "duh" question.
    Ok.. so i am redesigning my website, before i used Microsoft
    Word. So trying to learn Dreamweaver and its tables and everything
    has been very confusing, however i am coming along. So here is my
    problem.. i have a Nav bar going down the left side of my page, and
    in my old website i used an image for the border... the image would
    go behind and i would place the buttons on top of the image..
    It doesn't look like things work that easily in dreamweaver,
    so i was hoping someone could point me in the right direction.
    Here is a screenshot of my workspace--
    http://www.danwayfilms.com/help.JPG
    Here is the look i want to achieve.. www.danwayfilms.com ...
    as you can see, the images jumping around is 1 reason why i
    switched to dreamweaver...
    thanks.. please reply ASAP!!
    Dan

    Here's an opening salvo. If your previous experience with web
    pages was
    with Microsoft Word, then you essentially have NO experience
    with web pages.
    That being the case, you face a LONG and tedious uphill climb
    with DW.
    Without knowing anything about HTML and CSS, you will
    transition from one
    mysterious problem to another, all the while thinking with a
    "click and
    drag" mindset, and most likely eventually give up in
    frustration.
    The truth is that working with HTML is definitely NOT like
    working with
    Microsoft Word. The sooner you learn that, the better off you
    will be.
    Please do yourself a favor and take a week or two to just
    read about HTML -
    so you'll know some of the language. You can start at
    http://www.w3schools.com with
    their excellent tutorials.
    Also, images of pages do no good. To get definitive help, we
    need to see
    the code on the page, since it's always the code that
    determined how the
    page will look in any browser....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Fxmaker" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello.. i'm relatively new to Dreamweaver so excuse me
    if this is a "duh"
    > question.
    >
    > Ok.. so i am redesigning my website, before i used
    Microsoft Word. So
    > trying
    > to learn Dreamweaver and its tables and everything has
    been very
    > confusing,
    > however i am coming along. So here is my problem.. i
    have a Nav bar going
    > down
    > the left side of my page, and in my old website i used
    an image for the
    > border... the image would go behind and i would place
    the buttons on top
    > of the
    > image..
    > It doesn't look like things work that easily in
    dreamweaver, so i was
    > hoping
    > someone could point me in the right direction.
    >
    > Here is a screenshot of my workspace--
    >
    http://www.danwayfilms.com/help.JPG
    >
    > Here is the look i want to achieve.. www.danwayfilms.com
    ... as you can
    > see,
    > the images jumping around is 1 reason why i switched to
    dreamweaver...
    >
    > thanks.. please reply ASAP!!
    >
    > Dan
    >

  • How to disable resizing images and tables in designMode?

    In own wysiwyg editor this function must be disabled. How make it disabled?

    A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.<br>
    You need to register at the MozillaZine forum site in order to post at that forum.

  • Execute an standard report and sending by email

    Hi
    I've used this FM SO_NEW_DOCUMENT_ATT_SEND_API1 for sending email, but I can't use it for executing and sending an standard report (MB5B) by email, how can I do?.
    Thanks in advance
    Tokio

    You can use
    SUBMIT submitable TO SAP-SPOOL
                        SPOOL PARAMETERS print_parameters
                        WITHOUT SPOOL DYNPRO
                                            AND RETURN.
    Here submitable is the name of the program for MB5B transaction.
    This will create an entry in table TSP01.
    u can read the entry and use the FM for sending email.
    Edited by: vijetasap on Oct 26, 2009 2:20 PM

  • Subheading in standard report

    how do I make subheading in a table in standard report in labview............
    please help me............

    If you want help, you should start by showing what you've tried.  Each of your threads are the same.  "Do this for me.......... Please I need it."
    People here are much more likely to help if you're willing to show you're making an effort.  Let's see what you have so far.

  • Standard report which importe personnel number from  one server to other

    Dear Hcm Gurus.
    Is any standard report exist in SAP Which imports Personnel number from one server to other server which are maintained in Source server ,imported all contents maintained in source server.
    e.g  An employee is hired in  u201C Server Au201D and personnel number  is generated internally while we want to imports same employee data with same personnel number in Server u201CBu201D
    IS it possible ? if is kindly do help and clarify any standard report which import complete data from one server   to other server with all its infotypes.
    barket

    Hi,
    a standard way should be setting up an ALE scenario between the two systems to transfer employee data and keep them updated. This needs a bit more set up than a single report to be run but it is a common way to create HR landscapes where different local HR systems consolidate data to a centralized system.
    The other options are valid, too. But I know them more for transfering data for test or validation reasons.
    If you could add some more information to the business background of your requirement we could add give a better suggestion which solution to head for.
    Kind Regards
    Roman

  • Standard report center text in table

    Hello,
    I am new to LabVIEW 2011 running Windows 7. 
    I am trying to run and print standard report in LabVIEW but I couldn't figure out how to make text or data to center in the table.
    See pic below.
    Please help.
    Thank you so much in advance.
    Marlin12

    Certainly,
    Please see the attachments.
    marlin12
    Attachments:
    front.GIF ‏37 KB
    back.GIF ‏27 KB

Maybe you are looking for