Urgency question, xa_start returned XAER_RMERR

i have an urgency question,
tuxedo 6.5, oracle 8.1.7
when I used tpcall to call a service, which is in a server, tperrno returned 10(TPESVCERR).
The service hase only one select statement as 'EXEC SQL select ...'.
The ULOG file infomation :
082123.nznode4!cserv_v3.105788: gtrid x10001 x3eac9994 x9d: LIBTUX_CAT:481:
ERROR: Service xa_start returned XAER_RMERR
xa_NULL042803.trc
ORACLE XA: Version 8.1.7.0.0. RM name = 'Oracle_XA'.
083014.95804.0:
ORA-24784: Transaction exists
RM file
Oracle_XA:xaosw:-L${ORACLE_HOME}/lib -lm -lclntsh -lsql
and what puzzled me greatly is
when i boot it, it worked well, several minutes later, it worked wrong.
what's the problem? who can help me?
urgency, very thanks.

i have an urgency question,
tuxedo 6.5, oracle 8.1.7
when I used tpcall to call a service, which is in a server, tperrno returned 10(TPESVCERR).
The service hase only one select statement as 'EXEC SQL select ...'.
The ULOG file infomation :
082123.nznode4!cserv_v3.105788: gtrid x10001 x3eac9994 x9d: LIBTUX_CAT:481:
ERROR: Service xa_start returned XAER_RMERR
xa_NULL042803.trc
ORACLE XA: Version 8.1.7.0.0. RM name = 'Oracle_XA'.
083014.95804.0:
ORA-24784: Transaction exists
RM file
Oracle_XA:xaosw:-L${ORACLE_HOME}/lib -lm -lclntsh -lsql
and what puzzled me greatly is
when i boot it, it worked well, several minutes later, it worked wrong.
what's the problem? who can help me?
urgency, very thanks.

Similar Messages

  • LIBTUX_CAT:481: ERROR: Service xa_start returned -9

    Hi All,
    We are getting a typical XA error in one of our application environments every day.
    I found the error message in ULOG and the message says :
    "180502.mddev!XYZ.1867.1.0: gtrid x0 x49b925ce xa384: LIBTUX_CAT:481: ERROR: Service xa_start returned -9"
    "XYZ" is one of the data logic service used in the application.
    [ NOTE : XYZ is a duplicate name used for the actual server respecting the security policy of the customer]
    After a bit of analysis I found in if the logs called xa_NULL03132009.trc , the below messages
    150702.19343.0:
    xaostart: xid=0x28-6d64646576000000000000000000000000000000000000000000000000000000000744f249b925ce00008c8e-000000
    0100000008, rmid=0, flags=0x0
    150702.19343.0:
    ORA-24776: cannot start a new transaction
    150702.19343.0:
    xaostart: XAER_OUTSIDE; session in local transaction
    Please guide me in resolving the issue and let me know what to do to resolve the issue.
    It'll be great if I'll get some help as soon as possible.
    Thanks,
    Sandhya...

    The XAER_OUTSIDE error can occur when a service that uses embedded SQL is sometimes invoked transactionally and is sometimes invoked nontransactionally.
    When such a service is invoked nontransactionally, the first SQL statement executed within the service starts a SQL unit of work that is not associated with an XA transaction. If the service includes code "if (tpgetlev() == 0) EXEC SQL COMMIT WORK;" or "if (tpgetlev() == 0) EXEC SQL ROLLBACK WORK;" before invoking tpreturn() then future calls to this server within an XA transaction will work. However, if the non-XA SQL unit of work is not committed or rolled back before calling tpreturn() then any future calls to this server within an XA transaction will fail with XAER_OUTSIDE.
    The easiest way to fix this problem is to use the Tuxedo AUTOTRAN parameter for all services within such servers. If the UBBCONFIG file includes the lines
    *SERVICES
    DEFAULT: AUTOTRAN=Y
    then all services will have AUTOTRAN turned on by default. When a service configured with AUTOTRAN=Y is invoked, Tuxedo will start an XA transaction before just before invoking the service if not already in an XA service. If Tuxedo started an autotran transaction, then it will automatically commit or roll back the transcaction when tpreturn() is invoked.
    Using AUTOTRAN avoids the need to call COMMIT WORK or ROLLBACK WORK in the application code before tpreturn() if tpgetlev()==0. (When tpgetlev() == 1 transactions are managed by XA and the application should not use any SQL COMMIT WORK or ROLLBACK WORK statements.)

  • Tpopen TPERMERR xa_open returned XAER_RMERR

    Trouble during tmboot phase of servers...
    Resource management of the database extensions are failing even though the correct
    settings (ie. database name, user name/password, and TMS resource/TMSUDB2) are
    stated in the tuxedo configuration file. Receive a "CMDTUX_CAT:825" notifying
    that the resource did not activate but nothing more (how can the level of debug
    information be increased? major problem with tmadmin and debugging).
    Also, just prior to tmboot running through the list of groups/servers to boot
    an error message related to TMSUDB2 is logged: "LIBTUX_CAT:466: ERROR: tpopen
    TPERMERR xa_open returned XAER_RMERR." And the tpsvrinit() fails.
    Attached is the ULOG log. I would love some help in learning how to debug resource
    errors. I am not educated as a tuxedo sys admin. only a developer.
    mvh - Matthew Young
    [ULOG.081502]

    Matthew,
    are you sure the entries in the udataobj/RM file
    are correct ?
    Peter Holditch <[email protected]> wrote:
    Matthew,
    You don't need a Tuxedo administrator, you need a database administrator!
    Your Tuxedo server calls tpopen() or tx_open(). This in turn calls xa_open()
    passing the OPENINFO string you configured for the server group. The
    xa_open
    function itself is implemented by the database.
    XAER_RMERR is the mechanism prescribed by the xa specification for the
    RM to
    report "I have failed" Tuxedo is passing that information back to you.
    You need to use whatever database debugging facilities you have available
    to
    determine why the database's xa_open routine failed. With Oracle,
    you can
    enable xa tracing with the OPENINFO. WIth UDB, I have no idea what diagnostics
    are available.
    I hope that helps!
    Peter.
    Matthew Young wrote:
    Trouble during tmboot phase of servers...
    Resource management of the database extensions are failing even thoughthe correct
    settings (ie. database name, user name/password, and TMS resource/TMSUDB2)are
    stated in the tuxedo configuration file. Receive a "CMDTUX_CAT:825"notifying
    that the resource did not activate but nothing more (how can the levelof debug
    information be increased? major problem with tmadmin and debugging).
    Also, just prior to tmboot running through the list of groups/serversto boot
    an error message related to TMSUDB2 is logged: "LIBTUX_CAT:466: ERROR:tpopen
    TPERMERR xa_open returned XAER_RMERR." And the tpsvrinit() fails.
    Attached is the ULOG log. I would love some help in learning how todebug resource
    errors. I am not educated as a tuxedo sys admin. only a developer.
    mvh - Matthew Young
    143625.W40006071!BBL.645: 081502: TUXEDO Version 6.4 32-bit Windows.
    143625.W40006071!BBL.645: LIBTUX_CAT:262: INFO: Standard main starting
    143629.W40006071!TMS.616: 081502: TUXEDO Version 6.4 32-bit Windows.
    143629.W40006071!TMS.616: LIBTUX_CAT:262: INFO: Standard main starting
    143629.W40006071!TMS.639: 081502: TUXEDO Version 6.4 32-bit Windows.
    143629.W40006071!TMS.639: LIBTUX_CAT:262: INFO: Standard main starting
    143629.W40006071!TMS.471: 081502: TUXEDO Version 6.4 32-bit Windows.
    143629.W40006071!TMS.471: LIBTUX_CAT:262: INFO: Standard main starting
    143629.W40006071!TMS.630: 081502: TUXEDO Version 6.4 32-bit Windows.
    143629.W40006071!TMS.630: LIBTUX_CAT:262: INFO: Standard main starting
    143629.W40006071!TMS.515: 081502: TUXEDO Version 6.4 32-bit Windows.
    143629.W40006071!TMS.515: LIBTUX_CAT:262: INFO: Standard main starting
    143629.W40006071!TMS.359: 081502: TUXEDO Version 6.4 32-bit Windows.
    143629.W40006071!TMS.359: LIBTUX_CAT:262: INFO: Standard main starting
    143630.W40006071!TMSUDB2.643: 081502: TUXEDO Version 6.4 32-bit Windows.
    143630.W40006071!TMSUDB2.643: LIBTUX_CAT:262: INFO: Standard main starting
    143630.W40006071!TMSUDB2.643: LIBTUX_CAT:466: ERROR: tpopen TPERMERRxa_open returned XAER_RMERR
    143630.W40006071!TMSUDB2.643: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    143630.W40006071!tmboot.478: 081502: TUXEDO Version 6.4 32-bit Windows.
    143630.W40006071!tmboot.478: CMDTUX_CAT:825: ERROR: Process TMSUDB2at LOCALPC failed with /T tperrno (TPERMERR - resource manager error)
    143630.W40006071!TMSUDB2.531: 081502: TUXEDO Version 6.4 32-bit Windows.
    143630.W40006071!TMSUDB2.531: LIBTUX_CAT:262: INFO: Standard main starting
    143630.W40006071!TMSUDB2.531: LIBTUX_CAT:466: ERROR: tpopen TPERMERRxa_open returned XAER_RMERR
    143630.W40006071!TMSUDB2.531: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    143630.W40006071!tmboot.478: CMDTUX_CAT:825: ERROR: Process TMSUDB2at LOCALPC failed with /T tperrno (TPERMERR - resource manager error)
    143630.W40006071!TMSUDB2.341: 081502: TUXEDO Version 6.4 32-bit Windows.
    143630.W40006071!TMSUDB2.341: LIBTUX_CAT:262: INFO: Standard main starting
    143630.W40006071!TMSUDB2.341: LIBTUX_CAT:466: ERROR: tpopen TPERMERRxa_open returned XAER_RMERR
    143630.W40006071!TMSUDB2.341: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    143630.W40006071!tmboot.478: CMDTUX_CAT:825: ERROR: Process TMSUDB2at LOCALPC failed with /T tperrno (TPERMERR - resource manager error)
    143630.W40006071!TMSUDB2.427: 081502: TUXEDO Version 6.4 32-bit Windows.
    143630.W40006071!TMSUDB2.427: LIBTUX_CAT:262: INFO: Standard main starting
    143630.W40006071!TMSUDB2.427: LIBTUX_CAT:466: ERROR: tpopen TPERMERRxa_open returned XAER_RMERR
    143630.W40006071!TMSUDB2.427: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    143630.W40006071!tmboot.478: CMDTUX_CAT:825: ERROR: Process TMSUDB2at LOCALPC failed with /T tperrno (TPERMERR - resource manager error)
    143631.W40006071!DMADM.474: 081502: TUXEDO Version 6.4 32-bit Windows.
    143631.W40006071!DMADM.474: LIBTUX_CAT:262: INFO: Standard main starting
    143631.W40006071!DMADM.474: CMDGW_CAT:3149: INFO: BDMCONFIG environmentvariable not set. Using $APPDIR/BDMCONFIG
    143631.W40006071!GWADM.596: 081502: TUXEDO Version 6.4 32-bit Windows.
    143631.W40006071!GWADM.596: LIBTUX_CAT:262: INFO: Standard main starting
    143631.W40006071!DMADM.474: CMDGW_CAT:3142: ERROR: Cannot send configto GWADM group=DOM_GW
    143631.W40006071!GWADM.596: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    143631.W40006071!tmboot.478: CMDTUX_CAT:825: ERROR: Process GWADM atLOCALPC failed with /T tperrno (TPESVCFAIL - application level service
    failure)
    143631.W40006071!TMS.467: 081502: TUXEDO Version 6.4 32-bit Windows.
    143631.W40006071!TMS.467: LIBTUX_CAT:262: INFO: Standard main starting
    143631.W40006071!TMS.406: 081502: TUXEDO Version 6.4 32-bit Windows.
    143631.W40006071!TMS.406: LIBTUX_CAT:262: INFO: Standard main starting
    143632.W40006071!meddelandeadmv.603: 081502: TUXEDO Version 6.4 32-bitWindows.
    143632.W40006071!meddelandeadmv.603: LIBTUX_CAT:262: INFO: Standardmain starting
    143632.W40006071!TMSUDB2.429: 081502: TUXEDO Version 6.4 32-bit Windows.
    143632.W40006071!TMSUDB2.429: LIBTUX_CAT:262: INFO: Standard main starting
    143632.W40006071!TMSUDB2.429: LIBTUX_CAT:466: ERROR: tpopen TPERMERRxa_open returned XAER_RMERR
    143632.W40006071!TMSUDB2.429: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    143632.W40006071!tmboot.478: CMDTUX_CAT:825: ERROR: Process TMSUDB2at LOCALPC failed with /T tperrno (TPERMERR - resource manager error)
    143632.W40006071!TMSUDB2.435: 081502: TUXEDO Version 6.4 32-bit Windows.
    143632.W40006071!TMSUDB2.435: LIBTUX_CAT:262: INFO: Standard main starting
    143632.W40006071!TMSUDB2.435: LIBTUX_CAT:466: ERROR: tpopen TPERMERRxa_open returned XAER_RMERR
    143632.W40006071!TMSUDB2.435: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    143632.W40006071!tmboot.478: CMDTUX_CAT:825: ERROR: Process TMSUDB2at LOCALPC failed with /T tperrno (TPERMERR - resource manager error)
    143633.W40006071!sakerhet.425: 081502: TUXEDO Version 6.4 32-bit Windows.
    143633.W40006071!sakerhet.425: LIBTUX_CAT:262: INFO: Standard mainstarting
    143633.W40006071!sakerhet.425: LIBTUX_CAT:466: ERROR: tpopen TPERMERRxa_open returned XAER_RMERR
    143634.W40006071!meddelandeadmi.397: 081502: TUXEDO Version 6.4 32-bitWindows.
    143634.W40006071!meddelandeadmi.397: LIBTUX_CAT:262: INFO: Standardmain starting
    143634.W40006071!meddelandeadmi.397: LIBTUX_CAT:466: ERROR: tpopenTPERMERR xa_open returned XAER_RMERR
    143634.W40006071!fellogg.477: 081502: TUXEDO Version 6.4 32-bit Windows.
    143634.W40006071!fellogg.477: LIBTUX_CAT:262: INFO: Standard main starting
    143634.W40006071!fellogg.477: LIBTUX_CAT:466: ERROR: tpopen TPERMERRxa_open returned XAER_RMERR
    143634.W40006071!meddelandeinfo.465: 081502: TUXEDO Version 6.4 32-bitWindows.
    143634.W40006071!meddelandeinfo.465: LIBTUX_CAT:262: INFO: Standardmain starting
    143634.W40006071!meddelandeinfo.465: LIBTUX_CAT:466: ERROR: tpopenTPERMERR xa_open returned XAER_RMERR
    143834.W40006071!TMS.406: CMDTUX_CAT:457: INFO: TMS tpsvrdone complete
    143834.W40006071!TMS.467: CMDTUX_CAT:457: INFO: TMS tpsvrdone complete
    143834.W40006071!DMADM.474: CMDGW_CAT:1655: INFO: DMADMSVR is exiting
    143834.W40006071!TMS.359: CMDTUX_CAT:457: INFO: TMS tpsvrdone complete
    143834.W40006071!TMS.515: CMDTUX_CAT:457: INFO: TMS tpsvrdone complete
    143834.W40006071!TMS.630: CMDTUX_CAT:457: INFO: TMS tpsvrdone complete
    143834.W40006071!TMS.471: CMDTUX_CAT:457: INFO: TMS tpsvrdone complete
    143834.W40006071!TMS.639: CMDTUX_CAT:457: INFO: TMS tpsvrdone complete
    143834.W40006071!TMS.616: CMDTUX_CAT:457: INFO: TMS tpsvrdone complete
    143838.W40006071!BBL.645: CMDTUX_CAT:26: INFO: The BBL is exiting system
    144646.W40006071!tmadmin.351: 081502: TUXEDO Version 6.4 32-bit Windows.
    144646.W40006071!tmadmin.351: TMADMIN_CAT:1330: INFO: Command: help

  • Where can I find the forum premiere elements? and how to find my own questions asked return?

    waar vind ik het premiere elements forum en hoe vind ik mijn eigen gestelde vragen terug?
    where can I find the forum premiere elements? and how to find my own questions asked return?

    arkitsa wrote:
    thank you 99jon, but still difficult to find your own questions back.
    Click on this:
    then this:
    and finally this:
    And your posts will be listed.

  • Question about returning an Apple product to the store...

    Hi everyone,
    I'm not sure if this is the right place to ask this question, but here it goes:
    Last Friday, I bought an TV in a Premium/Authorized reseller store. However, I didn't notice that I'd need a television with an HDMI, DVI, or component video input port. Unfortunately, mine only supports S-Video or composite video input port, so I'm unable to play it with colors!
    Therefore, I'd like to return this opened TV. So, do you guys know what are their policies? Will they accept the return? I'm asking you this, because only tomorrow I'll have a chance to call them or visit them.
    Hope you can help me here!

    Hi F Shippey,
    F Shippey wrote:
    You might want to check the Apple TV forum. I seem to remember someone reporting having luck using the Green component output connected to the composite input... but check the forum for advice.
    Could you give me a link, because I've been searching for that and didn't find anything! I might want to try it, but the problem is that I don't have any component video cables, and if it doesn't work I wouldn't want to lose money...
    Thanks pal!

  • Question about returning online items...

    Just to confirm, the 15-day timeframe begins when the item is delivered to the residence, correct? Not when the order is initially placed?

    Hi jbtb07,
    Thank you for taking the time to connect with us on the forum.
    It looks like CrystalWoW was able to answer your questions; however, let me see if there is anything else I can help add.  As CrystalWow mentioned, a "special order" product will be ordered directly from the manufacturer.  A majority of our special order products will tend to be appliances and should be marked accordingly on BestBuy.com.  If you ordered an item from one of our online Marketplace retailers, then you would want to contact them directly regarding a return or exchange. 
    I hope you have a wonderful day, and let us know if you have any other questions!
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Design question: methods returning objects

    I have a general design question. When, in general (and why), should you have a method alter an object via it's methods but not return the object as opposed to doing the same operation in a method and then return it.
    Consider the two below methods which do basically the same thing. When is one desireable over the other, and why?
    Cheers--
    public void setMyIntField(SomeObject pObj){
    pObj.setSomeInt(5);
    public SomeObject setMyIntField(SomeObject pObj){
    pObj.setSomeInt(5);
    return pObj;
    }

    Let me give a better example:
    class FruitWorker{
      private void someMethod(){
        HashMap myCitrus = new HashMap();
        HashMap myTropicals = new Hashmap();
        // use my no return obj method
        addFruitProps1(myCitrus,
                       "tartnes",
                       new FruitProperty("very!" ));
        // use my return object method
        myTropicals =  addFruitProps2(myCitrus,
                                      "sweetness",
                                       new FruitProperty("little bit" ));
      }// end method
      private void addFruitProperties1(HashMap pFruitProps,
                                       String pProp
                                       FruitProperty pVal){
        pFruitProps.add( pProp,pVal);
      }// end method
      private HashMap addFruitProperties2(HashMap pFruitProps,
                                       String pProp
                                       FruitProperty pVal){
        pFruitProps.add( pProp,pVal);
        return pFruitProps;
      }// end method
    }// end class

  • Skip question and return to it later

    I'm using Captivate 8.
    Is there a way for users to skip questions during the quiz?
    Can I set it up so they can review but ONLY THE INCORRECT ANSWERS?

    If they skip questions during the quiz, they'll not be able to return to them later on except when you use Submit all.
    As for your second question: Limit Review to Incorrect Answers (Captivate 6) - Captivate blog

  • Question about returning iPod USB Adapter...

    ... Recently my adapter stopped working and Apple sent me a new one. Now the one I just recieved did not come with a return shipment label as far as I can tell (it has a P/N numbers and a package ID), so what am I supposed to do in this situation? Do I create my own return label?

    Well there is a receipt pull out and it does say that I should return the item back within 10 days. The label, as far as I know, isn't one of those labels that apple normally send with returnable items that you just rip off and has the return label under it. It's just two stickers with my address on it. Now has anyone ever been charged for not returning the item?

  • Question about returning old hubs etc. to BT

    Sorry if this isn't quite the right place to post this message, but I'm not sure where else to do so.
    I have a number of old BT hubs and hub phones that I want to dispose of. I'm aware that I can request kit return bags from BT but given the quite significant number of items and the effort involved in packaging them up and taking them to a post office I'd like to know whether BT would be seriously disadvantaged were I instead to take the items to my local recycling facility and put them in with other electronic items. Formally the kit belongs to BT, and although I doubt that they'd pursue me for it I wonder whether they log its return as a means of quantifying their environmental credentials.
    Incidentally the reason that I have quite a lot of items is that as friends have been sent upgraded hubs etc. they have offered me their old ones as spares, and I have always accepted. It is now time for a clear-out - before I find myself appearing on 'The Hoarder Next Door'!
    TIA.
    Solved!
    Go to Solution.

    Rest assured that I will only dispose of my surplus hubs etc. in the electrical receptacle of my local council's recycling facility. I'm well aware that such items contain some very valuable non-renewable constituents, and while the quantities in any one instance are small, this adds up to rather a lot of valuable material across the deployed base, and I'd very much like it to be recovered. Indeed it was what might be considered broadly as environmental concerns that prompted my original post: had I thought that BT would do more to recycle/recover material from surplus equipment than the council would I'd have rung up and asked for as many bags as it took, irrespective of any personal inconvenience.
    Of course if BT could produce a long-life hub that could be enhanced in the future purely by software updates then this would be less of an issue. There might be some technical challenges with such an approach but I suspect anyway that it might be asking a bit much for the marketing people to adopt it.

  • Question about returning an iPad 2

    I am pretty sure I have a defective iPad 2. Can I return it for a store credit rather than for a replacement unit?

    jacko12 wrote:
    It was purchased from an apple retail store, and it has been months since the purchase. This shouldn't matter (amount of time) because there is a 1 yr warranty!
    Then  you CANNOT return it.
    The warranty provides a replacement unit, NOT a refund.
    This would be the same for any warranty on most any product.
    You can get a replacement.  You cannot get a refund.

  • Simple Question: Carriage Return in description field

    Hi,
    i need to know how to insert a carriage return in my description field.
    Its a string field and I use the following code:
    rpt.DataDefinition.FormulaFields["BSpalte"j].Text ="\""bperiod((char)13)"Durchschnitt"bsperiod"\"" ;
    It compiles and the code is done faultless, but when the report needs to be shown,
    I get the message:
    Fault in report: .....
    Fault in formula BSpalte1...
    "Content of string
    " There is something missing..
    (i translated the message from german to english, maybe the translation is not quite correct )
    can you help me?
    Maria

    Hi,
    In SAP carriage return is represented by # symbol, when it reaches the form it turn out to be /n you dont need any script as such to see text in multiple lines.
    If you are using a textfield on the form for such data just make sure * Allow Multiple Lines * check box is selected.
    Then if the source is of n lines, the text field will represent n lines with a scroll bar respectively.
    Let me know if you need more help.
    Cheers,
    Sai

  • Question about returning optional software

    i bought restore cds with a new laptop for 100 dollars extra, but i found out when i unboxed my new laptop that the restore cds are really nessecary, is it possible to return the cds and keep the laptop?

    A majority of computers sold today have a special part of the hard drive set aside for recovery, to keep costs somewhat down. However creation of these discs is like an insurance policy.
    However according to here: http://www.bestbuy.com/site/Help-Topics/Returning-Online-Purchases/pcmcat260800050014.c?id=pcmcat260...
    Geek Squad services which have already been completed are non refundable / returnable.
    However if you have a complaint about the service you had performed at a local Best Buy store, you can tell the Geek Squad about it here: http://www.geeksquad.com/contact.aspx
    *******DISCLAIMER********
    I am not an employee of BBY in any shape or form. All information presented in my replies or postings is my own opinion. It is up to you , the end user to determine the ultimate validity of any information presented on these forums.

  • GREP question, hard return&tab after lines ending in (, space)

    I have a problem that I have been banging my head against the wall for hours trying to figure. I have pages and pages of remote codes I need to format in a specific way. This specific way causes a problem that creates the right side of my columns to look haggard with spots of comma spaces, example:
    Abex                 5011, 5286
    Accurian            5140, 5452
    Accuscan          5005, 5014
    Admiral              5003, 5004,
           5005, 5014, 5015, 5018,
           5025, 5035, 5040, 5041,
           5055, 5165, 5308, 5455
    I hope that comes out looking like I mean it
    There is a picture if it helps. Anyhow. I need it to look like this:
    I hope this helps. The thing is I have figured this out before and I forgot to save the style. I thought I did. I didn't. Sucks. But I did make it so that on lines ending with a comma and space it would hard return and tab.
    Please please help. This has my mind numb trying to figure it out and I have pages and pages of these codes to work through.

    @ GrantH
    That is an easy fix, which I would easily do, but it doesn't resolve the issue that the lines should not end in commas.
    @Jongware
    None taken. I have done something like this before. I know I have because the second picture I included is from a manual I have done before that shows it as such. Granted... that was a while ago and I may be mistaken on the text given for input. However, I'm "pretty" sure I remember having the same issue with the commas at the end and resolving it.
    @Hakkenlid
    This pretty much works for me with the exception of a few trouble spots where the Find just seems to skip over perfectly good matches. So far, this gives me a lot more help than where I was at though.
    @Hakkenlid
    This is what we are going with. It keeps the most readability and completely resolves my comma issue. Saved the expression for later. I really appreciate your help. My Friday started off to a much better start that I was looking forward to.

  • Question about returning...

    How long after you get a refurbished ipod touch from apple.com can you return it? Can you exchange it at all? Thanks

    Not sure if it applies, but it should.
    Apple has a 14 day return policy and I think any purchase of there products.

Maybe you are looking for