Uncaught exception CX_OS_OBJECT_NOT_FOUND in Action Profile RSPPFPROCESS

Hej All,
Am facing a problem in email notifications dump in CRM 7.0 with support pack 4 ..
The same batch job was working fine initially.Couldn't figure out what went wrong..
Here is the ST22 dump is for your reference below
The exception 'CX_OS_OBJECT_NOT_FOUND' was raised, but it was not caught
anywhere along the call hierarchy.
Since exceptions represent error situations and this error was not adequately responded to, the running ABAP program
'CL_PARTNER_PPF================CP' has to be terminated.
"UNCAUGHT_EXCEPTION" "CX_OS_OBJECT_NOT_FOUND"
"CL_PARTNER_PPF================CP" or "CL_PARTNER_PPF================CM001"
"IF_OS_STATE~HANDLE_EXCEPTION"
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_OS_OBJECT_NOT_FOUND', was not
caught in
procedure "COPY" "(METHOD)", nor was it propagated by a RAISING clause.
Since the caller of the procedure could not have anticipated that the
exception would occur, the current program is terminated.
The reason for the exception is:
Could not find the referenced object with the OID
"DF2108F7C61A11F1AB5118A905420075" (instance GUID) and
"37B65114D0475B9EE10000009B38FA0B" (class GUID)
Information on where terminated
Termination occurred in the ABAP program "CL_PARTNER_PPF================CP" -
in "IF_OS_STATE~HANDLE_EXCEPTION".
The main program was "RSPPFPROCESS ".
In the source code you have the termination point in line 32
of the (Include) program "CL_PARTNER_PPF================CM001".
The program "CL_PARTNER_PPF================CP" was started as a background job.
Job Name....... "Z_XX_XX"
Job Initiator.. "XXXX"
Job Number..... 06001008
The termination is caused because exception "CX_OS_OBJECT_NOT_FOUND" occurred
in
procedure "COPY" "(METHOD)", but it was neither handled locally nor declared
in the RAISING clause of its signature.
The procedure is in program "CL_PARTNER_PPF================CP "; its source
code begins in line
1 of the (Include program "CL_PARTNER_PPF================CM00O ".
Action profile is used ZXXXX and action definition is ZXXXX
Plesae provde your input to solve the issue.
Regards
Shan

Processing type of action profile is method call and a method is Z_SLA_EMAIL_RES_TIME.Implemented in Badi ZCL_IM_SLA_EMAIL_RES_TIME(Interface name :IF_EX_EXEC_METHODCALL_PPF_ and definition name is EXEC_METHODCALL_PPF.     
From the error it seems that it is not able to find the guid for the partner it is looking for.

Similar Messages

  • Terminating with uncaught exception of type std::logic_error: basic_string::_S_costruct NULL not valid

    Hi, what should I do if I have this problem,
    Install Adobe Flash Player quit unexpectedly, and this is from the Problem Report,
    terminating with uncaught exception of type std::logic_error: basic_string::_S_construct NULL not valid

    Hi viktoriat6208079,
    What does "it is not worked out." mean?  What happens when you use the offline installer?
    To modify how your name displays in the forums:
    Go to your profile by clicking on the avatar in the upper right, alternatively, click on your username/name link
    Then select Actions > Edit Communities Profile
    In the next window, click on Privacy
    The Privacy tab contains numerous options, one is how your name displays in the forums.  If you select "Yourself" then only you can see your name.
    Maria

  • Uncaught exception java.lang.ArrayIndexOutOfBoundsException in J2ME

    hi all,
    i found a strange error (uncaught exception java.lang.ArrayIndexOutOfBoundsException) every time when i tried to developed a MIDlet and servlet to retrieve data from database. can anyone tell me why this error occur? this is example of MIDlet code:
    public void checkResult() {
    HttpConnection conn = null;
    InputStream is = null;
    OutputStream os = null;
    byte[] receivedData = null;
    String userid = "123";
    try {
    String url = getAppProperty("Result.URL");
    conn = (HttpConnection)Connector.open(url);
         byte postData [] = ("userid=" + userid).getBytes();
    conn.setRequestMethod(HttpConnection.POST);
    conn.setRequestProperty("User-Agent", "Profile/MIDP-1.0 Configuration/CLDC-1.0");
    conn.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
         conn.setRequestProperty ( "Content-Length", Integer.toString (postData.length));
    conn.setRequestProperty("Connection", "close" );
    conn.setRequestProperty("Content-length",Integer.toString(postData.length));
         os = conn.openOutputStream();
         os.write(postData);
         os.close();
         is = conn.openInputStream();
         String contentType = conn.getType();
    int len = (int)conn.getLength();
    if (len > 0)
    receivedData = new byte[len];
    int nb = is.read(receivedData);
    else
    receivedData = new byte[1024];
    int ch;
    len = 0;
    while ((ch = is.read()) != -1)
    receivedData[len++] = (byte)ch;
    response.setText(new String(receivedData,0,len));
    display.setCurrent(outputForm);
    catch (IOException e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
    finally {
    try {
    if (is != null) {
    is.close();
    if (os != null) {
    os.close();
    if (conn != null) {
    conn.close();
    catch (IOException e) {
    from alice

    That would be a point where I miss bounds checking on your part:
    receivedData = new byte[1024];
    int ch;
    len = 0;
    while ((ch = is.read()) != -1)
    receivedData[len++] = (byte)ch; // what happens if more than 1024 characters come along??
    }Otherwise the exact line of error, the stack trace or some context would be helpful.

  • Strutstestcase problem - exception thrown by action not being caught

    Hi,
    I am experiencing a problem in a test class I wrote to test part of a Struts based application. I have posted this problem on the StrutsTestCase forum but not had a response yet (it doesn't seem to be frequently visited/posted at) so thought I would try my luck here.
    The action performs some back-end processing and if all successful then returns a mapping forward. If an error occurs then an Exception is thrown. The config file contains the entry for the ExceptionHandler which displays the error message on the page (i.e. it calls the same jsp page that the action was first submitted from).
    This all works fine when tested through the browser. Running a successful test via CactusStrutsTestCase also works correctly. But when I try to run a test to validate the error path the test class errors and the cactus output file indicates the Exception was thrown. BUT in my test class method...
    public void testFileUpload()
    this.setRequestPathInfo("/mypath");
    this.addRequestParameter("action", "uploadFile");
    MyForm form = new MyForm();
    form.setFormFile(this.getUploadFile("empty.txt"));
    this.setActionForm(form);
    try
    this.actionPerform();
    System.out.println("got here OK -----------------------");
    catch (Exception e)
    System.out.println("got here ERROR -----------------------" + e.getMessage());
    I try to catch the Exception so I can determine whether the test passed/failed but it is never caught. Instead the test just errors and neither debug line above is printed on the console. Yet the output file indicates that at the 'this.actionPerform();' line an error was uncaught...
    <testcase classname="test.MyCactusTest" name="testFileUpload" time="4.87">
    <error message="An uncaught exception was thrown during actionExecute()" type="org.apache.cactus.internal.client.ServletExceptionWrapper">servletunit.struts.ExceptionDuringTestError: An uncaught exception was thrown during actionExecute()
         at servletunit.struts.CactusStrutsTestCase.actionPerform()V(CactusStrutsTestCase.java:546)
         at test.MyCactusTest.testFileUpload()V(MyCactusTest.java:34)
    I'm bemused! Any help is much appreciated.

    Hi,
    I am experiencing a problem in a test class I wrote to test part of a Struts based application. I have posted this problem on the StrutsTestCase forum but not had a response yet (it doesn't seem to be frequently visited/posted at) so thought I would try my luck here.
    The action performs some back-end processing and if all successful then returns a mapping forward. If an error occurs then an Exception is thrown. The config file contains the entry for the ExceptionHandler which displays the error message on the page (i.e. it calls the same jsp page that the action was first submitted from).
    This all works fine when tested through the browser. Running a successful test via CactusStrutsTestCase also works correctly. But when I try to run a test to validate the error path the test class errors and the cactus output file indicates the Exception was thrown. BUT in my test class method...
    public void testFileUpload()
    this.setRequestPathInfo("/mypath");
    this.addRequestParameter("action", "uploadFile");
    MyForm form = new MyForm();
    form.setFormFile(this.getUploadFile("empty.txt"));
    this.setActionForm(form);
    try
    this.actionPerform();
    System.out.println("got here OK -----------------------");
    catch (Exception e)
    System.out.println("got here ERROR -----------------------" + e.getMessage());
    I try to catch the Exception so I can determine whether the test passed/failed but it is never caught. Instead the test just errors and neither debug line above is printed on the console. Yet the output file indicates that at the 'this.actionPerform();' line an error was uncaught...
    <testcase classname="test.MyCactusTest" name="testFileUpload" time="4.87">
    <error message="An uncaught exception was thrown during actionExecute()" type="org.apache.cactus.internal.client.ServletExceptionWrapper">servletunit.struts.ExceptionDuringTestError: An uncaught exception was thrown during actionExecute()
         at servletunit.struts.CactusStrutsTestCase.actionPerform()V(CactusStrutsTestCase.java:546)
         at test.MyCactusTest.testFileUpload()V(MyCactusTest.java:34)
    I'm bemused! Any help is much appreciated.

  • Uncaught exception: java.lang.Error: 137 in JavaFX

    Hi
    I am getting the error mentioned in subject while trying to Run a JavaFX application "Run in Mobile Emulator" mode. I am trying to use split() to separate concatenated String. The code snippet is given below :
    *onMouseClicked: function(e : MouseEvent) : Void {*       
    println("Inside on Mouse Clicked...");
    var sample = "Sherlyn|masrrev|Other";
    var names = sample.split("\\|");
    *println("{names.toString()}");*
    The error that I get is pasted below:
    *Inside on Mouse Clicked...*
    *Uncaught exception: java.lang.Error: 137*
    *- testsplit.Main$2.lambda(), bci=43*
    *- testsplit.Main$2.invoke(), bci=2*
    *- testsplit.Main$2.invoke(), bci=5*
    *- javafx.scene.Node.mouseClicked$impl(), bci=68*
    *- javafx.scene.Node.mouseClicked(), bci=3*
    *- com.sun.fxme.runtime.FXNodeDelegate$4.run(), bci=6*
    *- com.sun.fxme.runtime.RunnableQueue$Manager.run(), bci=86*
    *- com.sun.fxme.runtime.RunnableQueue.run(), bci=38*
    testsplit is the Javafx project created in Netbeans.
    However the same application executes without any error when run in "Standard Execution" and "Run in Browser" mode. I am using Netbeans --> right click on the project --> Properties --> In Project Properties Window choose --> Run --> Standard Execution. or --? Run in Browser.
    Is it that split() is not supported by Mobile Emulator? Please do get back to me if anybody has any answer to this.
    Thanks in advance..
    masrrev

    I don't have NetBeans, so I can't answer for sure.
    I had to [read a bit|http://developers.sun.com/mobility/personal/articles/pbp_pp/] on differences between profiles, in particular [between CDC and CLDC|http://www.java-tips.org/java-me-tips/midp/what-are-cdc-and-cldc.html]. Apparently StringTokenizer belongs to CDC, which is available only to high end mobile devices. If I look at [Semsung phones' Device Specifications|http://developer.samsungmobile.com/Developer/index.jsp], most of them, for example, support only CLDC 1.1 with MIDP 2.0.
    On the other hand, [MIDP 2.0|http://java.sun.com/javame/reference/apis/jsr118/] seems to have even less classes & interfaces than you show, so it is confusing.
    Here is the dumbest method, doing all the work by hand. Not properly tested due to lack of time (check with separator at end, at start, consecutive, no separators...):
    function SplitCLDC(string: String, separator: String): String[]
      var parts: String[];
      var prevPos = 0;
      while (true)
        var pos = string.indexOf(separator, prevPos);
        if (pos < 0)
          var lastPart = string.substring(prevPos);
          insert lastPart into parts;
          break;
        var part = string.substring(prevPos, pos);
        prevPos = pos + 1;
        insert part into parts;
      return parts;
    }

  • Uncaught Exception occured while sending mail through abap code.

    Hi,
    Uncaught Exception occured while sending mail through abap code.Run time Errors "UNCAUGHT_EXCEPTION" occured after excuting the call method  CALL METHOD SEND_REQUEST->SEND( ).kindly help in resolving the issue.

    HI,
    Runtime Error:  UNCAUGHT_EXCEPTION details.
    Runtime Errors         UNCAUGHT_EXCEPTION
    Exception              CX_ADDRESS_BCS
    Short text
         An exception occurred that was not caught.
    What happened?
         The exception 'CX_ADDRESS_BCS' was raised, but it was not caught anywhere along
         the call hierarchy.
         Since exceptions represent error situations and this error was not
         adequately responded to, the running ABAP program 'SAPLZSEND_MAIL' has to be
         terminated.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_ADDRESS_BCS', was not caught in
        procedure "SEND_MAIL" "(FORM)", nor was it propagated by a RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        An exception occurred
    How to correct the error
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "UNCAUGHT_EXCEPTION" "CX_ADDRESS_BCS"
        "SAPLZSEND_MAIL" or "LZSEND_MAILU01"
        "ZSEND_EMAIL"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "SEND_MAIL" "(FORM)", or its possible occurrence must be declared in the
    RAISING clause of the procedure.
    Please help me to resolve this issue.

  • Processing Actions in RSPPFPROCESS

    Hello,
    i created for my opportunity process type a new action profile.
    One of the new actions is to create a follow-up task if the opportunity end date is reached but the status is still open.
    This works fine in my test environment.
    My question is:
    What happens to the more than 1000 opportunities already created in production bevor i transported this changes?
    Will this activity be created also for this older opportunities?
    Or will this activity only be created for new opportunities after this changes?
    My requirement is to have the activity also for the older opportunities.
    Thanks for your answer
    Best regards
    Manfred

    Will this activity be created also for this older opportunities?
    No.
    In the Action Settings for your action definition, check the setting Processing Time. It can be
    1. Processing Using Selection Report
    3. Immediate Processing
    4. Processing When Saving Document
    By choosing option 1, It is also possible that the actions are first only scheduled and processing is not started until later using a selection report or by a user in the document. Use report program RSPPFPROCESS or transaction SPPFP. Once you have finished your backlog transactions in the production system, change your "Processing Time" to 3 or 4 and transport again.

  • Uncaught exception error when entering in "Messages"

    I have a client that uses a Blackberry World Edition (8830) and when he tries to go into Messages (by selecting the Messages icon) he gets this error message all the time: Uncaught Exception:java.lang.null.pointer
    I tried 2 kind of resets, alt+caps+del and tried removing the battery while the BB is on and same thing, I did a hard reset, which is wipe the BB and client left me a message this morning that he still gets the same error message.
    From my BES console (we synchronise with Domino servers on a Lotus Notes plattform) I see that he has the
    platform version 3.0.0.81
    Blackberry version: 4.2.2.196
    His blackberry ues a Bell Mobility service.
    Right now, the only other thing I can think of is to download the OS and reload it on the BB using Desktop Manager.
    Can anyone help me with this please.  I appreciate all the help.
    Robert Goupil
    BES administrator
    * Update -- my client activated his blackberry with the BES this morning and sent me a message that, after the activation, the problem seems to be resolved.  Now, is there anything different that can be done in case  this happens again, we have over 800 blackberry users and most of them have the 8830 model.
    Message Edited by robgou on 11-05-2008 10:56 AM
    Solved!
    Go to Solution.

    Hi,
    Your troubleshooting actions were right on the money, as far as I can see.
    HRT is the Host Routing Tables. It is entries sent from the Carrier.
    When you highlight the above entry and hit register now, it registers it with the wireless network. Updates the device details onto the rim relay and sends down carrier specific icons or applicants
    I believe the problem existed in a corrupt application on the users smartphone, by registering the phone, the application
    was refreshed. This is the first time I have seen that particular exception message get resolved without a device
    reload. (Just for reference I have read 133150 posts.)
    Thanks,
    Please remember to resolve your thread. Put the check mark in the green box that contained your answer! Thanks
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Terminating app due to uncaught exception 'NSInvalidArgumentException'

    Hey,
    Need some help from the experts. When trying to sync with my nokia n95, I get this:
    Process: AddressBookSync [185]
    Path: /System/Library/Frameworks/AddressBook.framework/Resources/AddressBookSync.app/ Contents/MacOS/AddressBookSync
    Identifier: AddressBookSync
    Version: ??? (???)
    Code Type: X86 (Native)
    Parent Process: SyncServer [131]
    Date/Time: 2008-05-05 17:30:08.592 +0800
    OS Version: Mac OS X 10.5.2 (9C7010)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '[ISDSqliteRecordIdMapper dealloc]: record id mapper released with uncommitted changes'

    Hi mithin,
    I think that u haven't proper;y connect outlet and action method and that why u get error when u will press b utton calc1... right?
    So u should connect button and IBAction method..... try it out.
    Thanks,
    Haresh.

  • Reg: Uncaught Exception: com.sun.forte.st.mpmt.ipc$AnIPCException

    I am developing programs using sun studio 12 on SunFireT1000 Server having Solaris 10 OS .
    My program is getting compiled and running well but i have probems in profiling.
    When I try to profile, I got the following error
    "Uncaught Exception: com.sun.forte.st.mpmt.ipc$AnIPCException
    er_print exited due to internal error
    Exception in thread Window_thread."
    Even for the programs that I profiled earlier I am now getting the same error.
    If I login with a different user name I am able to profile the same project without the above error but I cannot modify the source code.
    Kindly suggest a solution to overcome the above problem.
    Thanks in advance,
    Mahendraarman.D

    Hi Mahendraarman,
    Thank you for the report! Usually this error message (exception) indicates a problem in "er_print",
    or in the dialog between "analyzer" and "er_print". Could you please check if there is a "core" file
    from "er_print"? If there is no 'core" file, please, make sure the limit on coredumpsize is unlimited,
    and start analyzer again:
    {code}
    % csh
    % limit coredumpsize unlimited
    % limit
    cputime unlimited
    filesize unlimited
    datasize unlimited
    stacksize 10240 kbytes
    coredumpsize unlimited
    descriptors 256
    memorysize unlimited
    % analyzer
    {code}
    If you get a core file from "er_print", please, run "pstack core" and post its output.
    You wrote that you can view the experiment using another user's account. This is
    very important detail. Do you have ".er.rc" file in your $HOME directory?
    If yes, could you, please, rename it and start analyzer again?
    {code}
    % mv $HOME/.er.rc $HOME/.er.rc.0
    % analyzer
    {code}
    If you cannot get a core file, and there is no $HOME/.er.rc file, could you please
    run analyzer under truss, and send me the truss output?
    {code}
    % truss -a -e -f -o /tmp/analyzer.tr analyzer
    {code}
    When the problem happens, send me this file: /tmp/analyzer.tr
    My email address is: Nikolay dot Molchanov at Sun dot Com
    Thanks in advance,
    Nik

  • Error while saving a smartform in pdf with action profile in service order

    Hi experts,
    I have a problem in saving a smartform which is converted in pdf.
    WHat i m doing is.
    The action profile is configured with new Z class and Z method. CL_DOC_PROCESSING_CRM_ORDER and CRM_SRVORDER_EXEC_SMART_FORM.
    But when i click the button in the Order, i m able to save the pdf in local drive, but an error is coming in the Order page(at the bottom) "Action could not be executed successfully".
    The action has been setup with "Printonly" and "Smartforms print" in customization.
    I have a dount whether, this action Printonly is only to print the smartform ??? Or can we use just to save the smartform in pdf.
    But when i remove the pdf conversion and save dialog and try to print it directly, Its printing the smartform. No errors are coming.
    But guys, please help me on this. I have tried all the tricks i know.
    I just want to save a smartform in pdf with action profile configured.
    Thanks in advance.
    <REMOVED BY MODERATOR>
    KK
    Edited by: Alvaro Tejada Galindo on Mar 19, 2008 4:26 PM

    Hi;
    Did you checked
    Queries Error With FRM-92101 In Many NLS Forms [ID 443922.1] << seems similar error like yours
    Forms FRM-92050, FRM-92100, FRM-92101, FRM-92102 Reference Guide [ID 444690.1]
    If its not help please enable trace
    How To Perform System Tracing For All Forms Runtime Processes? [ID 400144.1]
    Regard
    Helios

  • How to log the exception using Log action in Oracle Service Bus

    Hi,
    Whenever an exception is raised how to log the exception using Log action in oracle service bus.After logging where I have to find the logged message.

    It would be in the log file for the managed server which ran the request. If you are logging the message at a lower level than your app server, however, you won't see it. You should be logging the exception at Error level.

  • Lost SMS Icon and get error message Uncaught exception Index 20 = 20

    Dear All
    I have lost my SMS Icon and looking at previous forums have carried out the following techniques which do not work
    1. I have gone to Messages - Options - SmS & Email Inboxes - Seperate but this does not solve anything
        Within this step i have switched off phone taken out battery etc...
    2. I have gone to Applications - menu - "show all" but my SMS icon cannot be found
    Just to note even when i go to Messages - View Folder - SMS Inbox .....i get the error message again  
    Uncaught exception Index 20 > = 20
    Anyone able to help ? Would be greatly appreciated.
    Thanks

    You may have already figured out your fix - but yesterday I went thru the same thing with my son's phone.  Overnight he lost his SMS & MMS Icon and was receiving Uncaught Exception Index 28 >= 28.  I called Verizon Tech Support and was told there was a corrupt file in the calendar. 
    We backed up the phone using the Desktop Manager - performed a security wipe and restored his phone. 
    His phone is back up and running as it should be.  Hope this helps.
     Laura

  • Follow up task without using the action profile

    Hi,
    Is it possible to create the follow up task without using the action profile? If so, please let me know how we can do that?
    as per the requirements, i have to the custom coding that will automatically create follow-on task triggered by status change on the all the transaction type. Please guide me how can we do that.
    Task details (task id, description), I'm reading it from the custom table.
    Thanks for your help.
    Regards,
    Vaibhav

    Thanks Naresh for the response.
    Not sure if I can use the CRMV_EVENT. Even I'm not aware how to use that. Let me tell what i am doing in the logic.
    - implementing the logic in the badi order_save (method - CHECK_BEFORE_SAVE)
    - get the header and item details using the FM CRM_ORDER_READ.
    - get the status of header / item from the output of CRM_ORDER_READ.
    - compare the status with the custom table (having info of hearder type, item type, status, tast id, task description etc)
    - if status is different, create the task using the details from the custom table.
    now i want to write the logic to implement the last step. Do we have any standard FM where I can pass the task ID and it will create the task? Please help.

  • Issue in creating Lead Follow UP- Action Profile

    Hi,
      I am creating a Lead From a Lead  automatically through Action Profile. The Condition is Based on the Questionaire Qualification level. When the follow up is created the Qualification level values disappered.
       We suspet that the lead copies the Qualification Level. Can any one help in Stoping the copy control of the Qualification level field alone.
    Is their any Badi for this?
    With Regards,
    Selvam t

    Hi,
    Please check badi CRM_COPY_BADI. It is used to control which fields should be copied.
    For qualification level, I think method LEAD_H should help.
    Best regards,
    Maggie

Maybe you are looking for

  • Case-insensitive -- what's a scriptor to do?

    Here's my delima: (from a tcsh) % ls file1.txt file2.TXT file3.txt % ls file{1,2,3}.TXT file1.TXT file2.TXT file3.TXT % ls *.TXT file2.TXT % rm *.txt I've written hundreds of unix (csh,tcsh, perl) scripts since around 1988. I never considered that so

  • Itunes closes unexspectetly after about 2 minutes???????

    I get no warning diologe until after its closed i can report the problem or restart itunes. I cant think of anything i changed before to make it start doing it. Ive tried reinstalling, ive tried deleting prefs, but nothing has worked. Any ideas??????

  • Pooled Asset Management

    Hi Friends, We have configured  PAM with the request as Notifications and other related configuraiton settings as available in SPRO. But when the request is created through Notification Type MF and the same is triggered in PAM03 - Planning Board Prof

  • Can I control what an uploaded file plays on?

    When I upload an MPEG-4 Quicktime movie from my Mac, and then download it from a PC, the PC defaults to RealTime, tries to play it on that, and then determines that it can't. Is there a way for me to export and upload a file that will automatically p

  • Scroll gesture moves drawbars with no effect?

    After using Mainstage 2 for a while and then installing Mainstage 3 I was frustrated to find that the 2 finger scrolling gesture will move the drawbars in the Vintage B3 interface without changing the setting. This is not the case in the original EB3