Pdf & Excel for printing af:table data's

Hi,
Good afternoon. :)
Using jdev 11.1.1..50-adfbc.
Say Vo:
Select * from employee where empid=:piddrag and drop execute as params in jsff page.
In Jsff page(dynmaic region)
Employee Id(inputtext box):  101       //entering the data
ExecuteParams                                 // hitting the button
af:table                                           //results came in af:table
employeeid  | employeename |employee salary
  101               Jack                   20000ok. all are working fine.
My requirement is: button named with pdf and another button named excel
while hit pdf button means the particular records write into pdf and should opened the written pdf show to enduser.
as well for excel.
how can i do this?
Edited by: ADF7 on Mar 12, 2012 3:25 AM

I think,
as like export to excel ,there is no such for generating pdf in adf.
if we(here 'we means ' adf7 need pdf only) . you(john,timo) both suggesting me go with some third party tools is it so?
jasper-reports
itext
Apache-Fop

Similar Messages

  • Problem in printing internal table data in Sapscript!

    Hi All,
    Am trying to print internal table data into main window of sapscript.
    This is what I have written.
    loop at it_final INTO wa_final.
                  CALL FUNCTION 'WRITE_FORM'
                   EXPORTING
                     window   = 'MAIN'
                     ELEMENT  = '670'
                     TYPE     = 'BODY'
                     FUNCTION = 'APPEND'
                   EXCEPTIONS
                     window  = 1
                     element = 2.
                 IF sy-subrc <> 0.
                 ENDIF.
    ENDLOOP.
    IN Sapscript :
    /E   670
    IT     &wa_final-vbeln&,,&wa_final-vbelv&,,&wa_final-payment&
    =      &wa_final-rundate&,,&wa_final-waers&,,&wa_final-creditcard&
    =      &wa_final-augru&,,&wa_final-dmbtr&
    Pls let me know if am missing anything.
    Thanks & Regards
    Himayat

    Check if your Programm is called at the Sapscript level.
    Are you calling the programm from the Sapscript using the PERFORM command? or are these Programm and Sapscript set in customizing?
    Using SE16 check the Message Type and see if Sapscript and the programm are connected at all.

  • Is there a way to reduce the size of a final PDF created for print when saving a file?

    Is there a way to reduce the size of a final PDF created for print when saving in any software (especially illustrator)? I don't want any quality to decrease at the same time. Thanks!

    Personally I would avoid optimizing the PDF's via Adobe Acrobat Pro unless you understand what you are removing from the PDF; having said that, it is the most effective way to reduce the file-size in the right hands.
    If I am sending out layouts for commercial print I change my default Print / Export setting from Standard to PDF/A-1b:2005 (CMYK). This will resolve a lot of common print problems for print-ready documents and it should embed your fonts and flatten transparencies etc.
    If your document is still too large you run an Audit Space Usage using Adobe Acrobat Pro. In the left pane enable 'Content' and then hit the button in the top left corner of the Content Pane and choose Audit Space Usage.

  • How do I save a PDF ready for print. I have a problem with the fonts. The fonts are blurry after pri

    How do I save a PDF ready for print. I have a problem with the fonts. The fonts are blurry after printing. There is a trick in saving PDF.

    Hi el_giclee,
    Important to note from the beginning is that when you create your Photoshop document make sure you chose 300 Pixels/inch as your resolution.
    I'm interested in seeing your Save Adobe PDF dialog box after you choose to save the PDF.
    Could you post a screenshot of this dialog box with the Compression menu selected on the left side?
    It's a good idea to select High Quality Print or Press Quality in the Adobe PDF Preset menu at the top of this box. It will automatically select the best default settings for a printed piece.
    Michael

  • Exporting PDF locked for printing is printable

    When my client drops a PDF (locked-for-printing and locked-for-copy-content) in Windows 7 on Firefox, it is printable.
    What can I do to prevent printing?

    Note the warning when setting security in Acrobat.
    In this case, the "third-party product" is FireFox. The FireFox developers are debating whether they are any obligation to pay attention to what you want.

  • Joint pdf signed for printing

    i want to joint pdf signed for printing or to have a mutiple printing, is-ti possible?
    Thanks
    Acrobat 10

    The question is, have I set up the PDF correctly?
    If you want all color converted to AdobeRGB.
    Composite printer's often expect RGB, but they usually provide RGB output profiles like this Epson output profile for glossy paper.

  • Procedure for creating transparent table, data element and domain

    Hi,
    Can anybody let me know the procedure for creating transparent table, data element and domain.
    Thanks,
    Mahathi

    Hi
    Database table and its components
    A database table is the central data structure of the ABAP/4 data dictionary.
    The structure of the objects of application development are mapped in tables on the underlying relational database.
    The attributes of these objects correspond to fields of the table.
    A table consists of columns (fields) and rows (entries). It has a name and different attributes, such as delivery class and maintenance authorization.
    A field has a unique name and attributes; for example it can be a key field.
    A table has one or more key fields, called the primary key.
    The values of these key fields uniquely identify a table entry.
    You must specify a reference table for fields containing a currency (data type CURR) or quantity (data type QUAN). It must contain a field (reference field) with the format for currency keys (data type CUKY) or the format for units (data type UNIT). The field is only assigned to the reference field at program runtime.
    The basic objects for defining data in the ABAP Dictionary are tables, data elements and domains. The domain is used for the technical definition of a table field (for example field type and length) and the data element is used for the semantic definition (for example short description).
    A domain describes the value range of a field. It is defined by its data type and length. The value range can be limited by specifying fixed values.
    A data element describes the meaning of a domain in a certain business context. It contains primarily the field help (F1 documentation) and the field labels in the screen.
    A field is not an independent object. It is table-dependent and can only be maintained within a table.
    You can enter the data type and number of places directly for a field. No data element is required in this case. Instead the data type and number of places is defined by specifying a direct type.
    The data type attributes of a data element can also be defined by specifying a built-in type, where the data type and number of places is entered directly.
    <b>Two Level Domain Example</b>
    A domain defines a field technically and therefore it may
    be used at different business levels.
    A data element describes the meaning of a domain in a certain business context.
    A domain, however, is used for the technical definition of a table field (for example field type and length).
    Therefore, although a take-off airport (data element S_FROMAIRP) would have a different business meaning from an airport where a plane lands (data element S_TOAIRP), they could still have the same domain(here S_AIRPID) because technically we could assign the same number of characters whether the airport is a take-off or a landing airport.
    <b>Definitions of Table in Database</b>
    In SAP R/3 tables are defined as
    A) Transparent tables: All of the fields of a dictionary table correspond to a field in the real database table.
    B) Pooled tables: Different tables which are not linked to each other with a common key are combined into a TABLE POOL. Several logical tables thus exist as a single real database table.
    C) Cluster tables: Several tables linked by a common key may sometimes be combined by the data dictionary and made to exist on the database schema as a single table.
    SAP is evolving R/3 tables in transparent tables.
    <b>Elaboration on each of the definitions</b>
    A transparent table is automatically created on the database when it is activated in the ABAP Dictionary. At this time the database-independent description of the table in the ABAP Dictionary is translated into the language of the database system used.
    The database table has the same name as the table in the ABAP Dictionary. The fields also have the same name in both the database and the ABAP Dictionary. The data types in the ABAP Dictionary are converted to the corresponding data types of the database system.
    The order of the fields in the ABAP Dictionary can differ from the order of the fields on the database. This permits you to insert new fields without having to convert the table. When a new field is added, the adjustment is made by changing the database catalog (ALTER TABLE). The new field is added to the database table, whatever the position of the new field in the ABAP Dictionary.
    Tables can also reside on the database as Pooled tables or cluster tables
    Pooled Tables: Different tables which are not linked to each other with a common key can be combined into a Table Pool. The tables contained within this pool are called Pooled Tables. A table pool is stored in the database a simple table. The table's data sets contain, in separate fields, the actual key for the data set to be stored, the name of the pooled table and the contents of the data set to be stored.
    Using this schema, several logical tables are combined into a single real database table. Although the data structure of each set is lost during the write to the table pool, it is restored during the read by the ABAP/4 Data Dictionary. The ABAP/4 Data Dictionary utilizes its meta-data to accomplish this.
    Since information must be prepared (defined) within the ABAP/4 Data Dictionary when it is read or written to (or accessed), this process itself defines these as not transparent tables
    Cluster Tables: Occasionally, several tables may be linked by a common key. The ABAP/4 Data Dictionary can also combine these tables into a single table. Each data set of the real table within the database contains a key and in a single data field, several data sets of the subsequent table for this key.
    As mentioned above, these table types require special data handling, therefore they are not transparent tables.
    <b>Technical Settings in Dictionary</b>
    The data class logically defines the physical area of the database (for ORACLE the table space) in which your table should be created. If you choose the data class correctly, the table will automatically be created in the appropriate area on the database when it is activated in the ABAP Dictionary.
    The most important data classes are master data, transaction data, organizational data and system data.
    Master data is data that is rarely modified. An example of master data is the data of an address file, for example the name, address and telephone number.
    Transaction data is data that is frequently modified. An example is the material stock of a warehouse, which can change after each purchase order.
    Organizational data is data that is defined during customizing when the system is installed and that is rarely modified thereafter. The country keys are an example.
    System data is data that the R/3 System itself needs. The program sources are an example.
    Further data classes, called customer data classes (USER, USER1), are provided for customers. These should be used for customer developments. Special storage areas must be allocated in the database.
    The size category describes the expected storage requirements for the table on the database.
    An initial extent is reserved when a table is created on the database. The size of the initial extent is identical for all size categories. If the table needs more space for data at a later time, extents are added. These additional extents have a fixed size that is determined by the size category specified in the ABAP Dictionary.
    You can choose a size category from 0 to 4. A fixed extent size, which depends on the database system used, is assigned to each category.
    Correctly assigning a size category therefore ensures that you do not create a large number of small extents. It also prevents storage space from being wasted when creating extents that are too large.
    Modifications to the entries of a table can be recorded and stored using logging.
    To activate logging, the corresponding field must be selected in the technical settings. Logging, however, only will take place if the R/3 System was started with a profile containing parameter 'rec/client'. Only selecting the flag in the ABAP Dictionary is not sufficient to trigger logging.
    Parameter 'rec/client' can have the following settings:
    rec/client = ALL All clients should be logged.
    rec/client = 000[...] Only the specified clients should be logged.
    rec/client = OFF Logging is not enabled on this system.
    The data modifications are logged independently of the update. The logs can be displayed with the Transaction Table History (SCU3).
    Logging creates a 'bottleneck' in the system:
    Additional write access for each modification to tables being logged.
    This can result in lock situations although the users are accessing different application tables!
    <b>Create transparent table</b>
    Go to transaction SE11. Enter name of table you want to create (beginning with Y or Z) and click on create pushbutton
    Enter the delivery class and the table maintenance criteria
    The delivery class controls the transport of table data when installing or upgrading, in a client copy and when transporting between customer systems .
    The display/maintenance indicator specifies whether it is possible to display/maintain a table/view using the maintenance tools Data Browser (transaction SE16) and table view maintenance (transactions SM30 and SM31).
    Enter the name of the table field and the data element. The
    System automatically populates the technical details for
    existing data elements.
    So far as possible it is advisable to use existing data elements which befit the business requirements.
    However, we may create data elements if need be. The same is shown in the next slide.
    To create a data element simply double click on it.
    Alternately create a data element by simply choosing the
    data type radio button on SE11 initial screen.
    <b>Create data element</b>
    The system prompts you to create a new data element.
    Choose the Yes pushbutton.
    Under the data type tab enter the domain name which
    determines the technical characteristics of the field.
    Further characteristics tab: Allows you to specify a search help assigned to the data element.
    It also allows you to specify a parameter id which helps you populate a field from SAP memory.
    Field label: Can be assigned as prefixed text to a screen field referring to the ABAP Dictionary. The text is displayed on the screen in the logon language of the user (if the text was translated into this language).
    <b>Create domain</b>
    If the domain does not exist in the data dictionary the
    system prompts you to create one.
    Give the technical characteristics under the definition
    tab. Value range allows you value restriction at domain
    level.
    Value range tab:
    As explained in the section Consistency through input checks one can restrict the possible values for a field at domain level itself by either entering fixed values or by specifying a value table under the tab Value range.
    <b>Currency/Quantity fields in a table</b>
    A currency or a quantity field must be assigned a reference field from a reference table containing applicable qty unit or currency unit.
    Field of the reference table, containing the applicable quantity unit or currency
    A field containing currency amounts (data type CURR) must be assigned a reference field including the currency key (data type CUKY).
    A field containing quantity specifications (data type QUAN) must be assigned a reference field including the associated quantity unit (data type UNIT).
    <b>Create transparent table continue</b>
    Maintain the technical settings of the table by clicking on the tab

  • PDF File from an internal table data

    I have an internal table ready for grid display of a report. But according to the new requirement, it shouldn't create a Spool request as it is affecting the performance of the system (because its a huge file with 3000+ pages).
    So, now we want to create a (non-editable) PDF File and store it in an application server.
    From the forum, i see that i have only one option, which is to Convert internal table data to OTF Format and then to PDF.
    Right now i am using  PRINT_TEXT to convert to OTF file and FM CONVERT_OTF for PDF file.
    The challenges i am facing right now is..
    1. After getting the OTF file from PRINT_TEXT, i couldn't get the correct PDF File. It shows random characters instead..
    2. My internal table has 103 columns. So how should i accommodate data from all these columns into a single row on a PDF?
    3. I couldn't create a table kind of view/display in PDF
    Please help/advice me on the above issue.
    Thanks,
    Sarada

    Hi,
    103 columns need to be seen in at least 7 pages or more. Cant display in just 1 page.
    I guess that better to create a smartforms and pass all the information from the table to the smartforms.
    There you can create multipages.
    Probably, that huge table need to separete it in 7 tables, so each page will get the information from one table...
    i will try to do sth like that.
    Regards
    Miguel

  • Packaging .AI file to PDF ready for printer - MAC Tiger user

    Hallo, I need some help please about sending artwork to printer who is using a FUJI colour Laser printer. (like most printers who are using laser here they reply to me to simply send them PDF, when I ask about embedded profiles or not to embed they tend to look at me blankly and say just send them a proof for me to compare colours)?!?!?!?
    So, Please could someone confirm wether or not I have applied the best setting in my PDF conversions: I am running CS3 creative suite and acrobat version 8.0. thanks.
    When you get the PDF options window on the " save Adobe pdf", On the first GENERAL page I set this to PDF/x-1a, (but why is there also the standard tab where I can do the same thing? so I set this also to PDF/x-1a. The compatibility goes to acrobat 4.0.
    I now go to OUTPUT. here I set the following:
    Colour conversion -- convert to destination preserve numbers
    Destination (since this is laser I set it to -- Generic cmyk profile
    Profile inclusion policy is grayed out.
    In PDF/X box under output intent profile name is set to Generic cmyk, and that is all.
    Before i did all this my global colour settings management policy is set to FOGRA27 (iso 12647-2:2004) and adobe RGB 1998 for the photos from photoshop cs3 of course. I then convert the document to the generic cmyk profile before packaging it into PDF and assigning these settings.
    I have searched everywhere for detailed tutorials about precisely how to pakage your work for an outside printer, but the web is silent when it comes to laser printing. I would love to know if there are any resources which cover all the issues of preparing your artwork for print since this side of the job is a minefield of complicated presets and flattening and font changing techniques.
    I am a memeber of Lynda.com and while they are excellent teachings and professional, I have unfortunately not been able to learn the gritty detailsof printing from them, only the basics.
    I appreciate the person who takes the time to reply to this.
    I thank you.
    Kind regards
    Chris Watts

    Your settings should do the job adequately, but there is a much simpler and more reliable method. Get Acrobat Professional. Generate your artwork in AI and save it as an .eps file. Then use Acrobat Distiller to generate the .pdf file. The advantages are that AD produces MUCH smaller file sizes, much better .pdf files and has a number of presets from which to choose, depending on the intended purpose of the file.
    Another hint as far as quality control is concerned - you should be working in the CMYK color space in Photoshop, if you are going to produce CMYK images in the .pdf file. CMYK is a narrower color space than RGB, so there is often a color shift upon conversion. You may have the image exactly the way you want it, as an RGB, but be disappointed in the printed version because of the shift in color during conversion. If you work in CMYK, you can adjust it to get the results you want.

  • Printing internal table data

    Hi all,
    I want to print an internal table data without displaying it via ALV. That is when clicked on a button, printing should be started.
    How can I do that?
    Thanks a lot.
    Deniz.

    Hi,
       Check the following code this is exactly what you need I guess....
    FM to generate spool number for the internal table wt_final_prnt.
    CALL FUNCTION 'RSPO_SX_OUTPUT_TEXTDATA'
            EXPORTING
              name        = gv_name
              dest        = gv_dest
              rows        = gv_rows
              startrow    = gv_startrow
              pages       = gv_pages
              rqtitle     = 'Z9CS - STD Search Results'
              rqcopies    = gv_rqcopies
              rqowner     = gv_rqowner
              immediately = gv_immediate
            IMPORTING
              rqid        = gv_rqid
            TABLES
              text_data   = wt_final_prnt
            EXCEPTIONS
              OTHERS      = 1.
          CLEAR : wa_final_prnt, wt_final_prnt[].
    FM to set the print attributes.
          CALL FUNCTION 'GET_PRINT_PARAMETERS'
            IMPORTING
              out_parameters         = wv_pripar
              out_archive_parameters = wv_arcpar
              valid                  = wv_val
            EXCEPTIONS
              archive_info_not_found = 1
              invalid_print_params   = 2
              invalid_archive_params = 3
              OTHERS                 = 4.
    FM to submit to the printer
          CALL FUNCTION 'RSPO_OUTPUT_SPOOL_REQUEST'
            EXPORTING
              spool_request_id = gv_rqid.
    Regards,
    Ram.

  • Printing of table data with a button

    I have an application that creates a table with data from a database. I would like to put a button at the top of the page that would allow the user to print the table in paginated format. Does anyone have any sample code or directions as to how I could accomplish this. As an FYI, I am new to JSP and Creator studio.

    Example code in the button is like this (I use oracle 10g, and call stored procedure to get the result set. In your case, maybe you just use simple view/table, give the connection to the jasper, and let the jasper query the table).
    public String printButton_action() {
            FacesContext myFaces = FacesContext.getCurrentInstance() ;
            ServletContext svContext = (ServletContext) myFaces.getExternalContext().getContext();
            HttpServletResponse response = (HttpServletResponse) myFaces.getExternalContext().getResponse();
            File reportFile = new File(svContext.getRealPath("/report.jasper"));
            if (reportFile.exists()) {
                ResultSet rs;
                Integer totrec;
                // prepare parameters, connection... etc.
                try{
                    java.sql.Date bdate = new java.sql.Date(begCalendar.getSelectedDate().getTime());
                    java.sql.Date edate = new java.sql.Date(endCalendar.getSelectedDate().getTime());
                    Connection con = getSessionBean1().getOracleconnection();
                    CallableStatement stmt = con.prepareCall("{call webcrpackage.TtcHarian(?,?,?,?)}");
                    stmt.setDate(1, bdate);
                    stmt.setDate(2, edate);
                    stmt.registerOutParameter(3, OracleTypes.NUMBER); //REF CURSOR
                    stmt.registerOutParameter(4, OracleTypes.CURSOR); //REF CURSOR
                    stmt.execute();
                    rs = (ResultSet) stmt.getObject(4);
                    totrec = Integer.valueOf(stmt.getBigDecimal(3).intValue());
                } catch(Exception e) {
                    error(e.getMessage());
                    return null;
                try {
                    JRResultSetDataSource dsource = new JRResultSetDataSource(rs) ;
                    // execute jasper
                    byte[] bytes = null ;
                    // prepare jasper parameter!!
                    Map parameters = new HashMap();
                    parameters.put("comname", getSessionBean1().getComname());
                    parameters.put("comdivision", getSessionBean1().getComdivision());
                    parameters.put("begdate", begCalendar.getSelectedDate());
                    parameters.put("enddate", endCalendar.getSelectedDate());
                    parameters.put("totalrecord", totrec);
                    bytes = JasperRunManager.runReportToPdf(reportFile.getPath(), parameters, dsource);
                    response.setContentType("application/pdf");
                    ServletOutputStream ouputStream = response.getOutputStream();
                    ouputStream.write(bytes, 0, bytes.length);
                    ouputStream.flush();
                    ouputStream.close();
                } catch (Exception ex) {
                    error(ex.getMessage());
                    return null;
            } else {
                error("Report file doesn't exist!");
            return null;
        }Long journey, search this forum on how to deploy jasper in jsc, etc..etc.
    Hope that helps.

  • Text not showing in PDF created for print

    After exporting an illustrator document I tred to make a high quality PDF for print but the text does not show in the PDF file.

    Impossible to know. You have not provided any info about your document, what font you used, what appearances on the text, what PDF settings, what system or even what version of AI plus how you review the document. From the font simply not being allowed to be embedded to specific appearances not rendering correctly to unsuitable PDF settings there could be anything at work here. You need to be much more specific.
    Mylenium

  • Creating PDF brochure for printing: Remove white margin

    Hi guys,
    I created a brochure in Idesign which has a black background color.
    In order to print the brochure I want to create a PDF (with the right order of pages, e.g. page 1 next to page 8, 2 next to 7 etc.) via the "print function".
    The page order is not a problem, but unfotunately I always get a white margin although there is no such in the original indesign document.
    (When using the normal "export function" of Indesign there is no white margin, but then I cannot create a PDF with the right page order for printing...)
    Has anyone an idea how to solve this?
    Thanks for your help in advance!
    Best,
    Chris

    In order to print with bleed you generally need to print onto a larger sheet and trim. I'm guessing you are trying to print this on a desktop printer of some sort, and unless specifically designed for "borderless" printing they always have a border along the edge that cannont be imaged.

  • How do I AUTOMATICALLY generate Transport request for a Z table data?

    Hello friends,
    I would like to automatically create/generate a transport request for a Z table every time I change, add or delete data in that table.
    Currently, every time I modify data in the Z table, I need to go and manually create a transport request and then indicate keys for the row(s) which were modified. I find this a tedious, time consuming, and error prone process.
    So I would like to automate this process. That is to say, the transport request is generated for the rows that I modified. The same way as is done when you change a program. It automatically prompts you for a transport request thingy.
    Any ideas?
    Your help is greatly appreciated.

    You need to make the table contents transportable by creating a "table maintenance generator" in SE11 under Utilities -> Table maintenance generator.
    In that screen for the section "Dialog data transport Details" the "Standard Recording Routine" option should be selected.
    Then only will the system ask for Transport request when entering data through the generated maintenance view in SM30.
    Also change the "delivery class' in the table attributes to 'C' - Customizing table

  • Creating PDF brochure for printing: Black color adjustment

    Hi guys,
    I created a brochure in Idesign which has a black background color and in addition also some pictures with black backgrounds.
    In order to print the brochure I want to create a PDF (with the right order of pages, e.g. page 1 next to page 8, 2 next to 7 etc.) via the "print function".
    The page order is not a problem, but the black background color is rather gray instead of black - so there is quite a difference between the black background color of the pictures and of the whole background.
    (When using the normal "export function" of Indesign I know how to solve the color problem, but then I cannot create a PDF with the right page order for printing...)
    Has anyone an idea how to solve this?
    Thanks for your help in advance!
    Best,
    Chris

    Your images all use some form of Rich Black for the background, and that prints using all 4 CMYK inks. Your 100%K background will almost always seem gray next to that because it is, in fact, lighter. This will be true even if you use a profile conversion to make it also a 4-color black.
    You can make your own rich black swatch and use it as the background (sample a few of the images to get some idea of a good mix), but in truth your images are still  probably not going to match all that well. Images tend to have color variations across the background, and your ID background is a flat color, so even a slight mismatch can cause the edges to be obvious. There can also be differences in color on some printers caused by differences in the way raster and vector content are processesd.
    I prefer to embrace that, or at least admit it is going to happen, and either use a completely different color for the background so the mismatch always shows, and looks deliberate rather than like a mismatch, or I add a stroke to the image frames, often paper, to break the continuity and disguise the mismatch.
    As far as imposing the file and exporting, there are a number of free scripts, and an actual plugin, IDimposer which is also currently free, that can impose your file for you before you export. You can learn more about the plugin at Overview | IDImposer

Maybe you are looking for

  • Scheduling one background job inside another

    Hi All, Is it possible to Scheduling one background job inside another.? i.e In my Z program I am calling job_open, job_submit, job_close and to execute one standard report in background. And after that I am executing my Z program itself  from SE38 a

  • Problem with Purchase Order (PO) script

    Hi all, I am having a problem in my PO layout. In my layout when I take the print preview of the layout  for Purchasing Organization PAPL it shows me the Info record Text for only first item whereas it does not show it for other line items. However w

  • Office 2010 KMS Activation

    HiI am trying to setup KMS on 2008 for activating WIndows 7 Office 2010 Citrix Virtual machines. At first I did not have a KMS key so I had to call Microsoft (it was a MAK Key). I installed the 2010 KMS installer for Office and used the KMS key to in

  • Clear data bag, when change tab in top level navigation!?

    Hi, i had search the forum, but i don't find an answer! I have the following problem: We have to clear the client data bag (EPCM), when the user change the tab, but how can i do something, when the user change? Is there a event and i only must subscr

  • Canon 550D and LR

    I've just acquired a Canon 550D and I have previously used LR1.4 for my Canon 350D RAW files.  I can open 550D RAW files in LR1.4 by converting using the DNG converter 5.7 beta.  I would like guidance on upgrading my LR1.4 - should I get LR2 (when 2.