I have problems sending a 182 page Lightroom book to blurbs

Lightrrom never stops, even after having sent more than a GB of data to blurb (wathed in the Mac's activity monitor)

Boot into Safe Mode and try again.

Similar Messages

  • I have problem sending a email ..spool not created using custom FM

    Hi experts,
    i have problem sending a email ..spool not created using custom FM...this the custom FM
    * Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
    Source code
    this is the source code for this FM
    IF sy-batch EQ 'X'.
        PERFORM get_job_details.
        PERFORM obtain_spool_id.
        PERFORM convert_spool_to_pdf.
        IF sy-subrc IS NOT INITIAL.
          MESSAGE e040(zhrcd) RAISING spool_not_created.
        ENDIF.
        PERFORM process_email USING email1
                                    email2
                                    email3
                                    subject
                                    attachment_name.
        WAIT UP TO 5 SECONDS.
        SUBMIT rsconn01 WITH mode   = 'INT'
                        WITH output = 'X'
                        AND RETURN.
      ENDIF.....
    Please let me know
    Edited by: Thomas Zloch on Nov 16, 2010 5:53 PM - please use code tags

    Hi srinivas ,
    Could you please Check
    FORM summary_report .
      DATA: lv_success TYPE i,
              lv_error TYPE i,
              lv_total TYPE i.
      DESCRIBE TABLE gt_data LINES lv_success.
    DESCRIBE TABLE gt_error LINES lv_error.
      DESCRIBE TABLE gt_message LINES lv_error.
    lv_total = lv_success + lv_error.
      lv_total = lv_success.
      gwa_summary-record = text-008."Number of Successful records.
      gwa_summary-number = lv_success.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-009."Number of error records'.
      gwa_summary-number = lv_error.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-010."Total number of records processed.
      gwa_summary-number =  lv_total.
      APPEND gwa_summary TO gt_summary.
    CLEAR gt_fieldcat.
      gwa_fieldcat_summ-col_pos = 1 .
      gwa_fieldcat_summ-fieldname  = 'RECORD'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-011."Records
      gwa_fieldcat_summ-outputlen = '70'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
      gwa_fieldcat_summ-col_pos = 2 .
      gwa_fieldcat_summ-fieldname  = 'NUMBER'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-012."Number
      gwa_fieldcat_summ-outputlen = '10'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
    ENDFORM.                    " SUMMARY_REPORT
    *&      Form  ERROR_REPORT
    FORM error_report .
    gt_fieldcat_err[] = gt_fieldcat[].
      gv_fieldcat_err-col_pos = 1.
      gv_fieldcat_err-fieldname  = 'PERNR'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-070."Employee Number
      gv_fieldcat_err-outputlen = '20'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
      gv_fieldcat_err-col_pos = 2.
      gv_fieldcat_err-fieldname  = 'MESSAGE'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-071."Error Message
      gv_fieldcat_err-outputlen = '80'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
    ENDFORM.                    " ERROR_REPORT
    *&      Form  FINAL_REPORT
    FORM final_report .
      DATA:lv_layout TYPE slis_layout_alv,
             lt_events_summ TYPE slis_t_event,
             lv_events_summ LIKE LINE OF lt_events_summ,
             lt_events_det TYPE slis_t_event,
             lv_events_det LIKE LINE OF lt_events_det,
             lt_events_err TYPE slis_t_event,
             lv_events_err LIKE LINE OF lt_events_det,
             lt_events_msg TYPE slis_t_event,
             lv_events_msg LIKE LINE OF lt_events_det.
      lv_events_summ-name = 'TOP_OF_PAGE'.
      lv_events_summ-form = 'TOP_OF_PAGE1'.
      APPEND lv_events_summ TO lt_events_summ.
      lv_events_det-name = 'TOP_OF_PAGE'.
      lv_events_det-form = 'TOP_OF_PAGE2'.
      APPEND lv_events_det TO lt_events_det.
      lv_events_err-name = 'TOP_OF_PAGE'.
      lv_events_err-form = 'TOP_OF_PAGE3'.
      APPEND lv_events_err TO lt_events_err.
      lv_events_msg-name = 'TOP_OF_PAGE'.
      lv_events_msg-form = 'TOP_OF_PAGE4'.
      APPEND lv_events_msg TO lt_events_msg.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          i_callback_program = sy-repid.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat_summ
          i_tabname                        = 'IT_SUMMARY'
          it_events                        = lt_events_summ
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_summary
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    IF CHK_DTL IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat
          i_tabname                        = 'gt_data'
          it_events                        = lt_events_det
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_data
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_err
         i_tabname   = 'gt_error'
         it_events   = lt_events_err
       TABLES
         t_outtab    = gt_error.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_msg
         i_tabname   = 'gt_message'
         it_events   = lt_events_msg
       TABLES
         t_outtab    = gt_error.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_err
          i_tabname   = 'gt_message'
          it_events   = lt_events_err
        TABLES
          t_outtab    = gt_message.
    IF GT_MESSAGE[] IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_msg
          i_tabname   = 'gt_message'
          it_events   = lt_events_msg
        TABLES
          t_outtab    = gt_message.
    ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
       i_interface_check             = ' '
      IS_PRINT                      =
       i_screen_start_column         = 0
       i_screen_start_line           = 0
       i_screen_end_column           = 0
       i_screen_end_line             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       =
      ES_EXIT_CAUSED_BY_USER        =
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
    ENDFORM.                    " FINAL_REPORT
    *&      Form  top_of_page
          text
    FORM top_of_page1.                                          "#EC CALLED
      WRITE text-013."SUMMARY REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page2
          text
    FORM top_of_page2.                                          "#EC CALLED
      WRITE text-014."DETAIL REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page3
          text
    FORM top_of_page3.                                          "#EC CALLED
      WRITE text-015."ERROR REPORT
    ENDFORM.                    "top_of_page
    *&      Form  EMAIL_NOTIFICATION
    FORM email_notification .
      DATA: lv_email1  TYPE somlreci1-receiver,
           lv_email2  TYPE somlreci1-receiver,
           lv_email3  TYPE somlreci1-receiver,
           lv_subject TYPE char200,
           c_flag     TYPE c           VALUE 'X',
           lv_attachment TYPE char50.
      CLEAR: lv_email1,
             lv_email2,
             lv_email3,
             lv_subject,
             lv_attachment.
      SELECT SINGLE email1
                    email2
                    email3
        FROM zhr_interface_pr
        INTO (lv_email1,lv_email2,lv_email3)
        WHERE zinterfaceid EQ gc_objectid.
      IF sy-subrc EQ 0.
        IF sy-batch EQ 'X'.
    Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
          IF sy-subrc <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    "
    Edited by: katewinslate@SAP on Nov 17, 2010 12:50 PM

  • What is an smpt password?  I have problems sending photos using the stamp at the bottom because it asks for some smpt password and I have no clue to find out what it is, how to set one of find one if I somehow put one in and don't know what it it.

    what is an smpt password?  I have problems sending photos using the stamp at the bottom because it asks for some smpt password and I have no clue to find out what it is, how to set one of find one if I somehow put one in and don't know what it it.

    It's the password for your outgoing mail in your Mail account. You need to set it up in your Preferences.
    Regards
    TD

  • Have problems sending mail from a secure wireless connection. but ok from starbucks

    I have several clients here at my marina all using different email providers and they all seem to have problems sending out mail from my secure wireless. They can recieve mail no problem. Now here is where it get weird. I added my gmail account to one of the problem iphones and same thing was happening, when i go to send out an email from my account on their phone it gets stuck trying to send mail. I compaired server setting on my phone to his and everything was that same, even turned off his server from fairpoint(the email he uses) and kept my gmail one and still couldnt send mail from his phone but worked fine on mine. Apple set up this individuals iphone/ipad so it make me think they did something when he had the accounts added. Any thoughts?

    look here for gmail accounts
    http://support.apple.com/kb/TS3058

  • I have problems sending e-mail from my iPhone.  I can receive OK.

    I have problems sending e-mail from my iPhone.  I can receive OK.  The e-mail gets put in the outbox, but never goes out.

    Did you set it up following this:
    http://portal.activehost.com/knowledgebase.php?action=displayarticle&id=4744

  • After updating to IOS 8.1, I have problems sending photos in messages

    I'm not at all sure how long after updating this started happening, and I'm fairly sure I just have a setting messed up someplace.
    When I go into messages, contacts are listed in three different colors. Gray, green, & blue. I can send a message to any of them, but I can only send a photo to one that's listed in blue. Any of my contacts that are listed in gray or green the camera icon is grayed out and I can't send a photo to that person.
    One of them is my wife and while it's been a 2-3 weeks since I've sent her a photo so I'm not sure when this changed. We both have an iPhone 6 w/ IOS 8.1. She can still send me photos.
    The other side of this problem is one I've been having all along.
    If I go to try and send a message in the 'Photos' app it never gives me an opportunity to select anyone from my contacts. It only comes up with a new message window and the send hotspot is also grayed out.

    On the off chance anyone is watching the thread ...
    I seem to have resolved the issue of sending a photo to my wife through messages by turning off iMessage, then rebooting (not resetting) the phone.
    I still have the issue in Photos. If I select the share icon, then select message, it brings up a message authoring window with the photo in it, but never offers an opportunity to select a contact to send it to.

  • I have just updated to iOS 5.1 for iphone 4s. I have problem sending sms or make call. Can anyone please help

    I just updated my iPhone 4s to iOS 5.1. Since the update, I am not able to make calls or send sms. I reset network settings several times but not luck. I have also turned off data and 3G but no luck.
    Could anyone please help me? Right now, my iPhone 4s is use-less.
    thanks
    terryhome

    I have a similar problem...iMessage is not working for me. I can only send SMS and when I try to activate it an error will come up. It won't even let me use my Apple ID.
    Does anyone know how to fix this? I've already tried resetting everything and it just won't work!

  • I have problem send any email from iPad2

    I have a very weird situation.
    I had this iPad2 for  a few months and was able to receive and send email using 3 email accounts, from gmail, yahoo and hotmail without any problem.
    Howeverm after I came back from a trip, I could only receive email, but cannot send any email from any of these accounts at all!
    I am using WIFI. I have deleted all email accounts, turned off the ipad2, and started over a couple of times.
    I tried to recreate these account again one by one. After added one account, I tested it only to see no email can be sent!
    THere is no error message, no any information. All I know is the email I sent from my iPad disappeared!
    Any one here can help?
    Thanks!

    Disabling email scanning didn't fix it. I can open the Mozilla email client and it immediately tries to connect to the inbound AT&T mail server but then just sits there with no response. If I try to send a message same thing, tries to connect to outbound AT&T server but nothing. One of the options in the support doc said to remove the saved passwords and when the client restarts it will ask you to save your password again. The client never makes a connection to the server so it never has a chance to authenticate. Its almost like AT&T disabled their POP server.

  • Once again, I have problems sending e-mails from my iPad 2. I have a telus account and I have dealt with their tech people and they have checked all my settings and everything is fine. Apple techs advised to open Gmail acct. and re-route through it? Why?

    I am having a difficult time trying to send e-mails from my iPad 2? I have contacted my Telus server tech people and we have double checked all my settings. Everything is properly set! Checked with my Apple people and they say this is a common problem with my server, yet others with the same server don't seem to have a problem. They suggested that I open a Gmail account and infor my mail server(Telus) to route my mail through my Gmail account? Does thei make sense? Are ther any other solutions I might investigate?

    Hi prettytoni,
    I saw one interesting solution to set a gmail account like as it is a "Microsoft Exchages" account... Maybe you can try to do the similiar with your Telus account? (I'm not sure about the result, but still you can try it))))
    here is the link:
    http://www.maclife.com/article/howtos/how_set_your_gmail_accounts_push_email

  • I have problems sending mail in Yahoo

    when I tried to send an email in yahoo, after I hit the send button, kept loading the page for five minutes and did not send.
    == URL of affected sites ==
    http://www.yahoo.com

    On the off chance anyone is watching the thread ...
    I seem to have resolved the issue of sending a photo to my wife through messages by turning off iMessage, then rebooting (not resetting) the phone.
    I still have the issue in Photos. If I select the share icon, then select message, it brings up a message authoring window with the photo in it, but never offers an opportunity to select a contact to send it to.

  • Problem sending a HTML page

    How can i send a HTML by email??
    When i am sending a HTML he shows the code in the mail instead of showing the HTML page??
    Anyone knows how can i solve tyhis??

    are you setting the content type to text/html? there are plenty of examples out there (and in here). run a search.

  • I have problem in my jsp page

    <%@ page import="beans.FormuBean" %>
    <jsp:useBean id="formu" class="beans.FormuBean" />
    <% FormuBean[] fbOnForm= (FormuBean[])request.getAttribute("fbDataToForm"); %>
    <html>
    <head>
    </head>
    <body>
         <%
              formu= (beans.FormuBean)pageContext.findAttribute("formu");
              for (int i=0; i<fbOnForm.length; i++){
              formu=fbOnForm;
              out.println (formu.getIdSeccion());
    out.println (formu.getDNombreSeccion())
         %>
    <jsp:getProperty name="formu" property="idSeccion" />
    <jsp:getProperty name="formu" property="DNombreSeccion" />
    <%}%>
    </body>
    </html>
    My problem is: the info into <%...%> is well, but the info in <jsp:getProperty...> is wrong. That info is how create a new object "formu" (whit the same name) but inicializate a default constructor!!
    Sorry for my english, I from Spain...
    Thanks

    Coding<jsp:useBean id="formu" class="beans.FormuBean" />is equivalent to:<%
    beans.FormuBean formu = (beans.FormuBean) pageContext.getAttribute("formu");
    if (formu == null) {
         formu = new beans.FormuBean();
         pageContext.setAttribute("formu", formu);
    %>Coding<jsp:getProperty name="formu" property="idSeccion" />is equivalent to:
    <%
    formu = (beans.FormuBean) pageContext.getAttribute("formu");
    out.println(formu.getIdSeccion());
    %>jsp:getProperty retrieves the reference from the "formu" attribute which is why is does not give you what you want. Either save the new reference or don't use jsp:useBean and getProperty.
    e.g.
    <%@ page import="beans.FormuBean" %>
    <jsp:useBean id="formu" class="beans.FormuBean" />
    <% FormuBean[] fbOnForm= (FormuBean[])request.getAttribute("fbDataToForm"); %>
    <html>
    <head>
    </head>
    <body>
    <%
    for (int i=0; i<fbOnForm.length; i++){
        formu=fbOnForm;
    out.println (formu.getIdSeccion());
    out.println (formu.getDNombreSeccion())
    pageContext.setAttribute("formu", formu); // save new reference as attribute for getProperty
    %>
    <jsp:getProperty name="formu" property="idSeccion" />
    <jsp:getProperty name="formu" property="DNombreSeccion" />
    <%}%>
    </body>
    </html>

  • I have problems sending email with attachment which are larger. What could be the problem?

    I can't send larger email form my home wireless system but it works well when I am at work and use their wireless system, so I assume it is a setting in my home wifi account or a problem with accessing the mail server remotely. What  shouldI do, as it is annoying.....

    Is that my Internet provider?? Thanks and sorry for the stupid question....

  • Problem sending files from Pages via email

    I am using a Yahoo business mail account. All other emails send just fine using Mail. When I try and send a document out of Pages, it brings up the compose new mail fine and it makes the "whoosh" noise indicating that it's been sent. The recipient doesn't receive it, and it doesn't show up in my "sent items" folder. I tried to send using both wifi and 3G for interest's sake, and neither works.
    I'm not sure what to try to fix this, or if it's a limitation of the SMTP server, or what. Any help would be greatly appreciated - my iPad Pages is gimped without the ability to share documents by email...

    Welcome to Apple Discussions
    iWork documents are packages, a special type of folder. Even though with iWork '09 & iWork for iPad they no longer appear as packages, they still are. On a Mac right-click on the file & look for show package contents. If that option is not there it is a "flat-file" but it can still be unzipped.
    Anyone with Stuffit Expander installed with default settings & who saves Pages files to the Desktop will find folders instead of just the document. This is because Stuffit "sees" the file for what it really is, a package. You can check for yourself by changing the extension from .pages to .zip & unzip the file. You can't e-mail a folder which is why many mail clients balk. Apple Mail will automatically zip a folder, other e-mail clients don't, especially web-based e-mail. I think you may be mailing as a Pages document rather than Word or PDF.

  • How come I have problems sending txt to another carrier

    I have a new iPhone &amp; occasionally my text messages will not go thru to T-mobile, I am with AT&amp;T. Funny I had the same problem with my blackberry!! what can I do??

    sounds like a carrier issue, especially if you had problems with another brand of phone.  Not much you can do but report it to your carrier.

Maybe you are looking for

  • Getting Started with J3D

    Can anybody please point me in the direction of some good J3D examples? I've searched all over for good example code; I found this: https://j3d-webstart.dev.java.net/test/ which contains some pretty good runnable j3d applets...I figured if I could fi

  • Show html in af:richTextEditor

    Hi all, I use Jdev 11g. I have some html formatted emails saved in the database. To show them in an ADF faces application I use a af:richTextEditor. That worked for a while, but now I have some html code in a mail and if that mail is openend the page

  • Universal docking station for Lenovo T430 and X201

    Hello, I'm looking for a universal docking station for both my T430 en my X201 laptop. It has to have a minimum of 2 usb ports + a HDMI exit to connect to my TV. A displayport (normal or mini) is also ok. THX in advance for the help. Solved! Go to So

  • Erase Imperfection in First Frame -  Carry through Rest of Video ???

    I just imported into Photoshop a 4 minute video clip of me talking before a group of people. the video was shot from the back of the room and my hair is sticking up in the back, which is noticeable and distracting every time I lean my head forward as

  • SmoothCam Filter Disappeared

    Hi Everybody- My SmoothCam filter is no longer listed as an option with the other filters. I have not used this filter in a few months, but I did un-install and re-install my FCS2 package (about a month ago) in order to get Compressor working again.