How do I find contents of PSA in BI 7.0

I am using BI 7.0. How do I find contents of PSA? Only way I found:
1.     Go to Monitor, Select the Request, Go to Detail tab, right Click to get Context Menu and select PSA maintenance. Is there a transaction code to get to PSA  or other ways of getting to PSA?
THANKS A LOT.

Hi Zigzagdna,
Go to RSA15-->go to your data source>right click>manage->select the request you want to see in PSA, select the psa icon in the left bottom cornerSelect ok.
Go to RSA15-->go to your data source->double click your data source-->on the application toolbar, there is an icon to switch on the technical attributes->click the icon->There will be an alphanumeric table name as PSA table->doucle click it ->On the application toolbar there is contents icon->run(after selections).
Go to infopackage monitor on the application toolbar there is PSA icon. Click it to see the contents of the PSA loaded by this request.
For you previous SQL eror while executing infopackage for loading copy cube.
Try loading data with selections in infopackage. May be you are trying to fetch more data than the ABAP program used for loading at the background can handle.
Hope this helps,
Best regards,
Sunmit.

Similar Messages

  • How to find content of a constraint etc.

    Hi,
    select constraint_name
    from user_constraints
    where table_name = 'EMP';
    shows to two constraints for the given table of EMP. Now, how to find CONTENT of each of these two constraints?
    Secondly, how to find if a particular column is nullable (programmatically, not from DBA tool set)? e.g. EMP.deptno
    Thirdly, why did I get the err msg of "inserted value too large for column"
    when executing the following command for data insertion to EMP as user, scott
    create SEQUENCE emp_sequence
    start with 8000 increment by 10;
    insert into EMP values (emp_sequence.NEXTVAL,'JOE','Researcher',null,null,null,null,null);
    Thanks a bunch.

    Thirdly, why did I get the err msg of "inserted value too large for column"Er, do the math...
    SQL> conn scott/tiger
    Connected.
    SQL> desc emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    MGR                                                NUMBER(4)
    HIREDATE                                           DATE
    SAL                                                NUMBER(7,2)
    COMM                                               NUMBER(7,2)
    DEPTNO                                             NUMBER(2)
    SQL> select length('researcher') from dual
      2  /
    LENGTH('RESEARCHER')
                      10
    SQL>
    Secondly, how to find if a particular column is nullable (programmatically, not from DBA tool set)Don't like the sound of this, smells of dynamic coding. Anybody who can't figure out why they can't create an EMP record for a researcher probably ought not to be tangling with dynamic SQL just yet.
    Now, how to find CONTENT of each of these two constraints?The CONSTRAINT_TYPE tells you the sort of constraint: P=PRIMARY KEY, U=UNIQUE, R=FOREIGN KEY and C=CHECK. Only Check constraints have any content as such and you'll find that in the SEARCH_CONDITION. Note that this is a LONG column, so you may need need to SET LONG 5000 to see it in SQL*Plus.
    Cheers, APC
    P.S. In future please refrain from bundling unrelated questions into a single post. There is no charge for posting and it avoids the threads getting long and hard to follow.

  • I dont have any icons except computers and settings.  how do i find istore with all my previous purchased content?

    i dont have any icons except computers and settings.  how do i find istore with all my previous purchased content?

    That is the result when the Apple TV has lost the Internet connection.

  • I have installed the latest version of iOS in my ipad but forgot to backup the content, what should i do!!! I don't want my media and other data erased, how can i find back all the data in my ipad? I haven't restore ipad yet, so any others way can be use?

    I have installed the latest version of iOS in my ipad but forgot to backup the content, what should i do!!! I don't want my media and other data erased, how can i find back all the data in my ipad? I haven't restore ipad yet, so any others way can be use? Now my ipad is in recovery mode.

    Once you are in Recovery Mode, it's too late to do any backup. I am afraid you are going to lose your data.

  • How to find contents of ABAP proxy message

    we are using an ABAP proxy to send data including a document number from SAP to PI when a document is received on our SAP ERP system.
    it is possible under certain conditions that the proxy will not be processed, but the document has. I want to be able to check the messages sent to PI  to ensure that all the data has actually created a proxy message. How can I, if it is possible, find the data within the messages so I can determine if the whole process has completed OK.
    Put another way how do we know what data is in a message as listed under transaction SXMB_MONI ? The GUID in this transaction appears to relate to table SXMSPMAST but how can I find the information contained within that message so I can then link the message with the original document and then if necessary call the proxy again for that document ?
    Colin
    Edited by: Colin Heap on Oct 22, 2009 5:16 PM

    The problems I mentioned above seem to have been down to the xml messages themsleves rather than the coding found from Ravis' link however I made a few changes to the code to add more flexibility in the search parameter and also a TRY - ENDTRY to deal with the problem of abends when the SAP cannot interpret the message contents.
    please refer to the original BLOG ( Super Message Monitor for SAP XI ) by Alessandro Guarneri at the link in Ravis' post.
    I have then made the following changes. Please note that the field names used in my code are slighlty different to the original code to fit in with local coding practice however I think it will be easy for a programmer to interpret the changes
    1. Selection Screen 850 has been changed to use a SELECT-OPTION for the payload value. In Alessandros' code this is in INCLUDE ZXIMONI_RSXMB_SEL_MSG_SEL.
    * Super selection screen -------------------------------------------------- BEGIN
    TABLES: idxsndpor, idxrcvpor.
    SELECTION-SCREEN BEGIN OF SCREEN 0850 AS SUBSCREEN.
    SELECTION-SCREEN COMMENT 5(40) text-S98.
    * IDoc
    SELECTION-SCREEN BEGIN OF BLOCK idoc WITH FRAME TITLE text-s16.
    * Sender
    SELECTION-SCREEN BEGIN OF BLOCK idoc_snd WITH FRAME TITLE text-s14.
    SELECT-OPTIONS: s_snum FOR idxsndpor-idocnumber NO INTERVALS,
                    s_styp FOR idxsndpor-idoctyp    NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK idoc_snd.
    * Receiver
    SELECTION-SCREEN BEGIN OF BLOCK idoc_rcv WITH FRAME TITLE text-s15.
    SELECT-OPTIONS: s_rnum FOR idxrcvpor-idocnumber NO INTERVALS,
                    s_rtyp FOR idxrcvpor-idoctyp    NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK idoc_rcv.
    SELECTION-SCREEN END OF BLOCK idoc.
    * Payload
    SELECTION-SCREEN BEGIN OF BLOCK xp WITH FRAME TITLE text-s30.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT (30) text-x01 FOR FIELD p_xpath.
    PARAMETERS: p_xpath TYPE text256.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT (30) text-x02 FOR FIELD s_xvalue. 
    PARAMETERS: p_xvalue TYPE text256 NO-DISPLAY.                   
    SELECT-OPTIONS s_xvalue for p_xvalue.                                      
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK xp.
    SELECTION-SCREEN END OF SCREEN 0850.
    * Super selection screen -------------------------------------------------- END
    I'm having trouble entering the next piece of code for INCLUDE ZXIMONI_RSXMB_CUSTFILTERS  so will enter it in the next post.

  • H how to find  if the psa table is included in psa deletion process chain

    Hi all
    can anybody tell me .
    I have a psa table it's technical name is /BIC/B*
    h how to find  the  above psa table is included in psa deletion process chain or not
    please help me

    Hi
    Ope the PC in RSPC1 -->go to planning view of process chain
    in left side you will find different types of process types.
    under other BW process types folder -->you will find process type "Delete request from PSA"
    drag this into your process chain planning view and customize it based on your requirements.
    check the below article for step by step procedure
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a02ba9e7-bb6f-2c10-09b4-e86b9fcbad41?QuickLink=index&overridelayout=true
    Regards,
    Venkatesh

  • How can i find the size and contents of playlist created by genius?

    How can i find the size and contents of i-tunes playlist created by genius?

    Have a look at this article written by the CEO of our company (MoviMED):
    http://www.qualitymag.com/articles/91010--d-imaging-enters-the-machine-vision-world?v=preview
    What is the object you are going to be making with the CNC?  Is it a cube? Is it an intricate statue?
    Are you making an object with a CNC, or just mounting a camera to a CNC to image the object?
    www.movimed.com - Custom Imaging Solutions

  • How to reverse find through powershell script in contents of the file

    Hello All,
    Following script is to perform the find and replace in the files:
    [CmdletBinding(SupportsShouldProcess=$True)]
    param (
    [Parameter(Mandatory=$true)]
    [string] $inst1 = $null,
    [Parameter(Mandatory=$true)]
    [string] $inst2 = $null,
    [Parameter(Mandatory=$true)]
    [string] $FPath = $null
    (get-content $FPath) | foreach-object {$_ -replace $inst1, $inst2} | set-content $FPathAbove script find and replace from starting of the string in the file contents.Please suggest how to achieve find and replace from last of the string for example:string is a\b\c\d\e and find "\" from last and replace it with Test, output should be Teste.Thank You

    #string is a\b\c\d\e and find "\" from last and replace it with Test, output should be Teste.
    $string = 'a\b\c\d\e'
    $Replace = 'Test'
    $string -replace '.+\\',$Replace
    Teste
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • How can i find the appreciate XI content: Control System - SAP ERP?

    Hi all,
    I'm try to find an XI Content for Control System (Insite is our Control System) - SAP ERP. I don't know if it exist an XI Content Control System (Insite) - SAP ERP? If this XI Content is exist, how can i find it and the document about this XI Content?
    If anyone do or did an integration scenario between Control System - SAP ERP and know the appreciate XI Content for this scenario, could you please help me?
    Thanks a lot in advance,
    Vinh Vo

    hi
    check whether the content is available in SMP
    https://service.sap.com/swdc -> Content
    The XI content details can be found here.
    rgds,
    Arun

  • How can I find text-item description and content in database?

    I make "Actual news" region with text and simple image items.
    With "Custom Search" autoquery I make news portlet with 10 latest news.
    But I will make with PDK-Java discussion portlet, in which users can read and write about last published (last created text item display name and content) news.
    My questions:
    - How can I find text-item description and content in database?
    - How I can sort text-items to find latest created in my region?
    I have Portal R2
    Thanks in advance.
    Cheslav

    I am sorry. The following are the related tables.
    WWV_TEXT
    WWV_TEXT_BLOCKS
    WWV_TEXT_BLOCK_USAGES
    WWV_USER_TEXT_BLOCKS
    WWV_USER_TEXT_BLOCKS$
    WWV_USER_TEXT_BLOCK_USAGES
    WWV_USER_TEXT_BLOCK_USAGES$
    May be you want to browse WWV_TEXT which is the core table.

  • How do I find folder contents which were accidentally deleted?

    How do I find folder contents which were accidentally deleted?

    They would be in your Trash. Unless you have emptied your trash since then, in which case you'd need to use a file recovery tool such as Data Rescue.
    Of course, if you use Time Machine for backups, you can easily retrieve the file from TM.
    Matt

  • How can I find out how much space iMovie content is taking up on my iMac?

    My hard drive is almost full.  I have begun deleting photos, but I think my videos are taking up the majority of the space on my iMac's hard drive.  How can I find out exactly how much space my videos are taking up?
    Thanks!

    , About This Mac, then click on the Storage tab at the top to see a simple graphic display, with detailed numbers below.
    (This example is from a new Mac with very little installed.)

  • How to find information abt PSA?

    Hi All,
    I need to find the PSA's which are not deleted for long time.
    Let me know the process.
    Thanks
    Jagadeesh

    Hi Jagadeesh,
    Go to Table  RSTSODSPART.
    Display the records with deletion indicator as blank ( put selection condition = space ie blank)
    It will display you the list of PSA table whose PSA requests are not yet deleted.
    Using the Technical name of ODS (which is PSA table name in RSTSODSPART) you can find out the datasource name in table RSTSODS.
    You can verify this by going to the Manage of that Datasource and checking the requests available there.
    Hope this helps you in easily finding out the PSA tables with large PSA requests pending for deletion.
    Regards,
    Pratap Sone

  • How do I find what is taking up all the space in my iMovie library?

    If I find the my iMovie library in Finder, it's total size is a reported 15.59GB and, as far as I can tell, I cannot open it in Finder to see what files are taking up that space.
    If I look at my iMovie library in iMovie, it apparently contains one event, which contains one movie.
    If I select the move as then go to File -> Reveal in Finder, I can see all the folders and files associated with the event and they come to a grand total of 5.95 GB.
    So, how do I find out what movies, clips or projects are taking up the other ~ 10GB in the iMovie library folder?
    I'm using iMovie 10.0.5

    When I did that, I could still only see the same contents as shown in the third screenshot above. However, minutes after doing the "Show package contents", iMovie seems to have figured out that it didn't have 15GB of data in its library after all and updated its size accordingly. So, problem solved for now but I still find iMovie to be painful to use and I will probably avoid doing so as much as I can.

  • How can I find out this person who has been emailing me every few months. I have one of the emails full header that I retrieved on my iPhone.

    How can I find out this person who has been emailing me every few months. I have one of the emails full header that I retrieved on my iPhone. I omitted my email address for privacy, but mostly it is original. Is this email a scam? I don't know who this person is. Thanks in advance!
    Delivered-To: myemailaddress
    Received: by 10.194.200.42 with SMTP id jp10csp681530wjc;
            Sat, 5 Jul 2014 14:14:16 -0700 (PDT)
    X-Received: by 10.50.56.84 with SMTP id y20mr28216830igp.8.1404594856368;
            Sat, 05 Jul 2014 14:14:16 -0700 (PDT)
    Return-Path: <[email protected]>
    Received: from nm33.bullet.mail.ne1.yahoo.com (nm33.bullet.mail.ne1.yahoo.com. [98.138.229.26])
            by mx.google.com with ESMTPS id m3si35722810igx.17.2014.07.05.14.14.15
            for <myemailaddress>
            (version=TLSv1 cipher=RC4-SHA bits=128/128);
            Sat, 05 Jul 2014 14:14:16 -0700 (PDT)
    Received-SPF: none (google.com: [email protected] does not designate permitted sender hosts) client-ip=98.138.229.26;
    Authentication-Results: mx.google.com;
           spf=neutral (google.com: [email protected] does not designate permitted sender hosts) [email protected];
           dkim=pass (test mode) [email protected]
    Received: from [127.0.0.1] by nm33.bullet.mail.ne1.yahoo.com with NNFMP; 05 Jul 2014 21:14:14 -0000
    Received: from [98.138.226.180] by nm33.bullet.mail.ne1.yahoo.com with NNFMP; 05 Jul 2014 21:11:31 -0000
    Received: from [216.39.60.172] by tm15.bullet.mail.ne1.yahoo.com with NNFMP; 05 Jul 2014 21:11:31 -0000
    Received: from [216.39.60.235] by tm8.access.bullet.mail.gq1.yahoo.com with NNFMP; 05 Jul 2014 21:11:31 -0000
    Received: from [127.0.0.1] by omp1006.access.mail.gq1.yahoo.com with NNFMP; 05 Jul 2014 21:11:31 -0000
    X-Yahoo-Newman-Property: ymail-4
    X-Yahoo-Newman-Id: [email protected]
    Received: (qmail 10573 invoked by uid 60001); 5 Jul 2014 21:11:30 -0000
    DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bellsouth.net; s=s1024; t=1404594690; bh=8lP9IZEfjYYvkNMfRPgse4H7Tdyw/p0f3ooOSB7OIWQ=; h=References:Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=cPhLMVvHd7njmUyKFL8pNlQ0EXM+UFVsNWmHYcJMzKp4uWRlYckCEh+YQ+bkGMfCSgyUf5wEagOx6V4yIZ/7exoVJ0o1Njv7B/MbasfBtay6mz78OZH+NpblaoXu4sCVOzWEac1D4V5C4IZkrw+gs6YR8j7r69MTbDiIgkNx+M8=
    X-YMail-OSG: YIV3Og8VM1n.PMXdFiukRw_37cXcu7K4JqrkCRRAd4uAIqh
    7bDt6_LpjPVNd_7061V2HtSOshQ5IhAM6cHrANh11vcCPels0RxQAo42gFw9
    WqvBpNbW47_ShV.gbS7FEh2bp01k38s9DF9rDZE2yfMoZx145AsWCJcHwL_B
    OzdCrD.IeJPFFPTfbumbwibDSriFOpkX32K6QCbITIE0eK9XEDBW87UqBh1N
    H8dHrTTUp7SCHa6WVIXbcn93Zvk6DdM4gqypxDqeEIsFcRcXWIp_yP_5E2zr
    VCeW6CYrGgYukU8H1Xv2kIDdJDa2ohHmPGgme44wJjk6PbhBZ_V_nsTYiOsi
    YY0FB5vwVlif7rw7EWozVUVXst_YOjpr1M0QQc.aztb8O_5DgdzSLXLj1bcy
    UgTvu9dknKMzu4CfYIYOOag_8iCQS6B9t8750NRn2XEdreWAsIcjvOmuRZ5p
    G.1hOcP0e2pKM6ZXkfDcLesDpTyRX2k39kkhaOQLKjQfu15v5vgSkHAdaGR5
    vlEqufGG0mUygckQ4whX29pjbiKAwltm9C8Kwv98PCCt4o1k6GEjShLJ7lze
    u2HthiVEBWHEWxCluIQ0zoV6euEyjyHcFPMsNalbM.Wf6GyL4w.Eb7L.kxIC
    IY4qCJMW8byI5myLQtE6CuqPpVOPuUrXM3sksYCsKO2OJ5sJBJ99DuZ8TbYG
    pWDoaGQhSnuokIjgV_9qFYH5JX17XGUvcFTwc3Bt8lUpihXKpnGNjAD2Ix14
    tOYJwOGqsgm97ELPLKPN0hUVslr7bWcv81fuWkCwBYFOlwqJWaGY-
    Received: from [69.197.222.248] by web181604.mail.ne1.yahoo.com via HTTP; Sat, 05 Jul 2014 14:11:30 PDT
    X-Rocket-MIMEInfo: 002.001,CgogCk9uIFNhdHVyZGF5LCBKdWx5IDUsIDIwMTQgMzo0NyBQTSwgRSBMIEpSIEhFUk1BTk4gPGVoZXJtYW5uOTE0OEBiZWxsc291dGgubmV0PiB3cm90ZToKICAKCgpUSEFUIFdBUyBHUkVBVCBJVCBSRUFMTFkgR0lUUyBUSEUgUE9JTlQgQUNST1NTIQrCoApJIHNlbmRpbmcgaXQgdG8gYWxsIG9uIG15IGUtbWFpbCBsaXN0LiBIT1BFIFlPVSBETyBUSEUgU0FNRS4KwqAKQWwgSGVybWFubiAKCgpPbiBXZWRuZXNkYXksIEp1bHkgMiwgMjAxNCAxMDoxNCBBTSwgQm9iYmllIFJhZ3NkYWxlIDxicmFnczI4MDRAYXQBMAEBAQE-
    X-Mailer: YahooMailWebService/0.8.191.1
    References: <DCB3F2E14C7D47B8AC60CB1A86EE0D75@RaleighHP3> <[email protected]> <[email protected]>
    Message-ID: <[email protected]>
    Date: Sat, 5 Jul 2014 14:11:30 -0700
    From: E L JR HERMANN <[email protected]>
    Reply-To: E L JR HERMANN <[email protected]>
    Subject: Fw: Volkswagen Ad     (FROM AL HERMANN, PLEASE WATCH THIS ONE)
    To: undisclosed recipients: ;
    In-Reply-To: <[email protected]>
    MIME-Version: 1.0
    Content-Type: multipart/alternative; boundary="2017413661-1636348801-1404594690=:35141"
    --2017413661-1636348801-1404594690=:35141
    Content-Type: text/plain; charset=iso-8859-1
    Content-Transfer-Encoding: quoted-printable
    =0A=0A =0AOn Saturday, July 5, 2014 3:47 PM, E L JR HERMANN <ehermann9148@b=
    ellsouth.net> wrote:=0A  =0A=0A=0ATHAT WAS GREAT IT REALLY GITS THE POINT A=
    CROSS!=0A=A0=0AI sending it to all on my e-mail list. HOPE YOU DO THE SAME.=
    =0A=A0=0AAl Hermann =0A=0A=0AOn Wednesday, July 2, 2014 10:14 AM, Bobbie Ra=
    gsdale <[email protected]> wrote:=0A  =0A=0A=0A=0A=0A=0A =0A=0A  =0A=0A=0A =
    =0A=0A =0A=0A =A0          =0A=0A =0A=A0 =0A>>>=A0 =0A>>>What a brilliant =
    way to communicate  how risky it is to use mobile phones while driving! Mor=
    e than  1.5 million views in 3 days! =0A>>> =0A>>>https://www.youtube.com/e=
    mbed/JHixeIr_6BM?rel=3D0&autoplay=3D1&iv_load_policy=3D3
    --2017413661-1636348801-1404594690=:35141
    Content-Type: multipart/related; boundary="2017413661-447096318-1404594690=:35141"
    --2017413661-447096318-1404594690=:35141
    Content-Type: text/html; charset=iso-8859-1
    Content-Transfer-Encoding: quoted-printable
    <html><body><div style=3D"color:#000; background-color:#fff; font-family:He=
    lveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;fo=
    nt-size:18pt"><div><span></span></div><div class="3D""qtdSeparateBR"><br><br>=
    </div>  <div class="3D""yahoo_quoted" style=3D"display: block;"> <div style=
    =3D"font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Gr=
    ande, sans-serif; font-size: 18pt;"> <div style=3D"font-family: HelveticaNe=
    ue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size:=
    12pt;"> <div dir=3D"ltr"> <font face=3D"Arial" size=3D"2"> On Saturday, Ju=
    ly 5, 2014 3:47 PM, E L JR HERMANN &lt;[email protected]&gt; wrote=
    :<br> </font> </div>  <br><br> <div class="3D""y_msg_container"><div id=3D"yi=
    v2053837142"><div><div style=3D"color: rgb(0, 0, 0); font-family: Helvetica=
    Neue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-siz=
    e: 18pt; background-color: rgb(255, 255, 255);"><div><span>THAT WAS GREAT I=
    T REALLY GITS THE
    POINT ACROSS!</span></div><div><span></span> </div><div><span>I sendi=
    ng it to all on my e-mail list. HOPE YOU DO THE SAME.</span></div><div><spa=
    n></span> </div><div><span>Al Hermann</span></div> <div class="3D""yiv20=
    53837142qtdSeparateBR"><br clear=3D"none"><br clear=3D"none"></div><div cla=
    ss=3D"yiv2053837142yqt7474766236" id=3D"yiv2053837142yqt52974"><div class=
    =3D"yiv2053837142yahoo_quoted" style=3D"display: block;"> <div style=3D"fon=
    t-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, s=
    ans-serif; font-size: 18pt;"> <div style=3D"font-family: HelveticaNeue, Hel=
    vetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 12pt;"=
    > <div dir=3D"ltr"> <font face=3D"Arial" size=3D"2"> On Wednesday, July 2, =
    2014 10:14 AM, Bobbie Ragsdale &lt;[email protected]&gt; wrote:<br clear=3D=
    "none"> </font> </div>  <br clear=3D"none"><br clear=3D"none"> <div class=
    =3D"yiv2053837142y_msg_container"><div id=3D"yiv2053837142"><div><div style=
    =3D"color: rgb(0, 0, 0);
    font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grand=
    e, sans-serif; font-size: 14pt; background-color: rgb(255, 255, 255);"><div=
    ><span><br clear=3D"none"></span></div><div class="3D""yiv2053837142qtdSepara=
    teBR"><br clear=3D"none"><br clear=3D"none"></div>  <div class="3D""yiv205383=
    7142yahoo_quoted" style=3D"display: block;"> <div style=3D"font-family: Hel=
    veticaNeue,;"> <div style=3D"font-family: HelveticaNeue,;"> <div dir=3D"ltr=
    "><font face=3D"Arial" size=3D"2"><br clear=3D"none"> </font> </div>  <br c=
    lear=3D"none"><br clear=3D"none"> <div class="3D""yiv2053837142y_msg_containe=
    r"><div id=3D"yiv2053837142">=0A =0A =0A<style>#yiv2053837142   v\00003a* {=
    }=0A#yiv2053837142   o\00003a* {}=0A#yiv2053837142   w\00003a* {}=0A#yiv205=
    3837142   .yiv2053837142shape {}=0A</style>=0A=0A<style>#yiv2053837142 #yiv=
    2053837142 --=0A   =0A filtered  {panose-1:2 4 5 3 5 4 6 3 2 4;}=0A#yiv2053=
    837142  filtered  {font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 4;}=0A#y=
    iv2053837142  filtered  {font-family:Tahoma;panose-1:2 11 6 4 3 5 4 4 2 4;}=
    =0A#yiv2053837142  filtered  {panose-1:0 0 0 0 0 0 0 0 0 0;}=0A#yiv20538371=
    42    =0A p.yiv2053837142MsoNormal, #yiv2053837142   li.yiv2053837142MsoNor=
    mal, #yiv2053837142   div.yiv2053837142MsoNormal=0A=09{margin:0in;margin-bo=
    ttom:.0001pt;font-size:12.0pt;color:black;}=0A#yiv2053837142   a:link, #yiv=
    2053837142   span.yiv2053837142MsoHyperlink=0A=09{color:blue;text-decoratio=
    n:underline;}=0A#yiv2053837142   a:visited, #yiv2053837142   span.yiv205383=
    7142MsoHyperlinkFollowed=0A=09{color:purple;text-decoration:underline;}=0A#=
    yiv2053837142   p=0A=09{margin-right:0in;margin-left:0in;font-size:12.0pt;c=
    olor:black;}=0A#yiv2053837142   p.yiv2053837142MsoAcetate, #yiv2053837142  =
    li.yiv2053837142MsoAcetate, #yiv2053837142   div.yiv2053837142MsoAcetate=
    =0A=09{margin:0in;margin-bottom:.0001pt;font-size:8.0pt;color:black;}=0A#yi=
    v2053837142   span.yiv2053837142BalloonTextChar=0A=09{}=0A#yiv2053837142   =
    p.yiv2053837142ecxmsonormal, #yiv2053837142   li.yiv2053837142ecxmsonormal,=
    #yiv2053837142   div.yiv2053837142ecxmsonormal=0A=09{margin-right:0in;marg=
    in-left:0in;font-size:12.0pt;color:black;}=0A#yiv2053837142   p.yiv20538371=
    42ecxmsoacetate, #yiv2053837142   li.yiv2053837142ecxmsoacetate, #yiv205383=
    7142   div.yiv2053837142ecxmsoacetate=0A=09{margin-right:0in;margin-left:0i=
    n;font-size:12.0pt;color:black;}=0A#yiv2053837142   p.yiv2053837142ecxmsoch=
    pdefault, #yiv2053837142   li.yiv2053837142ecxmsochpdefault, #yiv2053837142=
       div.yiv2053837142ecxmsochpdefault=0A=09{margin-right:0in;margin-left:0in=
    ;font-size:12.0pt;color:black;}=0A#yiv2053837142   p.yiv2053837142ecxmsonor=
    mal1, #yiv2053837142   li.yiv2053837142ecxmsonormal1, #yiv2053837142   div.=
    yiv2053837142ecxmsonormal1=0A=09{margin-right:0in;margin-left:0in;font-size=
    :12.0pt;color:black;}=0A#yiv2053837142   p.yiv2053837142ecxmsoacetate1, #yi=
    v2053837142   li.yiv2053837142ecxmsoacetate1, #yiv2053837142   div.yiv20538=
    37142ecxmsoacetate1=0A=09{margin-right:0in;margin-left:0in;font-size:8.0pt;=
    color:black;}=0A#yiv2053837142   p.yiv2053837142ecxmsochpdefault1, #yiv2053=
    837142   li.yiv2053837142ecxmsochpdefault1, #yiv2053837142   div.yiv2053837=
    142ecxmsochpdefault1=0A=09{margin-right:0in;margin-left:0in;font-size:10.0p=
    t;color:black;}=0A#yiv2053837142   span.yiv2053837142ecxmsohyperlink=0A=09{=
    }=0A#yiv2053837142   span.yiv2053837142ecxmsohyperlinkfollowed=0A=09{}=0A#y=
    iv2053837142   span.yiv2053837142ecxballoontextchar=0A=09{}=0A#yiv205383714=
    2   span.yiv2053837142ecxemailstyle21=0A=09{}=0A#yiv2053837142   span.yiv20=
    53837142ecxemailstyle22=0A=09{}=0A#yiv2053837142   span.yiv2053837142ecxema=
    ilstyle23=0A=09{}=0A#yiv2053837142   span.yiv2053837142ecxmsohyperlink1=0A=
    =09{color:blue;text-decoration:underline;}=0A#yiv2053837142   span.yiv20538=
    37142ecxmsohyperlinkfollowed1=0A=09{color:purple;text-decoration:underline;=
    }=0A#yiv2053837142   span.yiv2053837142ecxballoontextchar1=0A=09{}=0A#yiv20=
    53837142   span.yiv2053837142ecxemailstyle211=0A=09{color:#1F497D;}=0A#yiv2=
    053837142   span.yiv2053837142ecxemailstyle221=0A=09{color:#1F497D;}=0A#yiv=
    2053837142   span.yiv2053837142ecxemailstyle231=0A=09{color:#1F497D;}=0A#yi=
    v2053837142   span.yiv2053837142ecxapple-converted-space=0A=09{}=0A#yiv2053=
    837142   span.yiv2053837142EmailStyle39=0A=09{color:#1F497D;font-weight:nor=
    mal;font-style:normal;}=0A#yiv2053837142   span.yiv2053837142EmailStyle40=
    =0A=09{color:#1F497D;}=0A#yiv2053837142   .yiv2053837142MsoChpDefault=0A=09=
    {font-size:10.0pt;}=0A#yiv2053837142  filtered  {margin:1.0in 1.0in 1.0in 1=
    .0in;}=0A#yiv2053837142   div.yiv2053837142WordSection1=0A=09{}=0A#yiv20538=
    37142 </style>=0A=0A<div dir=3D"ltr">=0A<div dir=3D"ltr">=0A<div style=3D"c=
    olor: rgb(0, 0, 0);">=0A<div>=0A<div style=3D"color: rgb(0, 0, 0); font-fam=
    ily: Calibri; font-size: small; font-style: normal; font-weight: normal; te=
    xt-decoration: none; display: inline;"><font face=3D"Times New Roman" size=
    =3D"4"></font><br clear=3D"none"></div> =0A<div class="3D""yiv2053837142WordS=
    ection1">=0A<div>=0A<table class="3D""yiv2053837142MsoNormalTable" style=3D"c=
    olor: rgb(0, 0, 0);" border=3D"0" cellspacing=3D"0" cellpadding=3D"0"><tbod=
    y><tr><td nowrap=3D"" valign=3D"top" style=3D"padding: 0in;" rowspan=3D"1" =
    colspan=3D"1">=0A      <div align=3D"right" class="3D""yiv2053837142MsoNormal=
    " style=3D"text-align: right;"> </div></td><td style=3D"padding: 0in;"=
    rowspan=3D"1" colspan=3D"1">=0A      <div class="3D""yiv2053837142MsoNormal"=
    ><font size=3D"4"></font> </div></td></tr><tr><td nowrap=3D"" valign=
    =3D"top" style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"1"><font face=3D"=
    Times New Roman" size=3D"4"></font></td><td style=3D"padding: 0in;" rowspan=
    =3D"1" colspan=3D"1"><font face=3D"Times New Roman" size=3D"4"></font></td>=
    </tr><tr><td nowrap=3D"" valign=3D"top" style=3D"padding: 0in;" rowspan=3D"=
    1" colspan=3D"1"></td><td style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"=
    1"><font face=3D"Times New Roman" size=3D"4"></font></td></tr><tr><td nowra=
    p=3D"" valign=3D"top" style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"1"><=
    /td><td style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"1"></td></tr><tr><=
    td nowrap=3D"" valign=3D"top" style=3D"padding: 0in;" rowspan=3D"1" colspan=
    =3D"1"></td><td style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"1"><font f=
    ace=3D"Times New Roman" size=3D"4"></font></td></tr></tbody></table>=0A<div=
    class=3D"yiv2053837142MsoNormal"><font size=3D"4"></font><font size=3D"4">=
    </font><font size=3D"4"></font><font size=3D"4"></font><font size=3D"4"></f=
    ont><br clear=3D"none"><br clear=3D"none"></div> =0A<div>=0A<div>=0A<div>=
    =0A<blockquote style=3D"margin-top: 5pt; margin-bottom: 5pt;">=0A  <blockqu=
    ote style=3D"margin-top: 5pt; margin-bottom: 5pt;">=0A    <blockquote style=
    =3D"margin-top: 5pt; margin-bottom: 5pt;">=0A      <div>=0A      <div>=0A  =
        <table width=3D"100%" class="3D""yiv2053837142MsoNormalTable" style=3D"wi=
    dth: 100%; color: rgb(0, 0, 0);" border=3D"0" cellspacing=3D"0" cellpadding=
    =3D"0"><tbody><tr><td width=3D"100%" style=3D"padding: 1.5pt; width: 100%;"=
    rowspan=3D"1" colspan=3D"1">=0A            <div>=0A            <div class=
    =3D"yiv2053837142MsoNormal">  </div></div>=0A            <div>=0A     =
           <table width=3D"100%" class="3D""yiv2053837142MsoNormalTable" style=3D=
    "width: 100%; color: rgb(0, 0, 0);" border=3D"0" cellspacing=3D"0" cellpadd=
    ing=3D"0"><tbody><tr><td width=3D"100%" style=3D"padding: 1.5pt; width: 100=
    %;" rowspan=3D"1" colspan=3D"1">=0A                  <div>=0A              =
        <div>=0A                  <div class="3D""yiv2053837142MsoNormal">  =
    </div></div>=0A                  <div>=0A                  <div class="3D""yi=
    v2053837142MsoNormal"><span style=3D"font-size: 18pt;">What a brilliant way=
    to communicate =0A                  how risky it is to use mobile phones w=
    hile driving! More than =0A                  1.5 million views in 3 days!</=
    span></div></div></div> =0A                  <div>=0A                  <div=
    >=0A                  <div>=0A                  <div class="3D""yiv2053837142=
    MsoNormal"><span style=3D"font-size: 18pt;"><img width=3D"119" height=3D"61=
    " id=3D"yiv2053837142ecx0FC17514-10D6-4769-AAAF-4EC172FC576B" src=3D"cid:1.=
    [email protected]"></span></div></div> =0A           =
           <div>=0A                  <div class="3D""yiv2053837142MsoNormal"><spa=
    n style=3D"font-size: 18pt;"><a href=3D"https://www.youtube.com/embed/JHixe=
    Ir_6BM?rel=3D0&amp;autoplay=3D1&amp;iv_load_policy=3D3" target=3D"_blank" r=
    el=3D"nofollow" shape=3D"rect"><span style=3D"color: purple;">https://www.y=
    outube.com/embed/JHixeIr_6BM?rel=3D0&amp;autoplay=3D1&amp;iv_load_policy=3D=
    3</span></a></span></div></div></div></div></td></tr></tbody></table></div>=
    </td></tr></tbody></table></div></div></blockquote></blockquote></blockquot=
    e></div></div> =0A<div class="3D""yiv2053837142MsoNormal"><span style=3D"font=
    -family: serif;"><br clear=3D"none"><br clear=3D"none"><br clear=3D"none"><=
    br clear=3D"none"></span></div></div> =0A<div class="3D""yiv2053837142MsoNorm=
    al">  </div></div>=0A<div class="3D""yiv2053837142MsoNormal">  </di=
    v></div></div></div></div></div></div><br clear=3D"none"><br clear=3D"none"=
    ></div>  </div> </div>  </div> </div></div></div><br clear=3D"none"><br cle=
    ar=3D"none"></div>  </div> </div>  </div></div> </div></div></div><br><br><=
    /div>  </div> </div>  </div> </div></body></html>
    --2017413661-447096318-1404594690=:35141
    Content-Type: image/gif; name="ATT00001.gif"
    Content-Transfer-Encoding: base64
    Content-Id: <[email protected]>
    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

    If you don't know the sender, then it is most likely a scam or spam email. I get them every day - I just delete them. I also get daily notices from Facebook or someone called Adriana at Facebook even though i do not have an account there. Can't do anything about it - just delete it.

Maybe you are looking for

  • Reschedule Excel Format Report - An error has occurred: $Proxy5

    It seems on the RESCHEDULE function, that if the report was published in the format CRYSTAL REPORTS, you can click the parameters and change them.  However, if it is formatted in EXCEL (97-2003 Data Only) and you click the parameters on a reschedule,

  • I no longer have any of the computers or ipods my old id was authorized to. How do I deauthorize those old long gone computers?

    I am trying to acccess my music created under my old appleid. It says I have too many devices authorized but I would no longer have access to those old computers! How do I get those computers off of my account listing or deauthorize all the things I

  • Free Scheme

    am defining criteria for free goods determination using transaction VBN1. My requirement is as follows : When I am creating a sales order for a material M1 quantity is 10 units. System should give 2 units free on this 10 units. But when I create a sa

  • Lion OS and Epson printers not printing photos through Aperture or CS4

    Hi everyone, I have done a search on the above topic but nothing obvious is coming up as a solution (ie...sorry if it has been done before) It's driving me mad. I have 2 epson printers, R300 and Stylus 1400.  They were both performing perfectly well

  • Attribute Value Length

    Hi, I tried to restrict length of attribute by using {6}. But some how it allow me to update value of attribute with 10 characters. Is their a way i can restrict ldap attribute value to fixed lenght. I i try to add more then defined length it will no