1 extra attachment that should not be included

Hi Gurus,
I am using the SO_NEW_DOCUMENT_ATT_SEND_API1.
I can now retrieve the email sent. But the problem is, I am receiving 2 attachments namely:
MESSAGE.DAT
FILENAME.DAT.
The expected attachment is the FILENAME.DAT. Why is it that it is sending 2 files? Where did the MESSAGE.DAT came from?
BTW, MESSAGE.DAT and FILENAME.DAT has the same content.
My code is:
  wa_objbin = lv_record.
  APPEND wa_objbin TO it_objbin.
  wa_doc_data-obj_descr = lv_title.
  wa_doc_data-obj_langu = sy-langu.
  wa_doc_data-skip_scren = c_x.
  DESCRIBE TABLE it_objbin LINES gv_tab_lines.
  READ TABLE it_objbin INTO wa_objbin INDEX gv_tab_lines.
  wa_objhead = text-005. "2007_016_FR10_HFM_SFeRE
  APPEND wa_objhead TO it_objhead.
Creating the entry for the compressed attachment
  wa_objpack-transf_bin = c_x.
  wa_objpack-head_start = 1.
  wa_objpack-head_num   = 1.
  wa_objpack-body_start = 1.
  wa_objpack-body_num   = gv_tab_lines.
  wa_objpack-obj_langu  = sy-langu.
  wa_objpack-doc_type   = c_dat.
  wa_objpack-obj_name   = c_att.
  wa_objpack-obj_descr  = lv_title.
  wa_objpack-doc_size   = gv_tab_lines * 250.
  APPEND wa_objpack TO it_objpack.
  IF gv_flag2 IS INITIAL.
    APPEND wa_objpack TO it_objpack.
    gv_flag2 = c_x.
  ELSE.
    IF wa_objpack-doc_size > lv_doctemp.
      REFRESH it_objpack.
      APPEND wa_objpack TO it_objpack.
    ENDIF.
    lv_doctemp = wa_objpack-doc_size.
  ENDIF.
  lv_size = wa_objpack-doc_size.
Converts string to ftext format
  CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
    EXPORTING
      text      = space
    TABLES
      ftext_tab = it_objbin.
Converts ftext to binary format
  CALL FUNCTION 'SCMS_FTEXT_TO_BINARY'
    EXPORTING
      input_length = lv_size
    TABLES
      ftext_tab    = it_objbin
      binary_tab   = it_objbin2
    EXCEPTIONS
      failed       = 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.
Entering names in the distribution list
it_reclist-receiver = gv_email_add.
  wa_reclist-receiver = '[email protected]'.
  wa_reclist-express  = c_x.
  wa_reclist-rec_type = c_u.
  APPEND wa_reclist TO it_reclist.
Sending the document
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      document_data              = wa_doc_data
      commit_work                = c_x
    TABLES
      packing_list               = it_objpack
      object_header              = it_objhead
      contents_bin               = it_objbin2
      receivers                  = it_reclist
    EXCEPTIONS
      too_many_receivers         = 1
      document_not_sent          = 2
      operation_no_authorization = 4
      OTHERS                     = 99.
Thanks in advance.
Benedict

Benedict
Just copy paste the below code as given into a report only changing the email address of receipient to your email address to testing.
That is line:
lwa_reclist-receiver = '[email protected]'. " Email address of your receipient
A mail will be sent to your email address specified in the receipient list and a copy of it also placed in your SBWP Outbox.
Let me know if you need further help, <b>else reward neccessary points</b>.
Code
REPORT zmfv_rough_pad.
DATA :
li_attachment TYPE TABLE OF soli, " hold attachment contents
li_pdf TYPE TABLE OF tline, " hold data from spool in PDF format
li_objpack TYPE TABLE OF sopcklsti1, " hold email body, attachment details
li_objtxt TYPE TABLE OF solisti1, " hold message contents
li_reclist TYPE TABLE OF somlreci1. " hold email reciever details
DATA :
lwa_attachment LIKE LINE OF li_attachment,
lwa_pdf LIKE LINE OF li_pdf,
lwa_objpack LIKE LINE OF li_objpack,
lwa_objtxt LIKE LINE OF li_objtxt,
lwa_reclist LIKE LINE OF li_reclist,
lwa_document_data TYPE sodocchgi1. " hold document details like title, size etc.
DATA :
lv_sent_to_all TYPE c, " flag to check if mail is sent to all
l_att_lines TYPE i, " hold number of lines in attachment table
lv_spool_desc(68) TYPE c. " hold description of spool
CONSTANTS : lc_email_txt TYPE solisti1-line VALUE 'Find attached Payment Advice sent by this email.',
lc_sensitivity TYPE sodocchgi1-sensitivty VALUE 'O',
lc_raw TYPE sopcklsti1-doc_type VALUE 'RAW',
lc_pdf TYPE sopcklsti1-doc_type VALUE 'PDF',
lc_transf_bin TYPE sopcklsti1-transf_bin VALUE 'X',
lc_email TYPE sopcklsti1-obj_name VALUE 'Email',
lc_ext_id TYPE somlreci1-rec_type VALUE 'U',
lc_outbox TYPE sonv-flag VALUE 'X',
lc_obj_name TYPE sodocchgi1-obj_name VALUE 'Email Test',
lc_1 TYPE n VALUE '1',
lc_0 TYPE n VALUE '0'.
CLEAR: lwa_attachment,
lwa_pdf,
lwa_reclist,
lwa_objtxt,
lwa_objpack,
lwa_document_data.
REFRESH : li_attachment,
li_pdf,
li_reclist,
li_objtxt,
li_objpack.
Build attachment table
lwa_attachment-line = 'YOUR TEXT FROM INTERNAL TABLE LINES'.
APPEND lwa_attachment TO li_attachment.
Body of email
CLEAR lwa_objtxt.
MOVE lc_email_txt TO lwa_objtxt.
APPEND lwa_objtxt TO li_objtxt.
Title of the email
lwa_document_data-obj_descr = 'Title of email'.
lwa_document_data-sensitivty = lc_sensitivity.
lwa_document_data-expiry_dat = sy-datum + 15.
lwa_document_data-doc_size = STRLEN( lwa_objtxt ).
lwa_document_data-obj_name = lc_obj_name.
e-mail body
CLEAR lwa_objpack.
lwa_objpack-head_start = lc_1.
lwa_objpack-head_num = lc_0.
lwa_objpack-body_start = lc_1.
lwa_objpack-body_num = lc_1.
lwa_objpack-doc_type = lc_raw.
lwa_objpack-doc_size = STRLEN( lwa_objtxt ).
APPEND lwa_objpack TO li_objpack.
For e-mail attachment
DESCRIBE TABLE li_attachment LINES l_att_lines.
CLEAR lwa_attachment.
READ TABLE li_attachment INDEX l_att_lines INTO lwa_attachment.
CLEAR lwa_objpack.
lwa_objpack-transf_bin = lc_transf_bin.
lwa_objpack-head_start = lc_1.
lwa_objpack-head_num = lc_1.
lwa_objpack-body_start = lc_1.
lwa_objpack-body_num = l_att_lines.
lwa_objpack-doc_type = lc_raw.
lwa_objpack-obj_name = lc_email.
lwa_objpack-obj_descr = lv_spool_desc.
lwa_objpack-doc_size = ( 255 * ( l_att_lines - 1 ) ) + STRLEN( lwa_attachment-line ).
APPEND lwa_objpack TO li_objpack.
make recipient list
CLEAR lwa_reclist.
lwa_reclist-receiver = '[email protected]'. " Email address of your receipient
lwa_reclist-rec_type = lc_ext_id. " To external email id
lwa_reclist-COM_TYPE = 'INT'. " Internet mail
APPEND lwa_reclist TO li_reclist.
send mail with attachment
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
EXPORTING
document_data = lwa_document_data
put_in_outbox = lc_outbox
commit_work = 'X'
IMPORTING
sent_to_all = lv_sent_to_all
TABLES
packing_list = li_objpack
contents_bin = li_attachment
contents_txt = li_objtxt
receivers = li_reclist
EXCEPTIONS
too_many_receivers = 1
document_not_sent = 2
document_type_not_exist = 3
operation_no_authorization = 4
parameter_error = 5
x_error = 6
enqueue_error = 7
OTHERS = 8.
IF sy-subrc = 0.
WRITE: 'Success'.
ENDIF.

Similar Messages

  • Conflicting information about files that should not be included in version control

    Hi All,
    We are using RoboHelp HTML v9 from the Tech Comms Suite v3.5.
    We are two authors who added our help project files into Perforce version control using the instructions provided on the Adobe site. All was going well until I returned from Maternity Leave. Now, we seem to be getting some file conflicts and 'strange behaviour'.
    I searched for answers and found the following submissions offering conflicting advice about the .hhp file:
    http://adobe.hosted.jivesoftware.com/message/3880352
    http://forums.adobe.com/message/3853685#3853685
    The .hhp file is one of the files causing us troubles. Should this file be under source control? What is the best way for us to remove it from source control, or would it be better for us to remove the whole project from source control and re-add it through RoboHelp once more to ensure whatever it is that happened on my return is eliminated?
    Thank you all for your help.
    Regards
    LillibetUK

    If you are getting conflicts then these need to be sorted out regardless of whether they should be inside your source control application. I use source control and can tell you that the HHP file should be source controlled. Open it up in Notepad and you'll find all sort of project related data including a list of all the topics in your project. It can also be useful to recover from a corrupted project. For this reason alone I'd always include it in source control.

  • My mac mini is running slow.  Bought it in 2009.  Activity monitor shows nothing running that should not be.  Someone suggested it might be my operating system?  Check for software updates, and I am current.  Suggestions?

    My mac mini is running slow.  Bought it in 2009.  Activity monitor shows nothing running that should not be.  Someone suggested it might be my operating system?  Check for software updates, and I am current.  Suggestions?

    Open Activity Monitor, Show:>All Processes, sort on CPU%, see if anything using too much CPU% when this happens, click on Memory tab, do you have many Pageouts?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    Check the S.M.A.R.T. status of the drive in Disk Utilty by highlighting the Drive & looking at the bottom of the window.

  • HOW WE CAN VALIDATE A FIELD THAT SHOULD NOT BE SPECIAL CHARACTER?

    HOW WE CAN VALIDATE A FIELD THAT SHOULD NOT BE SPECIAL CHARACTER?

    data : v_abcde like sy-abcde,
             v_num like '0123456789',
              v_data(60) type c.
    start-of-selection.
    v_abcde = sy-abcde.
    concatenate v_abcde v_num into v_data.
    if ur field co v_data
    else.
    message.
    endif.

  • I have started to get the 150:30 error in Photoshop Elements. I am using English so that should not

    I am getting the 150:30 error in Photoshop Elements. I am using English as my language so that should not be an issue. I have restarted the computer but to no avail. I am furious at Adobe for letting this go on so long. I see posts with this same issue from October 2009. You would think that the Adobe engineers could have found a way to resolve this issue by now. There seem to be a lot of people with this problem and it is inexcusable.

    Have you already ran the workarounds/solutions mentioned in the link below? try the LicenseRecovery toolkit and see if that helps?
    http://kb2.adobe.com/cps/512/cpsid_51260.html
    Regards,
    Ankush

  • How to compare two dates that should not exceed morethan 3 years

    hi all,
    can you please tell me how to compare two dates( basically dates are string type)
    that should not exceed more than 3 years? in JAVASCRIPT
    Thanks in Advance.

    This is not a JavaScript forum.
    [*Google* JavaScript Forum|http://www.google.co.uk/search?q=JavaScript+Forum&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-GB:official&client=firefox-a]
    Good luck.

  • GroupFilter and sum(); filtered records should not be included in the sum()

    Hi All,
    I am working on a report that has the following requirement.
    1. Query records from the database (multiple queries)
    2. Filter records based on a certain criteria.
    3. Sum() the rows.
    4. Cannot use where clause because of the complexity of the report.
    I have achieved the above requirement using data-template with one exception where my sum() is including all the filtered rows in the summation. I DO NOT want the filtered rows to be included in the sum(). I know I could do sum() in layout-template using xslt.
    Is there a way to do this in data-template?
    My data-template looks something like
    <group name="g_dept" source="q_dept">
        <element name="dname" value="dname"/>
        <element name="d_salary" value="g_emp.salary" function="sum()"/>
        <group name="g_emp" source="q_emp" groupFilter="filterEmployees(:empno)">
           <element name="ename" value="ename"/>
           <element name="empno" value="empno"/>
           <element name="salary" value="salary"/>
        </group>
    </group>
    My data looks like
    10    Scott1    7865    $100
    10    Scott2    6875    $200
    10    Scott3    5678    $300
    10    Scott4    8657    $500 <-- filtered with pl/sql package
    My output should look like
    Dept: 10
    Scott1    7865    $100
    Scott2    6875    $200
    Scott3    5678    $300
    Total for 10: $600
    instead my output looks like
    Total for 10: $1100 <-- including filtered row Steve.
    Is this a feature or a bug in the data-template? not sure the order of events querying, filtering & summation. If anyone could answer, I really appreciate it.
    Thanks

    Was there ever an answer the original question with the groupfilter and sum()?
    I have a GL Report (bi pub 5.6.3 with ebusiness suite 11.5.10.2) that uses the oracle.apps.fnd.flex.kff.select (with security as the output type). In my lowest group (lines) i have a group filter that eliminates the row if the security is Y (to eliminate it from the XML and report). However, the sums that I'm doing are including all rows, not just the ones included in the data file.
    I too have the same issue as Kalagara, where I can't use the where clause to exclude the rows.
    Thanks - Jennifer

  • Lumia 920 - Problems that should not be

    Hello,
    I am an old Samsung customer, my last phone was a Samsung Note that I switched for a Lumia 920. Before the change I tried to read all I could get about WP8 and loved it specialy in relation with the Lumias. I find the functionality described on the websites so good that I bought a second for my wife and made my brother in law change to a 820. Now the downside that made me write this post. I want to refer that I do not feel the lack of apps a problem if I want apps I keep Android or even IOS. What Nokia and Microsoft put on their site is that WP8 with features of Nokia already is what I need. Thing is that the following functions do not work on both Lumia 920 and on the 820.
    Skype contacts do not appear in the people hub
    You cannot make skype calls from the peoples hub
    Cannot make conversations in rooms
    The message app is a mess, anybody is online, messages do not appear not only the Facebook chat is not working but also the windows own messenger.
    Podcast do not work as described because the store do not have Podcasts available and a simple add by url is not possible.
    I do not need much and I do not want apps I just want Hardware and Software that works as described on windowsphone.com and nokia.com.
    Please guys at Nokia make the phones work like they should and presure Microsoft to keep their part, because these simple problems make the phones frustrating and I am starting to regret my decision to leave Samsung-Android.

    I find a solution for the not working Messaging hub. A ugly 3rd party app called ICQ has a live working facebook chat. So Microsoft/Nokia please buy these app developers because day could do what for you is taking months now. Worst you a still making false advertising with you not working Messenger Hub.
    So please make it work. I dont bought a Nokia with WP8 to install 3rd party apps to get the smartphone work as advertised with the functions I need, for 3rd party apps I have IOS or Android.

  • Applications-Won't let me remove photos that should not be there

    I was moving 6000 photos from an external HD onto my laptop so I could organize them in iPhoto 08. I'm still not exactly sure how that process should go because I have had several issues.
    1. Many of the photos "could not be found." iPhoto would say "do you want to find photo?" I would have to exit out of iPhoto library to get it to unfreeze from this state. When I went to open iPhoto again I would have to go into Applications and click an iPhoto Applications Folder icon to get the iPhoto library again. I could only find iPhoto Library icon in weird places and there were two of them. When I clicked "Get info" I knew they were two different ones because one would say 8.3Gigs and the other would say 300KB (this seemed too small to even have photos in it), but both were iPhoto 08.
    2. As I was transferring portions of my photos from the external HD I accidentalIy clicked on the Applications folder. Even though I tried to stop it in the middle it copied almost all of the 6000 into A. Applications B. iPhoto 08 (with many problems), C. Pictures which I had set it to do without keeping a backup copy of originals and D. Nikon View with MANY duplicates.
    After that I went back to delete the ones from applications and it tells me " Some of the items you are moving are in use by another application. Moving the items can cause problems with the application using them. Are you sure you want to move these items.
    (Maybe this somehow correlates with the fact that I have to open the iPhoto Library from an Application icon every time I turn on the computer? Didn't have this problem before I updated to iPhoto 08).
    Tracy

    I couldn't get them to copy until I put them on my computer -at least that is what I remember
    1. Verified HD. This is what it said.
    Verifying volume “My Book”
    ** /dev/disk1s1
    ** Phase 1 - Read FAT
    ** Phase 2 - Check Cluster Chains
    ** Phase 3 - Checking Directories
    ** Phase 4 - Checking for Lost Files
    91324 files, 2676672 free (7947966 clusters)
    Mounting Disk
    2. What do you mean "get the Applications moved back out? I still have thousands of photos in my applications

  • Cisco ISE trying to posture a device that should not be able to be postured

    Overview:
    Cisco ISE version 1.1.4. Windows PC will be postured using Web NAC agent. Mobile devices (Apple/Android) can't be postured and will be exempted from posturing. Mobile devices will be exempted using the condition EndPoints:PostureApplicable EQUALS No. This worked fine and mobile devices will be caught by this condition while Windows device will be caught by another that sends to posturing.
    Mobile device authorisation policy configured:
    Problem:
    A few days later, mobile devices doesn't seem to end up in the policy that has EndPoints:PostureApplicable EQUALS No. After having a look at monitoring, Cisco ISE is classifies  mobile devices as Posturable. The Posture Status previously was "NotApplicable" now shows up as "Pending". See below.
    Troubleshooting:
    I tried a total of 4 different mobile devices. 2 Apple and 2 Android. All of them have the Posture Status of "Pending". Interestingly after a few tries, both the Androids starting working and have the PostureStatus of "NotApplicable", no configuration changes were made. The 2 Apple device still doesn't work and show up as "Pending".
    I have restarted ISE, Access Point and Apple device. I have also tried other Apple device. All with the same problem.
    Have any of you guys experienced this before?

    Hi,
    I have also experienced the same issues as yourself and would recommend opening a tac case. However I have used the device registration web portal to redirect all previous detected mobile devices to accept the aup and have them statically assigned to an endpoint group so they do not hit this scenario.
    I know it is a workaround but its the only way i could get this to work and not affect devices that were one time detected as such.
    Tarik Admani
    *Please rate helpful posts*

  • Horrible pixelation that should not happen

    I am running Final Cut Pro 5 and when I have video without any transitions, effects, or LiveType Titles the resolution is high and high when I render it. But when I add one of these elements it cuts the resolution down to about 1/4 of the original pixels.
    It is obviously not just the preview playback in FCP, but something else because when I just look at the individual frames it happens. It also happens when I do a quick export to quicktime, or a full export to quick time in any format.
    I am worried that it will do this when I print to tape as well. I have a 1' project due tomorrow for my high school's broadcasting class and that is where I will upload to MiniDV.
    I need the titles and transitions, and I want this pixilation to go away. It's not just with this one movie, it has done it for every other movie I have edited.
    I am running a PowerBook G4 w/ 1.5 GHz 512MB RAM and 64MB Video. I am not editing in HD.
    Why is it doing this and how can I fix it? I need to know tonight... any help would be greatly appreciated. Thanks.

    right now, I cannot monitor externally, by any means. I am just busy. I did not have access to the broadcasting room today, because I had an AP test. There is no computer that isn't a laptop at the house I stay at during the week, so no external monitor. I can get access to the monitor for my desktop this weekend. And the only video camera at this house is a Sony Handycam, a rather old one, and it doesn't have support for FireWire, only USB.
    It hasn't always been like this, as I may have said. I was looking at some older videos. and the first two I did are loaded with tons of effects. And no pixelation. http://www.webbschool.com/%7Eicady/Goat.mov That's a link to the first thing I ever edited in Final Cut. You can see that there is no pixelation and that it is loaded with effects.
    I am wondering if maybe it is the amount of HDD space I have. Because, when I first did that video, the computer was brand new. I also do photography, and without an external HDD (besides my iPod), they are taking up quite a bit of space. I have 7.5 GB free.
    One of the last things I did for my class didn't pixelate until a certain point of effects. And the new one pixelates even with a crossfade or a fade to/from black.
    Could this be a problem? And is there someway to reset the settings to default?
    Also, something else to note. The Goat movie I did, I imported with iMovie, because I hadn't figured out FCP yet. Could that have something to do with it?

  • Method in a class that should not be visible to outside class

    I am using Spring task executor and I have a service that has two method.
    public SpringTaskExecutor implement SpringExecutor {
    List<Info> infos;
    //called by spring to poll the db after every 10 mts
    public pollDatabaseAfterEveryTenMinute(){
    .infos= new ArrayList<Info>();
    infos.add....
    //called by other class to get polling details
    public List<Infor> getInfoOfTeam(){
    return infos;
    But I want to make pollDatabaseAfterEveryTenMinute as private or protected so that only Spring can call it ,but no one else.
    Unfortunately I cannot make it private/protected because I implement an interface and spring will not find if I dont define the method in the interface.The second alternative is not to implement the interface.
    Please tell me if I have any other alternative

    You can't. There is no syntax for 'only Spring can call this method'. Spring has defined the method in an interface, so it is public, so anybody can call it.

  • Material type for BOM that should not create production order

    Hello all,
    We have following situation in our company:
    We ship few products say for e.g A,B,C which are part of higer level BOM for product M1  to the customer, before the actual product M1 is shipped.Currently these ship-a-head products(A,B,C) is also part of  BOM for M1.
    We need to combine these ship-a-head products A,B,C as one product  M2 (thinking of a BOM) and ship that M2 to customer before M1 is shipped.
    In that case what could be the material type for product M2 so that MRP won't create any Production orders for M2.
    Also wondering Is there any other way, other than creating a BOM that could combine products A,B and C and ship to customer a-head of time.
    Thanks,
    Sre

    Hi,
    Please create BOM for Material M2 by using usage other than production..
    1     +     .     .     -     -     -     .     Production
    2     .     +     .     -     -     -     .     Engineering/Design
    3     .     .     .     .     -     -     .     Universal
    4     -     -     .     -     -     +     .     Plant Maintenance
    5     .     .     +     +     -     -     .     Sales and Distribution
    6     .     .     +     .     -     -     .     Costing
    7     .     -     .     .     -     -     -     Empties
    8     -     .     -     -     -     -     -     Stability Study
    M     .     .     .     .     -     .     .     External Munitions Display
    hope it may help you.
    Kuber

  • Downloaded .doc files are gibberish. they have an ext. html attached that was not on the e-mail

    How can I correct this?

    Do you get working files if you remove that .html file extension and replace it with .doc ?
    You probably need to add quotes around the name ("filename.doc") to make Windows accept that new file extension.
    See also "Reset Download Actions": http://kb.mozillazine.org/File_types_and_download_actions

  • I have characters at the top of the menu bar that should not be there. I don't know how to fix it.

    Something is not right with my firefox browser. I keep intermittently getting characters at the top of my browser which are not normal. I do not see other languages selected aside from english in my settings. How can I fix this.
    Thanks,
    Michael Rosen

    Hi again Michael,
    Dangit, we were so close!
    This issue is probably caused by a misbehaving Firefox extension. If the McAfee extension is disabled but the problem is still occuring, it's likely another extensions is also causing it.
    There's an article below which explains how to use Firefox safe mode to troubleshoot the issue and identify the cause. Could you please follow these instructions and let us know the outcome?
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    Thanks for your patience!
    Jayelbe

Maybe you are looking for

  • I want to disable db_recovery_file_dest backup area? how

    In my database I issue the following sql query SQL> alter system set db_recovery_file_dest=' ' scope=both; alter system set db_recovery_file_dest=' ' scope=both ERROR at line 1: ORA-02097: parameter cannot be modified because specified value is inval

  • Solaris 10 - Oracle RAC - "Resource temporarily unavailable"

    SunOS 5.10 Generic_127111-06 sun4u sparc SUNW,Sun-Fire-15000 While running the DTraceToolkit script "errinfo" on one of our database instances (both sides of RAC cluster) we notice a lot of "Resource temporarily unavailable" errors. We currently have

  • [svn:osmf:] 9830: Changing a function name.

    Revision: 9830 Author:   [email protected] Date:     2009-08-31 06:47:49 -0700 (Mon, 31 Aug 2009) Log Message: Changing a function name. Modified Paths:     osmf/trunk/framework/MediaFramework/org/openvideoplayer/composition/CompositeViewableTrai t.a

  • JNI Array problem

    Hello sir, here i got problem while calling java method having array as arguments from c++; here is java code which is called from c++ class PQR {      public void xyz(int[] ia) {      System.out.println("hi");           for (int i = 0; i < ia.length

  • Cleaning up iPhoto folders after CrashPlan restore

    Came home Friday to find one of my Seagate HDD in my Mac Pro failed.  This volume held my iPhoto Library.  I am currently using CrashPlan to restore the volume.  While CrashPlan gives you the latest of each file I am getting files from iPhoto 10, 9,