2lis_02_174 - Lis Updating is still activated

Hi All,
Im little confused about using Lis structures, maybe you can help.
This are the stepds that i did:
R3 Side
1) Tx RSA5 and activated 2LIS_02_174 (services)
2) Tx RSA3 and the extractor works Ok
BW Side (BI 7.0)
3) Replicated datasource
4) Activated standar cube 0SRV_C01
5) Executed INITIAL load and appears this message error "LIS Updating is still activated".
Im sure that i have missed some steps, can anyone help me about this please?
I will assign points.
Regards

Hi,
Before Init Load you have to desactivated in OMO2, then executed the Init load.
Afte this, you have to activated in OMO2 and activated the delta update in LBW0
Regards

Similar Messages

  • LIS updating is still activated

    Hi all
    I am receiving the following error when I try to do a INIT load on extractor 2LIS_01_S005:
    LIS updating is still activated (client abc ) M + 25
    I have read other SDN posts and I have made the change in both our DEV source systems in TCODE LBW1 to No Update, but I am still getting the error. I am able to do a full load on my InfoPackage but no INIT.
    I would appreciate any help or suggestions.
    Thanks

    See OSS Note 168131.
    Symptom
    Using report RMCSBIWC you want to generate the delta update in the LIS in the OLTP System. The system generates message M+025:
    'LIS updating is still activated'.
    Cause and prerequisites
    The standard update for the affected structure is still active in at least one client of your OLTP System.
    Solution
    To be able to generate the delta update for an information structure, you must deactivate the update of this information structure temporarily in all clients.Deactivate the update using the LIS Customizing or report RMCSBIW0 (TCode LBW1 see Note 146294) in ALL clients of the OLTP System in which the information structure is updated.You can activate the update again after generation.
    Edited by: Pravender on Mar 3, 2010 5:28 PM

  • My iMessage stopped working when I did the latest update on my phone. I have literally tried everything to reset it. I am currently not in the US, but my iMessage has always worked when I was in wifi and my phone is still activated.

    My iMessage stopped working when I did the latest update on my phone. I have literally tried everything to reset it. I am currently not in the US, but my iMessage has always worked when I was in wifi and my phone is still activated. I have tried to reset my network settings, my location, and even the reset all settings. When I click on my settings and iMessage it says that it is still waiting for activation... and my phone number is grayed out. I am able to recieve an iMessage to my email and that could work for right now but i'm not sure how to start a conversation the defaults to being sent from my email and not my cell phone number. please help!

    Hi shanny202.
    Really strange problem you have there. I have a few questions though.
    Please try again and try to make the phone as a new without restoringen with you iCloud-data or backup-data from iTunes. Maybe it is something wrong with the data (strange).
    Anyway, i think you should call Apple Support or visit an Apple Store, don't forgot to make a Genius Bar reservation.
    You locate the nearest Apple Store here: http://www.apple.com/retail/storelist/
    And here is Apples phone numbers around the world for support: http://support.apple.com/kb/HE57

  • Back ground job - report, is scheduled 49 hrs ago, still ACTIVE??

    Hi Experts,
    Pls. clarify one of my simple doubt that, Weather a report(which has only one SELECT statement, with key in WHERE clause) wuld take 49 hours to execute? bcoz, I scheduled a back ground job for my_report, 49 hours ago, its still ACTIVE, OR does it went to infinitive loop?
    thanq

    Hi
    no one select query won't take that mucj of time
    may be that program went in infinite loop
    please check with that
    reward if useful
    <b>below is the best way to write a select query</b>
    Ways of Performance Tuning
    1.     Selection Criteria
    2.     Select Statements
    •     Select Queries
    •     SQL Interface
    •     Aggregate Functions
    •     For all Entries
    Select Over more than one Internal table
    Selection Criteria
    1.     Restrict the data to the selection criteria itself, rather than filtering it out using the ABAP code using CHECK statement. 
    2.     Select with selection list.
    Points # 1/2
    SELECT * FROM SBOOK INTO SBOOK_WA.
      CHECK: SBOOK_WA-CARRID = 'LH' AND
             SBOOK_WA-CONNID = '0400'.
    ENDSELECT.
    The above code can be much more optimized by the code written below which avoids CHECK, selects with selection list
    SELECT  CARRID CONNID FLDATE BOOKID FROM SBOOK INTO TABLE T_SBOOK
      WHERE SBOOK_WA-CARRID = 'LH' AND
                  SBOOK_WA-CONNID = '0400'.
    Select Statements   Select Queries
    1.     Avoid nested selects
    2.     Select all the records in a single shot using into table clause of select statement rather than to use Append statements.
    3.     When a base table has multiple indices, the where clause should be in the order of the index, either a primary or a secondary index.
    4.     For testing existence , use Select.. Up to 1 rows statement instead of a Select-Endselect-loop with an Exit. 
    5.     Use Select Single if all primary key fields are supplied in the Where condition .
    Point # 1
    SELECT * FROM EKKO INTO EKKO_WA.
      SELECT * FROM EKAN INTO EKAN_WA
          WHERE EBELN = EKKO_WA-EBELN.
      ENDSELECT.
    ENDSELECT.
    The above code can be much more optimized by the code written below.
    SELECT PF1 PF2 FF3 FF4 INTO TABLE ITAB
        FROM EKKO AS P INNER JOIN EKAN AS F
          ON PEBELN = FEBELN.
    Note: A simple SELECT loop is a single database access whose result is passed to the ABAP program line by line. Nested SELECT loops mean that the number of accesses in the inner loop is multiplied by the number of accesses in the outer loop. One should therefore use nested SELECT loops  only if the selection in the outer loop contains very few lines or the outer loop is a SELECT SINGLE statement.
    Point # 2
    SELECT * FROM SBOOK INTO SBOOK_WA.
      CHECK: SBOOK_WA-CARRID = 'LH' AND
             SBOOK_WA-CONNID = '0400'.
    ENDSELECT.
    The above code can be much more optimized by the code written below which avoids CHECK, selects with selection list and puts the data in one shot using into table
    SELECT  CARRID CONNID FLDATE BOOKID FROM SBOOK INTO TABLE T_SBOOK
      WHERE SBOOK_WA-CARRID = 'LH' AND
                  SBOOK_WA-CONNID = '0400'.
    Point # 3
    To choose an index, the optimizer checks the field names specified in the where clause and then uses an index that has the same order of the fields . In certain scenarios, it is advisable to check whether a new index can speed up the performance of a program. This will come handy in programs that access data from the finance tables.
    Point # 4
    SELECT * FROM SBOOK INTO SBOOK_WA
      UP TO 1 ROWS
      WHERE CARRID = 'LH'.
    ENDSELECT.
    The above code is more optimized as compared to the code mentioned below for testing existence of a record.
    SELECT * FROM SBOOK INTO SBOOK_WA
        WHERE CARRID = 'LH'.
      EXIT.
    ENDSELECT.
    Point # 5
    If all primary key fields are supplied in the Where condition you can even use Select Single.
    Select Single requires one communication with the database system, whereas Select-Endselect needs two.
    Select Statements           contd..  SQL Interface
    1.     Use column updates instead of single-row updates
    to update your database tables.
    2.     For all frequently used Select statements, try to use an index.
    3.     Using buffered tables improves the performance considerably.
    Point # 1
    SELECT * FROM SFLIGHT INTO SFLIGHT_WA.
      SFLIGHT_WA-SEATSOCC =
        SFLIGHT_WA-SEATSOCC - 1.
      UPDATE SFLIGHT FROM SFLIGHT_WA.
    ENDSELECT.
    The above mentioned code can be more optimized by using the following code
    UPDATE SFLIGHT
           SET SEATSOCC = SEATSOCC - 1.
    Point # 2
    SELECT * FROM SBOOK CLIENT SPECIFIED INTO SBOOK_WA
      WHERE CARRID = 'LH'
        AND CONNID = '0400'.
    ENDSELECT.
    The above mentioned code can be more optimized by using the following code
    SELECT * FROM SBOOK CLIENT SPECIFIED INTO SBOOK_WA
      WHERE MANDT IN ( SELECT MANDT FROM T000 )
        AND CARRID = 'LH'
        AND CONNID = '0400'.
    ENDSELECT.
    Point # 3
    Bypassing the buffer increases the network considerably
    SELECT SINGLE * FROM T100 INTO T100_WA
      BYPASSING BUFFER
      WHERE     SPRSL = 'D'
            AND ARBGB = '00'
            AND MSGNR = '999'.
    The above mentioned code can be more optimized by using the following code
    SELECT SINGLE * FROM T100  INTO T100_WA
      WHERE     SPRSL = 'D'
            AND ARBGB = '00'
            AND MSGNR = '999'.
    Select Statements       contd…           Aggregate Functions
    •     If you want to find the maximum, minimum, sum and average value or the count of a database column, use a select list with aggregate functions instead of computing the aggregates yourself.
    Some of the Aggregate functions allowed in SAP are  MAX, MIN, AVG, SUM, COUNT, COUNT( * )
    Consider the following extract.
                Maxno = 0.
                Select * from zflight where airln = ‘LF’ and cntry = ‘IN’.
                 Check zflight-fligh > maxno.
                 Maxno = zflight-fligh.
                Endselect.
    The  above mentioned code can be much more optimized by using the following code.
    Select max( fligh ) from zflight into maxno where airln = ‘LF’ and cntry = ‘IN’.
    Select Statements    contd…For All Entries
    •     The for all entries creates a where clause, where all the entries in the driver table are combined with OR. If the number of entries in the driver table is larger than rsdb/max_blocking_factor, several similar SQL statements are executed to limit the length of the WHERE clause.
         The plus
    •     Large amount of data
    •     Mixing processing and reading of data
    •     Fast internal reprocessing of data
    •     Fast
         The Minus
    •     Difficult to program/understand
    •     Memory could be critical (use FREE or PACKAGE size)
    Points to be must considered FOR ALL ENTRIES
    •     Check that data is present in the driver table
    •     Sorting the driver table
    •     Removing duplicates from the driver table
    Consider the following piece of extract
    Loop at int_cntry.
           Select single * from zfligh into int_fligh
    where cntry = int_cntry-cntry.
    Append int_fligh.
    Endloop.
    The above mentioned can be more optimized by using the following code.
    Sort int_cntry by cntry.
    Delete adjacent duplicates from int_cntry.
    If NOT int_cntry[] is INITIAL.
                Select * from zfligh appending table int_fligh
                For all entries in int_cntry
                Where cntry = int_cntry-cntry.
    Endif.
    Select Statements    contd…  Select Over more than one Internal table
    1.     Its better to use a views instead of nested Select statements.
    2.     To read data from several logically connected tables use a join instead of nested Select statements. Joins are preferred only if all the primary key are available in WHERE clause for the tables that are joined. If the primary keys are not provided in join the Joining of tables itself takes time.
    3.     Instead of using nested Select loops it is often better to use subqueries.
    Point # 1
    SELECT * FROM DD01L INTO DD01L_WA
      WHERE DOMNAME LIKE 'CHAR%'
            AND AS4LOCAL = 'A'.
      SELECT SINGLE * FROM DD01T INTO DD01T_WA
        WHERE   DOMNAME    = DD01L_WA-DOMNAME
            AND AS4LOCAL   = 'A'
            AND AS4VERS    = DD01L_WA-AS4VERS
            AND DDLANGUAGE = SY-LANGU.
    ENDSELECT.
    The above code can be more optimized by extracting all the data from view DD01V_WA
    SELECT * FROM DD01V INTO  DD01V_WA
      WHERE DOMNAME LIKE 'CHAR%'
            AND DDLANGUAGE = SY-LANGU.
    ENDSELECT
    Point # 2
    SELECT * FROM EKKO INTO EKKO_WA.
      SELECT * FROM EKAN INTO EKAN_WA
          WHERE EBELN = EKKO_WA-EBELN.
      ENDSELECT.
    ENDSELECT.
    The above code can be much more optimized by the code written below.
    SELECT PF1 PF2 FF3 FF4 INTO TABLE ITAB
        FROM EKKO AS P INNER JOIN EKAN AS F
          ON PEBELN = FEBELN.
    Point # 3
    SELECT * FROM SPFLI
      INTO TABLE T_SPFLI
      WHERE CITYFROM = 'FRANKFURT'
        AND CITYTO = 'NEW YORK'.
    SELECT * FROM SFLIGHT AS F
        INTO SFLIGHT_WA
        FOR ALL ENTRIES IN T_SPFLI
        WHERE SEATSOCC < F~SEATSMAX
          AND CARRID = T_SPFLI-CARRID
          AND CONNID = T_SPFLI-CONNID
          AND FLDATE BETWEEN '19990101' AND '19990331'.
    ENDSELECT.
    The above mentioned code can be even more optimized by using subqueries instead of for all entries.
    SELECT * FROM SFLIGHT AS F INTO SFLIGHT_WA
        WHERE SEATSOCC < F~SEATSMAX
          AND EXISTS ( SELECT * FROM SPFLI
                         WHERE CARRID = F~CARRID
                           AND CONNID = F~CONNID
                           AND CITYFROM = 'FRANKFURT'
                           AND CITYTO = 'NEW YORK' )
          AND FLDATE BETWEEN '19990101' AND '19990331'.
    ENDSELECT.
    1.     Table operations should be done using explicit work areas rather than via header lines.
    2.     Always try to use binary search instead of linear search. But don’t forget to sort your internal table before that.
    3.     A dynamic key access is slower than a static one, since the key specification must be evaluated at runtime.
    4.     A binary search using secondary index takes considerably less time.
    5.     LOOP ... WHERE is faster than LOOP/CHECK because LOOP ... WHERE evaluates the specified condition internally.
    6.     Modifying selected components using “ MODIFY itab …TRANSPORTING f1 f2.. “ accelerates the task of updating  a line of an internal table.
    Point # 2
    READ TABLE ITAB INTO WA WITH KEY K = 'X‘ BINARY SEARCH.
    IS MUCH FASTER THAN USING
    READ TABLE ITAB INTO WA WITH KEY K = 'X'.
    If TAB has n entries, linear search runs in O( n ) time, whereas binary search takes only O( log2( n ) ).
    Point # 3
    READ TABLE ITAB INTO WA WITH KEY K = 'X'. IS FASTER THAN USING
    READ TABLE ITAB INTO WA WITH KEY (NAME) = 'X'.
    Point # 5
    LOOP AT ITAB INTO WA WHERE K = 'X'.
    ENDLOOP.
    The above code is much faster than using
    LOOP AT ITAB INTO WA.
      CHECK WA-K = 'X'.
    ENDLOOP.
    Point # 6
    WA-DATE = SY-DATUM.
    MODIFY ITAB FROM WA INDEX 1 TRANSPORTING DATE.
    The above code is more optimized as compared to
    WA-DATE = SY-DATUM.
    MODIFY ITAB FROM WA INDEX 1.
    7.     Accessing the table entries directly in a "LOOP ... ASSIGNING ..." accelerates the task of updating a set of lines of an internal table considerably
    8.    If collect semantics is required, it is always better to use to COLLECT rather than READ BINARY and then ADD.
    9.    "APPEND LINES OF itab1 TO itab2" accelerates the task of appending a table to another table considerably as compared to “ LOOP-APPEND-ENDLOOP.”
    10.   “DELETE ADJACENT DUPLICATES“ accelerates the task of deleting duplicate entries considerably as compared to “ READ-LOOP-DELETE-ENDLOOP”.
    11.   "DELETE itab FROM ... TO ..." accelerates the task of deleting a sequence of lines considerably as compared to “  DO -DELETE-ENDDO”.
    Point # 7
    Modifying selected components only makes the program faster as compared to Modifying all lines completely.
    e.g,
    LOOP AT ITAB ASSIGNING <WA>.
      I = SY-TABIX MOD 2.
      IF I = 0.
        <WA>-FLAG = 'X'.
      ENDIF.
    ENDLOOP.
    The above code works faster as compared to
    LOOP AT ITAB INTO WA.
      I = SY-TABIX MOD 2.
      IF I = 0.
        WA-FLAG = 'X'.
        MODIFY ITAB FROM WA.
      ENDIF.
    ENDLOOP.
    Point # 8
    LOOP AT ITAB1 INTO WA1.
      READ TABLE ITAB2 INTO WA2 WITH KEY K = WA1-K BINARY SEARCH.
      IF SY-SUBRC = 0.
        ADD: WA1-VAL1 TO WA2-VAL1,
             WA1-VAL2 TO WA2-VAL2.
        MODIFY ITAB2 FROM WA2 INDEX SY-TABIX TRANSPORTING VAL1 VAL2.
      ELSE.
        INSERT WA1 INTO ITAB2 INDEX SY-TABIX.
      ENDIF.
    ENDLOOP.
    The above code uses BINARY SEARCH for collect semantics. READ BINARY runs in O( log2(n) ) time. The above piece of code can be more optimized by
    LOOP AT ITAB1 INTO WA.
      COLLECT WA INTO ITAB2.
    ENDLOOP.
    SORT ITAB2 BY K.
    COLLECT, however, uses a hash algorithm and is therefore independent
    of the number of entries (i.e. O(1)) .
    Point # 9
    APPEND LINES OF ITAB1 TO ITAB2.
    This is more optimized as compared to
    LOOP AT ITAB1 INTO WA.
      APPEND WA TO ITAB2.
    ENDLOOP.
    Point # 10
    DELETE ADJACENT DUPLICATES FROM ITAB COMPARING K.
    This is much more optimized as compared to
    READ TABLE ITAB INDEX 1 INTO PREV_LINE.
    LOOP AT ITAB FROM 2 INTO WA.
      IF WA = PREV_LINE.
        DELETE ITAB.
      ELSE.
        PREV_LINE = WA.
      ENDIF.
    ENDLOOP.
    Point # 11
    DELETE ITAB FROM 450 TO 550.
    This is much more optimized as compared to
    DO 101 TIMES.
      DELETE ITAB INDEX 450.
    ENDDO.
    12.   Copying internal tables by using “ITAB2[ ] = ITAB1[ ]” as compared to “LOOP-APPEND-ENDLOOP”.
    13.   Specify the sort key as restrictively as possible to run the program faster.
    Point # 12
    ITAB2[] = ITAB1[].
    This is much more optimized as compared to
    REFRESH ITAB2.
    LOOP AT ITAB1 INTO WA.
      APPEND WA TO ITAB2.
    ENDLOOP.
    Point # 13
    “SORT ITAB BY K.” makes the program runs faster as compared to “SORT ITAB.”
    Internal Tables         contd…
    Hashed and Sorted tables
    1.     For single read access hashed tables are more optimized as compared to sorted tables.
    2.      For partial sequential access sorted tables are more optimized as compared to hashed tables
    Hashed And Sorted Tables
    Point # 1
    Consider the following example where HTAB is a hashed table and STAB is a sorted table
    DO 250 TIMES.
      N = 4 * SY-INDEX.
      READ TABLE HTAB INTO WA WITH TABLE KEY K = N.
      IF SY-SUBRC = 0.
      ENDIF.
    ENDDO.
    This runs faster for single read access as compared to the following same code for sorted table
    DO 250 TIMES.
      N = 4 * SY-INDEX.
      READ TABLE STAB INTO WA WITH TABLE KEY K = N.
      IF SY-SUBRC = 0.
      ENDIF.
    ENDDO.
    Point # 2
    Similarly for Partial Sequential access the STAB runs faster as compared to HTAB
    LOOP AT STAB INTO WA WHERE K = SUBKEY.
    ENDLOOP.
    This runs faster as compared to
    LOOP AT HTAB INTO WA WHERE K = SUBKEY.
    ENDLOOP.

  • Why is the icon for syncing still active after disconnecting?

    My phone got stuck on step 6 when I updated and backed up my files during iOS 7 upgrade. I tried to cancel and start over but it was still stuck on trying to transfer music. As far as I can tell, I still have all the music I want on my phone. The icon to disconnect is still active on my home screen. Why does it keep doing that? Is it an indication it's not finished sync in or that it's always syncing through a wi-fi connection? I'm already on the iOS 7 platform.

    My phone got stuck on step 6 when I updated and backed up my files during iOS 7 upgrade. I tried to cancel and start over but it was still stuck on trying to transfer music. As far as I can tell, I still have all the music I want on my phone. The icon to disconnect is still active on my home screen. Why does it keep doing that? Is it an indication it's not finished sync in or that it's always syncing through a wi-fi connection? I'm already on the iOS 7 platform.

  • Season Pass - Still active after the season is completed

    Some time ago I purchased a pass for the first season of Breaking Bad.
    After seven episodes the season was officially over.
    However, the season pass remains active (it still is).
    When I want to switch to a different iTunes store (different counry), iTunes tells me that it is not possible as long as I have active season passes.
    Is a season pass supposed to expire/end automatically after the respective season is complete?
    If it is supposed to be this way, how can I close/end my still active season pass.
    Thank in advance for the help

    Hi Girish,
    My bad, forgot to put all the required info in the post. Sorry about that.
    Database 10.2.0.2.0 - enterprise, Linux OS. I have enough SGA (64gb), PGA, undo, temp tablespace space.
    The select is a "normal" read only select that needs to read millions of blocks from data files. The main table is partitioned and the waits are on reading data from partitions. In v$session the main session and the child processes are marked as killed.
    In v$lock I see that the wait is on db read scan. Everything is working. That's actually my issue.
    Why it's still querying data/reading from disk when I killed all the sessions.
    Doesn't Oracle stop the processes associated with a killed session?
    I killed the session: alter system kill session 'sid,serial';
    Do you think "alter system disconnect session 'sid,serial' immediate" is better?
    What I don't understand is how can I stop fast (ok I get that it can not happen in a few seconds) a query that is only read only that is running for too long. When I kill a session I was expecting the processes associated with it to stop. In a update/insert/delete, the server will wait for the rollback, but this is not changing data.
    If you think more debug is necessary I will upload on Monday AWR and all the statistics I collected. I am not in the office now.
    Thanks,
    Daniel

  • HT4897 I had an alias on mobile me but it has not transferred to iCloud although it is still active, how do I get it into iCloud?

    I had an alias on mobile me but it has not transferred to iCloud although it is still active, how do I get it into iCloud?

    Greetings Nefertiti72,
    It seems you are experiencing an issue with contact syncing and management. It seems you've removed an email account which contained a number of contacts that are not associated with your iCloud account. I have linked to a knowledge base article which provides more information about iCloud contacts syncing:
    Get help using iCloud Contacts - Apple Support
    Learn what to do if you’re having issues using iCloud Contacts. For example, you might make changes to Contacts that don't update across all of your devices.
    You may want to consider importing the contacts from the email account you removed. You can do it easily by following the steps in this article:
    iCloud: Import a vCard
    You can import an electronic business card, also called a vCard, into iCloud Contacts. If the vCard contains contact information for more than one person, each contact becomes a separate entry.
    In iCloud Contacts, choose Import vCard from the Action pop-up menu , which appears at the bottom of the All Contacts list or a list of group contacts
    Select a vCard to import.
    The contacts from the vCard are added to the All Contacts group in Contacts. You can add the contacts to any other group by dragging them to the desired group.
    Thank you for contributing to Apple Support Communities.
    Best,
    Bobby_D

  • LIS updation

    Dear all,
           In our company, we use LIS. During the go-live stages we did not activate the LIS updation in the info structures. But after 2 weeks we have activated the same. So, the previous data didn't update in the LIS. Can any one please explain the procedure to bring in all the data in Info structure S001.
    Regards,
    Parthasarathy.R

    Hi parthasarthy
    Kindly check with the following reports as you have copied again
    MCVCHECK01
    MCVCHECK02
    MCVCHECK03
    Secondly check the following reports  also VA05N(List of sales orders) / MCTC(material Analysis) 
    Also check if any errors or warning msgs  have come in the pricing like XXXX condition type price is missing etc .Because of that also the net value doesnt update sometimes
    Thirdly , check the Net value of the sales orders of the sales document type OR and billing document type F1/F2   and  not the  other sales document types .If Net value  is coming then check wheather the SIS have been activated or not for other sales and billing document types or not  .
    Regards
    Srinath

  • I exit ff, try to enter later, am told ff still active-exit or restart pc; why?

    When I exit FF then later try to go back to it, i get message that it is still active and i must exit (no xxcan do) or restart pc..
    == This happened ==
    Every time Firefox opened
    == don't know as three people use pc, could have starteed after windows update 2 months ago

    See http://kb.mozillazine.org/Firefox_hangs and [[Firefox hangs]] (Hang at exit)

  • New RAT Shows 'Snake' Campaign Still Active

    New RAT Shows 'Snake' Campaign Still Active: Researchers....
    After analyzing the new threat, which they have dubbed "ComRAT,"
    In version 3.26, the author changed the key and remove the known file name
    This action can be an indication for the developer’s effort to hide this connection
    ComRAT is more complex and cleverer. The malware is loaded into each and every process of the infected machine and the main part (payload) of the malware is only executed in explorer.exe. Furthermore, the C&C communication
    blends into the usual browser traffic and the malware communicates to the browser by named pipe. It is by far a more complex userland design than Agent.BTZ.
    MD5:
    0ae421691579ff6b27f65f49e79e88f6    (dropper v3.26)
    255118ac14a9e66124f7110acd16f2cd    (lib1 v3.26)
    b407b6e5b4046da226d6e189a67f62ca    (lib2, v3.26)
    8ebf7f768d7214f99905c99b6f8242dc    (dropper, unknown version)
    9d481769de63789d571805009cbf709a    (dropper, unknown version)
    83a48760e92bf30961b4a943d3095b0a    (lib 64-Bit, unknown version)
    ea23d67e41d1f0a7f7e7a8b59e7cb60f    (lib 64-Bit; unknown version)
    Command and control
    weather-online.hopto.org
    webonline.mefound.com
    sportacademy.my03.com
    easport-news.publicvm.com
    new-book.linkpc.net
    Questions :
    We have analyzed all the MD5 values, but Microsoft FEP doesn’t have signature to Detect this Variant(but other AV vendors have detected this Variant).
    So we need to know, when Microsoft will come with updated signature to detect this new variant??
    Sample :
    https://www.virustotal.com/en-gb/file/a89f27758bb6e207477f92527b2174090012e2ac23dfc44cdf6effd539c15ada/analysis/
    Complete report of this malware below :
    https://blog.gdatasoftware.com/blog/article/the-uroburos-case-new-sophisticated-rat-identified.html.

    I checked the address of virustotal and it indicated that Microsoft will detect it as
    Backdoor:Win32/Turla.Q , when look into details of this malware in Microsoft Malware Protection Center:
    http://www.microsoft.com/security/portal/threat/encyclopedia/entry.aspx?Name=Backdoor%3aWin32%2fTurla.Q
    It is known from Nov 13, 2014 and later on. So FEP should be able to detect it.
    However, if you still believe there is a sample of this malware or any other malware which won't detect by FEP or any other Microsoft Anti-Malware products, you could submit sample to Microsoft Malware Protection Center:
    https://www.microsoft.com/security/portal/submission/submit.aspx
           

  • I cannot update my ipad2 to ios5.  Updating through iTunes on pc Windows Vista, Error message reads "cannot connect to iPad Software Update Server.  Tried resetting network settings, still not connecting.  Tried updating iTunes, still not connecting.

    I cannot update my ipad2 to ios5.  Updating through iTunes on pc Windows Vista, Error message reads "cannot connect to iPad Software Update Server.  Tried resetting network settings, still not connecting.  Tried updating iTunes, still not connecting.

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
     Cheers, Tom

  • HT1688 I recently upgrade my Iphone but the old one is still active. I installed the friendjectory app on my new phone but it will not open but for a few seconds ab=nd then closes. What is wrong and what do I need to do to make this app work on my new pho

    I recently upgraded my Iphone. Iinstalled the friendjectory app on the new phone but it will not open but for  few seconds and then closed. What is wrong and what do I need to do? My old phone is still active and working. Do I need to do something about that?

    Hi stanczak53,
    Welcome to Apple Support Communities.
    See this link for some tips on troubleshooting apps on your iPhone:
    Using apps on your iPhone
    http://www.apple.com/support/iphone/assistant/application/
    Best,
    Jeremy

  • MO operations deleted but PR is still active

    Hi,
    In one of our issue, the user has deleted the external service operation in MO, but when we looked into PR, it seems to be still active.By rite, the PR has to be cancelled once the operation is deleted.Can anyone tell me is there any logical checks has to be done....

    Hi
    Is it PO in place of MO/ what is that MO? Did you refr pR for creating PO, if po is deletd then your PR quanity is not consumend so PR will be active or open, check the stat tab of PR in disply mode you will find the details of the PR/PO conversion/GR/inv , the actual stge of the document.
    Best Regards

  • I started my update for ios 5.1for iPhone 4s and cancelled it have way through now it says it's downloaded but really it's not the update is still there and when I try to update it it says unable to install update : an error occurred installing iOS 5.1  ?

    I started my update for ios 5.1for iPhone 4s and cancelled it have way through now it says it's downloaded but really it's not the update is still there and when I try to update it it says unable to install update : an error occurred installing iOS 5.1  ?

    See Here... Unable to Update or Restore...
    http://support.apple.com/kb/HT1808

  • How can I stop someone from receiving iMessages on their old disconnected iPhone, w'hich is still active in iMessage, when the number now belongs to someone else with a non apple device!?!

    To further clarify my dilemma ....
    A friend of mine just got a new phone number on her LG cell phone.
    When I try to text her, my messages are going to someone else's iPhone.
    The iPhone has been deactivated off the VZ cell network, but they are still using it on WIFI.
    They used to have this number on their iPhone, and it's still active in iMessage.
    So, when I try to send a text message to my friend on her LG, from my iPhone,
    they instead go to this total stranger, cuz they still have that number active in their iMessage account.
    This is a serious issue!!
    The only suggestion I get from apple support is to have my friend get a new number, or for me to turn off iMessage when I want to text her.
    Not really the optimum solution.
    Something really should be done to prevent this from happening!
    Strangers are effectively intercepting text messages!
    Help!?!

    Tell her to contact her carrier and get a new phone number.

Maybe you are looking for

  • Cannot upgrade to Windows 8.1

    Hi. I have just purchased a 2nd hand Helix with warranty until mind 2016, running Win 8 Pro. When I tried to upgrade to Win 8.1 I recieved a message saying that this version I have is not eligible for upgrade to Win 8.1. I checked and found that the

  • Calculation in header in sap script!

    friends... i have designed a form z_pm_common..which i have copied from standard.pm_common. i have made some changes to the layout. now at the header i have a field : DURATION OF JOB :&AFVGD-ARBEI& &AFVGD-ARBEH& AFVGD-ARBEI IS WORK DURATION.I.E 6.3 A

  • HP Photosmart A310 compact printer - cant use in Windows 8.1

    dear Forum members May I please request advice. With the above printer it is not seemingly possible to install on Win 8. Can  anyone advise if there is a way round this. Does the Windows Vista driver work with Windows 8 Is there some driver for anoth

  • Setup reports for pdf creation with company logo and printing without

    Hi, we want to have 2 different report-layouts. The first one is just for printing on company paper. So it doesn't need a logo. The second one is for exporting to PDF file. So it needs a logo. How can I realise it in SAP BO 2007 without changing the

  • Query on table

    <b>is it possible to create a table with 750 fields, i have a requirement of that sort, the problem is that the length is exceeding the sap specified length??</b>