PSE 11 actions display

How can you get actions to show in PSE 11? I want to be able to do one-step clicking while I'm editing photos, but I cannot figure out how to get them loaded on the right-hand side like I had in PSE 10, or even where they're located in the top menu. Thank you!

Window>Actions. If you set up a custom workspace by clicking the More button at the bottom right of your screen, you can then rip the actions panel loose from The Clump and put  it into the panel bin if you like.

Similar Messages

  • Action - Display smartform in PDF format

    Hi All,
    I have a requirement whereby on triggering of a print form action in crmd_order, the smartform should be displayed in PDF format and from there, user should be able to choose whether to save or to print the form. How can this be done?
    Thanks!
    Cady

    Hi,
    Here's the solutions.
    1 .Show the PDF as pop-up upon trigger, very much the same how PDF attachment always pops up in the internet explorer. But this pops up in GUI.
    Call the smartform FM with the GETOTF checked,
    control_parameters-GETOTF = 'X'.
    control_parameter-no_dialog = 'X'.
    control_parameter-langu = <ur language>.
    output_options-tddest = 'LOCL'.
    output_option-tdimmed = 'X'.
    output_option-tddelete = 'X'.
    i_otf = job_output_info-OTFDATA.
    CALL FUNCTION 'SSFCOMP_PDF_PREVIEW'
      EXPORTING
        i_otf                          = i_otf
    EXCEPTIONS
       CONVERT_OTF_TO_PDF_ERROR     
       CNTL_ERROR                   
       OTHERS                        
    2. Triggering action in ICWC and PDF pops up in new window.
    Call function 'SSF_GET_DEVICE_TYPE'
        EXPORTING
          i_language             = sy-langu
        IMPORTING
          e_devtype              = devtype
        EXCEPTIONS
          no_language              
          language_not_installed
          no_devtype_found       
          system_error             
          others                       
    control_parameters-langu = sy-langu.
        control_parameters-no_dialog = 'X'.
        control_parameters-getotf       = 'X'.
    CALL FUNCTION '<your_form_FM>'
      EXPORTING
       CONTROL_PARAMETERS      = control_parameters
       OUTPUT_OPTIONS                 = output_options
    IMPORTING
       JOB_OUTPUT_INFO                = output_data
      TABLES
       orderadm_h       = <your tables>
      EXCEPTIONS
       FORMATTING_ERROR      
       INTERNAL_ERROR            
       SEND_ERROR                  
       USER_CANCELED            
       OTHERS                           
    call function 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
        IMPORTING
          bin_filesize          = l_pdf_len
          bin_file                = l_pdf_xstring
        TABLES
          OTF                    = OUTPUT_DATA-OTFDATA
          LINES                 = LT_LINES
        EXCEPTIONS
          err_max_linewidth       
          err_format                  
          err_conv_not_possible 
          err_bad_otf                 
          others                        
    CREATE OBJECT cached_response TYPE CL_HTTP_RESPONSE  EXPORTING add_c_msg = 1.
        l_pdf_len = xstrlen( l_pdf_xstring ).
        cached_response->set_data( data   = l_pdf_xstring
                            length = l_pdf_len ).
    cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                           value = 'application/pdf' ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        CALL FUNCTION 'GUID_CREATE'
          IMPORTING
            ev_guid_32 = guid.
        CONCATENATE runtime->application_url '/' guid '.pdf' INTO display_url.
        cl_http_server=>server_cache_upload( url      = display_url
                                             response = cached_response ).
                                             url = display_url.
    RETURN.
    Declare display_url as an attribute in the implementation class as well as page attribute.
    Push the display_url value to page attribute using the SET_MODELS method in the implementation class.
    Clear display_url in DO_INIT_CONTEXT so that PDF only pops up when action is triggered.
    Put this piece of code in the page htm.
    I can't seem to be able to put the code here. It's a java script.
      IF display_url IS NOT INITIAL.
    * I can't show the script here for i kept getting error when i tried putting the java script here.
      ENDIF.
    3. To trigger a print action and send PDF attachment in background, a spool will still be created. 
    Call the smartform FM as usual.
      lt_spoolid[] = es_job_output_info-spoolids[].
      READ TABLE lt_spoolid INTO lw_spoolid INDEX 1.
      CHECK lw_spoolid IS NOT INITIAL.
      CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid                = lw_spoolid
          no_dialog                  = 'X'
        IMPORTING
          pdf_bytecount            = lw_bytecount
        TABLES
          pdf                             = lt_lines
        EXCEPTIONS
          err_no_otf_spooljob      
          err_no_spooljob            
          err_no_permission        
          err_conv_not_possible   
          err_bad_dstdevice         
          user_cancelled             
          err_spoolerror               
          err_temseerror              
          err_btcjob_open_failed  
          err_btcjob_submit_failed
          err_btcjob_close_failed  
          OTHERS                      
      IF sy-subrc NE 0.
    */    Set to incorrectly processed.
        CALL METHOD cl_log_ppf=>add_message
          EXPORTING
            ip_problemclass = '2'
            ip_handle       = ip_application_log.
      ENDIF.
      CHECK sy-subrc = 0.
    * Convert PDF from 132 to 255, combine everything into a single string.
      LOOP AT lt_lines INTO lw_lines.
    * Individually replace the space with a '~'.
        TRANSLATE lw_lines USING ' ~'.
        CONCATENATE lw_buffer lw_lines INTO lw_buffer.
      ENDLOOP.
    * Replace '~' by space.
      TRANSLATE lw_buffer USING '~ '.
      DO.
    *   Putting in the first 255 chars into the variable.
        lw_record = lw_buffer.
    *   Append 255 chars as a record.
        APPEND lw_record TO lt_record.
        SHIFT lw_buffer LEFT BY 255 PLACES.
        IF lw_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    * Object with PDF.
      lt_objbin = lt_record.
      DESCRIBE TABLE lt_objbin LINES lw_lines_bin.
    * Object with main text for the mail.
      lw_objtxt = <your text>
      append lw_objtxt to lt_objtxt.
      DESCRIBE TABLE lt_objtxt LINES lw_lines_txt.
    * Document information.
      lw_doc_chng-obj_name    = 'Smartform'.
      lw_doc_chng-expiry_dat  = sy-datum + 20.
      lw_doc_chng-obj_descr   = <your text>.
      lw_doc_chng-sensitivty  = 'F' 
      lw_doc_chng-doc_size    = lw_lines_txt * 255.
    * Pack to main body as RAW
    * Obj to be transported not in binary form
      CLEAR lw_objpack-transf_bin.
    * Start line of object header in transport packet.
      lw_objpack-head_start = 1.
    * Number of lines and object header in object packet.
      lw_objpack-head_num = 0.
    * Start line of object contents in an object packet.
      lw_objpack-body_start = 1.
    * Number of lines of the object contents in an object packet.
      lw_objpack-body_num = lw_lines_txt.
    * Code for document class.
      lw_objpack-doc_type = 'RAW'.
      APPEND lw_objpack TO lt_objpack.
    * Packing as PDF.
      lw_objpack-transf_bin = lc_x.
      lw_objpack-head_start = 1.
      lw_objpack-head_num   = 0.
      lw_objpack-body_start = 1.
      lw_objpack-body_num   = lw_lines_bin.
      lw_objpack-doc_type   = 'PDF'.
      lw_objpack-obj_name   = <your text>.
      CONCATENATE '<your text>' '.pdf' INTO lw_objpack-obj_descr.
      lw_objpack-doc_size   = lw_lines_bin * 255.
      APPEND lw_objpack TO lt_objpack.
    * Document information.
      CLEAR lw_reclist.
    * Email receivers.
      lw_reclist-receiver = <email address>
      lw_reclist-express  = 'X'.
      lw_reclist-rec_type = 'U'. "Internet address.
      lw_reclist-com_type ='INT'.
      APPEND lw_reclist TO lt_reclist.
    * Send mail.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = lw_doc_chng
        TABLES
          packing_list                 = lt_objpack
          object_header              = lw_objhead
          contents_txt                = lt_objtxt
          contents_bin               = lt_objbin
          receivers                     = lt_reclist
        EXCEPTIONS
          too_many_receivers            
          document_not_sent            
          document_type_not_exist   
          operation_no_authorization 
          parameter_error                 
          x_error                             
          enqueue_error                   
          OTHERS                          
      IF sy-subrc = 0.
        COMMIT WORK.
      ELSE.
    */    Set to incorrectly processed.
        CALL METHOD cl_log_ppf=>add_message
          EXPORTING
            ip_problemclass = lc_2
            ip_handle       = ip_application_log.
      ENDIF.
    4. Trigger action and send PDF attacment as mail. No Spool.
    control_parameters-GETOTF = 'X'.
    control_parameter-no_dialog = 'X'.
    control_parameter-langu = <ur language>.
    output_options-tddest = 'LOCL'.
    output_option-tdimmed = 'X'.
    output_option-tddelete = 'X'.
      CALL FUNCTION 'your smartform FM
        EXPORTING
          control_parameters = lw_ctrl_params
          output_options     = lw_output_options
          user_settings      = space              "Has to be set to SPACE so it will get parameters from lw_output_options.
          et_orderadm_h    
          et_orderadm_i     
          et_cancel          
          et_appointment    
          et_partner        
          es_but000         
        IMPORTING
          job_output_info    = lw_output  "OTF format
        EXCEPTIONS
          formatting_error  
          internal_error    
          send_error        
          user_canceled     
          OTHERS            
    * Get the OTF data.
      lt_otf = lw_output-otfdata[].
    * Convert OTF format to PDF.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = lw_bin_filesize
        TABLES
          otf                     = lt_otf
          lines                  = lt_lines
        EXCEPTIONS
          err_max_linewidth       
          err_format                  
          err_conv_not_possible 
          err_bad_otf                 
          OTHERS                    
    The rest will the similiar to no.3, * Convert PDF from 132 to 255, combine everything into a single string. onwards.
    Cheers,
    ck.

  • Niether PSE 10 nor PSE 11 displays in Windows 8...

    I ran PSE10 fine for some time on this machine and then I left it running and machine went to sleep / hybernate / off. Ever since PSE 10 will start but then wont display. I checked task manager and it shows it running in backround. I tried PSE 11 and it ran fine once then same issue. wont display and runs in backround. I've uninstalled, de-activated then re-installed each and cant get it to display, runs in backround. I've been through the compatability troubleshooter multiple times and got the organizer to display but then when I want to use editor, the editor is shown in some ridculously low resolution - useless. Also PSE 10 and 11 are now always prompting for permission to change files on computer. I have gone so far as to do a System Restore back to a date when PSE 10 ran just fine. Please help!!

    Please note that I created a seperate short cut for the Editor and the organizer on the desktop. I launch the editor as "run as Administrator" and it runs and displays properly. The organizer still will launch but not display and runs in the backround. I can launh the organizer from the editor and then the organizer displays correctly. It's backwards but it allows me to get back to what I love. Still would like to resolve whatever is preventing me from starting with the organizer.

  • Trouble with putting PSE action files on new computer with Windows 8

    My laptop crashed and I had to get a new one. Reinstalled PSE 10 and cannot find where to put my preset action files. Previously, on Windows XP, I put files into a program data file under photo creations. I can't find a program data file or photo creation file. Can anyone help me?

    You can drag your mouse to the left lower corner of the Desktop screen and when Start pops up, right click and choose Control Panel.
    Then pick Appearance and Personalization and in the next screen to the right of where it says Folder Options, click on
    Show Hidden Files and Folders.
    (click on the screenshots below for larger views)

  • PSE stretches display on 16:9 monitor

    Using PSE 9 and just upgraded to a 16:9 (wide) monitor. PSE now stretches everyting, images included, to fit the wide screen. I there a way to set PSE so it does not do this, without just changing the resolution for all programs to emulate a smaller screen?

    This is a good question that I am confused about as well.  I run PSE 9 on both an old CRT 4:3 aspect ratio monitor and a 16:9 widescreen on my laptop.  PSE displays correctly on both monitors, with no stretching of any of the window or photo images.  To my knowledge, I did nothing on either computer to make the image fit the screen with no stretching - it just seemed to happen automatically.
    However, my daughter runs PSE9 on a Dell 16:9 monitor and all the photos are stretched.  I have not been able to find any way to get rid of the stretching on her machine.  I have tried diffferent screen resolutions, but none of them give a perfect, unstretched fit.
    Any explanations?  Would really like to get my daughter's monitor to display with no stretching - hard to edit pictures with such distortion.
    Bob

  • PSE ACTIONS

    I've been VERY busy today with the information provided by funky_edior on blue skies.  I've been scouring the Adobe Photoshop Exchange.  I see LOTS of things.  I see BRUSHES and ACTIONS.
    I am a little light on knowledge of how to get these into PHotoshop Elements 8.  It "seems" that the BRUSHES automatically get installed (I think - not sure) and have no idea about the ACTIONS (how do I get them into SPE8 - I see them in my download folder, but that's apparently where they stay).  And how does one use ACTIONS?
    Any help is appreciated.
    Dan ...

    Actions are macros which record and automate a series of steps, which can be applied later at the touch of a button or click of the mouse. Mostly created in CS4 many, but not all, will work with PSE and can be downloaded freely on the net as ATN files.
    For PSE 6 and earlier the files are usually stored under application data (not program files) and require an image to show up in elements.
    This needs to be a thumbs.psd image measuring 64 x 64 pixels associated with the ATN file.
    Before the new action shows up in the Styles & Effects pallet its necessary to do some work by deleting the category, list & thumbnail caches.
    http://graphicssoft.about.com/od/pselements/qt/actions.htm
    This may sound drastic but next time the application is launched it forces Photoshop Elements to re-build each cache which then makes the actions available.
    From PSE 7 Adobe introduced the Actions Player which avoids some of the above tinkering.
    Full details here:

  • Apraisal action log - without action "display"

    Hi,
    we are using the standard action log for apraisals. But it's very large and so we don't want to save all "display" actions.
    Is there a BADI or a customizing table where we can switch out the looging of the display of an apraisal?
    Thanks in advance
    Jürgen

    Hi
    You can do the same. It can be done, you need to call in the following struture in your BOL layer CRMT_ACTION_GRID which coantins all your required data. You need to craete a Z implementation class where in you need to code in for fetching the values from the structure and fill in your view.
    Regards,
    Pranay

  • Save as Adobe PDF Automator action displaying dialog

    Hi,
    I'm trying to use the "Save as Adobe PDF" Action  in Automator in a workflow.
    As soon as the action is initiated it interrupts the workflow to ask for a save path.
    I don't understand this. Is it possible to provide this save path beforehand?
    Having it pop up a dialog in the middle of the workflow renders it useless to me,
    or am I missing something?
    hope anyone can help.
    kind regards,
    Richard

    No :-) I'm just surprised that an automated workflow asks for something halfway.
    It seems to defy the point of automation. I would expect to be able to pre-set something like that.

  • PSE v4 Display file name in Organiser

    Is there any way of displaying the file name under the thumbnails in the organizer. I would prefer to see the file name in place of the date and time or caption.

    you can see the name in addition to the date by going to Edit > Preferences > General and checking show File Name in Details. Be sure that your thumbnail size is large enough - adjust the slider to the right if necessary.
    Barb O

  • PA40 Actions display

    Hi Experts,
            I have configured actions according to requirement. When I am watching PA40 with my userid I am able to see all the configured actions but when seen with another id those actions are not seen in PA40 screen. Pls help.
    Regards,
    Tomesh

    Hi,
    You must have configured actions as user-group dependent. While the user group parameter is set for ur userid it is not set for the other userid.
    Use transaction SU3 and set parameter UGR for the other userid.
    Hope this helps,
    Amit

  • PSE has trouble displaying .jpg or .psd files

    I just upgraded from PSE ver 5 to PSE ver 8.  For some reason, ver 8 has some trouble displaying some .jpg and .psd files in the editor.  .nef files (raw) are no problem.  Some of the .jpg/.pse files display as a 'broken file" image, or are blurry if I double click them in editor..  If I right click on the image and go to edit, I am able to edit it and save it, but the resulting saved file may or may not be displayed.  Attempts to add unmanaged files to the catalog have not helped.  Any suggestions?

    No, filter uses the jpgs AFAIK. They are in Photoshop too. They are seamless so you could use them as is and define them as patterns; then again you can also use the PSD files to make patterns. The grass jpg is a good one to turn into a pattern.
    If you want to use them with the filters that require PSD files just save a copy of each in PSD file format. You might also think about making them black and white so you can tinker with how they will apply the texture. (White is high; black is low; 50% gray is neutral. Colors act as shades of gray so black and white might help you better predict what the result will be.)

  • PSE crashes when using a "close"-Step in Action Player

    Hello,
    i've create an action in my regular Photoshop, which includes a step where the picture is closed without saving the changes.
    When i run this action in the PSE action player it will complete every step, but the PSE application crashes at the end.
    Without the closing step in the action-set, there is no problem.
    I have tried PSE 9 and 10 on different computers (all XP SP3) and i have create the same action in PS CS3, CS5 and CS 5.5 as a source.
    Always the same crash at the end.
    Does anyone have the same problem or even knows a solution?
    Thanks a lot,
    elektrosmogjunkie

    First of all, I've started looking into scripting PSE all of two days ago and don't have a funcitoning PS to use as a test, so take my comments for what they're worth:
    I understand you're talking about an action, but from what I understand from the PS scripting reference there needs to be a "policy" specified for closing a document from a script -- specifying the SaveOptions (save changes, don't save changes, prompt to save changes) to the Document.close() method.
    I suspect that your recorded action doesn't have your answer to the "Save changes?" prompt window in the recorded steps.  If you can't somehow get the "Don't save" option into your action, you might want to try re-creating the action as a script (where you can specify the SaveOption).
    Ken

  • SSAS SSRS Report Action on Cell Value w/ Embedded Single Quote Not Executing

    I have configured an SSAS 2008 R2 cube SSRS ReportAction. I'm having problems when the member value for a cell has an embedded single quote, e.g. abc's. The action displays on the context menu appropriately, but when I click on the action, nothing happens.
    For member values that do not have the single quote, the action works as designed. I've added a calculated ember to escape the embedded single quote by adding another single quote, e.g. abc''s, with no luck. Is there a resolution or workaround for this?

    Hi Mdccuber,
    According to your description, you create a reporting action in you cube, and it works fine except the members that have embedded single quote, right? In your scenario, it seems that you pass this value to the report as the parameter.
    In SQL Server Analysis Services (SSAS), when pass values to a report, multi-select parameters have to be placed into IN statement and SQL Server Reporting Services (SSRS) will do single-quote wrapping for string values automatically. In this case, the original
    value that have embedded single quote will be damaged. So this action not work. You can submit a feedback at
    http://connect.microsoft.com/SQLServer/Feedback and hope it is resolved in the next release of service pack or product.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Dynamic Action, validation check, on an Item, could not use Change event

    I am learning how to use Dynamic Actions in a 3.2.x app that was upgraded to 4.0.x. I wanted to share what I learned adding client side validation with these actions. Perhaps an Apex guru could suggest an easier method to use this feature.
    I have an existing function where a user selects multiple rows in a report page, and then assigns a single status and enters justification text for the selected rows in another page, then saves changes (via submit).
    One item, justification, is required. I replaced my JavaScript validation of an empty value, e.g., P10_JUSTIFICATION.value, with a dynamic action. The Change event was a candidate for this item, with the "is not null" Condition. However, it is possible to initiate this screen to review the status, overlook the justification text and immediately select a button to save changes. No Change event has fired. The Before Page Submit event was applicable here. This Event selection in the wizard does not provide the Item for definition and then the Condition wasn't the right context though available for selection. I selected JavaScript expression for the Condition, actually entered my original JS test expression, and created one True Action. The True action displays an Alert to tell the user that required text is missing.
    Test of this DA was not completely successful. The alert appeared but the page went on to submit anyway. I found I had to add another True Action, Cancel Event, to stop the submit. The DA was then successful.
    The Apex site examples, [http://st-curriculum.oracle.com/obe/db/apex/r40/apexdynactions/apexdynactions_ll.htm] , do a great job showing use of Change and Set Value events for Items but a user may not always navigate through items. These features were promoted for developers with no to little knowledge of JavaScript to use Apex for application development. This DA required using/understanding JS anyways.
    My next step is to implement actions on a tabular form that that has required values. It is disconcerting that I have read in the forum that the column value references such as f0x and its row number are required to get it all working (as a DOM or JQuery selector). I have already found that tabular form columns can be re-ordered from v3.2.1 to 4.0.x. I was hoping I could declare dynamic actions or simpler Javascript methods that would not rely on f0x array references.
    Thanks,
    Kelly

    It is disconcerting that I have read in the forum that the column value references such as f0x and its row number are required to get it all working (as a DOM or JQuery selector).Not necessarily. One possibility is to use descendent jQuery selectors to attach the dynamic action event handler by column heading:
    td[headers="HIREDATE"] input

  • All my .psd files created in PSE were changed  to CS files--how can I get them back to PSE?

    Running PC, Win7, HP Pavilion dv7.  PSE6, CS4.
    I use both PSE6 and CS4 depending on the project.  I am very happy with both of these elderly versions and have no desire to change.
    Recently, all the projects (works in progress, .psd files) that I had created and saved using PSE suddenly converted themselves into CS4.  Literally.  I booted my computer and there were no more PSE projects.  (To see what was going on, I created a .psd file with PSE and saved it; it also saved itself as CS4.)  I can find no way to open them in PSE.  This isn't a crisis, obviously, since I can still open them in CS4.  But I prefer to work on these projects in PSE (that's why I used PSE to create them in the first place).  And it's impractical to go through a laborious process of opening in CS4 and then transferring everything to PSE, only to have it end up as CS4 again.
    The only change I have made: I downloaded and installed Adobe Camera Raw (ACR) updates, upgrading the PSE from v4.2 to v5.6, and upgrading CS to v5.7.  Both installed and function without difficulty.
    I will be very grateful for any advice/info that will allow me to work in the Photoshop program of my choice (PSE or CE), save and reopen in the same program.
    Update:
    The problem is half solved.  Somehow CS4 was made the default for .psd files.
    Unfortunately, it seems that for whatever reason, since this incident all .psd files must have the same default "Open with..." program.  If I select a PSE project and make PSE the default program to open that type of file all .psd projects--even those created and saved in CS4, show the PSE logo and open with PSE when clicked.
    So basically I have to decide which one I use more, then use the "Open with..." option for the other.  Which introduces a small but noticeable hiccup into the work flow.
    I'm still at a loss to understand how this happened.  Used to be that CS4 projects displayed a CS4 logo, and PSE projects displayed a PSE logo, and each would open in the correct program when clicked.
    Simple is better.
    Message was edited by: drwin88

    "Not typical behavior". I think not. I am yet another person this happened to. Even if I can get them back, you've just wasted an hour or two of my time. I won't be using firefox again after I've recovered my bookmarks. If I recover them. Thanks for nothing.

Maybe you are looking for