Error Message in Bulk Exception.

Hi
When i use a normal Exception, the SQLERRM gives me the complete error along with the column name.
Ex :
ORA-01400: cannot insert NULL into ("BENCHMARK"."T6"."X")
But
When i Use Bulk_Exception, SQLERRM does not give me the complete error along with column name.
Ex:
ORA-01400: cannot insert NULL into ()
Is it that Bulk_exception error messages are less informative. These error messages, does not help me in finding out which column is violation the NOT NULL constraint and hence they actually make no sense.
Is there any way, through which i can get the complete error message as i get in the normal exception.
I am using 9i version.
Regards
Nikhil

I couldn't find exact solution to your problem, but one idea that came to mind, is resubmit statement with problematic rows (without using bulk processing) and save error messages.
SQL> declare
  2    bulk_errors exception;
  3    pragma exception_init ( bulk_errors, -24381 );
  4   
  5    j number;   
  6   
  7    type numbers is table of number;
  8    ids numbers;
  9  begin
10    select case when mod(abs(dbms_random.random),3)=0 then null else 1 end id bulk collect into ids
11      from dual
12    connect by level < 10;
13   
14    forall i in ids.first .. ids.last save exceptions
15      insert into test01 values ( ids(i) );
16    exception when bulk_errors then
17       for i in 1..sql%bulk_exceptions.count loop
18         j := sql%bulk_exceptions(i).error_index;
19         begin
20            insert into test01 values ( ids(j) );
21         exception when others then
22            dbms_output.put_line( 'Row #'||j||'. '||substr(sqlerrm,1,instr(sqlerrm,chr(10))-1) );
-- substr to get only the first line
23         end;
24       end loop;
25  end;
26  /
Row #1. ORA-01400: cannot insert NULL into ("SCOTT"."TEST01"."ID")
Row #3. ORA-01400: cannot insert NULL into ("SCOTT"."TEST01"."ID")
Row #6. ORA-01400: cannot insert NULL into ("SCOTT"."TEST01"."ID")
Row #7. ORA-01400: cannot insert NULL into ("SCOTT"."TEST01"."ID")
Row #8. ORA-01400: cannot insert NULL into ("SCOTT"."TEST01"."ID")
Row #9. ORA-01400: cannot insert NULL into ("SCOTT"."TEST01"."ID")

Similar Messages

  • CcBPM, how to capture error message in the exception branch ?

    Hi,
    Can I capture error message in the exception branch ? how to do that ?
    because i want to raise the alert including with the error message ?
    Cheers
    Fernand

    Hello Fernand,
    I hope at the end of this you may get some knowledge on Alerts.
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step XI:Alerts step-by-step. (fundamental Basic)
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i CCMS Monitoring for XI. (CCMS monitoring for XI is enough later
    we configure to Adapter Engine).
    /people/aravindh.prasanna/blog/2005/12/23/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part--1 Configuring scenario specific E-mail alerts in XI-CCMS: Part-1
    (This is Important)
    /people/aravindh.prasanna/blog/2005/12/24/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-2 Configuring scenario specific E-mail alerts in XI-CCMS: Part-2
    /people/aravindh.prasanna/blog/2006/02/20/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-3 Configuring scenario specific E-mail alerts in XI-CCMS: Part 3
    /people/federico.babelis2/blog/2006/05/03/solution-manager-cen-and-alerting-configuration-guide-for-dummies Solution Manager CEN and Alerting configuration (Advanced)
    Please reward points if it is useful...
    Thanks,
    Satya Kumar

  • Catch mapping error message in BPM Exception branch

    Hi dudes,
    Does anyone know how to catch the mapping runtime error message into a BPM exception branch? I know how to create an exception branch and how to trigger it, but I wonder whether it's possible to pass the mapping error message as shown in SXI_MONITOR (i.e. 'Cannot create target element XXXXX. Values missing in queue context').
    Otherwise, everytime my BPM fails I will have to take the payload and run the mapping test in order to find out the reason of the error.
    Many thanks in advance!
    Paco

    Thanks,
    My problem is not about handling exception in BPM, but getting the mapping error description and then passing it to the exception branch.
    I can see in the workflow log that this info is contained into the Exception container EXCEPTIONS[2] / T100MSG:
    Message Class: SAI_MAPPING
    Message Number: 217
    Message Type: E
    Message Variable: com/sap/xi/tf/_<MM name>
    Message Variable: com.sap.aii.mappingtool.tf7.IllegalInstanceExcepti
    Message Variable: on: Cannot create target element /ns1:<path/field>.Message Variable: Values~
    The text in bold is the one I am interested in to be get and mapped into the exception branch.

  • Error message from FM exception

    Hi Gurus,
    Please help me.
    I am having a function module BDC_OPEN_GROUP.
    In this we are having 11 exceptions.
    I have to catch these exceptions and display an error message if sy-subrc ne 0.
    Promise to reward points
    Mac

    Hi Mac,
    In the calling program you code should look something like this:
    CALL FUNCTION 'BDC_OPEN_GROUP'
    EXPORTING " -->> If required
      CLIENT                    = SY-MANDT
      DEST                      = FILLER8
      GROUP                     = FILLER12
      HOLDDATE                  = FILLER8
      KEEP                      = FILLER1
      USER                      = FILLER12
      RECORD                    = FILLER1
      PROG                      = SY-CPROG
    IMPORTING "-- >> If required
      QID                       =
    EXCEPTIONS 
       CLIENT_INVALID            = 1
       DESTINATION_INVALID       = 2
       GROUP_INVALID             = 3
       GROUP_IS_LOCKED           = 4
       HOLDDATE_INVALID          = 5
       INTERNAL_ERROR            = 6
       QUEUE_ERROR               = 7
       RUNNING                   = 8
       SYSTEM_LOCK_ERROR         = 9
       USER_INVALID              = 10
       OTHERS                    = 11
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    This will definitely work.
    Reward points if helpful.
    Regards,
    Renuka.

  • OWB R2 error message RPE-02163: Exception initialising deployer

    Hi,
    I'm using the OWB R2, and after deploy a Presention (that is supposed to export the Catalog for Discoverer and BI Beans), I got this message bellow:
    RPE-02163: Exception initialising deployer.
    Could someone help me with this issue? Please note that the word "initialising" appears incorrect in the error message
    Regards,
    Angelo
    [email protected]

    This is most likely a catalog version issue. Which version of the BI Beans catalog did you install? If you are not using the latest version, then go to the BI Beans website on OTN and download the latest version of BI Beans and upgrade your BI Beans catalog following the instructions in the BI Beans Readme file.
    Hope this helps
    Keith

  • How to avoid error message re: an exception that I don't care about

    I written a script that allows a user to click on a thumbnail image and then the script will change the html in order to play a particular video. It works, except that it throws some kind of error and I don' t know what it is. Since it works, I don't care what it is, but I would like to catch it. The popup error window says "An error occurred inside a plug-in contained on this page." Any ideas on what the error might be? Below is my code.
    <script type="text/javascript">
    function PlayVideo($Thumbnail)
    // Then there is a PHP section where I look up the video file, $VideoFile, in a database with $Thumbnail as my criteria. For now, I have a file hardcoded into the param.
    var $NEWhtml; // variable to build new script to swap with
    $NEWhtml ='<object id="MP4player" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="400" height="250" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n';
    $NEWhtml +='<param name="src" value="VideosApproved/Toad Singing.mp4">\n';+
    +$NEWhtml+ ='<param name="autoplay" value="true">\n';
    $NEWhtml +='<param name="loop" value="false" >\n';+
    +$NEWhtml+ ='<embed width="400" height="250" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" autoplay="true" controller="true"></embed>\n';
    $NEWhtml +='</object>\n';
    // REMOVE OLD ELEMENT
    var specialzone = document.getElementById('MP4section');
    var element = document.getElementById('MP4player');
    element.parentNode.removeChild(element);
    // ADD NEW ELEMENT
    var specialzone = document.getElementById('MP4section');
    var change = document.createElement('MP4player');
    change.innerHTML = $NEWhtml;
    specialzone.appendChild(change);
    return true;
    </script>

    This site supports java
    Java != javascript

  • Error message unknown software exception

    Thunderbird doesn't open and I get this message "The exception unknown software exception (0x0000417) at location 0x78b2ae6e".
    How can I fix this? Can I just re-install Thunderbird?
    Thanks.

    start by reinstalling and see how you go.

  • 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

  • A java script application keeps putting up an exception"component returned failure code:0x80520012 whenever I try to use firefox. how do I get rid of this error message?

    I tried to download 1 click weather and this error message appeared. Exception..."component returned failure code:0x80520012(NS_ERROR_FILE_NOT_FOUND)[nsIfileInputstream.init]"nsresult:0x80520012(NS_ERROR_FILE_NOT_FOUND)"location:"JSframe::chrome://iclickweather/content/js/utils/filemanager.js::<TOP_LEVEL>::line233"data1no]

    To avoid confusion: http://kb.mozillazine.org/JavaScript_is_not_Java
    That issue is caused by the 1clickweather extension as you can see in your above posted error message.<br />
    See:
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Trapping exceptions/error messages on form based on procedure

    I am trying to display meaningful error messages when various exceptions arise. I have created a form based on a procedure and the procedure works and returns an exception where I want it.
    I have been trying to use the PL/SQL Button event handler to return an error message to the user, but have not succeeded. I have tried:
    doSubmit;
    exception
    when others then
    p_session.set_value(
    p_block_name => 'DEFAULT',
    p_attribute_name => '_STATUS',
    p_value => 'my error message';
    (I have run this code both with a return at the end and not.)
    This runs, but this return a page that says:
    Error: WWV-0000.
    (It does not display 'my error message'.)
    I have also tried, from the Portal FAQs:
    doSubmit;
    exception
    when others then
    wwa_app_module.set_target('myschema.MY_ERRORS.SHOW?p_arg_names=p_errcode&p_arg_values=-1',
    'GO');
    where my_errors is a dynamic page that displays an error message when you pass it a value, in this case, -1.
    I get the following error message from this code:
    PLS-00201: identifier 'WWA_APP_MODULE.SET_TARGET' must be declared
    I did find some discussions on problems with exceptions when you have a form based on a procedure, but these were from 2001. Any help with this or directions to documentation would be greatly appreciated.

    I worked out one answer: the code provided by Oracle for the second example omitted the portal schema qualifier on the wwa_app_module. It should be (for 10g release 2, at least)
    PORTAL.wwa_app_module.set_target('myschema.MY_ERRORS.SHOW?p_arg_names=p_errcode&p_arg_values=-1',
    ^^^^^^^^^^
    'GO');
    This worked, and returned the custom error message.
    I still can't figure out why the p_session.set_value returns an error message that's just WWV-0000, but I would like to. Any help, even just what page in what document to look at would be appreciated.

  • Error message when opening ipodrip

    Hi
    After I unzip the application and double click on the icon to open, I get this error message:
    "An unhandled exception has occurred in a component in your application. Click continue and application will ignore this error and attempt to continue.
    Argument 'Length' must be greater or equeal to zero."
    Under the details section this appears, can anyone help? Thanks
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    ************ Exception Text ************
    System.ArgumentException: Argument 'Length' must be greater or equal to zero.
    at Microsoft.VisualBasic.Strings.Right(String str, Int32 Length)
    at iPodRip.DBReader.SongDataControl()
    at iPodRip.DBReader.Control()
    at iPodRip.StartUp.FindIpod()
    at iPodRip.StartUp.Timer1_Elapsed(Object sender, ElapsedEventArgs e)
    ************ Loaded Assemblies ************
    mscorlib
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
    iPodRip
    Assembly Version: 1.0.1916.33618
    Win32 Version: 1.0.1916.33618
    CodeBase: file:///C:/Program%20Files/The%20Little%20App%20Factory/iPodRip/iPodRip.exe
    System.Windows.Forms
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e08 9/system.windows.forms.dll
    System
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    System.Data
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system. data.dll
    System.Xml
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.x ml.dll
    System.Drawing
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/syst em.drawing.dll
    AxInterop.QTActiveXPlugin
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.0.0
    CodeBase: file:///C:/Program%20Files/The%20Little%20App%20Factory/iPodRip/AxInterop.QTActi veXPlugin.DLL
    Interop.QTActiveXPlugin
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.0.0
    CodeBase: file:///C:/Program%20Files/The%20Little%20App%20Factory/iPodRip/Interop.QTActive XPlugin.DLL
    Microsoft.VisualBasic
    Assembly Version: 7.0.5000.0
    Win32 Version: 7.10.6001.4
    CodeBase: file:///c:/windows/assembly/gac/microsoft.visualbasic/7.0.5000.0__b03f5f7f11d50a 3a/microsoft.visualbasic.dll
    ************ JIT Debugging ************
    To enable just in time (JIT) debugging, the config file for this
    application or machine (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
    <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the machine
    rather than being handled by this dialog.
    Sony Vaio   Windows XP  

    I'd delete iPodRip, and try downloading YamiPod (http://www.yamipod.com).

  • Error while running bulk insert in SSIS package

    Hi:
    I have an error when I am running bulk insert in SSIS package.
    I have implemented an SSIS package to update master data directly from R/3, R/3 gives the file in a specified format, I take this and insert all the records into a temporary table and then update mbr table and process the dimension.
    This works perfectly well in our development system where both our app server and sql server on the same box. But in QAS, the 2 servers are separate and when I try to run the SSIS package I get the below error.
    We have tested all connections and are able to access the path and file from both app server and sql server using the shared folder. Our basis team says that it is a problem with bulk insert task and nothing to do with any authorization.
    Has anyone experienced with this sort of problem in multi server environment? Is there another way to load all data from a file into bespoke table without using bulk insert.
    Thanks,
    Subramania
    Error----
    SSIS package "Package.dtsx" starting.
    Error: 0xC002F304 at Insert Data Into Staging Table (Account), Bulk Insert Task: An error occurred with the following error message: "Cannot bulk load because the file "
    msapbpcapq01\dim\entity.csv" could not be opened. Operating system error code 5(Access is denied.).".
    Task failed: Insert Data Into Staging Table (Account)
    SSIS package "Package.dtsx" finished: Success.
    The program '[2496] Package.dtsx: DTS' has exited with code 0 (0x0).

    Hi Subramania
    From your error:
    Error: 0xC002F304 at Insert Data Into Staging Table (Account), Bulk Insert Task: An error occurred with the following error message: "Cannot bulk load because the file "
    msapbpcapq01\dim\entity.csv" could not be opened. Operating system error code 5(Access is denied.).".
    Let say, server A is where the file entity.csv is located
    Please check the Event Viewer->Security of Server A at the time when the SSIS run, there must be an entry with Logon Failure and find what user was used to access the shared path.
    If your both servers are not in a domain, create the user in server A with the same name and password and grant read access to the shared folder.
    The other workaround is grant read access to Everybody on the shared folder.
    Halomoan
    Edited by: Halomoan Zhou on Oct 6, 2008 4:23 AM

  • Error messages in OACoreGroup.0.stderr under iAS/Apache/Jserv/logs/jvm/

    Hi,
    We have been receiving the below error messages in OACoreGroup.0.stderr file.
    [Aug 23, 2010 11:42:12 AM CEST]:1282556532823:Thread[Thread-116635,10,main]:-1:-1:bz-antwerpen02:10.214.215.25:10020:20020:UNEXPECTED:[fnd.common.logging.DebugEventManager.handlerException]:java.lang.Exception: /aferror.log (Permission denied)
    at oracle.apps.fnd.common.logging.FileHandler.<init>(FileHandler.java:103)
    at oracle.apps.fnd.common.logging.FileHandler.<init>(FileHandler.java:80)
    at oracle.apps.fnd.common.logging.DebugEventManager.registerHandlers(DebugEventManager.java:1297)
    at oracle.apps.fnd.common.logging.DebugEventManager.init(DebugEventManager.java:937)
    at oracle.apps.fnd.common.logging.DebugEventManager.<init>(DebugEventManager.java:204)
    at oracle.apps.fnd.common.AppsLog.<init>(AppsLog.java:519)
    at oracle.apps.fnd.common.AppsLog.<init>(AppsLog.java:489)
    at oracle.apps.fnd.common.AppsLog.<clinit>(AppsLog.java:469)
    at oracle.apps.fnd.common.AppsContext.makeLog(AppsContext.java:824)
    at oracle.apps.fnd.common.Context.setLog(Context.java:1253)
    at oracle.apps.fnd.common.Context.setLog(Context.java:1233)
    at oracle.apps.fnd.common.Context.getLog(Context.java:1205)
    at oracle.apps.fnd.common.Context.isLoggingEnabled(Context.java:2001)
    at oracle.apps.fnd.common.Context.makeConnectionManager(Context.java:489)
    at oracle.apps.fnd.common.AppsContext.makeConnectionManager(AppsContext.java:857)
    at oracle.apps.fnd.common.Context.setConnectionManager(Context.java:449)
    at oracle.apps.fnd.common.Context.setConnectionManager(Context.java:433)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:522)
    at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:292)
    at oracle.apps.mwa.container.ApplicationsObjectLibrary.AOLInit(ApplicationsObjectLibrary.java:174)
    at oracle.apps.mwa.container.ApplicationsObjectLibrary.<init>(ApplicationsObjectLibrary.java:78)
    at oracle.apps.mwa.container.MWALib.setObjectLibrary(MWALib.java:339)
    at oracle.apps.mwa.wap.engine.WapServlet.init(WapServlet.java:158)
    at org.apache.jserv.JServServletManager.load_init(JServServletManager.java:755)
    at org.apache.jserv.JServServletManager.loadServlet(JServServletManager.java:659)
    at org.apache.jserv.JServServletManager.loadStartupServlets(JServServletManager.java:789)
    at org.apache.jserv.JServServletManager.init(JServServletManager.java:447)
    at org.apache.jserv.JServ.start(JServ.java:625)
    at org.apache.jserv.JServ.main(JServ.java:234)
    [Aug 23, 2010 11:42:12 AM CEST]:1282556532822:Thread[Thread-116635,10,main]:-1:-1:bz-antwerpen02:10.214.215.25:10020:20020:UNEXPECTED:[fnd.common.logging.FileHandler.publish]:Please check File Permission/Disk Space for: aferror.log, defaulting Logging to STDERR
    [Aug 23, 2010 11:42:12 AM CEST]:1282556532914:Thread[Thread-116635,10,main]:-1:-1:bz-antwerpen02:10.214.215.25:10020:20020:UNEXPECTED:[fnd.framework.OAException]:Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = oracle.apps.fnd.cache.CacheException;
    We do not know the cause of it as the user have not complained about it so far. While routine checking, we stumbled upon this file and saw the errors. This is happening on our PROD instance. Hence it is a concern. Let me know if anyone has encountered this issue before. And what is the cause for it and the fix?
    Thanks in Advance.
    Jayant

    Hi;
    Please check below notes which is mention bug but similar error message as yours:
    Exception: /aferror.log (Permission denied)&Please check File Permission/Disk Space for: aferror.log, defaulting Logging to STDERR
    Bug 8684943: UNEXPECTED ERROR WHILE LAUNCHING PLM WORKBENCH
    https://support.oracle.com/CSP/main/article?cmd=show&type=BUG&id=8684943&productFamily=Oracle
    Bug 4653049: PAXPREPR WORKFLOW VIEW DIAGRAM BUTTON PRODUCES ERROR PAGE
    https://support.oracle.com/CSP/main/article?cmd=show&type=BUG&id=4653049&productFamily=Oracle
    Bug 6143160: UPDATE PARAMETER PERIOD IN PMD REPORTS DESIGNER GIVES NULLPOINTEREXCEPTION
    https://support.oracle.com/CSP/main/article?cmd=show&type=BUG&id=6143160&productFamily=Oracle
    Those for previous release but it seems same error already included
    Regard
    Helios

  • Error message while trying to run report on Historical Reports

    One of my users are getting an Exceptional Error while the userr is trying to run a report on Historical reports on her machine.  I am able to run the same report on another machine so i am assuming it has something to do with her particualar machine. Error Message is below
    Exceptional Error
    An Exceptional Error occured. Application exiting.  Check the log file for error 5022.
    We are running version 5.0.
    v\:* {behavior:url(#default#VML);}
    o\:* {behavior:url(#default#VML);}
    w\:* {behavior:url(#default#VML);}
    .shape {behavior:url(#default#VML);}
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}

    Hello,
    Check out this bug, as it matches your exact error message:
    CSCef56507 - HRC/Call Custom Vars rpt does not allow Calling Number to be chosen
    http://tools.cisco.com/Support/BugToolKit/action.do?hdnAction=searchBugs
    The only thing I'm not quite sure is that it supposedly affects CRS 4.x not 5, however I think you can try the workaround on the machine with problems and see how that works.
    HTH
    Pablo

  • Error message in preferences and hyperlink from publisher to adobe

    Having problems when trying to go into my preferences and also when trying to insert a hyperlink from a publisher document to an adobe document.  The error message is:  The exception unknown software exception ()xc000000d) occurred in the application at location 0xo4f37bf1.  I/T has uninstalled and reinstalled the program twice.  Can anyone help?  Thanks

    Hi,
    here is the sample of the code we have used in our system.
    restrict logic based on Document Type and Company Code
    IF i_ekko-bsart EQ c_ub AND i_ekko-bukrs EQ 'XXXX'.
    loop at Line Items of PO
      LOOP AT tekpo WHERE loekz EQ space.
      if Receiving Plant is YYYY and Storage Location is NULL
        IF tekpo-werks = 'YYYY' AND
           tekpo-lgort = space.
        issue error message
          MESSAGE ID 'ZM' TYPE 'E' NUMBER '042' WITH
              tekpo-ebelp                               "line item
              tekpo-werks.                              "receiving plant
        ENDIF.          "receiving plant/storage location
      ENDLOOP.
    ENDIF.          "document type
    Hope this helps.
    -Ramesh

Maybe you are looking for

  • Line charts appearance

    Hi, I'm new to numbers and I need to create a line chart using a large set of data points. By default settings my line looks really, really botchy and I cannot find any option to change it's thickness. The only thing I can do is to put Data Symbols,

  • How do I reinstall MUSE?

    My Adobe Application Manager tells me that it is up to date, however it keeps crashing and I get a message when it does asking me to reinstall it.

  • PNG Files on adobe forms

    Hi am trying to attach a transparent png image to my adobe form , however it appears with a white background can anyone help with this.???? Im assuming the  the file format is wrong, but what file extension is needed ??

  • DLU / Roaming Profile on Windows XP machines

    Hello, Newbie on ZCM, always worked with Zfd. Setup : ZCM 11 SP2 user profiles on a NSS share. Not in home directories ( is this neccesary ? ) Logon with user name gives : Policy does not allow interactive logon When I use the workstation logon after

  • "Run Report" form error befor running XML report

    I created XML report (Concurret Programs with Output Format XML), created XML file as Data definition and RTF template, and will Output in Excel. When open Run Request and choose XML report, before Parametr form is opened, get 2 error: FRM-41084: Err