I need to obtain the size of file before the send to server

Hello,
I need to obtain the size in bytes the a internal table before the send to server, I use the DESCRIBE sentence but is not allowed me to obtain this value, that sentence I need to use.
Thanks in advance,
DL

If you are on release 620, have a look at class CL_ABAP_MEMORY_UTILITES method GET_MEMORY_SIZE_OF_OBJECT. It will tell you how much memory is allocated and how much is actually used. Here is some sample code:
TABLES: sflight.
DATA: isflight TYPE TABLE OF sflight.
SELECT-OPTIONS: carrid FOR sflight-carrid.
SELECT * FROM sflight INTO TABLE isflight
        WHERE carrid IN carrid.
DATA: size1 TYPE abap_msize,
      size2 TYPE abap_msize,
      size3 TYPE abap_msize,
      size4 TYPE abap_msize,
      flag1 TYPE char128,
      size5 TYPE abap_msize,
      size6 TYPE abap_msize,
      flag2 TYPE char128,
      flag3 TYPE char128.
TRY.
  CALL METHOD cl_abap_memory_utilities=>get_memory_size_of_object
    EXPORTING
      object                     = isflight
    IMPORTING
      bound_size_alloc           = size1
      bound_size_used            = size2
      referenced_size_alloc      = size3
      referenced_size_used       = size4
      is_part_of_non_trivial_szk = flag1
      szk_size_alloc             = size5
      szk_size_used              = size6
      low_mem                    = flag2
      is_in_shared_memory        = flag3.
ENDTRY.
WRITE: / 'Size of Bound and Allocated Memory:', size1.
WRITE: / 'Size of Bound and Used Memory:', size2.
WRITE: / 'Size of Referenced and Allocated Memory:', size3.
WRITE: / 'Size of Referenced and Used Memory:', size4.
WRITE: / 'Strongly Connected Component of Object:', flag1.
WRITE: / 'Size of Allocated Memory of SCC:', size5.
WRITE: / 'Size of Used Memory of SCC:', size6.
WRITE: / 'Flag, whether only bound_size_* are filled due to mem.short.:', flag2.
WRITE: / 'Flag, whether ONJECT is in the shared memory:', flag3.
If you aren't on 620 or don't need to be that precise, you might try the following:
DESCRIBE TABLE isflight LINES size1.
WRITE: / 'Number of Lines:', size1.
DATA: wa_sflight LIKE LINE OF isflight.
DESCRIBE FIELD wa_sflight LENGTH size2 IN BYTE MODE.
WRITE: / 'Size of one Line:', size2.
size3 = size1 * size2.
WRITE: / 'Total Size:', size3.
Please note that the addition IN BYTE MODE only works in 610 and higher. It isn't neccesary before that release. However it is important to get accurate resuls in an Unicode System.

Similar Messages

  • Need to change the sender of the workflow email using SPD 2010

    Hi,
    I got a requirement. I've created a SharePoint Designer 2010 workflow which will trigger an email. The sender of that email is default. I need to change the sender of email to some user's email address like [email protected]
    Can this be possible using SPD 2010. Please suggest.
    Thanks,
    Kunal

    not out-of-the-box.
    you would need to find a third party add-on to send the email. The SPDActivities codeplex project includes some email options that include specifying a sender, but focus on attachments... not sure what would happen if there was no attachment.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • I have lost the purchased downloaded files to install Photoshop Elements 10 and need to obtain the

    5/13/2013
    I have lost the purchased downloaded files to install Photoshop Elements 10 and need to obtain them again so I can reinstall the program and continue my use of it. How can I do this?
    Thanks,
    Gogators69

    You should be able to re-download the PSE10 downloadable-installer from your Adobe account, if you log in to that—I’ve only ever purchased DVDs so cannot give you click-by-click instructions.  Here is what an Adobe-chat rep just told me:
    “If you purchase the download version product you may re download the product from you Adobe account. If you purchase the DVD version and somehow you lost your DVD we can provide trial download link depends on the situation. we are able to provide you the download link if the download link is available on Adobe server.”
    If you have an issue figuring out what to do, then you can start up your own chat session by clicking the Chat Now button on the bottom of this page:
    http://helpx.adobe.com/creative-suite/kb/download-install-trials.html
    They will probably want to know things about your purchase including your serial number so be ready with that if you do start a chat session.

  • Cannot run the big size exe file ( 900MB) on Windows Storage Server 2003 x86 SP2 OS(Hyper-V VM machine)

    When I run a big size exe file(>900 MB) on Windows Storage Server  2003 x86 SP2 OS VM mchine(which is managered by Hyper-V server), I got the following error message:
    Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
    This setup.exe should be a trusted source because of it run other OS(windows 2003, windows 2008, 2008 R2 etc.).  we use the same way to create the exe whose size < 700MB, it works fine on the same machine(Windows Storage
    Server 2003 x86 SP2 OS VM machine).  So I assume that the file size(>900MB) causes the problem, It seems that OS dont' support it.
    My questions:
    1. Is there the limitation of exe size to run on Windows
    Storage Server  2003 x86 SP2 OS VM machine?  If yes, what is the size of limitation?
    2. What reason is this error? Is it related with Hyper-V?
    Thanks,
    Recky

    Did you install the 2003 VM from scratch or did you create it via a P2V process?  In addition to what Shaon says about not all applications running properly in VMs, performing P2V to create VMs can also cause issues with a variety of things. 
    First thing to check would be Shaon's suggestion to try it in another VM.  If it works in another VM, and you P2V'ed this VM, try creating your Storage Server VM from scratch and try again.  Better yet, if the application can be run on a later version
    of the OS, create a 2012 Storage Server instead of the 2003 Storage Server as your VM and give it a try.
    .:|:.:|:. tim

  • Where is the folder that firefox store my bookmark site in ?what is the name of it ? because if i setup anothe os i lost all my sits that i stored before ..so i need to copy it to text file before setup new os ....Thank you

    the location of the file that my bookmark sites stored in ....to be able to copy it as backup if my OS crashed or any unexpected event ...By the way if there is a way to restore all my bookmark sites from text in one operation ...it will be good for me ...thank you

    See also:
    * http://kb.mozillazine.org/Profile_backup and [[Backing up your information]]
    * http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • Need command line to view info user agent is sending to server.

    What's the command line for this in Terminal? Any site resources you can refer me to so I can learn more on this? I'm a med-adv mac user. Not power user----on 10.8.3.
    Any direction on my query is greatly appreciated.
    Have a great week everyone!

    CheckMyIp.org

  • Do i need to delete everything off my ipod before i send it in to apple????

    i am sending it intoday

    I don't think that you need to do it but it would be better to protect your data.
    I've sent my iPod Touch to Apple today too and I've deleted everything after I have made a backup.

  • How to obtain the value at the end of quarter

    Hi,
    I am new to CR2008. I need to obtain the value of a particular field (say inventoryEndValue) at the end of each quarter, and use it as the starting value (say inventoryStartValue) for the next quarter. I want to show these values (the end value of a quarter and the beginning value for the next quarter, though both values are same) in both the charts and cross tabs.
    Can you please help me how to solve this?
    Thanks,
    Roshan.

    Hi Roshan,
    For creating manual running total, please follow the below steps:
    RESET->The Reset formula initializes the variable and assigns it an initial value. This formula is typically placed in a headers section, such as, Page Header, Report Header, or Group Header.
             WhilePrintingRecords;
             Global NumberVar nRT := 0;
    EVALUATE->The Evaluate formula updates the value of the variable. This formula is typically placed in the Details section.
             WhilePrintingRecords;
             Global NumberVar nRT := nRT + (value);                        
    DISPLAY->The Display formula shows the current value of the variable on the report. This formula is typically placed in a footer section, such as, Page Footer, Report Footer, or Group Footer.
             WhilePrintingRecords;
             Global NumberVar nRT;
    Hope this helps you!
    Regards,
    Anindita

  • Obtain the URL of BPM task with Task query Service

    Hi!
    I am using the task query service to obtain information about Tasks with web services. I need to obtain the creator and the URL to access to the detail of the task (i don't know if this column is "taskDisplayUrl").
    I have this Request but the response haven't the creator or the taskDisplayURL anybody can knows why?
    Request:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tas="http://xmlns.oracle.com/bpel/workflow/taskQueryService" xmlns:com="http://xmlns.oracle.com/bpel/workflow/common" xmlns:tas1="http://xmlns.oracle.com/bpel/workflow/taskQuery" xmlns:task="http://xmlns.oracle.com/bpel/workflow/task">
    <soapenv:Header/>
    <soapenv:Body>
    <tas:taskListRequest>
    <com:workflowContext>
    <!--Optional:-->
    <!--Optional:-->
    <com:token>aeb02ebe-69e9-4410-90d7-cffd45c2613c;;VnIEtWPiaoh7tTD1KhC4D0sjFNTVLdgySbQVa4xK0TiBb+0nzaqm/UA4THYju77KK/9xaPUH6F355rtMEoKAYBtXPPyHBYWnaGkZjAz5AB1PQyjs+hvqvA1SaVQnhWcRy8ZtTarO+vCxseuGit62QIoLa1vWKKC59j7m+OWxKYonchVcCo2droku9YZaf9T45cDLC3eh6UXzgM4S2f7OCF4BxI4b43jJZTJ6Ny3Zr/VQo57+73mkP2xxp3mtvu/5</com:token>
    </com:workflowContext>
    <tas1:taskPredicateQuery startRow="0" endRow="0">
    <!--You have a CHOICE of the next 2 items at this level-->
    <!--Optional:-->
    *<tas1:displayColumnList>*
    *<tas1:displayColumn>CREATOR</tas1:displayColumn>*
    *<tas1:displayColumn>TITLE</tas1:displayColumn>*
    *<tas1:displayColumn>CREATEDDATE</tas1:displayColumn>*
    *<tas1:displayColumn>taskDisplayUrl</tas1:displayColumn>*
    *<tas1:displayColumn>PRIORITY</tas1:displayColumn>*
    *<tas1:displayColumn>TASKNUMBER</tas1:displayColumn>*
    *</tas1:displayColumnList>*
    <tas1:optionalInfoList>
    <!--Zero or more repetitions:-->
    </tas1:optionalInfoList>
    <!--Optional:-->
    <tas1:predicate>
    <!--Optional:-->
    <tas1:assignmentFilter>MY_AND_GROUP</tas1:assignmentFilter>
    <!--Optional:-->
    <!--You have a CHOICE of the next 2 items at this level-->
    <!--Zero or more repetitions:-->
    <tas1:clause joinOperator="OR" ignoreCase="false">
    <!--Optional:-->
    <tas1:column>TITLE</tas1:column>
    <tas1:operator>EQ</tas1:operator>
    <!--You have a CHOICE of the next 3 items at this level-->
    <!--Optional:-->
    <tas1:value>BPM_NotasGastos</tas1:value>
    <!--Optional:-->
    </tas1:clause>
    <tas1:clause joinOperator="OR" ignoreCase="false">
    <!--Optional:-->
    <tas1:column>TITLE</tas1:column>
    <tas1:operator>EQ</tas1:operator>
    <!--You have a CHOICE of the next 3 items at this level-->
    <!--Optional:-->
    <tas1:value>BPM_AprobacionPedido</tas1:value>
    <!--Optional:-->
    </tas1:clause>
    <!--Optional:-->
    </tas1:predicate>
    <tas1:ordering>
    <!--Zero or more repetitions:-->
    <tas1:clause>
    <!--You have a CHOICE of the next 2 items at this level-->
    <tas1:column>updatedDate</tas1:column>
    <tas1:sortOrder>DESCENDING</tas1:sortOrder>
    </tas1:clause>
    </tas1:ordering>
    <!--Optional:-->
    </tas1:taskPredicateQuery>
    </tas:taskListRequest>
    </soapenv:Body>
    </soapenv:Envelope>
    the response
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
    <taskListResponse xmlns="http://xmlns.oracle.com/bpel/workflow/taskQueryService">
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-12T15:30:54+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-12T15:30:54+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>baf46727-1a3f-4f88-90ca-3f2a101dbd76</taskId>
    <taskNumber>212891</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-12T15:30:54+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.43*soa_b5148411-0b3b-4a01-a6a1-5c05e59ee763/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.43*soa_b5148411-0b3b-4a01-a6a1-5c05e59ee763/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_b5148411-0b3b-4a01-a6a1-5c05e59ee763</mdsLabel>
    <customAttributes/>
    </task>
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-12T15:21:18+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-12T15:21:18+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>be730766-ceaf-4ff6-ab30-11dbbbc53b6c</taskId>
    <taskNumber>212881</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-12T15:21:18+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.42*soa_4a0f73f0-faf9-4d42-8c9d-3e9bb7ab602a/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.42*soa_4a0f73f0-faf9-4d42-8c9d-3e9bb7ab602a/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_4a0f73f0-faf9-4d42-8c9d-3e9bb7ab602a</mdsLabel>
    <customAttributes/>
    </task>
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-12T11:44:44+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-12T11:44:44+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>5a17b895-6577-4cdf-87f4-30f6c9127681</taskId>
    <taskNumber>212405</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-12T11:44:44+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.37*soa_520d40c0-fa0a-49bc-a5b2-8fd2dcca9651/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.37*soa_520d40c0-fa0a-49bc-a5b2-8fd2dcca9651/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_ff7d9ce2-7bef-433b-9e6d-12461136eff9</mdsLabel>
    <customAttributes/>
    </task>
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-12T11:39:22+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-12T11:39:22+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>fa249c9c-d45b-4bb6-869b-3ae2893147d8</taskId>
    <taskNumber>212383</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-12T11:39:22+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.36*soa_4fb21287-882e-4e9a-9087-4c39f8bd3b29/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.36*soa_4fb21287-882e-4e9a-9087-4c39f8bd3b29/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_ff7d9ce2-7bef-433b-9e6d-12461136eff9</mdsLabel>
    <customAttributes/>
    </task>
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-08T14:38:12+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-08T14:38:12+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>df18152a-6a5a-40ac-a06f-64ad6507f4fb</taskId>
    <taskNumber>211358</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-08T14:38:12+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.24*soa_abca4e03-b8e6-414a-8b59-8943ac2fbb0c/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.24*soa_abca4e03-b8e6-414a-8b59-8943ac2fbb0c/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_abca4e03-b8e6-414a-8b59-8943ac2fbb0c</mdsLabel>
    <customAttributes/>
    </task>
    </taskListResponse>
    </env:Body>
    </env:Envelope>

    Hi, did you find the way to find the URL of the WSDL? I have the same problem.

  • Trigger alert for file not existing in sender FTP server

    Hi all,
    I have a scenario file to file.In the sender FTP server a file is placed every 3hours.If file is present it will work in the normal file to file procedure.But when no file exists it should trigger an alert.
    Scripts on FTP server is not accepted as a solution.
    Can anyone let me know how this requirement can be achieved.
    Points will be awarded generously.
    regards,
    padma

    Hi
    But when no file exists it should trigger an alert.
    EMAIL can be used : assign an EMAIL ID to the corresponding user in the transaction SU01 and then set up SCOT and you can send emails when the ALERT is triggered.
    Once you have configure Alerts, you will get the Alerts into ALERT INBOX in RWB of the user. To also get the email, the following needs to be done,
    1. In SU01 -- Assign the Email ID for the Recipient of the ALERT.
    2. In , RWB>ALERT INBOX> PERSONALIZATION--> Time Independent Delivery and Email are selected.
    3. Finally, SCOT needs to be set up to send Emails. Check this for the same. You can ask your BASIS team to do this step.
    http://help.sap.com/saphelp_nw04/helpdata/en/23/1edf098ea211d2b47300609419ed29/frameset.htm
    Also, In ALRTCATDEF, go to SETTINGS--> CONFIGURATION. By default, the option selected is INTERNAL PROCESSING. Select the option SMTP FORWARDING AS XML and give the email id. This will enable you to send an email alert whenever an error occurs in XI.
    Also, to test your Alerts, execute the report RSALERTTEST in SE38.
    Also go throuh the following links...
    The specified item was not found.
    The specified item was not found.
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/81023cfa699508e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/frameset.htm
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2
    Configuring scenario specific E-mail alerts in XI-CCMS: Part u2013 1
    Configuring scenario specific E-mail alerts in XI-CCMS: Part  - 1
    Regard's
    Chetan Ahuja

  • DataSocket Server will not start when the Launch DS Server if Local URL.VI is bundled into a LabVIEW application.

    I want to run a LabVIEW application on several machines remotely that do not have LabVIEW installed (licensing issues). Hence I have built a LabVIEW executable with the RunTime Engine to install on all of these remote machines.
    The VI has a bi-directional link, using Datasockets, to a machine with DAQ and Image acquisition functions. It primarily receives data items, but also the capability to change data items so it needs to run the "Launch DS Server if Local URL.VI" in order to publish data to the DataSocket server.
    When I run the pre-built VI on a machine that has LabVIEW Developers Edition installed, everything works fine - ie.
    the DataSocket server starts on the remote machine. However when I build the *.exe application and run it on a machine with and without LabVIEW Developers Edition installed the VI successfully subscribes to the DAQ and Image Acquisiton machine, but it does not start its own connection to the Data Socket server, and hence does not publish the data that the DAQ machine needs to suscribe to. IT seems that the Launch DS Server if Local URL.VI is bypassed? I have fiddled around with the Build settings but to no avail.
    In short, how do I get the DataSocket Server to run in a LabVIEW executable? Is it indeed possible? Any advice would be welcomed.
    When distributing a Labview Application (*.exe) with Data Socket Server Publish functionality, the DataSocket server does not start and hence no data can be sent by the Remote PC to the Server. The VI successfully retrieves data from the DS Server. I have used the "Launch DS Server if Local URL.vi" in the ditributed application but for some r
    eason this VI is not executed when I run the executable. How can you force the DataSocket Server to run with executable LabVIEW applications?

    Ryan,
    How to add Datasocket Server Control.vi?
    Source Files only show Project Files.
    So, I added Datasocket Server Control.vi file to the project first.
    Then I added it to Always Included < Source Files < Application Properties (Build Executable).
    Last, I built the Executable, but it didn't work.
    Can you help me.
    Thank you.
    Pedro Raposo

  • Changing the "Preffered DNS Server" possible?

    hi guys,
    I'm trying to do something pretty obscure here so bear with me:
    I have a Dreamcast and want to go online with it. I've order a Broadband Adapter for it (Yes they did make them for it!) and in order to connect to the private servers (as the official Sega servers went offline in 2007) you need to change the preferred DNS server within the Dreamcasts browser software.
    I tried it on BT Dial Up via the Dreamcasts standard Dial Up Modem but it wouldn't work and upon phoning BT support they told me it wasn't possible.
    So all I want to know is can it be done on Broadband/infinity? I just want to point the DC to another server, not my whole network. It won't mess anything else up right? Thanks for your patience!
    Tony

    The default gateway should be left at 192.168.1.254 (Home Hub default) as that is the path to the Internet. If you set it to obtain the IP address automatically, then the default gateway will be set automatically. I am assuming that you are not using static IP addresses on your network.
    The DNS should be set to manual, and you will need to enter the recommended DNS addresses (normally two of them)
    If it is left to automatic, then it actually defaults to 192.168.1.254, which is not what you want.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How to change the default mail server??? Please help.

    I need to change the default mail server to my yahoo account. When I had my PC this was easy but I cannot figgure it out on the MAC. I am in China and I need to inform my insurance company of some information or they are going to cancel a policy. When I go to their site for email contact what pops up is the apple email, which I do not have an account for and ofcourse does not work. Their email address does not show and I cannot find it anywhere so I need to change the default to my yahoo account. On my PC this was easy and when I went to a site that had a contact but no email address, my yahoo account would come up. I hope I am explaining this correctly. I really need to do this fast as the letter I got took some time to get here and I just returned from some field work so I have about 2 or 3 days to get the information to them. Thank you.

    John,
    This does not demonstrate anything for me, since it brings up a Compose window for Mail, with my preferred account as the From address. This happens whether I access with Safari, or with Firefox.
    The point that I am trying to make, is that in OSX, there is no way to have web mail access become the default mail method -- it only works with a true mail client, for POP, IMAP or .mac access on your Desktop.
    If you have the type of yahoo account that can be setup for POP access with Mail, then when you click, you can choose your yahoo address as the From address to send from.
    Of course you can insert the address in a new message with your Yahoo web mail, but I have understood you to want to have the message start containing the info from one of the pages on the site?
    See the discussion at the following link, for setting up a Yahoo account in Mail:
    http://discussions.apple.com/thread.jspa?messageID=2760483&#2760483
    Ernie

  • How to send mails in HTML format from the send mail step of workflow?

    Hi,
    I have a requirement where I need to send mails in the html format from the send mail step of the workflows.
    But what I found out that the html tags are not renderd and as such the output is in plain text.
    I know that there is an alternative of using an activity step and use my own custom code from within there,But due to certain business constraints, I need to use the send mail step only.
    My SCOT settings are all right.
    Please let me know how it can be done.
    Thanks,
    Samrat.

    Samrat,
    It can't be done, you have to use your own activity step.
    What are these constraints that refrain you from doing that?
    Rgds,
    Patrick

  • How to change the sender's name/email-id in the scheduled report

    Hi,
    We have SCOM 2007 R2. In the Reporting tab (SCOM Console), we have some scheduled reports. I need to change the sender's name/email-id in a scheduled report. When we receive the report through email, receiving with the person's name who moved out of the
    team.
    I tried to change but could not find the option to change while editing the properties in SCOM Console under Reporting -> Scheduled Reports.
    When we are receiving mail from that scheduled report, instead of an individual name, would like to provide a generic name. Please help me out. Let me know, if you need more information.
    Thanks,
    Naren.
    Thanks & regards, Naren.

    Hello,
    the SCOM scheduled reports feature rely on SQL Reporting Services. So, if you would like to change the SMTP configuration, you should go in SQL Reporting Services Configuration Manager:
    Open in the Start Menu, Reporting Services Configuration Manager.
    In the connection window, click OK.
    Click on the tab E-mail settings.
    Change the Sender Address.
    Click Apply.
    Alternatively, you could also change in the Scheduled report properties the field
    Reply to. I think it should customize the reply address for each scheduled reports, but I have never used it. Anyway, doing it with Reporting Services Configuration Manager is more interesting in the long-run.

Maybe you are looking for