Add options to export dialog

Hi,
How do I had expressions to the export dialog? I only have PDF, RTF, Editable Word, crystal and CSV and I would like to add XLS. How do I do this?
Cheers,
Paulo

Hi Jack,
I think that would be a big ask. WindJack Solutions (http://windjack.com/) have a great tool for developing dialogs, AcroDialog, however it does not include a date picker.
Thom also has a subscription service (http://www.pdfscripting.com/) which has some solutions for Javascript date pickers.
Overall I think that it would be very difficult to implement in a dialog.
Good luck,
Niall
Assure Dynamics

Similar Messages

  • Stacking Options in the Export Dialog

    What happened to the stacking optons n the export dialog when adding the exports back into the catalog? After watching Jared Platt's creativelive course, I started creating my PSD's by exporting them in bulk, adding them back into the catalog and stacking them on top of the original raw files. After updating to LR 4.2 I don't see the option in the export dialog any more.

    It is available in 4.2 on Mac 10.6.8.
    As you can see it is 4.2 and "Add To Stack is checked. 
    Ian, you have to use the "Same folder as original photo" instead of "specific folder".

  • Image Rotation Option in EXPORT

    I would like to see the EXPORT function have the ability to optionally rotate an image 90 degrees or -90 degrees if the image is the user's choice of either landscape or portrait orientation.
    I frequently use Lightroom to create a gallery of pictures that is then sent over to my iPad.  If landscape orientation images are mixed in with portrait, they are shown on the iPad rotated 90 degrees and only take up a fraction of the screen.  Therefore my preference is to rotate all landscape images 90 degrees so that everything is the same orientation, then lock the orientation on the iPad to portrait mode.  Then the images will use the entire screen.
    Currently I have to manually rotate the images prior to export, do the export, and then rotate them back.  It's a PITA and I would much rather check off a box in the EXPORT dialog and have it do the rotation automatically as required.

    Rob,
    I appreciate the suggestion, but it would not work as-is because not all images are in need of the rotation.  I only need to rotate landscape images.  Doing it after the fact would require either that I separarate the landscape images manually or that the post-processing tool (exiftool) is capable of detecting them and conditionally acting on them only.
    Currently, the way I do it is like this: first I use a SmartCollection to isolate the landscape images and then apply a "Landscape" tag to identify them.
    Then I create another smart collection for the "Landscape" tag so that I can do "SELECT ALL" and rotate everything.
    Then I export everything, go back to the smart collection, and undo the rotation.
    The main reason this is a pain is because the group of images I want to export might be based on a smart collection in the first place, and may have some combination of PICK, Rating, COLOR, or various keywords.  To create the smart collection for making the tag, I have to replicate all that first then add the condition for detecting landscape images.
    If you could create smart collections that inherited from other smart collections it would be much easier, and in fact that's another feature suggestion worth making.
    I was not familiar with exiftool but I just found the website and it seems that it can probably do the conditional processing... I may give it a try, but I still think the rotation would be so much easier as a built-in export option.

  • Placeholder for collection name in a file export dialog.

    I would like to be able to export pictures in subdirectories with names based on the name of the collection they are in. I cant find any file name place holders relating to collection names. Is this possible?

    RobertsEnd wrote:
    Looks spot on
    You may want to try it first - it's Lr3-only, and publish-only (does not support exporting via regular export dialog box) - if publish-only is OK, consider his Folder Publisher or Collection Publisher instead.
    Is publish-only OK? Are you interested in exported folder hierarchy which matches collection hierarchy? or are you interested in filenames with collection name in it, or both?
    Anyway, some other options which may suit, depending (written by me, and offered for free):
    * TreeSyncPublisher
    * Exportant
    ~R.

  • NW2004s Java Add-in on a Dialog Instance

    Hello All,
    Is it possible to perform a Java Add-in on a dialog instance for NW2004s SR1? I don't see any option in the installation master. It only shows the option for Java Add-in in Central Service instance, Database instance and Central Instance.
    I already have both ABAP+JAVA on CI (NW2004s SR1). There is a dialog instance which is running only ABAP (NW2004s SR1). Can I add Java to this dialog instance?
    Can someone please help me on this?
    Thanks.
    Fahad

    Hi Fahad,
    You can only add Java-Addin to a Central instance.
    Regards,
    Siddhesh

  • Newbie here: best sizing option while exporting for print?

    What is an ideal/standard option for exporting and sizing a photo for print when you don't know if they will print 4x6, 5x7 or 8x10?  Is there a good option that will consider anything?  Bottom line: best sizing option while exporting?  Thanks

    If you don't know the size that someone will print at, then you don't resize at all. Leave the Resize to Fit box unchecked in the Image Sizing portion of the Export dialog box  Let the person doing the printing do the resizing (if necessary)

  • How to add List Box in Dialog Screen

    Hi All,
    I need to add list box in Dialog screen.
    In Dialog screen I have 2 radio buttons "Yes" and 'NO'.
    If user selects radio button YES,  then under Yes I need to display values in list box and these values should be retrieved from one table.
    If user  selects Radio button NO then under NO  I need to display values in list box.
    Please give the solution for above requirement.
    Thanks
    Vijay

    Vijay Reddy ,
    To get Drop Drown Box on screen .
    Follow these steps.
    1.Go to T.Code SE51 and Select Laypout for the Screen.
    2.Double click on the field for which u want Dropdown box.
    3.Then U will see Name ,Text ,DROPDOWN.Click on that and select List Box or ListBox with key . Better to to select first one.
    4.Save and Activate ur screen .
    5.Enter the following piece of code in the PBO of the screen.(Change for ur
       requirement).
    The following logic needs to be written under PBO of the screen logic.
    TYPE-POOLS :vrm.
    DATA:
      i_natio TYPE vrm_values, "-->Table that is passed through FM vrm_set_values
      w_natio LIKE LINE OF i_natio.
    DATA:
    BEGIN OF i_t005t OCCURS 0,
        land1 TYPE t005t-land1,
        natio TYPE t005t-natio,
    END OF i_t005t.
    IF i_t005t[] IS INITIAL.
      SELECT land1 natio
         FROM t005t
           INTO TABLE i_t005t
       WHERE spras = sy-langu.
      IF sy-subrc = 0.
      LOOP AT i_t005t .
          w_natio-key = i_t005t-land1.
          w_natio-text = i_t005t-natio.
          APPEND w_natio TO i_natio.
          CLEAR w_natio.
      ENDLOOP.
      ENDIF.
    ENDIF.
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
                           id = 'I_IT0002-NATIO' "-->Field for which dropdown is needed.
                    values = i_natio
    EXCEPTIONS
       id_illegal_name = 1
                OTHERS = 2.
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    6.Observe the above code and change as for ur requirement.
    I hope that it helps you .
    Regards,
    Venkat.O

  • Export dialog: choice of folder becomes irreversible

    In export dialog box the choice for a destination folder becomes fixed and IRREVERSIBLE after ticking the choose box. Now everything goes to my last folder used and the option ''put in subfolder'' that I always used has gone forever. The colour of the dialog box has changed to all white, the pink bar disappeared and I am now stuck with the last used (+ created) subfolder. It is inconvenient since I use subfolders per bird species and this way I am stuck with this obscure subfolder out of which I have to drag them by hand as a workaround. It must be a bug!
    Can anyone help?

    Good morning John. I am late in replying but we are here every other weekend at each other's computers and my partner Jan Willem is less into computers than I am. No, the whole choose button has disappeared, it must be a bug. So what we do now is export all photos via the silly subfolder ''buzzard'' in the subfolder ''birds of prey'' in the subfolder ''Marakissa'' in the subfolder ''The Gambia.....'' Our whole neat workflow makes this detour.
    You can also see this fixed preset when you try to get deeper into the settings, but the path is frozen and you cannot change the path. I hope they will solve it in the next release!
    Kind regards
    Marion van Sinttruije

  • Is there a way to create a link label on the export dialog

    Hello,
    Is there a way to create a link label on the export dialog?
    For example : Click here for more info
    I would like to have the "here" as a link label to open a html page
    Thanks

    Take a look at this post ("LrView: static_text like web links?"):
    http://forums.adobe.com/thread/359789?tstart=60
    The method described there works for me!
    -Don

  • Error while executing BBP_UPDATE_PORG Tr Code with ADD Option

    Hi All,
    I changed the Back end Vendor Master Data - Purchasing View (Example Accounting Number) and run the BBPUPDVD Tr code in SRM. The Business Partner (Vendor) data is updated correctly in SRM System from Back End System.
    We have set of purchasing organisations like one local (SRM) Purchasing Organisation and respective Back end Purchasing Organisation (account number). When ever I run BBPUPDVD, the SRM system updates the backend vendor master data  with back end purchasing organisation into SRM Standard tables. Then I am running BBP_UPDATE_PORG Tr code to have updated data into SRM Local Purchasing Organisation. I am receiving error message.
    Example Scenario:
    step 1: Present values in Vendor Master Vendor Number 100250, Purchaing Organisation : 1010 A/c Number: 100250-1010
    and I changed the account number as 10025o-test for vendor 100250 and pur organisation 1010.
    step 2: I run the BBPUPDVD in SRM System.
    Step 3: I checked the values in BBPMAININT - vendor data (for backend vendor number 100250 and backend pur organisation - 1010). The SRM system replicates the values correct.
    Step 4: I executed BBP_UPDATE_PORG and replaced the local (SRM) business partner (for local vendor number - 100250 and local purchasing organisation) - REPLACE Option. Then SRM replaces the SRM Business Partner (local) Data with Back end Vendor Master Data and also Back End vendor master data is deleted in SRM System. Now I have updated business partner details in SRM System as SRM Local an no SRM Back End Vendor Master Data in SRM System. This step is working fine.
    Step 5: One more time I am executing BBP_UPDATE_PORG Tr code with Add option to have SRM Back End Details (in SRM System) from SRM Local Details (SRM System). Then the system is error message in SM13 Tr code.
    Kind Note: There is no SRM Back End Vendor details in SRM System which I want to have with the help of executing BBP_UPDATE_PORG Tr code with Add option.
    For analysis I went to ST22 (dump Analysis), the SRM gave an error message like:
    Runtime Error          DYNPRO_SEND_IN_BACKGROUND
    Date and Time          09/15/2008 10:56:58
    ShrtText
         Screen output without connection to user.
    What happened?
         Error in ABAP application program.
         The current ABAP program "SAPLBBP_PARTNER_MAINT" had to be terminated because
          one of the
         statements could not be executed.
         This is probably due to an error in the ABAP program.
    Information on where terminated
        The termination occurred in the ABAP program "SAPLBBP_PARTNER_MAINT" in      "BBP_PORG_INSERT".
        The main program was "RSM13000 ".
        The termination occurred in line 59 of the source code of the (Include)      program "LBBP_PARTNER_MAINTU11"
        of the source code of program "LBBP_PARTNER_MAINTU11" (when calling the editor      590).
        The program "SAPLBBP_PARTNER_MAINT" was started in the update system.
       56
       57 * update database
       58   IF NOT LT_FRG0060_NEW[] IS INITIAL.
    >>>>>     INSERT BBPM_BUT_FRG0060 FROM TABLE LT_FRG0060_NEW.
       60   ENDIF.
       61
       62   IF NOT LT_FRG0061_NEW[] IS INITIAL.
       63     INSERT BBPM_BUT_FRG0061 FROM TABLE LT_FRG0061_NEW.
       64   ENDIF.
    Kindly guide me or provide solution.
    We are in SRM 4.0 and ECC 5.0.
    Thanks a lot in advance.
    Regards,
    Sudarsan
    Edited by: KOYYA SUDARSANA NAIDU on Sep 15, 2008 9:09 PM
    Edited by: KOYYA SUDARSANA NAIDU on Sep 17, 2008 8:46 PM

    Hi All,
    I changed the Back end Vendor Master Data - Purchasing View (Example Accounting Number) and run the BBPUPDVD Tr code in SRM. The Business Partner (Vendor) data is updated correctly in SRM System from Back End System.
    We have set of purchasing organisations like one local (SRM) Purchasing Organisation and respective Back end Purchasing Organisation (account number). When ever I run BBPUPDVD, the SRM system updates the backend vendor master data  with back end purchasing organisation into SRM Standard tables. Then I am running BBP_UPDATE_PORG Tr code to have updated data into SRM Local Purchasing Organisation. I am receiving error message.
    Example Scenario:
    step 1: Present values in Vendor Master Vendor Number 100250, Purchaing Organisation : 1010 A/c Number: 100250-1010
    and I changed the account number as 10025o-test for vendor 100250 and pur organisation 1010.
    step 2: I run the BBPUPDVD in SRM System.
    Step 3: I checked the values in BBPMAININT - vendor data (for backend vendor number 100250 and backend pur organisation - 1010). The SRM system replicates the values correct.
    Step 4: I executed BBP_UPDATE_PORG and replaced the local (SRM) business partner (for local vendor number - 100250 and local purchasing organisation) - REPLACE Option. Then SRM replaces the SRM Business Partner (local) Data with Back end Vendor Master Data and also Back End vendor master data is deleted in SRM System. Now I have updated business partner details in SRM System as SRM Local an no SRM Back End Vendor Master Data in SRM System. This step is working fine.
    Step 5: One more time I am executing BBP_UPDATE_PORG Tr code with Add option to have SRM Back End Details (in SRM System) from SRM Local Details (SRM System). Then the system is error message in SM13 Tr code.
    Kind Note: There is no SRM Back End Vendor details in SRM System which I want to have with the help of executing BBP_UPDATE_PORG Tr code with Add option.
    For analysis I went to ST22 (dump Analysis), the SRM gave an error message like:
    Runtime Error          DYNPRO_SEND_IN_BACKGROUND
    Date and Time          09/15/2008 10:56:58
    ShrtText
         Screen output without connection to user.
    What happened?
         Error in ABAP application program.
         The current ABAP program "SAPLBBP_PARTNER_MAINT" had to be terminated because
          one of the
         statements could not be executed.
         This is probably due to an error in the ABAP program.
    Information on where terminated
        The termination occurred in the ABAP program "SAPLBBP_PARTNER_MAINT" in      "BBP_PORG_INSERT".
        The main program was "RSM13000 ".
        The termination occurred in line 59 of the source code of the (Include)      program "LBBP_PARTNER_MAINTU11"
        of the source code of program "LBBP_PARTNER_MAINTU11" (when calling the editor      590).
        The program "SAPLBBP_PARTNER_MAINT" was started in the update system.
       56
       57 * update database
       58   IF NOT LT_FRG0060_NEW[] IS INITIAL.
    >>>>>     INSERT BBPM_BUT_FRG0060 FROM TABLE LT_FRG0060_NEW.
       60   ENDIF.
       61
       62   IF NOT LT_FRG0061_NEW[] IS INITIAL.
       63     INSERT BBPM_BUT_FRG0061 FROM TABLE LT_FRG0061_NEW.
       64   ENDIF.
    Kindly guide me or provide solution.
    We are in SRM 4.0 and ECC 5.0.
    Thanks a lot in advance.
    Regards,
    Sudarsan
    Edited by: KOYYA SUDARSANA NAIDU on Sep 15, 2008 9:09 PM
    Edited by: KOYYA SUDARSANA NAIDU on Sep 17, 2008 8:46 PM

  • Limiting Export Types in Export Dialog Box

    We'd like to only allow XLS Format for a specific report when displaying a Crystal Report on a WebPage via Visual Studio;
    We run Crystal Reports 2008 and also post on Business Objects so the users can access via Infoview.
    the only thing I've found is a hack to change the underlying Java code for Crystal that would affect all the reports... and some other thing for Visual Studio that doesn't work as it is for prior versions of Crystal.  Please advise how we go about allowing the end-users to have the option of exporting to only one FileType (XLS) for only one specific report.

    In Cr for VS 2010 you can use this to control the export types allowed when viewed:
    // set up the format export types:
    int myFOpts = (int)(
        CrystalDecisions.Shared.ViewerExportFormats.RptFormat |
        CrystalDecisions.Shared.ViewerExportFormats.PdfFormat |
        CrystalDecisions.Shared.ViewerExportFormats.RptrFormat |
        CrystalDecisions.Shared.ViewerExportFormats.XLSXFormat |
        CrystalDecisions.Shared.ViewerExportFormats.CsvFormat |
        CrystalDecisions.Shared.ViewerExportFormats.EditableRtfFormat |
        CrystalDecisions.Shared.ViewerExportFormats.ExcelRecordFormat |
        CrystalDecisions.Shared.ViewerExportFormats.RtfFormat |
        CrystalDecisions.Shared.ViewerExportFormats.WordFormat |
        CrystalDecisions.Shared.ViewerExportFormats.XmlFormat |
        CrystalDecisions.Shared.ViewerExportFormats.ExcelFormat |
        CrystalDecisions.Shared.ViewerExportFormats.ExcelRecordFormat);
        //CrystalDecisions.Shared.ViewerExportFormats.NoFormat); // does nothing except show no export types
    //int myFOpts = (int)(CrystalDecisions.Shared.ViewerExportFormats.AllFormats);
    crystalReportViewer1.AllowedExportFormats = myFOpts;
    Don

  • Select-option field in dialog programming

    hi guys,
    i need to declare field matnr as select-option range in dialog programming..how can i code it in the module program?

    This questions has been answered many times (even in february)
    - search sdn wiki (2 commented samples at [SELECT-OPTIONS on Dialog programming screen|http://wiki.sdn.sap.com/wiki/display/ABAP/SELECT-OPTIONSonDialogprogrammingscreen] and [Select-Options in Module Pool Programming|http://wiki.sdn.sap.com/wiki/display/ABAP/Select-OptionsinModulePoolProgramming])
    - search abap online help ([SELECTION-SCREEN - AS SUBSCREEN |http://help.sap.com/abapdocu_70/en/ABAPSELECTION-SCREEN_SUBSCREEN.htm] with sample at [Selection Screens as Subscreens |http://help.sap.com/abapdocu_70/en/ABENSEL_SCREEN_SUBSCREEN_ABEXA.htm])
    Regards,
    Raymond

  • No option to export as AVI?

    Hi,
    I am having problems with AME CS6 - having upgraded from 5.5. Initially running AME CS6 was a nightmare and it hung on loading the QuickTimeEncoder - the best fix for which was reply 15 (Seth) here: http://forums.adobe.com/message/4540908 - thank you so much.
    Now, however, I have no option to export as AVI - I had to completely reinstall and then overcome a "not activated" issue to get more export options than just H264 and FLV - once I did that and got a more comprehensive export list, it still omits AVI - has it been dropped as a standard? I doubt it, but I am at a loss - any help would be appreciated!
    Thanks

    Ah, I had not made that connection. I have known export options like wmv from my mac in the past, but have recently switched to AME. For backwards compatibility, where windows can export dv, mov etc which are mac compatible, I feel the same should have been true for mac! For my colleagues with windows machines locked down by admin control who cannot install any decent encoders, I need to export as mpeg1 (yes 1 of all things) or avi for powerpoint purposes! At a bit of a loss now what to do to get my .mov files out to windows users with a limited system - them changing their system is not an option!

  • Can I Add User Defined Tab Dialog From just like kTextFrameOptionsDialogBoss?

    Can I Add User Defined Tab Dialog At Build-In kTabSelectableDialogBoss, just like kTextFrameOptionsDialogBoss?
    If it is possible, How?
    Pls Help Me...

    Impliment IUnitOfMeasure with custom units.

  • Please add options for file names on camera or PlayMemories import (ie: 00001 DateTaken DSC)

    Please add options for file names on camera or PlayMemories import (ie: 00001 DateTaken DSC=   00001 2014_10_21 DSC )

    if(!getNewContactsName())
                   createNew();
                   return;
              if(!getNewContactsSurname())
                   createNew();
                   return;
              String checkName = newName;
              String checkSurname = newSurname;
              if(!checkIfDuplicate(checkName,checkSurname))
                   createNew();
                   return;
              if(!getNewContactsHomeNum())
                   createNew();
                   return;
              if(!getNewContactsWorkNum())
                   createNew();
                   return;
              if(!getNewContactsCellNum())
                   createNew();
                   return;
              if(!checkAtLeastOneNumEntered(newHome, newWork, newCell))
                   createNew();
                   return;
              }This can all be done in 1 if statement just use the or operator (||) will save some room
    private void deleteFromList(String nameOfContact, String surnameOfContact)
         {//Start of deleteFromList()
              int confirm = JOptionPane.showConfirmDialog(null,"Are you sure you wish to delete the contact from the phonebook?","Please confirm",JOptionPane.YES_NO_OPTION);
              if(confirm == JOptionPane.NO_OPTION)
                   return;
              elseWhy do you have a return statement in a void method? there's no need for this you can cut out the no part and just keep the yes

Maybe you are looking for

  • Apps no longer install from iTunes and disappear from home screen

    Everything went fine until a few days ago, with no change I can discern, apps no longer installed from iTunes. They did install when I deleted them in iTunes, synced, then installed from the Touch. Now even that is failing unless I reset settings on

  • Having macbook find my itunes folder/music on my external hard drive

    short story/question: my itunes library with all my music (1000+ songs, and iphotos) is on one of those external harddrive firelite things. how do i set up my macbook to search for the itunes library on my external harddrive, rather defaulting to an

  • AIA FP 2.4 Installation Error

    Hi, When I installed AIA FP 2.4 on my SOA Suite 10.1.3.3 (on Windows XP Pro - Desktop) and entered the DBA user, SYSDBA, it says it cannot connect to the DB. I login outside of the install process using SYSDBA and I can connect. I have tried this man

  • New Problem: some areas of video "jitter" now

    OK..New Problem. Reinstalled FCE4. Have done 3 segments (before, I had the one video that pixelated for the last 10 minutes or so)...so I broke it down and now have 3 segments, EACH SEGMENT PREVIEWS FINE! AND...I've burned each segment successfully o

  • When using i tune my computer screen "degrades"

    ..and colors change....screen looks pixel enlarged