Multi-query report. One master, 2 detail. BI Publisher/PDF/APEX

I am creating a report which has a master and two detail sections. I used 3 querriies. When I test each query in the report query with bind variables, data is returned, when I run the report no data is returned. Not even the application session state fields that I included. Here are the querries:
select     "RPC_PURCHASE_ORDER"."DOCKET_NUM" as "DOCKET_NUM",
     "RPC_PURCHASE_ORDER"."PO_NUM" as "PO_NUM",
     "RPC_PURCHASE_ORDER"."DATE_ORDERED" as "DATE_ORDERED",
     "RPC_PURCHASE_ORDER"."DATE_REQUIRED" as "DATE_REQUIRED",
     "RPC_PURCHASE_ORDER"."PREV_DOCKET_NUM" as "PREV_DOCKET_NUM",
     "RPC_PURCHASE_ORDER"."QUOTE_NUM" as "QUOTE_NUM",
     "RPC_PURCHASE_ORDER"."SALES_PERSON" as "SALES_PERSON",
     "RPC_PURCHASE_ORDER"."PROOF_REQD" as A,
     "RPC_PURCHASE_ORDER"."DYLUX" as B,
     "RPC_PURCHASE_ORDER"."DIGITAL" as C,
     "RPC_PURCHASE_ORDER"."SHERPA" as D,
     "RPC_PURCHASE_ORDER"."PDF" as E,
     "RPC_PURCHASE_ORDER"."PLATE_FILE_NUM" as "PLATE_FILE_NUM",
     "RPC_PURCHASE_ORDER"."DISC" as F,
     "RPC_PURCHASE_ORDER"."FTP" as G,
     "RPC_PURCHASE_ORDER"."PLATE_1_SIDE" as H,
     "RPC_PURCHASE_ORDER"."PLATE_2_SIDE" as I,
     "RPC_PURCHASE_ORDER"."KOMORI_26" as J,
     "RPC_PURCHASE_ORDER"."KOMORI_28" as K,
     "RPC_PURCHASE_ORDER"."HEIDELBERG" as L,
     "RPC_PURCHASE_ORDER"."TOKO" as M,
     "RPC_PURCHASE_ORDER"."ENV_PRESS" as N,     "RPC_PURCHASE_ORDER"."M_COM" as O,
     "RPC_PURCHASE_ORDER"."DIGITAL_COLOUR" as P,
     "RPC_PURCHASE_ORDER"."DIGITAL_COPIER" as Q,
     "RPC_PURCHASE_ORDER"."PADDING" as R,
     "RPC_PURCHASE_ORDER"."PUNCHING" as S,
     "RPC_PURCHASE_ORDER"."FOLDING" as T,
     "RPC_PURCHASE_ORDER"."SCORE" as U,
     "RPC_PURCHASE_ORDER"."PERFORATING" as V,
     "RPC_PURCHASE_ORDER"."GATHERING" as W,
     "RPC_PURCHASE_ORDER"."TABBING" as X,
     "RPC_PURCHASE_ORDER"."R_CORNER" as Y,
     "RPC_PURCHASE_ORDER"."SADDLE_STITCH_BNDNG" as Z,
     "RPC_PURCHASE_ORDER"."PERFECT_BOUND_BNDNG" as PB,
     "RPC_PURCHASE_ORDER"."NUMBERING" as NU,
     "RPC_PURCHASE_ORDER"."DIE_CUTTING" as DI,
     "RPC_PURCHASE_ORDER"."LAMINATING" as LA,
     "RPC_PURCHASE_ORDER"."SAVE_PLATES" as SA,
     "RPC_PURCHASE_ORDER"."INK" as "INK",
     "RPC_PURCHASE_ORDER"."FINAL_FOR_BINDERY" as "FINAL_FOR_BINDERY",
     "RPC_PURCHASE_ORDER"."TAB_IN" as "TAB_IN",
     "RPC_CUST_TABL"."CUST_NAME" as "CUST_NAME",
     "RPC_CUST_TABL"."CUST_ADDR1" as "CUST_ADDR1",
     "RPC_CUST_TABL"."CUST_ADDR2" as "CUST_ADDR2",
     "RPC_CUST_TABL"."CUST_CITY" as "CUST_CITY",
     "RPC_CUST_TABL"."CUST_PROVINCE" as "CUST_PROVINCE",
     "RPC_CUST_TABL"."CUST_POSTAL_CODE" as "CUST_POSTAL_CODE",
     "RPC_CUST_TABL"."CUST_TEL_NUM" as "CUST_TEL_NUM",
     "RPC_CUST_TABL"."CONTACT_NAME" as "CONTACT_NAME",
"RPC_CUST_SHPNG_ADDR"."SHIP_TO_ADDR1" as "SHIP_TO_ADDR1",
     "RPC_CUST_SHPNG_ADDR"."SHIP_TO_ADDR2" as "SHIP_TO_ADDR2",
     "RPC_CUST_SHPNG_ADDR"."SHIP_TO_CITY" as "SHIP_TO_CITY",
     "RPC_CUST_SHPNG_ADDR"."SHIP_TO_PROVINCE" as "SHIP_TO_PROVINCE",
     "RPC_CUST_SHPNG_ADDR"."SHIP_TO_POSTAL_CODE" as "SHIP_TO_POSTAL_CODE",
     "RPC_CUST_SHPNG_ADDR"."SHIP_TO_TEL_NUM" as "SHIP_TO_TEL_NUM",
     "RPC_CUST_SHPNG_ADDR"."SHIP_TO_FAX_NUM" as "SHIP_TO_FAX_NUM"
from     "RPC_CUST_TABL" "RPC_CUST_TABL", "RPC_CUST_SHPNG_ADDR" "RPC_CUST_SHPNG_ADDR",
     "RPC_PURCHASE_ORDER" "RPC_PURCHASE_ORDER"
where "RPC_CUST_TABL"."CUST_NUM"="RPC_PURCHASE_ORDER"."CUST_NUM"
and "RPC_PURCHASE_ORDER"."CUST_NUM"="RPC_CUST_SHPNG_ADDR"."CUST_NUM" (+)
and     "RPC_PURCHASE_ORDER"."SHPNG_SEQ_NUM"="RPC_CUST_SHPNG_ADDR"."SHPNG_SEQ_NUM" (+)
and "RPC_PURCHASE_ORDER"."DOCKET_NUM" = :P37_DOCKET_NUM
select     "JOBS"."ORDER_QTY" as "ORDER_QTY",
     "JOBS"."SHIPPED_QTY" as "SHIPPED_QTY",
     "JOBS"."SIZE" as "SIZE",
     "JOBS"."DESCRIPTION" as "DESC"
from     "JOBS" "JOBS",
     "RPC_PURCHASE_ORDER" "RPC_PURCHASE_ORDER"
where "JOBS"."DOCKET_NUM"="RPC_PURCHASE_ORDER"."DOCKET_NUM"
and     "JOBS"."PO_NUM"="RPC_PURCHASE_ORDER"."PO_NUM"
and "RPC_PURCHASE_ORDER"."DOCKET_NUM" = :P37_DOCKET_NUM
and "JOBS"."PO_NUM" = :P37_PO_NUM
select     "MATERIAL_FOR_PO"."QUANTITY" as "QUANTITY",
     "MATERIAL_FOR_PO"."TYPE_STOCK_COLOR_FINISH" as "TYPE_STOCK_COLOR_FINISH",
     "MATERIAL_FOR_PO"."SIZE_WGHT" as "SIZE_WGHT",
     "MATERIAL_FOR_PO"."CUT_TO_SIZE" as "CUT_TO_SIZE",
     "MATERIAL_FOR_PO"."OUT" as "OUT",
     "MATERIAL_FOR_PO"."UP" as "UP",
     "MATERIAL_FOR_PO"."ORDER_DATE" as "ORDER_DATE",
     "MATERIAL_FOR_PO"."SUPPLIER" as "SUPPLIER"
from     "MATERIAL_FOR_PO" "MATERIAL_FOR_PO",
     "RPC_PURCHASE_ORDER" "RPC_PURCHASE_ORDER"
where "MATERIAL_FOR_PO"."DOCKET_NUM"="RPC_PURCHASE_ORDER"."DOCKET_NUM"
and     "MATERIAL_FOR_PO"."PO_NUM"="RPC_PURCHASE_ORDER"."PO_NUM"
and "RPC_PURCHASE_ORDER"."DOCKET_NUM" = :P37_DOCKET_NUM
Any help would be appreciated. Also, can a report have 2 detail sections?
Thanks
Albert Woolery

Found it, it's possible.

Similar Messages

  • Example of how to create a master-mutiple detail BI Publisher 10.1 Report

    Hi,
    Are there any examples out there on how to do this? Basically for each master record from table A,
    need multiple related detail records from table B AND multiple related detail records from table C.
    Ie. A is master to B AND A is master to C.
    For master-single detail reports, writing a single query that joins master to detail works fine,
    but for master-multiple detail reports, I don't see how this approach will work.
    Thanks,
    Jed

    Sure, here is one (hand edited, but shows some structure).
    Detail rowset2 relates to rowset1 via STDINV_ID.
    Detail rowset3 related to rowset1 via STUDY_ID and STDINV_ID.
    Thanks for your consideration.
    -Jed
    <?xml version="1.0" encoding="UTF-8"?>
    <DATA>
    <ROWSET1>
    <ROWSET1_ROW>
    <STUDY_ID>105</STUDY_ID>
    <STUDYNAME>TEST293</STUDYNAME>
    <INVNAME>Flinstone, Fred</INVNAME>
    <COUNTRY>USA</COUNTRY>
    <STDINV_ID>3721</STDINV_ID>
    <ROWSET2>
    <ROWSET2_ROW>
    <STDINV_ID>3721</STDINV_ID>
    <TEMPLATESENT>11/02/2006</TEMPLATESENT>
    <FINALCONTRACTRECEIVED>11/13/2006</FINALCONTRACTRECEIVED>
    <CONTRACTTYPE>Main Agreement</CONTRACTTYPE>
    <DRAFTRECEIVED></DRAFTRECEIVED>
    <EFFECTIVEDATE>11/13/2006</EFFECTIVEDATE>
    <EXPIRATIONDATE></EXPIRATIONDATE>
    <CONTRACTSTATUS>Executed</CONTRACTSTATUS>
    </ROWSET2_ROW>
    </ROWSET2>
    </ROWSET1_ROW>
    <ROWSET1_ROW>
    <STUDY_ID>105</STUDY_ID>
    <STUDYNAME>TEST293</STUDYNAME>
    <INVNAME>Bell, Taco</INVNAME>
    <COUNTRY>USA</COUNTRY>
    <STDINV_ID>3157</STDINV_ID>
    <ROWSET2>
    <ROWSET2_ROW>
    <STDINV_ID>3157</STDINV_ID>
    <TEMPLATESENT>07/12/2005</TEMPLATESENT>
    <FINALCONTRACTRECEIVED></FINALCONTRACTRECEIVED>
    <CONTRACTTYPE>Main Agreement</CONTRACTTYPE>
    <DRAFTRECEIVED></DRAFTRECEIVED>
    <EFFECTIVEDATE>04/05/2006</EFFECTIVEDATE>
    <EXPIRATIONDATE></EXPIRATIONDATE>
    <CONTRACTSTATUS>Executed</CONTRACTSTATUS>
    </ROWSET2_ROW>
    </ROWSET2>
    <ROWSET3>
    <ROWSET3_ROW>
    <STUDY_ID>105</STUDY_ID>
    <STDINV_ID>3157</STDINV_ID>
    <EXPIRATION>10/02/2007</EXPIRATION>
    <IRBNAME>Big Kahuna IRB</IRBNAME>
    </ROWSET3_ROW>
    <ROWSET3>
    </ROWSET1_ROW>
    <ROWSET1_ROW>
    <STUDY_ID>105</STUDY_ID>
    <STUDYNAME>TEST293</STUDYNAME>
    <INVNAME>King, Burger</INVNAME>
    <COUNTRY>USA</COUNTRY>
    <STDINV_ID>3112</STDINV_ID>
    <ROWSET2>
    <ROWSET2_ROW>
    <STDINV_ID>3112</STDINV_ID>
    <TEMPLATESENT>07/10/2005</TEMPLATESENT>
    <FINALCONTRACTRECEIVED>11/21/2005</FINALCONTRACTRECEIVED>
    <CONTRACTTYPE>Main Agreement</CONTRACTTYPE>
    <DRAFTRECEIVED></DRAFTRECEIVED>
    <EFFECTIVEDATE>11/23/2005</EFFECTIVEDATE>
    <EXPIRATIONDATE></EXPIRATIONDATE>
    <CONTRACTSTATUS>Executed</CONTRACTSTATUS>
    </ROWSET2_ROW>
    <ROWSET2_ROW>
    <STDINV_ID>3112</STDINV_ID>
    <TEMPLATESENT></TEMPLATESENT>
    <FINALCONTRACTRECEIVED></FINALCONTRACTRECEIVED>
    <CONTRACTTYPE>Amendment 1</CONTRACTTYPE>
    <DRAFTRECEIVED></DRAFTRECEIVED>
    <EFFECTIVEDATE>04/01/2008</EFFECTIVEDATE>
    <EXPIRATIONDATE></EXPIRATIONDATE>
    <CONTRACTSTATUS>Executed</CONTRACTSTATUS>
    </ROWSET2_ROW>
    </ROWSET2>
    <ROWSET3>
    <ROWSET3_ROW>
    <STUDY_ID>105</STUDY_ID>
    <STDINV_ID>3112</STDINV_ID>
    <EXPIRATION>08/16/2011</EXPIRATION>
    <IRBNAME>Top Notch Healthcare</IRBNAME>
    </ROWSET3_ROW>
    </ROWSET3>
    </ROWSET1_ROW>
    </ROWSET1>
    </DATA>

  • Multi query reports and BI Publisher?

    I have to create a report that gathers data from DB using several SQL queries - text mixed with data tables. I was not able to find anything like that in Apex 3.0 or BI Publisher. Am I missing something?
    As a solution I was trying to pass more complex, hierarchical XML data structure to BI Publisher with several repeating groups that would serve my purpose. Apex seems to generate only one level XML.
    Is there a way to generate XML file manually and pass it to BI Publisher?
    Thank You
    Janis

    Does anyone have an idea on how to create multi-query report?
    ..or maybe how to manually create XML and pass it to BI Publisher?
    Tahnk you!
    Janis

  • Multi-query reports in Reports 3.0

    When I run multi-query report in Reports 3.0 the report runs
    correctly when I first load the report. However, when the report
    is run for a second time the sub-queries do not appear to execute
    and the report does not give a complete output, if any.
    null

    Hello Mike,
    Whenever you work on multi-query reports you have to set all
    the relationship within the tables. If you have not specified
    then specify within the where clause.
    Try this. I hop your problems get solved.
    From Subash.
    Mike Donnerstag (guest) wrote:
    : When I run multi-query report in Reports 3.0 the report runs
    : correctly when I first load the report. However, when the
    report
    : is run for a second time the sub-queries do not appear to
    execute
    : and the report does not give a complete output, if any.
    null

  • Multi Query Reports

    Hi!
    Can we have multi query reports ? reports displayed in Frames in a report???????
    Imran

    Hi,
    yes you can have multiple query in your report. So you have multiple groups in your data model. Then you must put multiple repeating frames in your layout in order to extract data from your queries, selecting the desired group in the source property of your repeating frame.
    Bye
    Raffy

  • Problem with one master two details

    Hi,
    I have to create a form with one master and two detail blocks, both related via the same primarykey to the master block.
    Both detail blocks shall be based on joins (as shown in the white paper).
    First I have the master block with its items on the form.
    Then after creating the first detail block, I put the items on the form, too, and everything is fine.
    Next I create the second detail block (without join), rename it and create a master detail relation to the master block.
    To look after result I run the form - and all items off the master block are invisible!
    I checked it - its the creation of the second relation.
    What does this mean?
    What can I do?
    Silke

    Hi Frank
    forms 6i, database 9i
    'Cursor' = 'Datablock'?
    That means, forms cannot built the cursor?
    What do you mean with System Navigator?
    I first created the same form with the same construction, the two detail datablocks based on views, and there is no problem.
    I had to change, because some items should be updatable that I cannot achieve with views.
    There is a diffrence in useing the datablock wizard.
    Working the Views, datablock wizard cannot automatically find suitable master blocks.
    Working without views, he suggests the suitable master block. Even the dialog box for selecting the master block is different, it shows both the master block and its first detail block in ONE line.
    Silke

  • Layout components - One master, many detail

    Jdev 11...2
    I've been trying to figure out what type of components to use to display one master table and many detail tables at the same time. I have a panel splitter with the master table in facet one then the second facet is split several times so I can display up to eight detail tables. I only see three detail facets when I run the application. Maybe the facets need to be surrounded by something else or formated so that can all display. I don't want to use the paneltabbed since I want to see the all together. Is there a better way to do this? Any tips wold be appreciated.
    LB

    Frank,
    I ended up using nested panel splitters since I wasn't able to stretch the tables inside the panelGoupLayout (I think). Initially I wasn't able to see the content in he panelsplitters, but I had better luck using the second facet for content and using the first facet to hold a nested panelsplitter. Also using positionedFromEnd = true and adjusting the splitter position helped the formatting although I think that will depend on the size of the user's browser window.
    LB

  • One Master Many Detail Tables

    Does anyone know how I can use XE to create a Master-Detail Form using one master table and multiple detail tables? Currently it seems to only allow one detail table.
    Thanks.
    Pat.

    Hello,
    I created the following tables (Location, Dept, Emp ). The master table is Location Table and detail tables are emp and dept.
    I created view for emp and dept tables then I created the master detail form which was include the location table as the master and the created view as the detail.
    But I need to create 3 blocks like in the oracle developer that helps me to insert the records in 3 tables at the same time.
    Best Regards,

  • Multi query in one line

    hi
    how i can execute multi query (select) in one line without using "Enter" key by sql*plus or Toad ?
    for example , i want to do as following :
    "select * from request_parameter_type where param_name like 'new%' ; / select * from fund ;"
    but it show me "invalid character" error on ";" and force to place "enter" between them :
    select * from request_parameter_type where param_name like 'new%' ;
    select * from fund ;
    thx in adv.
    Edited by: s_hesam_s on Oct 12, 2008 12:29 AM

    You can set the cmdsep variable but it seems just the output of the last statement gets displayed:
    SQL> set cmdsep |
    SQL>
    SQL> select ename from emp | select dummy from dual
      2  /
    D
    X

  • Distribution of multi section/multi query report

    Hello
    I have a report that's need to be modified to allow email distribution when the user chooses to.
    The report has 2 independant seperate queries. Each query is presented on a different section.
    Query1 - MainSection
    Query2 - TrailerSection
    Based on a paremeter we're turning on/off each query/section from being presented.
    Hence the report results either with Query1/MainSection or with Query2/TrailerSection
    Now to this report we would like to add email distribution. And this is where we're failing.
    Each section has to repeat on different group, each query has different addresses relying on a parameter.
    If I seperate the report to 2 reports - I can distribute it via email. But I would rather not to - since many modifications will have to come in place. I don't mind 2 different xml distribution files in case of each section - but this also doesn't seem to work.
    This is the error that I get
    REP-1353: Web property of layout object 'RS_FRAME1' references field or column 'email_to' at wrong frequency.
    And I can understand why - since it's seems to run both queries each time even if I try to suppress the 2nd one by filter or by a parameter.
    This is the xml file that I am trying to use for when Query1/MainSection is trying to execute
    <destinations>
    <foreach>
    <mail id="email1" to="&amp;&lt;EMAIL_TO&gt;" from="[email protected]" subject="RPT558">
    <body srcType="text">
    Please find attached a copy of your calendar.
    Please do not reply to this email.
    </body>
    <attach format="pdf" name="&amp;&lt;ATTACH_NAME&gt;" srcType="report" instance="this">
    <include src="mainSection"/>
    </attach>
    </mail>
    </foreach>
    </destinations>
    Any idea if this is at all possible.
    Thanks
    Yafa

    Hi Ravi,
    Thanks for the reply. To answer your question, yes the reportid is considered as a single value coming from the table in the database. Below is the actual query that I am using to obtain report id value. This query result (reportid val) is not showing up on my report.
    What am I doing wrong here?? Would greatly appreciate your insight into this.
    Thanks
    Suma
    --- Below is query Q1 which retreives the report id. This value is associated with a field that is located in the top right margin area, above the report body. The table name is RPT_DETAIL_BY_APPNAME, which stores the details of reports for each application on the server. The reportid is a simple concatinated string of application name with a unique id value within the table, for each report.
    SELECT RPT_DETAIL_BY_APPNAME.APP_NAME || RPT_DETAIL_BY_APPNAME.PK_RPT_SERVER_ID REPORT_ID
    FROM RPT_DETAIL_BY_APPNAME
    WHERE LOWER(RPT_DETAIL_BY_APPNAME.RPT_NAME) = 'test_reportid.rdf'

  • One master many details

    Hello,
    I've a problem with ADF: I've a View object (comunication) create as union of 2 entity with the same ID and another table with key ID and ID1 and a different table of attributes of this table that depend from the type of ID1.
    I have an edit page in wich I create a new comunication and with check box I choose the type of ID1.
    My problem is write the record in the table of attributes: can I do this automatically as Master-detail insert or have I to write this with instruction "INSERT INTO xxx VALUES XXX"?
    Help me as soon as possible!
    Thanks

    Hi Steve,
    This is not a composition association. Actually, this is an association from a table to an intersection (many-to-many) table. The code in my service is based on the SRDemo, see SRServiceImpl#updateSkillsForCurrentStaff(List) and is called on a save button from a shuttle page.
    The current master is the master I want it to belong to. The link to the master gets correctly saved in the database (just as in the SRDemo). We can also navigate from the master view row to the find the detail view row using the generated RowIterator. However, this does not work from the master entity row to the detail entity row. The problem is really at the entity level.
    Thanx
    Olivier

  • How to create Report in master and detail

    I have two table
    1. order1
    2. order2
    table order1 fields:- SRNO, PPNO,SUBPP
    table order2 fields:- SRNO, SFILE, INVOICE
    table order1 I created in tabular and table order2 like form.
    order1 has 4 record and order2 has 1 record
    like
    ORDER1:-
    srno, ppno, subpp
    1 10 A
    1 10 B
    1 11 A
    1 12 C
    ORDER2:-
    srno, sfile, invoice
    1 102 102-06-2006
    i have input data in this shape can you help me how can I print data same as above.
    There is no relationship .
    Message was edited by:
    Kamran

    Hi Kamran
    take 2 groups in the datamodel .place one below the other in the layout.
    Thankyou
    [email protected]

  • Multi page report with large master block

    I am doing a long multi page report with master - detail block.
    Master block is about 60-100 lines long in form format and detail block is 0 to 300 lines in table format.
    I would like to repeat a few columns from master block on all subsequent pages.
    The current solution I have done uses a logical page of 4x1, but in this way i can not repeat selected columns on subsequent pages.
    Is there another way to handle large master block that extends more than one page.
    PB

    You can try this. Create another frame within your master repeating frame and put items there which you want to display on next pages. And set the property of this frame as All Pages.

  • Example of how to create a master-multiple detail PDF report using BI Pub

    Hi,
    Are there any examples out there on how to do this? Basically for each master record from table A,
    need multiple related detail records from table B AND multiple related detail records from table C.
    Ie. A is master to B and A is master to C.
    For master-single detail reports, writing a single query that joins master to detail works fine,
    but for master-multiple detail reports, I don't see how this approach will work.
    Thanks,
    Jed

    You MIGHT have a better response if you ask this question in the BI Publisher forum...: BI Publisher
    Thank you,
    Tony Miller
    Webster, TX
    There are two kinds of pedestrians -- the quick and the dead.

  • SAP QUERY report for vendor line items

    Hi
    I have created a SAP QUERY report for vendor line items with fields vendor no.,vendor name,amount,company code and period.But there is one line item i donot know from wher system is getting it picked with is not in that vedor account,when i compare with fbl1n.I checked the document number too...the same doc number is twice in my query report.One with correct amount and another with wrong one.How do i chk.Where did i go wrong in creating query.I used logical database KDF.
    Please advise.

    i chked...how do we get the amount displayed in query...it just displays amount no debit credit symbol... i have selected BSEG-DMBTR field but no -/+ sign,how is it done in query,please suggest.

Maybe you are looking for

  • How to change addressbar color based on SSL/SSL-EV/Broken-SSL/No-SSL

    Hello, is there any way how to force FF31 to color the address bar background with green for verified SSL, yellow for normal SSL red for broken SSL and white for no SSL? I know FF shows a little icon next to the URL, but I want whole address bar back

  • CS4 Design view does not render CSS correctly but browser does !?!?

    I am designing a layout using primarily CSS. I want to insert a table inside one of the div's. In design view the table gets pushed way out of position but in live view and on the web, the page looks correct. Why? Am I missing something in design vie

  • Getting printers from client on Web Forms

    I want to capture the network printers from the client pc to store in a database column for batch printing. On a client server I was able to use ORA_FFI to get the print dialog but you cannot use this on web forma. Has anyone any ideas on how to get

  • Problem with Figure numbering

    HI, I am new to InDesign, so can anyone help me with my problem i am creating a document in which i need unique figure numbering and is working properly in my main text box like  Figure-1, Figure-2...... the problem is when i create another text box

  • Smb v2 Finder bug / Mavericks

    On all Mac running Mavericks 10.9 & 10.9.1 we have identified and reported a major bug when using SMB v2 file servers. Sumary The Finder can't rename a remote folder on an SMB v2 file server. Meanwhile, with the same file server mounted from the same