PAGINATION ERROR

Hi,
I'm trying to get this pagination code functioning but I keep
getting an error on my query. The error says: Microsoft Access
Driver] Syntax error (missing operator) in query expression 'titles
LIMIT 0'
and I'm completely stumped, I pasted my coded on this page if
anyone could help or point me in the right direction I would
appreciate it. Thanks.
<cfparam name="url.page" default="1">
<cfset page_links_shown = 5>
<cfset records_per_page = 5>
<cfset start_record = url.page * records_per_page -
records_per_page>
<cfquery name="get_count" datasource="dgr">
SELECT COUNT(nid) AS records
FROM news
</cfquery>
<cfquery name="get_names" datasource="dgr"
result="get_data">
SELECT titles
FROM news
ORDER BY titles
LIMIT #start_record#, #records_per_page#
</cfquery>
<cfset total_pages = ceiling(get_count.records /
records_per_page)>
<cfoutput>
<cfloop query="get_names">
#start_record + currentrow#. #names#<br/>
</cfloop>
<hr>
<cfif url.page EQ 1>
Prev Page
<cfelse>
<a href="pages.cfm?page=#url.page-1#">Prev
Page</a>
</cfif>
<hr>
<cfif url.page * records_per_page LT get_count.records>
<a href="pages.cfm?page=#url.page+1#">Next
Page</a>
<cfelse>
Next Page
</cfif>
<hr>
<cfparam name="start_page" default="1">
<cfparam name="show_pages"
default="#min(page_links_shown,total_pages)#">
<cfif url.page + int(show_pages / 2) - 1 GTE
total_pages>
<cfset start_page = total_pages - show_pages + 1>
<cfelseif url.page + 1 GT show_pages>
<cfset start_page = url.page - int(show_pages / 2)>
</cfif>
<cfset end_page = start_page + show_pages - 1>
<cfloop from="#start_page#" to="#end_page#" index="i">
<cfif url.page EQ i>
#i#
<cfelse>
<a href="pages.cfm?page=#i#">#i#</a>
</cfif>
</cfloop>
<hr>
<a href="pages.cfm?page=1">First Page</a>
<hr>
<a href="pages.cfm?page=#total_pages#">Last
Page</a>
<hr>
</cfoutput>

LIMIT is a MS SQL/mysql operator and is not supported by ms
access.
access uses TOP instead, and differently from LIMIT:
SELECT TOP n ....
FROM....
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com

Similar Messages

  • BUG -- Column filtering bug in Apex 4.1 causing pagination error?

    Hi All,
    I'm getting a pagination error, when filtering from the column header in an Interactive Report.
    Report error:
    Invalid set of rows requested, the source data of the report has been modified.
    Reset Pagination*
    The steps to recreate:
    1. Run an Interactive Report
    2. Click the next button to go to the second page of data.
    3. From the column header select a data element that will return less than 15 rows. Note -- if the there are 15 or more rows of data, the error will not occur.
    The Report will fail with the error shown above.
    Note that the same error does not occur if you use the filter from the Action menu. This appears to be a bug in the column filtering.
    It looks like the pagination needs to be reset after the column filter, but how is this done?
    I'm using the canned interactive report with no customizations. Is there a fix for this issue?
    Thanks

    This «bug» is known for a long time unfortunately...
    I never find any solution for IR report filtering.
    Maybe you can use some JQuery to change the link when clicking a value in the list, (add a code that will update pagination).
    Something like :
    $('#apexir_rollover_content').load(function() {
         $(this).find('a').click(function(){
              gReport.search('SEARCH');
    });But I don't think it will work, as they already use JQuery to bind that &lt;a> events.
    In case you update your report using a button, you can simply use a "reset pagination" process called on button click.
    In case you use column link you simply have to tick the «Reset Pagination» checkbox.
    I hope Apex team will fix that one day.
    Good luck.
    Yann.

  • Pagination error when filtering in an Interactive Report

    Hi All,
    I'm getting a pagination error, when filtering from the column header in an Interactive Report.
    Report error:
    Invalid set of rows requested, the source data of the report has been modified.*
    Reset Pagination*
    The steps to recreate:
    1. Run an Interactive Report
    2. Click the next button to go to the second page of data.
    3. From the column header select a data element that will return less than 15 rows. Note -- if the there are 15 or more rows of data, the error will not occur.
    The Report will fail with the error shown above.
    It looks like the pagination needs to be reset after the column filter, but how is this done?
    I'm using the canned interactive report with no customizations. Is there a fix for this issue?
    Thanks

    This «bug» is known for a long time unfortunately...
    I never find any solution for IR report filtering.
    Maybe you can use some JQuery to change the link when clicking a value in the list, (add a code that will update pagination).
    Something like :
    $('#apexir_rollover_content').load(function() {
         $(this).find('a').click(function(){
              gReport.search('SEARCH');
    });But I don't think it will work, as they already use JQuery to bind that &lt;a> events.
    In case you update your report using a button, you can simply use a "reset pagination" process called on button click.
    In case you use column link you simply have to tick the «Reset Pagination» checkbox.
    I hope Apex team will fix that one day.
    Good luck.
    Yann.

  • IR Reset pagination error while filtering

    Hi,
    - In my IR report when I have 100 records and I go to the last record by clicking next , next, ...
    - then I click any column header and do a filter (by selecting any one vallue from the drop down list)
    - as soon as I do that.. I get "Reset Pagination" link and then I have to click this link to go to the first page of the new search.
    Is this a APEX bug? OR
    is there any way .. as soon as I select any value from the column header list, the control should directly go to first page without clicking the "Reset Pagination".
    Thanks,
    Deepak

    Helo
    It's not a bug. If you go thru report page by page... You reach some number of page report for example 20. Next you filter a report. Filter cut report to 10 repor page, but you are on 20-th page still... Error ocured. You have to reset pagination :)
    Regards

  • Reagrdin Pagination error in the report region of classic report

    Hi ,
    when run the sql report iam getting below error ,, can any body suggest me how it could be resolve
    Invalid set of rows requested , the source data of the report has been modified._
    Iam using apex4.1
    thanks
    sagar

    Wrong forum - please mark this thead ANSWERED and repost in the APEX forum.
    Oracle Application Express (APEX)

  • Duplicate Header on pagination error?

    Hi guys,
    I am running into an issue and maybe one of you has a solution.
    I need to have the header stick to items when paginating and not show on first page or duplicate headers on the second page.
    The table is made of subforms.
    When the table is at the bottom of the page and the content is sent on the next page:
    1. if I set the header as Keep With: Next, I'll see two headers on the second page. Not good.
    2. If I uncheck the Keep With: Next, the header is shown on the first page without any items underneath, and all is ok on the second page. i.e. items body has only one header. I don't want to show an empty header on the first page.
    It's probably obvious but I just can't see it.
    Thanks,
    Paul

    Still trying without success.
    Here's an image of how things look:
    [http://i56.tinypic.com/xcj5tx.jpg|http://i56.tinypic.com/xcj5tx.jpg]
    I tried all possible permutations I could think of, but either I get the above result, or only one header, or a duplicate header on the second page.
    Thanks,
    Paul

  • Graph pagination error

    Hi,
    jdev 11.1.1.5
    I am using dvt:BarGraph component to display some information. I want to have pagination and I do
    1. Drag the bar graph onto a page
    2. On the PageDef file, change the RangeSize property to 5 (in your case)
    3. From the DataControl panel, drag and drop the NextSet and PreviousSet operations of the View Object
    4.Configure the af:graph PartialTriggers property to point to the two buttons
    5. Ensure the buttons have their PartialSubmit property set to "true"
    but after I click the next set button graph has post back but data not change.
    It would be great if any of you can suggest me the best way to do this.
    Thanks in advance.

    hi my bar:graph:
    <dvt:barGraph id="custCountDupEcoBargraph"
    value="#{bindings.dimCustCountByDuplicateEcoCodeROBar.graphModel}"
    subType="BAR_VERT_CLUST"
    dynamicResize="DYNAMIC_SIZE"
    threeDEffect="true"
    hideAndShowBehavior="withRescale"
    animationOnDisplay="zoom"
    animationOnDataChange="zoom"
    seriesRolloverBehavior="RB_HIGHLIGHT"
    flashDefaultFontLoading="FLASH_DEFAULT_FONT_LOADING_NONE"
    rendered="#{viewScope.ActivityInAllTableViewBean.graphType == 'BarGraph' ? true : false}"
    drillingEnabled="false"
    styleClass="AFStretchWidth"
    emptyText="#{viewcontrollerBundle.graphEmptyDataLabel}"
    clickListener="#{bindings.dimCustCountByDuplicateEcoCodeROBar.graphModel.processClick}"
    clickAction="#{ActivityInAllTableBean.dimCustCountByDupEcoCodeGraphClickAction}"
    partialTriggers="::nextSetb1 ::previosSettb2">
    <dvt:background>
    <dvt:specialEffects/>
    </dvt:background>
    <dvt:graphPlotArea/>
    <dvt:seriesSet>
    <dvt:series/>
    </dvt:seriesSet>
    <dvt:o1Axis scrolling="asNeeded"/>
    <dvt:y1Axis scrolling="asNeeded"/>
    <dvt:legendArea automaticPlacement="AP_NEVER"/>
    </dvt:barGraph>

  • Report pagination error on htmldb 1.6

    Hi all! I have a question regarding pagination on a report region. I have a pagination "Row changes X to Y of Z (with pagination)" and "Number of Rows = 15". When the result lists returns 16 records, the page shows 15 rows and the "next -> " link, after pressing that "next" link, the page shows the last record. If I delete that last record, the page shows no records and the pagination shown is "row(s) 16 - 0 of 15 Next > " without the possibility to return to "previous" 15 rows, this occurs with all other paginations.
    Thanks!

    you may want to create a reset pagination process which fires whenever the page is submitted or a specific button pressed (in this case the delete button).
    The only thing is that this will set the report back to the first page every time the page is submitted. This is however probably advisable as the underlying data has changed so the user should start from the beginning of the report again??

  • Pagination Error. Please Help

    I am using JDBC rowset for pagination. While, starting tomcat, iam getting the following NotSerializableException in eclipse console.
    SEVERE: Exception loading sessions from persistent storage
    java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.mysql.jdbc.SingleByteCharsetConverter
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1303)But in browser, it displays the table values and pagination links like Prev,1,2,Next. But clicking any page link 1 or 2, it displays the Invalid Column name SQLException in browser
    SQLException:
    SEVERE: Servlet.service() for servlet jsp threw exception
    java.sql.SQLException: Invalid column name
         at com.sun.rowset.CachedRowSetImpl.getColIdxByName(CachedRowSetImpl.java:1638)
         at com.sun.rowset.CachedRowSetImpl.getInt(CachedRowSetImpl.java:2581)
         at org.apache.jsp.xyz_jsp._jspService(org.apache.jsp.xyz_jsp:59)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:99)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)I also posting the jsp codes for your reference.
    pagination.jsp
    <%@page import="com.sun.rowset.CachedRowSetImpl"%>
    <%@page import="javax.sql.rowset.CachedRowSet"%>
    <%@page import="java.sql.Connection"%>
    <%@page import="java.sql.DriverManager"%>
    <html>
    <body>
    <%
         String mysqlDriver = "com.mysql.jdbc.Driver";
         String url = "jdbc:mysql://127.0.0.1/sampledb";
         String userName = "root";
         String password = "mysql";
         Class.forName(mysqlDriver);
         Connection conn = DriverManager.getConnection(url,userName,password);
         out.println("Connection is established");
         CachedRowSet crs = new CachedRowSetImpl();
         crs.setCommand("select count(*) as UserId from credentials");
         crs.execute(conn);
         crs.next();
         session.setAttribute("crs", crs);
         session.setAttribute("conn", conn);
         CachedRowSetImpl crs1 = new CachedRowSetImpl();
         crs1.setCommand("select * from credentials");
         crs1.execute(conn);
         session.setAttribute("crs1",crs1);
         session.setAttribute("conn",conn);
    %>
    <jsp:forward page="xyz.jsp"/>
    </body>
    </html>
    xyz.jsp
    <%@page import="javax.sql.rowset.CachedRowSet"%>
    <%@page import="java.sql.Connection"%>
    <html>
    <body>
    <%!int currentPageNum;
         int totalPageCount;
         String pageNum;
         int currentrs = 0;
         int prevPage;%>
    <%
    CachedRowSet crs= (CachedRowSet) session.getAttribute("crs");
    Connection conn = (Connection) session.getAttribute("conn");
         int numOfRecs = crs.getInt("UserId");
         int pageCount = (numOfRecs/5);
         if(pageCount == 0) {
              totalPageCount = (numOfRecs/5);
         } else {
              totalPageCount = numOfRecs/5;
              totalPageCount = totalPageCount + 1;
         pageNum = request.getParameter("pageNum");
         if(pageNum == null) {
              pageNum = "1";
              currentPageNum = Integer.parseInt(pageNum);
         } else {
              currentPageNum = Integer.parseInt(pageNum);
              currentrs = (5*(currentPageNum - 1));
    %>
         <center>
         <table>
         <tr>
         <th>UserName</th>
         <th>Password</th>
         </tr>
         <%
         crs.setCommand("select * from credentials limit " + currentrs + ",5");
         crs.execute(conn);
         while(crs.next()) {
         %>     
              <tr>
              <td><%out.println(crs.getString(1));%></td>
              <td><%out.println(crs.getString(2));%></td>
              </tr>
         <%
         %>
         </table>
         <br>
         <%
         prevPage = currentPageNum;
         prevPage--;
         if(prevPage > 0){
              out.println("<a href=xyz.jsp?pageNum=" + prevPage + ">Prev</a>");
         } else {
              out.println("Prev");
         for (int i=1; i <= totalPageCount ; i++) {
              out.println("<a href=xyz.jsp?pageNum="+ i +">["+ i +"]</a>");
         int nextPage = currentPageNum + 1;
         if(nextPage == totalPageCount) {
              out.println("<a href=xyz.jsp?pageNum="+ nextPage +">Next</a>");
         } else {
             out.println("Next");
         %>
         </center>
         </body>
         </html>Please help.

    hi,
    do u have column name as UserId in your credentials table?
    if so then make changes in your code as follows,
    <%@page import="javax.sql.rowset.CachedRowSet"%>
    <%@page import="java.sql.Connection"%>
    <html>
    <body>
    <%!int currentPageNum;
         int totalPageCount;
         String pageNum;
         int currentrs = 0;
         int prevPage;%>
    <%
    CachedRowSet crs= (CachedRowSet) session.getAttribute("crs");
    1. CachedRowSet crs1= (CachedRowSet) session.getAttribute("crs1");
    Connection conn = (Connection) session.getAttribute("conn");
         //int numOfRecs = crs.getInt("UserId");
    2. int numOfRecs = crs.size();
         3. int pageCount = (numOfRecs%5);
         if(pageCount == 0) {
              totalPageCount = (numOfRecs/5);
         } else {
              totalPageCount = numOfRecs/5;
              totalPageCount = totalPageCount + 1;
         pageNum = request.getParameter("pageNum");
         if(pageNum == null) {
              pageNum = "1";
              currentPageNum = Integer.parseInt(pageNum);
         } else {
              currentPageNum = Integer.parseInt(pageNum);
              currentrs = (5*(currentPageNum - 1));
    %>
         <center>
         <table>
         <tr>
         <th>UserName</th>
         <th>Password</th>
         </tr>
         <%
         4. crs1.setCommand("select * from credentials limit " + currentrs + ",5");
         crs1.execute(conn);
         while(crs1.next()) {
         %>     
              <tr>
              <td><%out.println(crs1.getString(2));%></td>
              <td><%out.println(crs1.getString(3));%></td>
              </tr>
         <%
         %>
         </table>
         <br>
         <%
         prevPage = currentPageNum;
         prevPage--;
         if(prevPage > 0){
              out.println("<a href=xyz.jsp?pageNum=" + prevPage + ">Prev</a>");
         } else {
              out.println("Prev");
         for (int i=1; i <= totalPageCount ; i++) {
              out.println("<a href=xyz.jsp?pageNum="+ i +">["+ i +"]</a>");
         int nextPage = currentPageNum + 1;
         if(nextPage == totalPageCount) {
              out.println("<a href=xyz.jsp?pageNum="+ nextPage +">Next</a>");
         } else {
         out.println("Next");
         %>
         </center>
         </body>
         </html>
    I have checked it with the above mentioned changes. Its work fine for me.
    Edited by: Thilagavathi on Sep 22, 2008 6:29 AM

  • Ultra Search Pagination Error

    The results of a search are 2 pages, but on page 1 the navigation at the bottom indicates that there are 10 pages of results.
    Page one indicates "Documents 1 - 50 of approximately 7093 matches." While page two indicates "Documents 51 - 98 of approximately 98 matches."

    The total count is an estimate from the query result. It is an approximate value.When it navigates to the last page, it corrects to say "Documents 51 - 98 of approximately 98 matches".

  • AJAX calling report from one page to another not Reseting Pagination

    I have links on one page that when clicked are calling a report on another page and loading it in a DIV with AJAX. The problem I am having is that the reports on the 2nd page are built dynamicly depending on the link you click. If you are viewing lines 16-30 and go to a report that only has like 5 lines, you get the Need to Reset Pagination error.
    Invalid set of rows requested, the source data of the report has been modified.Reset Pagination>
    In the htmldb_Get line, I thought you could set it to reset pagination when it fires. The AJAX is below. Does the RP need to be somewere else? or am I just missing something...
    function doReport(pC,pM) {
    document.getElementById('report_drop').innerHTML = 'Loading Page...';
    var tableRow = document.getElementById('reports');
    tableRow.style.display = 'block';
         var get = new htmldb_Get(null,$x('pFlowId').value,'RP',2);
            get.add('P2_CODE',pC)
            get.add('P2_MPC',pM);
         gReturn = get.get(null,'<clip>','</clip>');
         get = null;
         $x('report_drop').innerHTML = gReturn;
       init_htmlPPRReport($x('report_drop').getElementsByTagName('DIV')[0].id.replace('report',''));
         return;
    }So from what I understand the line below should be resetting this
         var get = new htmldb_Get(null,$x('pFlowId').value,'RP',2);   Edited by: Matt.Smith on Jul 18, 2011 12:08 PM

    Hi,
    Source setting for that form page item P1_COUNTRY is
    Source Used:"Only when current value in the session state is null"
    Source Type: Static Assignment.Since i build this form along with report.
    Is im missing something.
    Regards,
    Mini

  • How can I decouple the pagination for a global region?

    I was having a delightful time using a common region defined on a global page when I determined that pagination setting was begin carried from one page to the next.  Arghhhh!  So for example, if I have paged to the second set (page) of rows (11-20) on Page 1 and then I go to Page 2, the second set (page) of rows (11-20) is displayed there.   If I go to a page which only has a first set of rows (1-10), I get the pagination error "Invalid set of rows requested, the source data of the report has been modified. Reset Pagination".  And when I click to reset, it just repeats the error.  [I suppose it tries to display the second set or rows (11-20) again -- which doesn't exist.  What's that saying about insanity?]  
    How can I decouple the pagination for a global region? I want it to operarate just as it would if it were not sharing a common region.  So if I'm looking at rows (11-20) on page 1, I can go to any other page beginning with rows 1-10 there.  Then return to page 1 where I left off with rows 11-20 displayed.  One solution is NOT to paginate but that's not my preferred solution.
    Howard

    Howard(...inTraining) wrote:
    I was having a delightful time using a common region defined on a global page when I determined that pagination setting was begin carried from one page to the next.  Arghhhh!  So for example, if I have paged to the second set (page) of rows (11-20) on Page 1 and then I go to Page 2, the second set (page) of rows (11-20) is displayed there.   If I go to a page which only has a first set of rows (1-10), I get the pagination error "Invalid set of rows requested, the source data of the report has been modified. Reset Pagination".
    The fact that there are different numbers of rows returned on different pages implies that the reports have some local page dependencies, so why try to use a global component? What's the actual requirement? How many pages does the report have to appear on? (Please say it is a report and not a tabular form...)
    How can I decouple the pagination for a global region? I want it to operarate just as it would if it were not sharing a common region.
    The point is that a global region is just that: a single region that happens to be displayed on multiple pages. It does not create multiple instances of a region on different pages. (Specifically, a region has a single region ID, and this is used to reference it whether it appears on one page or all of them. The region ID is used by the report for the purposes of AJAX refresh, pagination etc.)
    A similar situation was discussed a long time ago. I'm rather surprised that Scott regarded it as a bug: the fact that it doesn't seem to have been "fixed" or have a bug number attached may indicate that the others on the APEX team disagreed with him? I haven't tried the workaround he suggested, however I don't think it's likely to be prove a useful line of attack for your issue, as (1) it resets pagination rather than preserving it; and (2) it doesn't appear to be compatible with the AJAX PPR pagination used in more recent versions of APEX.
    I can't see any straightforward "solution" (largely because I don't think there's really a problem: the exhibited behaviour is exactly how I expect/want global regions to behave). Pagination processing is undocumented. The current 4.2 apex.widget.report.paginate JS method is specifically annotated as "for internal use only". Search the forum for custom pagination techniques. Messy looking hacks for IRs have previously been suggested.
    So if I'm looking at rows (11-20) on page 1, I can go to any other page beginning with rows 1-10 there.  Then return to page 1 where I left off with rows 11-20 displayed.  One solution is NOT to paginate but that's not my preferred solution.
    Assuming that there aren't too many pages involved, the other obvious option is to create unique regions on the required pages. You can achieve some level of reusability by creating SQL Query (PL/SQL function body returning SQL query) reports based on an external function so that there's only a single SQL source to be maintained.
    Explain the requirement in more detail. Pagination is not the only option for reducing the quantity of displayed information. Often it's better to display some of all of the data, rather than all of some of it...

  • Reset pagination solution

    I've always had problems with users being confused by the "Reset Pagination" error message ("Invalid set of rows..."). But I have several situations where I don't want to force a reset pagination all the time. Is there any way that I could only reset pagination when this error message would be displayed? For example, I have a search form and report on the same page. If the user changes the data but the pagination is still valid, I don't want to reset it. BUT, if they invalidate the pagination, then I would rather reload with reset pagination than display the "Invalid set of rows..." error message and the "reset pagination" link. Is this possible?

    Did you ever get this figured out or answered? My application throws this error periodically. I am not sure what the pattern is. Please let me know your solution if you have one.

  • Pagination link

    Hello.
    I need to change pagination link in order to set my page item; e.g. this
    f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.:pg_#REGION_ID#:NO&pg_min_row=1&pg_max_rows=10&pg_rows_fetched=10
    to
    f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.:pg_#REGION_ID#:NO::P1_MY_ITEM:&P1_MY_ITEM.&pg_min_row=1&pg_max_rows=10&pg_rows_fetched=10
    Is this possible?
    Thanks,
    Peter

    Thanks, for replies.
    I solved this problem by using an application item.
    Problem description:
    I have page with a report region, which give me results based on the user choice from a navigation list. When user click on the link (in the list) - an appropriate value is stored into my hidden item and the page is reloaded.
    The problem occurs when user click on the pagination link. The page is reloaded without setting my hidden item, which causes (mostly) the pagination error...
    Peter

  • No recuero mi contraseña de ID para descargar un libro cuando le doy restablecer me lleva a una pagina de erro (link roto)

    HI,
    No recuerdo mi contraseña para de ID Adobe digital para descargar un libro, cuando le doy olvide contraseña me lleva a una pagina error.
    Gracias por su ayuda
    Paula Andrea Sánchez Morales
    [email protected]

    Llamar por telefono al numero de servicio para que hagan las correcciones necesarias. Sera necesario tener a la mano la factura o evidencia de la adquisicion. En caso de no contar con un Apple Store en su localidad, ver aqui: http://support.apple.com/kb/HT1434

Maybe you are looking for

  • I have lost sound on Firefox and Internet Explorer also on embedded game on XP. Sound works Ok on CDs etc.

    Using Firefox ver 3.6.11 and have tried downloading latest version of Flash as recommended but still no sound on browsers or alert beeps on Thunderbird.

  • TextEdit freezes on opening

    I have found that every time I open TextEdit it will immediately freeze even before opening the traditional new document window.  Actually something else also happens in Safari where it keeps reverting to an application state from a while ago.  I tri

  • Problem accessing iOS Adobe Reader controls

    I've opened a .docx or .doc document in Adobe Reader on my iPad 2 and now cannot accessing any of the Reader controls.  I cannot even move to the Documents section of the App to look at previously downloaded .pdf documents.  Help.

  • Split Tax Types in PLD

    I am Referring the following thread Tax Details In Transaction How to split all the tax types for an item in PLD..? Edited by: sanjo Joseph on May 19, 2010 7:23 AM

  • Add third party dll to solution

    In my solution/web part, I used a third party dll (newtonsoft.json.dll). I have added the dll to the solution and project level. I do not see the dll when I tried to add a reference. Please see the attached screen shot. Please let me know what is the