Obm-xdg duplicating entries

When I use obm-xdg as a pipe menu I keep getting duplicate items in the menus.  Anyone else have this problem or have a solution?
Thanks

I believe that problem is caused by these settings in /etc/profile.d/xorg.sh:
if [ -z $XDG_DATA_DIRS ]; then
export XDG_DATA_DIRS=/usr/share:/usr/local/share
else
export XDG_DATA_DIRS=/usr/share:/usr/local/share:$XDG_DATA_DIRS
fi
This ends up causing duplicate paths for the $XDG_DATA_DIRS variable.
Try commenting out a couple of lines like so:
if [ -z $XDG_DATA_DIRS ]; then
export XDG_DATA_DIRS=/usr/share:/usr/local/share
#else
# export XDG_DATA_DIRS=/usr/share:/usr/local/share:$XDG_DATA_DIRS
fi
I am not sure how much you have to restart for this to take effect. You may have to
completely restart the OS.

Similar Messages

  • Obm-xdg won't show anything in the Openbox menu [SOLVED]

    I put the code:
    <menu execute="obm-xdg" id="obm-xdg" label="xdg"/>
    in ~/.config/openbox/menu.xml just like it says to do universally. It does not show any menu. Every other menu item in the file works. I can edit them and they change. obmenu can see the entry. gnome-menus is installed. obm-xdg works from the command line. Why does this not show anything in the menu?
    Last edited by skottish (2008-11-06 05:27:03)

    Make sure you add the menu id to the root-menu list at the bottom of menu.xml:
    <menu id="root-menu" label="Openbox 3">
    <separator label="Applications" />
    <menu id="obm-xdg" />
    <menu id="apps-accessories-menu"/>
    <menu id="apps-editors-menu"/>
    Last edited by thayer (2008-11-06 05:11:29)

  • [SOLVED] obm-xdg menus in Spanish

    I'm using the obm-xdg pipe (included with obmenu) to generate an automatic menu of all my installed gtk applications in Openbox.
    The problem I'm currently having is that the labels for the programs are in Spanish (at least I believe it's Spanish -- I'm no expert).
    My locale in locale.gen is set to:
    en_US.UTF-8 UTF-8
    en_US ISO-8859-1
    Here's how I call obm-xdg in menu.xml:
    <menu execute="obm-xdg" id="xdg-menu" label="Others"/>
    Thanks.
    Edit reason: Patches below solve the issue.
    Last edited by madalu (2010-06-16 21:40:57)

    I was running into this problem, too.  I patched obm-xdg to fix it.  The patch is below.
    The problem was that it was only trying to match languages by searching inside the language string.  For example, if the application had an entry for "ca@valencia", and your LANG is "en_US" it would produce a match because of the "en" at the beginning of LANG matching the "en" somewhere inside "ca@valencia".
    This patch seems to have fixed it, at least for my locale of en_US.
    Now, I need to learn how to submit patches upstream ...
    --- obm-xdg 2009-07-22 12:35:25.423776943 -0400
    +++ obm-xdg.new 2009-07-22 12:35:31.790440961 -0400
    @@ -210,10 +210,10 @@
    lang = None
    if lang:
    - if lang_major in lang and (title == "" or accuracy < 2):
    + if lang_major == lang[:2] and (title == "" or accuracy < 2):
    title = name
    accuracy = 2
    - if lang_minor and lang_major in lang and lang_minor in lang:
    + if lang_minor and lang_major == lang[:2] and lang_minor == lang[3:5]:
    title = name
    accuracy = 3
    elif title == "":
    @@ -250,10 +250,10 @@
    lang = None
    if lang:
    - if lang_major in lang and (title == "" or accuracy < 2):
    + if lang_major == lang[:2] and (title == "" or accuracy < 2):
    title = name
    accuracy = 2
    - if lang_minor and lang_major in lang and lang_minor in lang:
    + if lang_minor and lang_major == lang[:2] and lang_minor == lang[3:5]:
    title = name
    accuracy = 3
    elif title == "":

  • Duplicated entries in BSIK using Logical Database KDF

    Hello everyone,
    I'm using Logical Database KDF to retrieve some data, but i'm getting duplicated entries when getting to BSIK. Can anyone point out in my program what could i be doing wrong?
    If i put a breakpoint in the line immediatly below GET bsik, i can watch several entries being duplicated.
                                         Thanks in advance to everyone,
                                                       Nuno
    START-OF-SELECTION.
    GET lfa1.
      MOVE-CORRESPONDING lfa1 TO t_alv.
    GET lfb1.
    GET bsik.
      MOVE-CORRESPONDING bsik TO t_alv.
      CLEAR bkpf.
      SELECT SINGLE * FROM  bkpf CLIENT SPECIFIED
             WHERE  mandt  = syst-mandt
             AND    bukrs  =  bsik-bukrs
             AND    belnr  = bsik-belnr
             AND    gjahr  = bsik-gjahr.
      t_alv-xblnr = bkpf-xblnr.
      SELECT        * FROM  bset CLIENT SPECIFIED
             WHERE  mandt  = syst-mandt
             AND    bukrs  = bsik-bukrs
             AND    belnr  = bsik-belnr
             AND    gjahr  = bsik-gjahr.
         t_alv-mwskz = bset-mwskz.
          t_alv-hwbas = bset-hwbas.
          t_alv-hwste = bset-hwste.
          t_alv-dmbtr = bset-hwbas + bset-hwste.
          t_alv-stceg = lfa1-stceg.
        APPEND t_alv.
      ENDSELECT.

    Hello Nuno Centeio ,
                                      According to the table definition there can be more than one entries for a vendor based on the table key definition.
    Thanks,
    Greetson

  • Sample code to find duplicated entries in internal table and mark them?

    We have one internal table called itab1 which contains the following fields:
    f1 (key field)
    f2 (non-key field)
    f3 (non-key field)
    The business scenario is f1, f2, and f3 are one to one relationship to each other, or in other word, f2 or f3 can't be duplicated with the the same values for different f1 (key field) records. We will move the check result of the duplication into another internal table itab2 which contains f1, f2, f3, f4, and f5 where f1, f2, and f3 are the same ones as in itab1, f4 will get the value "Yes" to mark duplicated for f2 (or "No" to mark non-duplicated), and f5 will get the value "Yes" to mark duplicated for f3 (or "No" to mark non-duplicated).
    We know that through the loop of itab1, the above logic can be done to fill in f4 and f5 value for each row with either "Yes" or "No".
    Just give an example of how itab2 will look like after the coding:
    f1----f2--f3--f4(f2 duplicated?)---f5(f3 duplicated?)
    A----01-X0YesNo--
    B----01-X1YesYes--
    C----02-X1NoYes--
    Could any ABAP expert here show us the sample code to generate itab2 in loop of itab1 to find the duplicated entries of f2 and f3 and then populated the corresponding row values for f4 and f5 with "Yes" or "No"? We will give you reward points!

    TYPES: BEGIN OF ty_1,
    f1,
    f2(2),
    f3(2),
    f4,
    f5,
    END OF ty_1.
    TYPES: BEGIN OF ty_2,
    type(2),
    value(2),
    END OF ty_2.
    DATA: itab1 TYPE STANDARD TABLE OF ty_1 WITH HEADER LINE,
          itab2 TYPE TABLE OF ty_2 WITH HEADER LINE.
    DATA: f2_c TYPE sy-tabix VALUE 0,
         f3_c TYPE sy-tabix VALUE 0,
         curr_f2 LIKE itab1-f2,
         curr_f3 LIKE itab1-f3.
    itab1-f1 = 'A'.
    itab1-f2 = '01'.
    itab1-f3 = 'X0'.
    APPEND itab1.
    itab1-f1 = 'B'.
    itab1-f2 = '01'.
    itab1-f3 = 'X1'.
    APPEND itab1.
    itab1-f1 = 'C'.
    itab1-f2 = '02'.
    itab1-f3 = 'X1'.
    APPEND itab1.
    SORT itab1 BY f1 f2 f3 AS TEXT.
    LOOP AT itab1.
      IF sy-tabix EQ 1.
        curr_f2 = itab1-f2.
        curr_f3 = itab1-f3.
      ENDIF.
      IF itab1-f2 NE curr_f2.
        f2_c = 0.
        curr_f2 = itab1-f2.
      ENDIF.
      IF itab1-f3 NE curr_f3.
        f3_c = 0.
        curr_f3 = itab1-f3.
      ENDIF.
      f2_c = f2_c + 1.
      f3_c = f3_c + 1.
      IF f2_c > 1.
        itab1-f4 = 'X'.
        MODIFY itab1.
        itab2-type = 'f2'.
        itab2-value = itab1-f2.
        APPEND itab2.
      ENDIF.
      IF f3_c > 1.
        itab1-f5 = 'X'.
        MODIFY itab1.
        itab2-type = 'f3'.
        itab2-value = itab1-f3.
        APPEND itab2.
      ENDIF.
    ENDLOOP.
    DELETE ADJACENT DUPLICATES FROM itab2.
    LOOP AT itab2.
      IF itab2-type = 'f2'.
        LOOP AT itab1 WHERE f2 = itab2-value AND f4 NE 'X'.
          itab1-f4 = 'X'.
          MODIFY itab1.
        ENDLOOP.
      ELSE.
        LOOP AT itab1 WHERE f3 = itab2-value AND f5 NE 'X'.
          itab1-f5 = 'X'.
          MODIFY itab1.
        ENDLOOP.
      ENDIF.
    ENDLOOP.
    Edited by: Ramiro Escamilla on Apr 5, 2008 1:45 AM
    changed the code, now should work

  • Duplicated entries in the Library-Runbooks section

    Hi
    We recently changed the URL where SCSM should read the SCO Runbooks from.
    However, after we initiated a new SCO connector sync, the Library is populated with duplicate entries, from both the old URL and the new URL (see the screenshot below).
    From the SCSM gui, Im not able to delete the entries (the Delete option is greyed out, I'm connected as the scsm adminaccount)
    Also, when I look in the SQL db of SCO, in the Resources table, there are duplicate entries.
    I thought I may fix the problem by deleting the old entries from the SCO SQL-table, but the URL-field that I find in scsm, is not present in the SQL-table.
    Anyone that have a suggestion how I might be able to proceed with my plan, or that have other solutions on the problem?
    Env.:
    SCSM / SCO 2012 SP1-RU7, SQL 2K12 Ent.(latest build)
    Thanks in advance.
    /Peter

    Didn't help, sadly.
    I fixed it by doing a calculated guess and deleted one of each of the duplicated entries in the SCO DB in the "Microsoft.SystemCenter.Orchestrator.Internal.Resources" table.
    Missed a few so I had to reimport those runbooks, and delete the other on instead
    After the last connector-sync in scsm, we only have one entry of each.

  • My new icloud acct on my imac is duplicating entries in calendar from my ipad; how do I get rid of the duplicates and how do I get one calendar to be the main one to start with

    I've just installed Mavericks on my iMac and now my calendar has duplicate and now sometimes tripled events by syncing with my ipad mini regardless of whether the item already existed in the iMac calendar already. How do I remove the duplicates? It was being able to sync calendars and contacts which was one of my reasons for moving from Snow Leopard to Mavericks and now it's a mess.

    Crista70, What is happening is you now have 2 calendars with the entries in them. If you go into View, then Show Calendar List, you will see all your calendars. Uncheck the ones listed as "From My Mac" or uncheck the ones listed as "iCloud" and they will no longer show as duplicates. Personally, I prefer unchecking the "From My Mac" calendars so that my calendars are all synced across the devices.

  • Remove duplicated entry under certain condition

    Good day!
    I have this report that displays Journal Entry Numbers and their corresponding Outgoing Payments Numbers (if they have). Tables involved are OVPM and OJDT. The problem is, there's this one Journal Entry number that two Outgoing Payments points at. One of the Outgoing Payments' Remarks is labeled 'Cancelled'. On the report, I wanted to remove the OVPM that has a Cancelled remark. Thank you.

    Use the select expert
    <> 'Cancelled'
    Ian

  • 7.1 SLD-LMBD. Advice needed: duplicated entries for SAP systems

    Hi Experts,
    I've noticed few duplicate entries that appear in SOLMAN 7.1 during the content synchronization from SLD to LMDB and migration from SMSY to LMDB.
    For instance:
    I already had CRM syetem in Solution Manager: CRD
    After the SLD-SMSY-LMDB sync & mirgation new CRM system was created in SOLMAN: CRD00001. and it has absolutely the same setting and parameters as an old one: CRD.
    This happens for other systems like: BW, XI, etc..
    Any advice please how to avoid such duplications in the SOLMAN systems' landscape?
    Thanks & regards,
    123

    Hi,
    This normally happenes if there is some differences in the data in SMSY and SLD.
    It may be any header data..Database host name ot any small entry.
    Please check the below note:
    1507548 - Duplicate SID in Transaction SMSY.
    The solution can be, cleanup the duplicate entries manually and update the data properly. check if any thing missing in the SMSY definition.
    Hope this helps.
    Regards,
    Sunny

  • Duplicating entry in 2 tables

    Hi,
    I am looking for some help on how to do the following:
    I use Number to track my finances. I have two tables - one for my checking account and the other one for my cash account. When I withdraw cash from my checking account I record a transfer or debit transaction in my checking account table (in the type column of this table I enter "transfer" and in the category column of this table I enter "cash account"); Obviously I have to record a matching transaction in my cash account where the category column shall read "checking account". Both records represent one and the same transaction. In order not to enter this transaction twice I would like to "automate" this process so that once I enter the transaction in either of the two table (checking or cash) the matching entry automatically appears in the other table. Is there any way to do this.
    Thank you,
    Evgeny

    Evgeny, you got me on this one. It is easy to transfer an entry to another table if you aren't also making manual entries in the other table. It gets difficult when you want to be able to make manual entries in both tables, you would like the entries to be in order (by date I assume) and when you want entries to duplicate in both directions, depending on which table you made the entry. Or maybe it's easy and I just haven't got it yet. If I come up with something I'll post it here. Right now I'm stumped.

  • Duplicated entries in Dictionary

    I came from Java to ActionScript so Dictionary object is always a bit strange to me. Today I encountered a weird situation on it which had cost me a few hours of debug time. What I need to do is to find out the common ancestor of two branches in XML. I use Dictionary and the XML node as key. It then all boils down to following snippet:
    var project:XML = <project><item id="item1"/><item id="item2"/></project>
    var item1:XML = project.children()[0];
    var item2:XML = project.children()[1];
    var parent1:XML = item1.parent() as XML;
    var parent2:XML = item2.parent() as XML;
    var dic:Dictionary = new Dictionary();
    dic[parent1] = "1";
    dic[parent2] = "2";
    I expected dic to have only one entry. However it turned out as two entries even though parent1 == parent2 and parent1 === parent2 all test to true. Is this a problem with Dictionary or is it because I used XML as the key and the parent() method whose return type is * is causing the problem? Any help is greatly appreciated! Thanks.
    Regards,
    Feng

    Thanks for the reply. You are right. I could have compared parent() for the scenario I described. However I need to accomplish something else at the same time which was why I used Dictionary. I got my program to work in another way. Nontheless the original question regarding the Dictionary behavior remains. My current observation is that XML node itself works fine as Dictionary key. It's probably the untype nature of parent() method that caused the problem. Dictionary documentation isn't very clear on this (it only stress on strict equality which is satisfied in my snippet). Can anyone confirm?

  • Outlook sync is duplicating entries

    Hi. I hope you can help. I am trying to sync my outlook 11 with ical (only to sync to my iphone and ipad from there) and I am ending up with many multiple entries. ical seems to duplicate everything, then outlook ends up with multiple entries. Even if I go thru and remove them all manually (yes it takes forever) they all keep coming back. it seems to be all entries that are all day events. meetings with specific times rarely duplicate. repeating entries, such as birthdays, there can be 10 or more duplications. My outlook and ical are the latest, and I'm using snow leopard. Help....
    Thank you.

    Damon M. wrote:
    here is an article from the apple support website that might help out.
    http://docs.info.apple.com/article.html?artnum=305845
    Damon,
    That is the article that I used. Resetting sync history did not help.
    Removing and reinstalling iTunes fixes it briefly. It works for a few syncs, then stops working again. Removing and reinstalling again fixes it for a few cycles, but the problem still comes back. This is not a practical workaround.
    The following note appears in the Event Viewer under applications as Information (not Error):
    The description for Event ID ( 0 ) in Source ( iPod Service ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: Service started.
    This Information message appears with the same time stamp:
    The description for Event ID ( 1903 ) in Source ( HHCTRL ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: http://go.microsoft.com/fwlink?LinkID=45839.
    I don't know if this will help.
    best,
    Larry

  • IPSEC - Phase 1 - Duplicated entries

    Hello,
    I have an IPSEC tunnel between a cisco and a checkpoint and at phase one i see so many entries ??
    Any ideas what is wrong ?
    XXX#show crypto isakmp sa
    dst             src             state          conn-id slot status
    10.200.0.1      10.100.58.70    QM_IDLE            161    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            160    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            159    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            158    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            157    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            156    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            155    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            154    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            153    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            152    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            151    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            150    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            149    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            148    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            147    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            146    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            145    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            144    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            143    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            142    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            141    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            140    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            139    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            138    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            137    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            136    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            135    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            134    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            133    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            132    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            131    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            130    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            129    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            128    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            127    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            126    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            125    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            124    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            123    0 ACTIVE
    10.200.0.1      10.100.58.70    QM_IDLE            122    0 ACTIVE
    ----cut here ----

    Looks like a mem leak, upgrade to something newer or MD and check if it persists.

  • Problems with outlook and address book contacts: my outlook contacts had around 3,000 entries. Outlook duplicated by itself and now outlook and address book have each over 340,000. What should I do?

    Problems with outlook and address book contacts: my outlook contacts had around 3,000 entries. Outlook duplicated entries and have now 340,000. I reinstalled microsoft office and, thus, outlook, and reinstalled mac OS X system and applications. While I managed to delete outlook contacts so that I can re-sync with my blackberry, the contacts at Mac Address Book were not deleted and still have over 340,000 entries. I do not mind deleting all contacts since I have back up, but I have not been able to delete them. Also, when I go at Address Book and try to delete or merge duplicated entries, the system takes forever and never ends because of such large amount of entries. Worse, when I do so I run out of RAM memory.
    My Macbook pro is just 2 months old.
    What should I do? Is there a way to delete my Mac Address Book without having the problem above?
    Many thanks
    Regis

    zlatan24 wrote:
    For solving out troubles connected with corrupted or lost address book you may use address book recovery. It owns various features such as restoring wab files, it working under any Windows OS. The utility has modern and easy to use interface due to almost every experienced users.
    If it is a windows problem it's not going to run on the OP's MacBook Pro

  • Deletion of duplicated table entry

    Hi!
    I am facing with the following error after the system copy of SAP ERP 2005 on Windows migrated from MS SQL to SAP DB.
    By entering into the db-relevant tcodes (DB13, dbacockpit, etc.) the following error appears:
    Runtime Errors ITAB_DUPLICATE_KEY
    Date and Time 24.05.2008 14:01:23
    Short text
    A row with the same key already exists.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "CL_DB6_SYS====================CP" had to be
    terminated because it has come across a statement that unfortunately cannot be executed.
    Error analysis
    An entry was to be entered into the table "\CLASS=CL_DB6_SYS\DATA=SYSTEMS"
    (which should have had a unique table key (UNIQUE KEY)).
    However, there already existed a line with an identical key.
    The insert-operation could have ocurred as a result of an INSERT- or
    MOVE command, or in conjunction with a SELECT ... INTO.
    The statement "INSERT INITIAL LINE ..." cannot be used to insert several
    initial lines into a table with a unique key.
    My questions:
    1) How can I identify which DB-table is relevant?
    2) How can I delete the duplicated entry?
    a) with SAP tcodes
    b) on DB level (what is the procedure)
    Thank you very much!
    regards
    Thom

    Hi Thom,
    from one side you can look in the WP log file where the short dump occured. The failed SQL statement is rather often logged there.
    From the other side as the issue is reproducable you can take the SQL trace and see which SQL statement failed.
    On the DB level you can delete the stamente with the usual DELETE statement. This exact description you will find in our documentation please follow the path from the SAP note 767598 in depend of your DB version.
    Best regards,
    Oksana

Maybe you are looking for

  • Automatic Identification of Business Partner in Web IC

    Hi, We have a new external software vendor(CTI) who is providing IVR for our SAP enviorment. Our goal is to find the BP automatically in the Web IC. How ever it is searching the based on Caller Phone Number. The external Vendor(CTI) is sending the Ph

  • 'Ol UFO Style Airport Extreme and Ancient Computers & OS

    My tiny network= PowerPC G5 and iBookG4, both OS Tiger 10.4.11, and the mushroom/ ufo style Airport Extreme. I can't tell if this Airport is on its' last leg, the signal has been diminishing and erratic the past few days, always worse at night. I hav

  • Nokia N97 mini isync plug request start here (Ooop...

    So I can't believe I can't sync my contacts and calendar on my mac with my brand new phone when I could do it without problems with my good ol' E65. Anyone by luck have any info on a release date or should I switch back to good ol'E65?  If you feel a

  • Paying for fast BB but getting the same rate as be...

    Got a letter in the post wowing me with an offer of upgrading my pitiful 4Mb BB to over 13Mb. Upgraded 12th December. Ping went to about 30ms that day and the speed was 6Mb dl and about 1.2Mb upload. Decent start as I was told the speed would ramp up

  • Error when writing the trace in ST01

    Hi Gurus, Good day! Please advise on how can I resolve this issue in ST01. I'm getting an error "Error when writing the trace No such file or directory". Appreciate your help. Cheers, Virgilio