APPcrash with build

Hello,
I have developed a application which communicates with a remote device. The connection between the PC and the device is an ethernet connection, using a telnet session.
The application is used to write files from the PC to the device. Before the device can receive the file the device must be in a special mode. The sequence that is used in the application is as follows:
- push button to select upload mode in the device (After this is done the device must be restarted)
- Wait till device is restarted again.
- Push button to verify if the device is in upload mode
- write file to device.
During development (I have used Labview professional 2010) the above described sequence works correctly. But I also have build a application and a installer. When I run the build application the application crashes after the verification of the device. (I receive a APPCRASH failure) The crash results in closing my program.
When I restart the application (device is still in upload mode) I push the button to verify the mode of the device and the application works correct and I can upload a file.
Searching the forum I have found some other examples of an APPCRASH but turning off the tablet function did not give a correct result. The application still crashed.
Can somebody help me with this problem? Thanks in advance.

Dear Teun,
I'm sorry for the late response and the problems you are having with your exe. Can you check if Data Execution Prevention is activated by doing the following:
Right-click on My Computer and choose Properties.
Click the Advanced tab.
Under the Performance section, click Settings.
Click the Data Execution Prevention tab.
Check to see if DEP is activated for essential Windows programs and services only, or for all programs except those you select.
If DEP is on for all programs, either change it to be on only for Windows programs and services, or add an exception for your new EXE.
The errors and crashes should stop occurring once an exception is made for your application or you choose to use DEP for only essential Windows programs and services.
Best regards,
Martijn S
Applications Engineer
NI Netherlands

Similar Messages

  • Help with build

    Hi all,
    I need a little help with building a new comp and any help will be appericiated.
    My wife is a video editor and she needs a new CPU.
    She is editing HD films from various cameras (she have several clients).
    The budget is around 1500-2000$ for the CPU without screens and software which she already owns.
    She is working with CS5.5 and using windows 7 pro 64bit.
    I read quite a lot in the past few days and I ended up more confused then I was, this is the setup which I thought of:
    CPU:       I was thinking about the i7 960 3.2 (310$) or the i7 2600k (330$).
    MB:         Asus p6x8D 1366 ddr 1600
    Graphics: Gigabyte nVidia GTX460 1gb gddr5 (210$) or gtx560(230$) the 570 is way off the budget (440$)
    BLURAY: Pioneer BDR-206
    RAM:      I don't know really.. I was thinking about 12gb but I am cluless about it.
    Power:     AX 850W Gold Active PFC 12cm Fan Modular (No particular reason, when I'll know my final setup I'll check the power I need with http://www.extreme.outervision.com/psucalculatorlite.jsp).
    Case:      Antec / Thermaltake, No idea which model..
    OS HDD: I'm still puzzled weather to go for the small (60gb) ssd for the OS and programs or go for a 7200 rpm hd.
    HDD:       W.D Caviar black 1tb 7200 rpm, 64mb, Sata III * 4 with raid on board (Raid 0 or Raid 5?  - I'll save it for another thread).
    Coolers:   Help needed
    Any help will be more then welcomed.
    Regards,
    Eliran.

    While waiting for a specific answer, you might read these recent discussions
    http://forums.adobe.com/thread/910208
    http://forums.adobe.com/thread/907698
    http://forums.adobe.com/thread/762381
    http://forums.adobe.com/thread/906848
    http://forums.adobe.com/thread/912120
    http://forums.adobe.com/thread/912119
    And one specific... SSD is high $$ and there is a thread concerning problems... forum search for ssd will find at least 2 message threads about using ssd or not

  • ERROR ITMS-9000:"Redundant Binary Upload. There already exists a binary upload with build version '1.1' for ipa '1.1'".

    ERROR ITMS-9000:"Redundant Binary Upload. There already exists a binary upload with build version '1.1' for ipa '1.1'".
    I need to change the build number, but not the version number. So I can upload a new build for same version to ITC. What step should I do in FB4.7?

    Hi mobisa,
    Can you try the solution in this post? ios - ERROR ITMS-9000: "Redundant Binary Upload. There already exists a binary upload with build version '1.0' for train…
    Thanks,
    Preran

  • Materialized view with build deferred

    Hello,
    Do you have some idea why CREATE MATERIALIZED VIEW with BUILD DEFERRED option takes a lot of time? It's running 1 hour and not finish (Oracle 9.2).
    CREATE MATERIALIZED VIEW mv_users
    BUILD DEFERRED
    REFRESH COMPLETE
    NEXT SYSDATE+1
    WITH ROWID
    AS
    SELECT usr_id, usr_type, usr_active, usr_brn_id, usr_first_name,
    usr_last_name, usr_psl_rgn, usr_bp_id
    FROM users@db_link;
    Users table has 10 millions records.
    Edited by: user12111171 on 2011-09-16 13:28

    If the Job Queue is not enabled,  the CREATE cannot auto-schedule the refresh.  You need to have JOB_QUEUE_PROCESSES set to 1 or greater.
    It would seem that when you say "I have created job to refresh the materialized view everyday using dbms_refresh.refresh"  you haven't created a job using DBMS_JOB.SUBMIT   (which is what the CREATE MATERIALIZED VIEW would do "behind the scenes" --- you can then query DBA_JOBS or USER_JOBS to see the auto-submitted job).
    Hemant K Chitale

  • Problem with building conditional display items

    Dear All,
    Please help as I am using APEX for the first time.
    This my requirement during form dispaly in tabular format. There is one display item QA_TIER(not a database item). This item value is computed based on the condition below.
    I created a display item with :
    Source Used : Always, replacing any existing value in the session state
    Source Type: PL/SQL Expression or Function
    Source value or expression:
    begin
    if 2<=(select decode(&Leg_Req,'Y',1,0)+decode(&maj_funct_chg,'Y',1,0)+
    decode(&maj_tech_chg,'Y',1,0)+decode(&maj_ui_chg,'Y',1,0)+
    decode(&maj_def_met,'Y',1,0) from dual) then
    if &Customer_Priority = 1 then
    return 1;
    else
    return &Customer_Priority-1;
    end if;
    ELSE return &Customer_Priority; end if;
    end;
    Note : All reference with '&' are the actual field name.
    When running the page i get the following error message:
    ORA-06550: line 2, column 23: PLS-00103: Encountered the symbol "&" when expecting one of the following: ( ) - + case mod new not null others select table avg count current exists max m ORA-06550: line 2, column 48: PLS-00103: Encountered the symbol "&" when expecting one of the following: ( ) - + case mod new not null others table avg count
         Error      ERR-1020 Error in PLSQL item processing (function).
    Can anybody help me with building the display item with conditions as show above.
    Thanks in advance

    hi thanks for the help.
    I tried this time source type SQL Query:
    with both suggestions
    1.
    select (case when
    2<=to_number((select decode(v(Leg_Req),'Y',1,0)+decode(v(maj_funct_chg),'Y',1,0)+
    decode(v(maj_tech_chg),'Y',1,0)+decode(v(maj_ui_chg),'Y',1,0)+
    decode(v(maj_def_met),'Y',1,0) from dual)) then
    (select decode(v(Customer_Priority),1,1,v(Customer_Priority)-1) from dual)
    ELSE v(Customer_Priority) end) from dual
    Result:
    ORA-00904: "CUSTOMER_PRIORITY": invalid identifier
         Error      ERR-1019 Error computing item default value: page=2 name=QA_TIER.
    2.
    select (case when
    2<=to_number((select decode(:Leg_Req,'Y',1,0)+decode(:maj_funct_chg,'Y',1,0)+
    decode(:maj_tech_chg,'Y',1,0)+decode(:maj_ui_chg,'Y',1,0)+
    decode(:maj_def_met,'Y',1,0) from dual)) then
    (select decode(:Customer_Priority,1,1,:Customer_Priority-1) from dual)
    ELSE :Customer_Priority end) from dual
    Result:
    ORA-00932: inconsistent datatypes: expected NUMBER got CHAR
         Error      ERR-1019 Error computing item default value: page=2 name=QA_TIER.
    Both didn't work.

  • Error code 1 occurs with build of .exe (problem VI attached)

    The problem I have been having with a particular project has been posted many times by others.  I have read through many of the threads related to this (or somewhat related to it).  I've tried some things but not all.  I finally started disabling sections of my code to see if the error went away.  I have tracked it down to the attached VI.  The error code is also attached.  Can someone analyze this VI and see what the problem could be?  It uses .NET objects, so I am not sure exactly what the compiler is looking for.  I should note that this is not my VI, but one I copied from the forum here.  As far as e-mail, the VI works great in development mode, but obviously I desire a stand-alone application.
    Also note that I created a new project and dropped this VI on the top-level VI and it built an .exe just fine, which doesn't make any sense to me. Perhaps someone can shed some light on this issue.  When I tried moving it back to the original project, it failed the build.  If all instances of this VI are disabled in my project (using a disable diagram), it builds the project with no errors.  Thanks in advance for your assistance.
    Reese
    Reese, (former CLAD, future CLD)
    Some people call me the Space Cowboy!
    Some call me the gangster of love.
    Some people call me MoReese!
    ...I'm right here baby, right here, right here, right here at home
    Solved!
    Go to Solution.
    Attachments:
    Error 1 with Build.PNG ‏52 KB

    I have the same problem, me too.
    It took often some time to be able to compile my project. I modified some code in some VIs (but keeping the functionality) until I modified the blocking part by hazard and compile worked. But today it takes me hours and I am still trying on.
    When I remember right the message most often told me about a broken VI. (But there was none.) But today I got the same error message as you. There is no helpful information included:
    An error has occurred. Expand the Details section for more information.
    Visit the Request Support page at ni.com/ask to learn more about resolving this problem. Use the following information as a reference:
    Error 1 occurred at AB_Application.lvclass:Create_INI_File.vi -> AB_Application.lvclass:Copy_Files.vi -> AB_EXE.lvclass:Copy_Files.vi -> AB_Build.lvclass:Build.vi -> AB_Application.lvclass:Build.vi -> AB_EXE.lvclass:Build.vi -> AB_Engine_Build.vi -> AB_Build_Invoke.vi -> AB_Build_Invoke.vi.ProxyCaller
    Possible reason(s):
    LabVIEW: An input parameter is invalid. For example if the input is a path, the path might contain a character not allowed by the OS such as ? or @.
    =========================
    NI-488: Command requires GPIB Controller to be Controller-In-Charge.
    Any hints how to quickly identify the problematic code?
    (My guess was that it could have something to do with upconverted VIs containing a conditional disable structure. But it looked like this was not always the case.)
    Greetings,
    shb

  • GPO not applied at all with build 9926

    Hello,
    I have a Samba 4 Active Directory Domain controler. My LAN is composed of XP and 7 computers ; everything works well.
    I also have tested previous builds of Windows 10, and had no particular problem with Group Policies.
    With build 9926, my GPOs are not applied at all. It seems there is a big change making Group Policies not applied / not reloaded when users log in. Here are step by steps what I have noticed :
    0) At the very first log in, when I do a gpresult /V, i have a message saying something like "no rsop data for this user"
    1) I performed a gpupdate /force
    2) I performed another gpresult /V and then I got information about my GPO
    3) I logged out and logged in with same user --> my GPO is applied
    4) I modified my GPO to set new policy
    5) I loggged out and in again --> old policies are applied but new policy is not applied
    6) I performed gpresult /V --> new policy is not displayed
    7) I performed a gpupdate /force and then a gpresult /V --> new policy appears
    8) I loggged out and in again --> All policies, including the new one are applied
    So it seems the GPOs are not automatically updated and applied when logging in, and I have to force them manually.
    The good question is : WHY ? :)
    Thanks
    Will

    Hi Will799114,
    I tested this in my environment, it seems a restart would apply group policy successfully, but a sign out and sign in would not trigger this procedure.
    Here I would suggest you post your feedback directly to our Feedback channel:
    http://windows.microsoft.com/en-in/windows/preview-how-to#how-to=tab7
    Alex Zhao
    TechNet Community Support

  • A scalable test executive with build in video monitoring

    Hi,
    Is anyone interested in test executive? Check out IMCS, a scalable
    test executive framework with build in video monitoring for only $99.
    It can call external LabVIEW vi or DLL functions. It can be used in
    lab testing, product testing and many more. Here is the link to IMCS:
    http://www.hytekautomation.com/Products/IMCS.html
    Thanks.
    Irene

    i tested mine out and it works... have you downloaded flash player osx yet?
    i installed it from the get go... maybe this could be the issue your having.
    http://www.adobe.com/support/flash/downloads.html

  • Why can't we use the ipad with build in internet be used for a hotspot

    Will Apple and Verizon make the ipad 2 with build in Internet to have the ability to use it for a hotspot ?

    That should work without a problem.   Set to dhcp on the networking.
    Robert

  • Help with build in cam

    i have msi pc with build in cam
    i dont remembar wath the taip m series somthing i have cure 2 duo cpu t5750 2 gb ram 320 gb
    giforce 8400
    now i dont find any driver for the cam and the pc dos'nt know the cam....
    i run vista 32bit
    any one can halp me pleas!!!:(:(:(

    You have some notebook or? Read >>Posting Guide<<

  • Appcrash with multitrack sessions in Audition CS6 on a MacBook Pro with Windows 7

    This is an issue with multitrack sessions different from 44100 Hz in Audition CS6 (as part of a Premium Suite CS6). While multitrack sessions with  a sampling rate of  44100 Hz works normally (as long as I use clips with 44100 Hz) any other sampling rate causes  an APPCRASH (s. below). Also with the insertion ( in a 44100 Hz multitrack session, of course) of any clip with a sampling rate different from 44100 Hz, the programme crashes in the moment it's going to generate a adapted copy for the multitrack timeline.
    Audition is installed on a MacBook Pro Retina 15" ,Mid 2014, Model 11,3, Intel Core i7 4870HQ 2,5 GHz, 16GB RAM  with  Windows 7 SP1.
    I tried all advices of the Adobe troubleshooting site and some of the community.
    Especially:
    - the simplified mode with user-defined system start
    - deactivated user account control
    - new user account
    - deactivated data execution prevention (DEP)
    Also the use of different audio interfaces affords no effect:
    - build in Cirrus Logic CS4208 with MME drivers
    - Motu UltraLight mk3 hybrid via USB with Asio drivers.
    In spite of an extensive search I can't find any similar case in the net.
    So, please, can you help me?
    Sorry, it's a german version of windows 7:
    Problem signature
    Problemereignisname:    APPCRASH
      Anwendungsname:   Adobe Audition CS6.exe
      Anwendungsversion:    5.0.2.7
      Anwendungszeitstempel:           505806ee
      Fehlermodulname:    StackHash_0a9e
      Fehlermodulversion: 0.0.0.0
      Fehlermodulzeitstempel:           00000000
      Ausnahmecode:        c0000005
      Ausnahmeoffset:       45ef2b00
      Betriebsystemversion:  6.1.7601.2.1.0.256.48
      Gebietsschema-ID:   1031
      Zusatzinformation 1:    0a9e
      Zusatzinformation 2:    0a9e372d3b4ad19135b953a78882e789
      Zusatzinformation 3:    0a9e
      Zusatzinformation 4:    0a9e372d3b4ad19135b953a78882e789

    I'm afraid you are right. At the worst I'm more than 50% of the audition users on a mac with windows.To solve the problem within a passable time I would like to change to the mac version of audition. But unfortunately it's impossible to use the mac version with a windows licence. And CS6 licences (mac audition) are not longer available (only at a moon rate). 
    Because of the weekend we can pass the time with the latest news of my trouble-shooting.
    The crash is not only within the multitrack session but also within the waveform view: when I try to change the sampling rate (Edit -> Convert Sample Type) the programme crashes with the same problem signature. And here it crashes with all sampling rates , including 44.1k audio files. On the other hand I can play all sampling rates within the waveform view. 
    I compared the logfile from the predecessor of the MacBook , a LG Notebook with windows vista and a working Au CS6 with the current logfile of the Mac: They are identical at the beginning and at the end (termination sequence). But after " Initializing AuScripting"  there is a "DLMS 6.0x39 FileServer startup code: 0" and the listing of a couple of codecs in the Notebook logfile - but not so in the Mac logfile.
    Also the logfile of my workstation with a working Au CS6 shows this "DLMS 6.0x39 FileServer startup code" - line. Because of the two working and one crashing computer this part of the logfile seems to be important ??
    Logfile audition predecessor (Notebook) - detail
    A blank line is only to arrange the logfile more clearly - it doesn't stand for missing lines.
    Ticks = 60014      <4068> <AuLog.DisplaySurface> <5>     Initialize PRM
    Ticks = 60014      <4068> <AuLog.DisplaySurface> <5>     Initialize DS
    Ticks = 60076      <4068> <AuLog.DisplaySurface> <5>     DS Initialize succeeded
    Ticks = 60076      <4068> <AuLog.DisplaySurface> <5> Video Panel is using the Display Surface
    Ticks = 64304      <4068> <AuLog.Startup> <5> Initializing AuScripting
    Ticks = 86191      <3796> <AuLog.Plug-in> <5> DLMS 6.0x39 FileServer startup code: 0
    Ticks = 86191      <3796> <AuLog.Plug-in> <5>     AVI Movie (*.avi)
    Ticks = 86191      <3796> <AuLog.Plug-in> <5>         *.AVI
    Ticks = 86191      <3796> <AuLog.Plug-in> <5>     FLV (*.flv)
    Ticks = 86191      <3796> <AuLog.Plug-in> <5>         *.FLV
    Logfile MacBook Pro - detail
    Ticks = 3510      <3976> <AuLog.Startup> <5> AuUI initialization sequence complete.
    Ticks = 3869      <3976> <AuLog.DisplaySurface> <5>     Initialize PRM
    Ticks = 3869      <3976> <AuLog.DisplaySurface> <5>     Initialize DS
    Ticks = 3900      <3976> <AuLog.DisplaySurface> <5>     DS Initialize succeeded
    Ticks = 3915      <3976> <AuLog.DisplaySurface> <5> Video Panel is using the Display Surface
    Ticks = 4493      <3976> <AuLog.Startup> <5> Initializing AuScripting
    Ticks = 22948      <3976> <AuLog.Plug-in> <5> Loading AMIO plug-in: AmioWav
    Ticks = 22948      <3976> <AuLog.Plug-in> <5> Audition Wave Amio-Plug-In. ID: 60df8553-00c8-4fd7-8a07-6f25e30ab79c
    Ticks = 45958      <3976> <AuLog.Shutdown> <5> AuUI termination sequence started...

  • Issue with Building OLAP Cubes in Project Server 2010

    Hi
    There is some issue with while building OLAP cubes. 
    I have created OLAP cube then successfully cube has builded. When i add resource level custom field which has lookup tables values in ASSIGNMENT CUBE  then getting cube failure meesage.
    I deleted and recreated custom field and lookup table but no luck
    Below error message from manage queue jobs
    General
    CBS message processor failed:
    CBSOlapProcessingFailure (17004) - Failed to process the Analysis Services database <DB NAME> on the 10.3.66.12 server. Error: OLE DB error: OLE DB or ODBC error: 
    Warning: Null value is eliminated by an aggregate or other SET operation.; 01003. Errors in the OLAP storage engine: An error occurred while processing 
    the 'Assignment Timephased' partition of the 'Assignment Timephased' measure group for the 'Assignment Timephased' cube from the <DB NAME> database. 
    Internal error: The operation terminated unsuccessfully. Server:  Details: id='17004' name='CBSOlapProcessingFailure' uid='f2dea43a-eeea-4704-9996-dc0e074cf5c8'
     QueueMessageBody='Setting UID=afb5c521-2669-4242-b9f4-116f892e70f5 
    ASServerName=10.3.66.12 ASDBName=<DB NAME> ASExtraNetAddress= RangeChoice=0 PastNum=1 PastUnit=0 NextNum=1 NextUnit=0 FromDate=02/27/2015 02:10:15 
    ToDate=02/27/2015 02:10:15 HighPriority=True' Error='Failed to process the Analysis Services <DB NAME> on the 10.3.66.12 server. Error:
     OLE DB error: OLE DB or ODBC error: Warning: Null value is eliminated by an aggregate or other SET operation.; 01003. Errors in the OLAP storage engine: An error 
    occurred while processing the 'Assignment Timephased' partition of the 'Assignment Timephased' measure group for the 'Assignment Timephased' cube from the 
    <DB NAME> database. Internal  
    Queue:
    GeneralQueueJobFailed (26000) - CBSRequest.CBSQueueMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='b7162f77-9fb5-49d2-8ff5-8dd63cc1d1d3' 
    JobUID='76837d02-d0c6-4bf8-9628-8cec4d3addd8' ComputerName='WebServer2010' GroupType='CBSRequest' MessageType='CBSQueueMessage' MessageId='2' Stage=''.
     Help me to resolve the issue
    Regards
    Santosh

    Is the SQL Server and Analysis Server are running on different servers and not on default ports? 
    If yes, then check if the same alias’s name added in Project Server is added on the Analysis Server.
    Cheers! Happy troubleshooting !!! Dinesh S. Rai - MSFT Enterprise Project Management Please click Mark As Answer; if a post solves your problem or Vote As Helpful if a post has been useful to you. This can be beneficial to other community members reading
    the thread.

  • How to access the data in a TableView with build-in Dropdownlists

    Hi,
    I build up a TableView with DropdownListBoxes in the cells. All works so far but if I try to access the data in the cells I get the following error message :
         at java.lang.Thread.run(Thread.java:479)
    Caused by: java.lang.reflect.InvocationTargetException: java.lang.NullPointerException
         at com.sapportals.htmlb.table.DefaultTableViewModel.getIndexForColumnInModel(DefaultTableViewModel.java:354)
         at com.sapportals.htmlb.table.DefaultTableViewModel.getValueAt(DefaultTableViewModel.java:195)
         at com.sapportals.htmlb.table.TableView.getValueAt(TableView.java:774)
         at LogonPad$MyDynPage.onClickBack(LogonPad.java:467)
    Some hints ?
    Regards,
    Gerald

    Hello Anjum,  
    It looks that the view is based on the master data table itself and view doesn't contain data and is a logical representation of the underlying database tables.
    Moreover the view RSDVCHA is used for viewing the  characteristics, basic chars and local properties.
    Are you storing similar values in YMETADATA?
    [Thanks|http://chandranonline.blogspot.com/]
    [Chandran|http://chandranonline.blogspot.com/]

  • Dell XPS Touchpad Driver No Longer Working in Build 10041. Was fine with Build 9926

    First of this is an old Dell, but from Vista through to Windows 8.1 Update, and then the initial Windows 10 Tech Preview Builds the Mouse Drivers have been OK. Its not so much the core mouse driver, but the feature extensions in the Accompanying driver bundle
    that have stopped working.  i.e. the ability to control finger scrolling and tapping, etc.
    The Dell supplied drivers for my laptop (XPS M1330) ended with Windows 7 32bit, However, newer Dell laptop models had compatible, fully functioning drivers that could be installed.  That was until build 10041.
    So my questions are:
    1. Anyone found a compatible driver for a Dell XPS with the Alps/Synaptics Touchpad model?
    2. If MS Staffers read this, I understand that the model for Windows 10 is... "if it worked in an earlier Windows it will work in Windows 10", so, is this likely to be fixed?
    Other than this issue, which is very irritating because working with a very limited mouse is a pain when the mouse supports other touch features, my Windows 10 experience has been really good.
    Cheers,
    Pete

    Hi Alex,
    I found a semi-compatible driver for the Synaptics Touchpad, which is found searching for Dell KB R293038.exe
    This driver provides basic two finger touchpad scroll support and chiral scroll.  It doesn't support advance Windows 8/8.1/10 swipe features.
    Importantly this driver does not support two finger/chiral scroll gestures in Windows Modern Apps like the Store, or Project Spartan, or any other Windows Modern Apps.
    Hopefully the Windows 10 Tech Preview Team will be able to work out what they changed that broke the Synaptics Touchpad gestures for so many people posting about the issue on these forums.
    Cheers,
    Pete

  • Video is not working with build in camera - HP 856...

    Hello,
    the video is not working since Skype 6.3
    I have HP 8560p with Windows 7 32bit
    Also Skype 6.6 is not able to see build in camera.
    All the drivers are updated.
    Do you have any solution for that?
    J.

    Please, run the DirectX diagnostics tool.
    Go to Windows Start and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post. Info on all installed devices should be available in this file.
    Be aware that you will have to zip this file before attaching it here.

Maybe you are looking for

  • Why isn't my Ipod not showing up on itunes

    Why is my Ipod not showing up on Itunes

  • Released transport not present in QA Worklist

    Hello, We have a transport that is "stuck" betwen our DEV and QAS system. The transport has been released, and it is visible in the QAS system import queue in status "waiting for QA approval", but it is not present in the QA Worklist, and cannot be a

  • JDeveloper 11.1.1.2.0 Look and Feel

    Some dialog boxes are different L&F from the IDE. For example dialog box "Surround with ...". Why is this so?

  • Finding attachments within the CRM system

    We're trying to find out where the attachments are stored that are attached to our service tickets. We've found the following tables which give details of the attachments but can't find where they are physically located. CRMCASEPHIO CRMCASECONT CRMCA

  • Check Deposit Slip without FF68

    Hi guys, I am trying to create a check deposit slip without running FF68.  The system I am working on right now doesn't have bank sub accounts(incoming check clearing account for example). Therefore, payments will be posted directly to the master ban