Converted access app to apex when run get no data found; table does have da

COnverfted MS Access app to apex. WHen I run the appliation I get no data found.
However the table does have data. HOw do I see what is actually running?
The pre-converted form saids its based on a query. The form and the query shows up as valid. I then converted the form. When I run it I get no data found. If I take the query that the form is based on and run in sqlplus I get data.
Another confusing thing is when I look at the page for the converted form, there is nothing in the source area for the region where the converted query results should be.
Did the conversion not work? How can I tell what is the source? Where should the results from the query be located?

Its a standard SQL query:
SELECT xtbl_MSDS_to_CAS.msds_id,
xtbl_MSDS_to_CAS.cas,
xtbl_MSDS_to_CAS.alias,
xtbl_MSDS_to_CAS.amount,
xtbl_MSDS_to_CAS.veh_prod,
xtbl_MSDS_to_CAS.compliance
FROM xtbl_MSDS_to_CAS
The name of the above query lets say for example purposes is MYQUERY.
After looking at the page def I see that the way the conversion tool worked is that in the page definition it has this in the Processes Section:
After Header:
Fetch Row from MYQUERY.
Then it says automated Row fetch.
I compared this to another form that was converted thru the migration APex tool as well and on that form that does work I found that:
The query(form) was converted and placed in a region and the source has the query. THat is, it was not in the process section but in the region: source section.
So why does the conversion tool decide to convert one and populate as a region source and the other as a process in the page definition?
THis is all very confusing.
Hope you were able to follow me.

Similar Messages

  • My iPad does not have sound when on the Internet, including YouTube, but does have sound with iTunes and other apps.  How can I correct this?

    My iPad does not have sound when on the Internet, including YouTube, but does have sound with iTunes and other apps.  How can I correct this?

    If you are sure that you have sound in other apps - and if you can still hear keyboard clicks and get notifications, then system sounds are not muted. Try this and see if it works.
    Close all apps completely and reboot the iPad.
    Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Uploading CSV using browse item ( getting no data found error )

    Hi,
    i am using below procedure to upload CSV into my table.
    CSV is having null values in some places ex: 1,
    2,0.999
    3,
    4,0.696
    below procedure working fine when i am uploading CSV like : 1,0
    2,0.999
    3,0
    4,0.696.
    My table is having only two columns, and i am getting no data found error when uploading null values CSV file.
    I went through Import data in excel to database table but no use..
    Please help me on this.
    Procedure
    ===========
    DECLARE
    v_blob_data       BLOB;
    v_blob_len        NUMBER;
    v_position        NUMBER;
    v_raw_chunk       RAW(10000);
    v_char   CHAR(1);
    c_chunk_len  number := 1;
    v_line  VARCHAR2 (32767) := NULL;
    v_data_array  wwv_flow_global.vc_arr2;
    BEGIN
    -- Read data from wwv_flow_files
    select blob_content into v_blob_data  from wwv_flow_files
    where UPDATED_BY = (select max(UPDATED_BY) from wwv_flow_files where UPDATED_BY = :APP_USER)
    AND id = (select max(id) from wwv_flow_files where updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len ) LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char :=  chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    -- Convert comma to : to use wwv_flow_utilities
      v_line := substr(v_line, 1, length(v_line)-2);
       v_line := REPLACE (v_line, ',', ':');
    -- Convert each column separated by : into array of data
       v_data_array := wwv_flow_utilities.STRING_to_table (v_line);
    -- Insert data into target table
       EXECUTE IMMEDIATE 'insert into table_name@Schema1 (col1,col2)
        values (:1,:2)'
        USING
          v_data_array(1),
          v_data_array(2);
          -- Clear out
       v_line := NULL;
      END IF;
    END LOOP;
    END;regards
    Chandran
    Edited by: Chandran on Sep 26, 2012 10:52 AM
    Edited by: Chandran on Sep 26, 2012 10:25 PM
    Edited by: Chandran on Sep 27, 2012 1:58 AM

    Chandran,
    You can use wwv_flow_utilities.array_element to avoid no_data_found error. The function does not raise errors. So, for the line which only have one array value when you expect 2, it may be useful.
    EXECUTE IMMEDIATE 'insert into table_name@Schema1 (col1,col2)
        values (:1,:2)'
        USING
          wwv_flow_utilities.array_element(v_data_array,1),
          wwv_flow_utilities.array_element(v_data_array,2);Regards,
    Christina

  • Application process is not getting the data from table

    I have created the following application process based on AJAX select value but using a pop up LOV
    DECLARE
    my_det VARCHAR2 (200);
    BEGIN
    SELECT DM_00010_CUST_NAME INTO my_det
    FROM ODM_MD_00010
    WHERE DM_00010_CUST_CODE = nvl(:P11_DT_00020_CUST_CODE,21);
    exception when no_data_found then null;
    HTP.prn (my_det);
    END;
    the process is getting no data found error ( hence the exception) so I am getting NULL in the name field on screen.
    any help ?

    the javascript I have in the region header is:
    <script language="JavaScript" type="text/javascript">
    function f_getDet ()
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=getDet',0);
    get.add('P11_DT_00020_CUST_CODE',html_GetElement('P11_DT_00020_CUST_CODE').value)
    gReturn = get.get();
    if(gReturn)
    {  html_GetElement('P11_DT_00020_CUST_NAME').value = gReturn  }
    else
    {  html_GetElement('P11_DT_00020_CUST_NAME').value = 'null'  }
    get = null;
    </script>

  • My mac is the OS X 10.8.3.  I tried to update the latest Adobe flash player and kept getting 'Actionlist not found.'  I have uninstalled, enabled and disabled plug-ins and am still unable to download the update and now have no flashplayer at all.  Help!

    My mac is the OS X 10.8.3.  I tried to update the latest Adobe flash player and kept getting 'Actionlist not found.'  I have uninstalled, enabled and disabled plug-ins and am still unable to download the update and now have no flashplayer at all.  Help!
    PS I'm still new to Macs so the more broken down the better.

    Adobe Flash Player 11.8.800.42 is the most recent version from Adobe. It is a pre-release version. I am using it without any noticeable problems.
    The current stable version is Download 11.7.700.169.

  • Error when reading the DDIC-data for table

    Hi Tobias
    We upgraded from DMIS 2011 SP04 to SP07. We are in development system.
    To test initial load, we stopped replication for an existing table and then started replication for the same table.
    Mass transfer id connects ECC system to BW on HANA system.
    Replication errored with the following message:
    Error when reading the ddic-data for table MARD (RFC destination DWACLNT010).
    Looking for your guidance.
    Kind Regards
    Kamaljit Vilkhoo

    Was able to solve using oss note 1972533.

  • Fm to get archived data from table bseg

    hi ,
    what is the FM to get archived data from table bseg

    Hi Friend,
    Here is the FM you need,
    FAGL_GET_ARCH_ITEMS_BSEG.
    Regards,
    Lakshmanan

  • What settings do I need to have on my macbook pro to access student.ashford.edu when I get the following error message: The system is unable to process your response at this time. If you feel you have received this message in error. Please contact your Sy

    what settings do I need to have to access Ashford University's student portal using either Safari or Firefox when I get the following message: The system is unable to process your response at this time. If you feel you have received this message in error. Please contact your System Administrator, or try again at a later time.

    I am able to get to the Ashford University login display with no difficulties with both Firefox and Safari.  Obviously without a student password I cannot go any further.  If you can do the same, then clearly the problem is at the other end.  If that is the same case with you, then there is no advice that I can give you but to stir the pot as best you can.
    Ciao.

  • Error when running Get-DatabaseAvailabilityGroupNetwork "The system cannot find the file specified."

    Exchange 2013 CU7 on Windows 2012.
    I have a 3 server DAG (newly created) and the EAC lists each server with Is Operational = Yes.
    When I run Get-DatabaseAvailabilityGroupNetwork on any of the 3 servers I get:
    [PS] C:\>Get-DatabaseAvailabilityGroupNetwork
    Could not load file or assembly 'Microsoft.Exchange.Data, Version=14.0.0.0, Culture=neutral,
    PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
        + CategoryInfo          : NotSpecified: (:) [Get-DatabaseAvailabilityGroupNetwork], FileNotFoundException
        + FullyQualifiedErrorId : [Server=<servernameremoved>,RequestId=11e182c9-cb4a-4f48-b985-dc4be7ef97ef,TimeStamp=2/23/20
       15 10:00:53 PM] [FailureCategory=Cmdlet-FileNotFoundException] 586ECE82,Microsoft.Exchange.Management.SystemConfig
      urationTasks.GetDatabaseAvailabilityGroupNetwork
        + PSComputerName        : <servername FQDN removed>
    Any suggestions?

    Try to run below command and see what it shows.
    Get-DatabaseAvailabilityGroupNetwork -server node1.domain.com
    BR/Deepak

  • HT1430 Have sync my IPAD and am unable to access apps, nothing happens when touched

    Unable to access apps after sync IPAD. when touching APPs nothing happens.

    Does this happen on all apps? Is your iPad jailbroken? This is usually be the cause of it.

  • Lot of my apps are crashed when running just few mili seconds they started?

    The Ipad seems to be ok.
    I push the app icon. It seems to start. Sometimes it does and sometimes it doesn't.
    When I'm able to get the app the screen goes to a black state for "miliseconds" (due what ?) and suddenly despairs and the home screen is back.
    I try again and the problem is shown again.
    It helped a little bit when I "erased" the apps. And instaled them again from my computer with a new sync operation by means of Itunes.
    But after few hours the problem is back
    The apps more suceptibles are UPAD, Notebook from Circus Ponies, Numbers, Notes and day after day are more with the same problem. Even mail app.
    The system is very un stable and I'm pretty upset

    It's too soon to blame it on the machine itself. At least two other things might be causing your problems:
    1. A Bad App ... Some app that you have installed and use all the time has become corrupted in some way that, over time, affects your OS. it's very tedious to find these, as you have to slowly, over time, isolate the problem.
    Do a Reset to a nice, working system, then spend some time only using maybe half of the apps that you usually do. If you don't get the problem, start adding more apps until you do. If it happens right away, you start over but, this time, only use half the apps that you originally did. Repeat it all as needed until you think you know what the problem app is, then delete that one and, if you like, download a fresh copy of it.
    2. A Bad iOS Install ... If you decide this is the problem, then you basically start over by loading in a fresh copy of iOS. This is sort of the nuclear option, though; nice if it works, but leaving you with some serious unknowns if it doesn't (Do you still have a bad app? Did you get another messed-up install? Do you have a hardware problem?).
    Finally the Tips & Troubleshooting section of your User's Guide has the whole range of things that you can try. You may well find that some of the other types of reset discussed in there, in addition to the 'hard reset' that you've been trying, might clear things up.

  • Multiple results returned when running get-productionserver

    Hi All,
    I'm creating a script that will take a VM out of DPM, move the VM to another cluster, delete the replica and restore points and add it to DPM again.
    During testing I'm running an issue. After the proces of moving a VM to another cluster and back again I run 'Get-productionserver | ?{$_.Name -like "*<servername*>}
    Before I got one result, but now I get two results. One productionserver on each clustername. The VM does not exist anymore on one clustername as the VM was moved back again. What is happening here and how can I clean up the 'ghost' productionserver?
    Regards,
    >D
    Message from: http://social.technet.microsoft.com/Forums/en-US/user

    Hi All,
    I'm creating a script that will take a VM out of DPM, move the VM to another cluster, delete the replica and restore points and add it to DPM again.
    During testing I'm running an issue. After the proces of moving a VM to another cluster and back again I run 'Get-productionserver | ?{$_.Name -like "*<servername*>}
    Before I got one result, but now I get two results. One productionserver on each clustername. The VM does not exist anymore on one clustername as the VM was moved back again. What is happening here and how can I clean up the 'ghost' productionserver?
    Regards,
    >D
    Message from: http://social.technet.microsoft.com/Forums/en-US/user

  • Data Services 4.0 error when running job - not updating repository table

    Hi All,
    I am hoping someone might have come across this error before.
    When running a data services job, from within Data Services Designer, when trying to re-run the same job, I get the following error messages:
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     |Data flow DF_XXXX_Data_DW1Date
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     SQL submitted to Oracle Server <BO3> resulted in error <ORA-00001: unique constraint (DS3_ADMIN.SYS_C005632) violated
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     >. The SQL submitted is <INSERT INTO AL_BW_REQUEST (REQUESTID,TYPE,VALUE,DF_NAME,CREATION_TIME) VALUES (
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     'REQU_4NIVIZ1G9S5B7LUY0HHP65ZJU', 3 , '29', 'DF_XXXX_Data_DW1Date',  to_date('2011.10.17 10:38:39', 'yyyy.mm.dd
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     hh24:mi:ss') )>.
    9332     2572     REP-100109     17/10/2011 10:38:39 AM     |Data flow DF_XXXX_Data_DW1Date
    9332     2572     REP-100109     17/10/2011 10:38:39 AM     Cannot save <RequestID info> into the repository. Additional database information: <SQL submitted to Oracle Server <BO3>
    9332     2572     REP-100109     17/10/2011 10:38:39 AM     resulted in error <ORA-00001: unique constraint (DS3_ADMIN.SYS_C005632) violated
    When I go and look into the Data Services repository AL_BW_REQUEST  table, the first time the job is run, all five fields in this table populate with data successfully. When re-running the job, on 3 out of the five fields within this table are populated but the VALUE and DF_NAME field are not populated, hence causing the primary key violation.
    Here is the data below from the AL_BW_REQUEST  table:
    REQUESTID                                      TYPE  VALUE     DF_NAME                               CREATION_TIME
    REQU_4NIVIZ1G9S5B7LUY0HHP65ZJU     3                      10/17/2011 10:38:38 AM
    REQU_4NJ503RVIFD3VLBJJEKBJ3OE2     3                       10/17/2011 10:33:37 AM
    REQU_4NJ4ZHSP9F93L3OAUDV6RHCMY     3                       10/17/2011 10:32:31 AM
    REQU_4NIV1NKP9645E394E7H12Q796     3                      10/17/2011 9:53:53 AM
    REQU_4NEYFNI2U68MBJOEWFJWVWWU2     3  24     DF_XXXX_Data_DW1Date      10/17/2011 9:47:58 AM
    If I truncate this table and re-run the DS job, it will not populate the VALUE and DF_NAME fields. 
    Does anyone know what could be causing this? The target source is BW.
    Seems like a bug to me.
    Thanks,
    Ainsley

    Hi Ramesh,
    Am a HANA apps consultant in India, would like to get in touch with you. but don't know how
    regards,
    Tilak

  • Getting 'No Data found' Error when clicking the edit link to edit a record.

    Application Express 4.2.0
    Database: oracle 11g
    Hi Guys
    I am getting an error whenever i try to edit some of my entries by clicking the edit link, i have a composite Primary key attributes of three columns ( Budget Year ('YYYY'), Training Name('VARCHAR') and Emp Code ('VARCHAR')
    Some records will load when i click Edit but some wont and return 'ORA-01403: no data found' error.
    Any help will be appriciated.
    Thanx
    MATT

    Hi,
    Please create example about problem to apex.oracle.com and share developer login details to workspace.
    Regards,
    Jari

  • How can I download itunes when I get the following errors...have installed and uninstalled a dozen times with various fixes...b noir for example and used Revo to clean up..ituneshelper did not install correctly error 7

    How can I download itunes when I get the following errors  ..ituneshelper did not install correctly error 7..I .have installed and uninstalled a dozen times with various fixes...b noir for example and used Revo to clean up.
    This has been a problem for 6 weeks now, I retry when I have time and patience and use my other laptop which is also Windows 7 and runs with no problem.
    Every attempt fails when all seems fine on the desktop and I try to log on to Itunes I get the errors.
    Any help greatly appreciated.
    billymac

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features(Later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (If this won't uninstall press on)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    See also HT1925: Removing and Reinstalling iTunes for Windows XP or HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    Should you get the error iTunes.exe - Entry Point Not Found after the above reinstall then copy QTMovieWin.dll from:
    C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    and paste into:
    C:\Program Files (x86)\iTunes
    The above paths would be for a 64-bit machine. Hopefully the same fix with the " (x86)" omitted would work on 32-bit systems with the same error.
    tt2

Maybe you are looking for

  • How to connect my Macbook to my TV

    How do I connect my Macbook2, 1 Intel Core 2 Duo to my TV (which has VGA and HDMI) so I can watch films on my TV from my Laptop? Its really confusing and I thought I understood what i was trying to find but now im not so sure! Any help is really appr

  • Itunes repeatedly requests to authorize on one song

    http://support.apple.com/kb/TS1389 I have been having some trouble playing one or two songs in my library that I previously purchased from iTunes.  I have followed each of the different troubleshooting solutions in the above article.  The only one I

  • To access context values in java util methods in webdynpro java

    My requirement is to access the wdcontext values in the my util classes. kindly  suggest how to access the context value in my util class Regards Priya

  • Battery drain with 10.8.3 and SSD

    has anyone noticed a battery drainage over 10.8.2 and 10.8.3, i got my macbook with 10.8.2 about a week ago and i took the stock HDD out and put in a 256gb ssd and reinstalled Mtn lion via a stock 10.8 DVD and then updated to 10.8.3 but my battery ju

  • How to get Lion on DVD

    for the remote chance my machine will crash, be undable to download another version of the OS, how do I get Lion on DVD