Monitoring the email send status (SOST) through program

Hi All,
I have send the smartform output to email addresses as attachment. But I am not able to monitor the status of those emails whether the mail address is correct or not. or whether the email have gone or not.
How to check that?
Is there any way so that I can access the data of SOST transaction
Thanks in advance.
Rgds,
Madhuri

Hi Madhuri,
Please check the code below:
*----- List of Users
  DATA: lt_user TYPE STANDARD TABLE OF str_agrs,
        lt_user_wa LIKE LINE OF lt_user.
*----- For object data
  DATA: lt_obj_data    TYPE STANDARD TABLE OF sodocchgi1,
        lt_obj_data_wa LIKE LINE OF           lt_obj_data.
*----- For receiver
  DATA: lt_rec TYPE STANDARD TABLE OF somlreci1,
        lt_wa  LIKE LINE OF           lt_rec.
*----- For the text
  DATA:  lt_text_itab TYPE TABLE OF solisti1,
         lt_text_wa   LIKE LINE OF lt_text_itab.
*----- Data Declaration for Email Address Get
  DATA: lv_email TYPE string,
        lv_subrc TYPE sy-subrc,
        lt_error TYPE STANDARD TABLE OF rpbenerr.
*---- Get the users list
CALL FUNCTION 'ESS_USERS_OF_ROLE_GET'
    EXPORTING
      role       = 'SAP_ALL'  "{color:green}Role can be anything depending on your requirement{color}
    TABLES
      role_users = lt_user.
*----- Pack data inside the table
  READ TABLE lt_user INTO lt_user_wa INDEX sy-tabix.
*----- Get the address using User ID
  CALL FUNCTION 'HR_FBN_GET_USER_EMAIL_ADDRESS'
    EXPORTING
      user_id       = lt_user_wa-uname
      reaction      = 'S'
    IMPORTING
      email_address = lv_email
      subrc         = lv_subrc
    TABLES
      error_table   = lt_error.
*------ Receiver Details
  lt_wa-receiver = lv_email.
  lt_wa-rec_type = 'U'.
  lt_wa-com_type = 'SOTR'.
  APPEND lt_wa TO lt_rec.
  CLEAR  lt_wa.
*------ Call method to send the mail
  CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
    EXPORTING
      document_data              = lt_obj_data_wa
      document_type              = 'RAW'
      commit_work                = 'X'
    TABLES
      object_content             = lt_text_itab
      receivers                  = lt_rec
    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.
    <log>
ENDIF.
Try this,
Regards,
-Syed.
Edited by: wahid hussain syed on May 14, 2009 8:55 AM

Similar Messages

  • Until recently I was able to send images in the body of my Yahoo emails. Now, I am getting the message "This message has been truncated", and the email does not go through. I do not have this problem using IE. Could you please help? Thank you.

    Until recently I was able to send images in the body of my Yahoo emails. Now, I am getting the message "This message has been truncated", and the email does not go through. I do not have this problem using IE. Could you please help? Thank you.

    Try this -> http://support.apple.com/kb/TA38632?viewlocale=en_US

  • Monitoring the email connector

    We currently have the ability for users to submit tickets into Service Manager via email.
    Can someone suggest a way we can monitor the email connector flow...so that if the emails stop working we can receive an alert?

    Hi,
    You can add an event log's monitor in SCOM for events with the source
    Exchange Connector in the Operations Manager log of the SCSM management server where Exchange connector is deployed. It will help to catch errors. However, if for some reasons the connector's workflow doesn't run at all, you have to monitor the
    status of the rule that EC's wizard creates. The EC's rule name always looks like ExchangeConnector.eac55a54037b43f78d83e6fhaf59d657, so you can get it by running the PS code like this from the Service Manager shell:
    Get-SCSMConnector | ? {$_.DisplayName -like 'Exchange*'} | %{$_.ConnectorId}
    Cheers,
    Marat
    Site: www.scutils.com  Twitter:
    LinkedIn:
    Graveyard:

  • Ive forgotten my security questions for my apple id, it keeps saying that it has sent an email to me with the information but the email is not coming through ????

    ive forgotten my security questions for my apple id, it keeps saying that it has sent an email to me with the information but the email is not coming through ????

    Check the AppleCare number for your country here:
    http://support.apple.com/kb/HE57
    Call them up, and let them know you would like to be transferred to the Account Security Team.

  • HT201320 the email send button on my iphone wont work

    , the email send button on my iphone4 wont work

    The send button won't be active until you address it and type something in the body of the email.  Assuming you did that and it still isn't working, try resetting the phone as Ocean20 suggested: hold the on/off and home buttons until you see the Apple logo, release and wait for it to restart.  If that doesn't resolve it you probably need to restore your phone.  As a precaution before restoring, import your photos to your computer and back up your contacts (such as by syncing them with iCloud).  Then connect your phone to iTunes, click on the name of your phone on the left side, go to the Summary tab to the right and click Restore.

  • My outlook is sending two invites in the icloud calandar. How can I stop this? I ony want the email send with my email address not the apple email

    My MS outlook on the PC is sending two invites in the icloud calandar. How can I stop this? I ony want the email send with my email address not the apple email.

    My phone is the 4.  Not the 4s. And I went there but it's nowhere the option to delete from server.
    I only see: ask before deleting and it's on. 

  • How to send the email without using SOST

    Hiiiiii Every1,
    What i m usiing is SO_NEW_DOCUMENT_SEND_API1 FM to send the email to internet add. as well as SAP User.
    The Problem is that i have to go to SOST to send the  Pending mails. and send the jobs manually.
    Then it works all right.
    What i want that i don't wnat to send this jobs/ emails mannually by going to SOST..
    Is it possible to do it without using SOST.

    hi
    i am not sure but give this code a try
    REPORT YEMAIL.
    TABLES: USR02.
    DATA: C(15).
    DATA: SENT LIKE SONV-FLAG.
    DATA: EMAIL_ID LIKE SOFOLENTI1-OBJECT_ID.
    DATA: BEGIN OF EMAIL_DATA.
            INCLUDE STRUCTURE SODOCCHGI1.
    DATA: END OF EMAIL_DATA.
    DATA: BEGIN OF EMAIL_SEND OCCURS 10.
            INCLUDE STRUCTURE SOMLRECI1.
    DATA: END OF EMAIL_SEND.
    DATA: BEGIN OF EMAIL_TEXT OCCURS 10.
            INCLUDE STRUCTURE SOLISTI1.
    DATA: END OF EMAIL_TEXT.
    PARAMETERS: ALL__CLI RADIOBUTTON GROUP RADI.
    PARAMETERS: THIS_CLI RADIOBUTTON GROUP RADI.
    PARAMETERS: SELECT__ RADIOBUTTON GROUP RADI.
    SELECT-OPTIONS SEND_TO FOR C NO INTERVALS.
    SELECTION-SCREEN SKIP.
    PARAMETERS: SUBJECT(30).
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN COMMENT /1(20) TEXT-999.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: L1(84).
    SELECTION-SCREEN END OF LINE.SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: L2(84).
    SELECTION-SCREEN END OF LINE.SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: L3(84).
    SELECTION-SCREEN END OF LINE.SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: L4(84).
    SELECTION-SCREEN END OF LINE.SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: L5(84).
    SELECTION-SCREEN END OF LINE.SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: L6(84).
    SELECTION-SCREEN END OF LINE.SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: L7(84).
    SELECTION-SCREEN END OF LINE.SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: L8(84).
    SELECTION-SCREEN END OF LINE.SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: L9(84).
    SELECTION-SCREEN END OF LINE.
    EMAIL_TEXT-LINE = L1.
    APPEND EMAIL_TEXT.
    EMAIL_TEXT-LINE = L2.
    APPEND EMAIL_TEXT.
    EMAIL_TEXT-LINE = L3.
    APPEND EMAIL_TEXT.
    EMAIL_TEXT-LINE = L4.
    APPEND EMAIL_TEXT.
    EMAIL_TEXT-LINE = L5.
    APPEND EMAIL_TEXT.
    EMAIL_TEXT-LINE = L6.
    APPEND EMAIL_TEXT.
    EMAIL_TEXT-LINE = L7.
    APPEND EMAIL_TEXT.
    EMAIL_TEXT-LINE = L8.
    APPEND EMAIL_TEXT.
    EMAIL_TEXT-LINE = L9.
    APPEND EMAIL_TEXT.
    EMAIL_DATA-OBJ_NAME = 'MESSAGE'.
    EMAIL_DATA-OBJ_DESCR = SUBJECT.
    EMAIL_DATA-OBJ_LANGU = 'E'.
    EMAIL_DATA-SENSITIVTY = 'P'.
    EMAIL_DATA-OBJ_PRIO =  '1'.
    EMAIL_DATA-NO_CHANGE = 'X'.
    EMAIL_DATA-PRIORITY = '1'.
    BREAK-POINT.
    IF SELECT__ = 'X'.
      LOOP AT SEND_TO.
        EMAIL_SEND-RECEIVER = SEND_TO-LOW.
        EMAIL_SEND-REC_TYPE = 'U'.
        EMAIL_SEND-EXPRESS = 'X'.
        APPEND EMAIL_SEND.
      ENDLOOP.
    ELSEIF THIS_CLI = 'X'.
      SELECT * FROM USR02.
        IF USR02-USTYP = 'A' AND USR02-BNAME NE 'SAP*'
        AND USR02-BNAME NE 'DDIC'.
          EMAIL_SEND-RECEIVER = USR02-BNAME.
          EMAIL_SEND-REC_TYPE = 'U'.
          EMAIL_SEND-EXPRESS = 'X'.
          APPEND EMAIL_SEND.
        ENDIF.
      ENDSELECT.
    ELSEIF ALL__CLI = 'X'.
      SELECT * FROM USR02 CLIENT SPECIFIED.
        IF USR02-USTYP = 'A' AND USR02-BNAME NE 'SAP*'
        AND USR02-BNAME NE 'DDIC'.
          EMAIL_SEND-RECEIVER = USR02-BNAME.
          EMAIL_SEND-REC_TYPE = 'U'.
          EMAIL_SEND-EXPRESS = 'X'.
          APPEND EMAIL_SEND.
        ENDIF.
      ENDSELECT.
    ENDIF.
    BREAK-POINT.
    EXIT.
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
         EXPORTING
              DOCUMENT_DATA              = EMAIL_DATA
              DOCUMENT_TYPE              = 'RAW'
              PUT_IN_OUTBOX              = 'X'
         IMPORTING
              SENT_TO_ALL                = SENT
              NEW_OBJECT_ID              = EMAIL_ID
         TABLES
              OBJECT_CONTENT             = EMAIL_TEXT
              RECEIVERS                  = EMAIL_SEND
         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.
    regs
    Arun

  • Short name in the email. Tcode SOST

    My question - Issue - When PO sent out through e-mail, SOST shows incorrect sender user name. Although e-mail ID is correct. Incorrect user name and correct user name (which we are expecting) has same e-mail ID in user master. Checked and found that these two users are not linked at all except they have the same e-mail ID.
    Is this issue with SOST or Output Program?
    DO WE REQUIRE THE ANY SETTING WITH THE SOST .
    Edited by: Matt on Apr 25, 2011 8:34 AM

    Hi,
    The email will have the sender, as the logged user name with which the email was triggered and being send. I hope in your scenario, you have been logged into the system with the wrong user and triggered the PO email which resulted in displaying the wrong user in SOST.
    In order to display the correct user name, you need to login with the correct User Id and then send the PO as email from this user.
    Thanks & Regards,
    Harish

  • Use SNMP to monitor the power supply status of stacked switches

    Does anybody know how to use SNMP to monitor the status of the internal power supplies of a group of stacked Cisco 3750 switches?
    The switch stack has three 3750-48PS-E switches inter-connected by Cisco StackWise cable. IOS ver 12.1(19)EAlc. A single IP address is used to identify the switch stack. Every time I poll the OID chassisPs1Status (1.3.6.1.4.1.9.5.1.2.4.0 in CISCO-STACK-MIB), I only got the status for the Master switch of the switch stack. Is there any way to poll the power supply status of other switches in the switch stack?
    Thanks a lot!

    Sorry to refresh such an old topic - but I am stuck with exactly this: Monitoring power supplies of a stacked Cisco Catalyst 3750-E.
    I'm using the exact same OID's as described, but the problem is, the information shown on the SNMP output is not correct.
    This morning, a power supply of the first switch failed and switched to RPS. Here the information I got on SNMP:
    snmpwalk -v 2c -c public 192.168.1.50 1.3.6.1.4.1.9.9.13.1
    SNMPv2-SMI::enterprises.9.9.13.1.1.0 = INTEGER: 13
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.2.1006 = STRING: "SW#1, Sensor#1, GREEN "
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.2.2006 = STRING: "SW#2, Sensor#1, GREEN "
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.3.1006 = Gauge32: 41
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.3.2006 = Gauge32: 40
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.4.1006 = INTEGER: 59
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.4.2006 = INTEGER: 59
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.5.1006 = INTEGER: 0
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.5.2006 = INTEGER: 0
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.6.1006 = INTEGER: 1
    SNMPv2-SMI::enterprises.9.9.13.1.3.1.6.2006 = INTEGER: 1
    SNMPv2-SMI::enterprises.9.9.13.1.4.1.2.1060 = STRING: "Switch#1, Fan#1"
    SNMPv2-SMI::enterprises.9.9.13.1.4.1.2.2059 = STRING: "Switch#2, Fan#1"
    SNMPv2-SMI::enterprises.9.9.13.1.4.1.3.1060 = INTEGER: 1
    SNMPv2-SMI::enterprises.9.9.13.1.4.1.3.2059 = INTEGER: 1
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.2.1059 = STRING: "Sw1, PS1 Normal, RPS NotExist"
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.2.2060 = STRING: "Sw2, PS1 Normal, RPS NotExist"
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.3.1059 = INTEGER: 1
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.3.2060 = INTEGER: 1
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.4.1059 = INTEGER: 2
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.4.2060 = INTEGER: 2
    As you see, both PS1 (for both switches) are appearing normal. It doesn't even recognize RPS:
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.2.1059 = STRING: "Sw1, PS1 Normal, RPS NotExist"
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.2.2060 = STRING: "Sw2, PS1 Normal, RPS NotExist"
    The first switch's power supply died and now the cable is disconnected. LED's of the power supply are out. And still: The switch happily announces by SNMP it's power supplies are up.
    Is this a known bug? If yes, has it been fixed?
    Model  WS-C3750E-48TD
    Firmware 12.2(37)SE1
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}

  • Getting a notification mail to the sender if the email sending is failed.

    Hello,
    I have a requirement where the customer statements are to be sent via email to the customers.However the emails are being sent correctly but now the client is asking for an email notification (like mailer daemon)to the sender if the receiver is not able to receive the mail due to some reason say incorrect mail address or any other reason.This is to notify the sender that the customer has not received any email which has been sent by the sender.
    Can u please suggest how to handle the failed emails..
    Thanks in advance.

    Hi,
    Problem solved.
    A Basis setting has to be done as below.
    Transaction  SCOT>Settings>Confirmation of receipt.
    The radio button SAPConnect expects receipt confirmation for receipt mail.
    Thanks for your reply Max.
    Regards,
    Vineela.

  • TS3988 New appleID is not being recognized by icloud on my iphone4s, no way to change the email address (already verified through email) HELP!

    ugghhhhh...
    ok, so the email account associated with my appleID had to be deleted, so i set up my new email address and verified through email.  now everytime i attempt to turn my icloud on, it asks for the password to my OLD appleID (attempts to enter the old password did not work).  the app store is recognizing my new information, but i cannot find a single option on my phone to CHANGE THE APPLEID ASSOCIATED WITH MY ICLOUD!!! HELP!!!

    Did you just rename the Apple ID you were using for iCloud or create a new Apple ID?  Also, when you say "everytime I attempt to turn my iCloud on" do you mean you are trying to set up iCloud for the first time?

  • I am using iPhoto version 9.6 and I can no longer get an email sent with a photo attached. I get an error message saying the email did not go through because the server did not reply. I can send the photo with Mail. Help!

    I have upgraded to Yosemite and also updated the iPhoto application to version 9.6. I am no longer able to send a photo from iPhoto via email. I get an error message saying the server is not responding. But, when using the same server in Mail, I can attach the photo and send it. My wife is using the older version of iPhoto and it works fine.
    I have checked the settings for the outgoing server, etc. and the Mail settings match those in iPhoto.
    Could this be due to either the Yosemite upgrade or the iPhoto upgrade?

    This solution is for those of you using 2-step verification for your Apple ID and are using iCloud as the mail server that you are trying to mail photos with.
    I too had this issue. The problem in my case occurred because I had setup 2-step authentication for my Apple ID. If you have done this then you will get the error message "the mail server did not recognize your email/password...". To solve the problem go to:
    https://appleid.apple.com
    Click "Manage Your Apple ID"
    Verify your identity with the device you selected (if this step does not show up then you have not likely set up 2-step authentication and this is not your solution)
    Click Password and Security in the left column
    Click Generate an app-specific password
    Enter iPhoto as the name of the app
    Copy the password and paste this into the password box in iPhoto where you would normally enter your apple ID (in the mail account section in iPhoto preferences).
    And...voila' (I hope)

  • How to edit the text in the attachment list in MM02 through Program

    Hi,
            I want to update the attachment list for the material.
    i.e, MM02 - > Services for object - > attachment list - > "I have 2 items".
    For the the first item, there will be some text is availble. Now my requirement is to update the text.
    For your reference,
    While creating material, the GOS is used to create the items in the attachment list, the code is
      *swc_create_object lv_message 'MESSAGE' lwa_message_key.*
    *** define container to pass the parameter values to the method call**
    *** in next step.**
                    *swc_container lt_message_container.*
    *** Populate container with parameters for method**
                    *swc_set_element lt_message_container 'DOCUMENTTITLE' 'Certification file path'.*
                    *swc_set_element lt_message_container 'DOCUMENTLANGU' 'E'.*
                    *swc_set_element lt_message_container 'NO_DIALOG'     'X'.*
                    *swc_set_element lt_message_container 'DOCUMENTNAME'  'MESSAGE'.*
                    *swc_set_element lt_message_container 'DOCUMENTTYPE'   'URL'.*
                    *CLEAR lv_url.*
                    *REFRESH lt_doc_content.*
                    *lv_url = lwa_data1-url.*
                    *CONCATENATE '&KEY&' lv_url INTO lv_url.*
    **---appneding URL contents to the table*
                    *lt_doc_content = lv_url.*
                    *APPEND lt_doc_content.*
                    *swc_set_element lt_message_container 'DocumentContent' lt_doc_content.*
                    *swc_call_method lv_message 'CREATE' lt_message_container.*
    **** Refresh to get the reference of create 'MESSAGE' object for attachment**
                    *swc_refresh_object lv_message.*
    **** Get Key of new object**
                    *swc_get_object_key lv_message lwa_message_key.*
    *** Now we have attachment as a business object instance. We can now**
    *** attach it to our main business object instance.**
                    *CLEAR: lv_is_object_a,*
                           *lv_is_object_b.*
                    *lv_is_object_a-instid = lwa_hdr_data-material.*
                    *lv_is_object_a-typeid = 'BUS1001006'.*
                    *lv_is_object_a-catid  = 'BO'.*
                    *lv_is_object_b-instid = lwa_message_key.*
                    *lv_is_object_b-typeid = 'MESSAGE'.*
                    *lv_is_object_b-catid  = 'BO'.*
                    *CLEAR lv_reltype.*
    ***      IF lwa_data-url IS NOT INITIAL.**
                    *lv_reltype = 'URL'.*
    **---creating URL for the Material.*
                    *TRY.*
                        *CALL METHOD cl_binary_relation=>create_link*
                          *EXPORTING*
                            *is_object_a            = lv_is_object_a*
    ***    IP_LOGSYS_A            =**
                            *is_object_b            = lv_is_object_b*
    ***    IP_LOGSYS_B            =**
                            *ip_reltype             = lv_reltype.*
                      *CATCH cx_obl_parameter_error .*
                      +**CATCH cx_obl_model_e

    Please close this thread.Open new thread in forum [SAP Community Network Forums » ABAP Development » ABAP, General |;

  • HT201317 I can't share a photostream with my friend.. The email doesn't go through

    When I try to share a photostream with my friend she does not get an invite for it to be shared. I'm trying to do this from an iPhone5 to an ipad2

    Have you enabled iCloud in the Settings for GarageBand on your iPhone?  See this page:  http://help.apple.com/garageband/iphone/2.0/index.html#chsdfe5c2c2
    Turn on iCloud for GarageBand
    You turn on iCloud for GarageBand in the Settings app on your device.
    Close GarageBand.
    On the Home screen, tap Settings, then tap General.
    Tap GarageBand.You might have to scroll down to see the GarageBand icon.
    If the Use iCloud switch is not turned on, tap it.

  • When i try to sign in to my apple id it says your account has been locked for security reasons and then when i go on iForgot the email doesn't come through

    this is really annoying me now i can't download any app updates or do anything to do with my apple id.

    Same problem - did you get this resolved?

Maybe you are looking for

  • How can transfer data from a dialog to another panel?

    Will anyone help me?Thanks. In our project,When the user need to fill some data into the textfield in a panel,he can simplify this action by click a button,when the button is clicked,then a dialog which contains a table of all the imformation of all

  • Brand new nano having trouble updating, maintaining song permissions

    My mom got a brand new 4g nano for Christmas. We brought it down to her computer, which is running Windows XP 2003 with update package 3. We cannot get the ipod and itunes to work together. Here are some of the problems: - My mom bought two songs fro

  • Oracle Tunning in 10g on table parallelism

    Hi, I am working in 10g database(10.2.0.1). I have insert statement which uses table A(120 M rows), B(0.5M rows) and C (0.2M rows) to insert on table D. Following are the table definitions: Table A - Is partitioned, has unique indexe and is declared

  • Display Text in the Second page of the Report.

    Dear, I have a Report With Group G_Emp, having Columns Eno, Ename etc. in a Repeating frame R_1 and I have put A frame below this repeating frame R_1 with a Text Item Just for Displaying Comments, so just i want to display this Text Item in the secon

  • Question on ResultSet

    I want to assign the values of the rows to an array, so I need to initialize the array before assigning them values. Is there any method for getting the total number of rows of the ResultSet? Thanks