Procedure help using ( owa_sylk.show ) function

hi all,
i try to run this but i am getting error as : ( PLS-00306: wrong number or types of arguments in call to 'SHOW' ). what arguments missed can any one please. i am asking because i am very new to procedures.
declare
output utl_file.file_type;
begin
output := utl_file.fopen( 'c:\', 'emp1.slk', 'w',32000 );
owa_sylk.show(
p_file => output,
p_query => 'SELECT P_CODE id, P_NAME
               from SYSADM.PARTY
where P_CODE = :id ',
p_parm_names =>
owa_sylk.owaSylkArray( 'id'),
p_parm_values =>
owa_sylk.owaSylkArray( 'A' ),
p_sum_column =>
owa_sylk.owaSylkArray( 'N'),
p_show_grid => 'NO' );
utl_file.fclose( output );
end;
thank you.

hi,
i am using tom procedure.
create or replace
package owa_sylk as
type owaSylkArray is table of varchar2(2000);
procedure show(
p_query in varchar2,
p_parm_names in owaSylkArray default owaSylkArray(),
p_parm_values in owaSylkArray default owaSylkArray(),
p_sum_column in owaSylkArray default owaSylkArray(),
p_max_rows in number default 10000,
p_show_null_as in varchar2 default null,
p_show_grid in varchar2 default 'YES',
p_show_col_headers in varchar2 default 'YES',
p_font_name in varchar2 default 'Courier New',
p_widths in owaSylkArray default owaSylkArray(),
p_titles in owaSylkArray default owaSylkArray(),
p_strip_html in varchar2 default 'YES',
p_user_heading in varchar2 default null );
procedure show(
p_cursor in integer,
p_sum_column in owaSylkArray default owaSylkArray(),
p_max_rows in number default 10000,
p_show_null_as in varchar2 default null,
p_show_grid in varchar2 default 'YES',
p_show_col_headers in varchar2 default 'YES',
p_font_name in varchar2 default 'Courier New',
p_widths in owaSylkArray default owaSylkArray(),
p_titles in owaSylkArray default owaSylkArray(),
p_strip_html in varchar2 default 'YES',
p_user_heading in varchar2 default null );
end owa_sylk;
Thank you

Similar Messages

  • Procedure to use the COPY function in Realignment

    Hi Gurus,
    Can anyone explain me the sequential procedure to use the COPY function in the Realignment...
    Thanks

    Hi,
    In the Realignment start screen, you can set the flag u201CActivate Application Logu201D. This will help you to see and analyze  the log.
    Please check if you can see the copy step.
    When you click u201CMaintain Entriesu201D , you will see the screen of u201COverview of Copy Tableu201D.
    Therein you should see the steps you have maintained.
    Check the Step Status . It should be u201CCope Step is ready to be performedu201D.
    The validity date (fourth column) should be either todays date or earlier date.
    Copy Validity Date:The validity date from which a copy step is taken into account during a copy run. Only copy steps  whose validity date is before the date of the copy run job are taken into account.
    Regards
    Datta Kadam

  • Need help using the "skatter" function with brushes.

    I'm using Photoshop 7 right now. I want to use the scatter function with one of the standard brushes to make a star trail, but the problem is that the stars are too thick, there's too many of them. How do I tell it to draw less instances of the brush when I'm in scatter mode? So that it's only dropping 5 at a time or so?

    I have a control bar for "Master Diameter" but I can't find anything that says "spacing."

  • Need help using basic interger function

    I made a basic program to calculate the arrival of a trail, but the problem
    is that when i get the result of sum6 it comes out as 13.833333333333333.
    I just want to remove all the numbers after 13 for the printout answer?!?!!?!
    I know i have to use the "int" function to do this, but where & what do i put
    in my code to do that?
    thanks!!!!
    // DECLARE VARIABLES/DATA DICTIONARY
    double num1,num2, num3, num4 ; // Given numbers
    double sum1,sum2, sum3, sum4, sum5, sum6, sum7, sum8 ; // Intermediate, sum of num1, num2, and num3
    // READ IN GIVENS
    System.out.println ("Please enter hour value of start time: ");
    num1 = ITI1120.readDouble( );
    System.out.println ("Please enter minute value of start time: ");
    num2 = ITI1120.readDouble( );
    System.out.println ("Please enter the speed of train (in km per hour) : ");
    num3 = ITI1120.readDouble( );
    System.out.println ("Please enter travel distance (in km) : ");
    num4 = ITI1120.readDouble( );
    // BODY OF ALGORITHM
    sum1 = num1 * 60;
    sum2 = sum1 + num2;
    sum3 = num3 / 60;
    sum4 = num4 / sum3;
    sum5 = sum2 + sum4;
    sum6 = sum5 / 60;
    sum7 = sum6 * 60;
    // PRINT OUT RESULTS
    System.out.println("The hour value of the arrival time is: " + sum6);

    Which is easier to debug, your code with the generic variable names or this code:
        System.out.println ("Please enter hour value of start time: ");
        startHour = ITI1120.readDouble( );
        System.out.println ("Please enter minute value of start time: ");
        startMinutes = ITI1120.readDouble( );
        System.out.println ("Please enter the speed of train (in km per hour) : ");
        velocityKmPerHr = ITI1120.readDouble( );
        System.out.println ("Please enter travel distance (in km) : ");
        travelKm = ITI1120.readDouble( );
        startMinutesFromHours = startHour * MINUTES_PER_HOUR;
        totalMinutes = startMinutesFromHours + startMinutes;
        velocityKmPerMin = velocityKmPerHr / MINUTES_PER_HOUR;
        travelTimeMinutes = travelKm / velocityKmPerMin;
        arrivalTimeTotalMinutes = totalMinutes + travelTimeMinutes;
        arrivalTimeHours = (int)(arrivalTimeTotalMinutes / MINUTES_PER_HOUR);
        noIdeaWhyYoureCalculatingThis = arrivalTimeHours * MINUTES_PER_HOUR;?

  • Need help using count over function

    I have the following query
    Select student_id, OM, TM, TP, count(rownum) over (order by OM desc) PS from
    (select
    er.student_id, sum(er.obtained_marks) OM, sum(ds.max_marks) TM,
    to_char(sum(er.obtained_marks)/sum(ds.max_marks)*100,'990.00') TP
    from
    tbl_exam_results er, tbl_date_sheet ds
    where
    ds.date_sheet_id = er.date_sheet_id and ds.class_id = 77 and ds.exam_id = 3 and ds.session_id = 1 group by er.student_id
    results in
    <div style="width: 889px"><div class="fielddata"><div>
    <div>STUDENT_ID OM TM TP PS
    1825 291 300 97.00 1
    3717 290 300 96.67 2
    2122 289 300 96.33 3
    3396 287 300 95.67{color:#ff6600} *5 &lt;--*{color}
    4554 287 300 95.67{color:#ff6600} *5 &lt;--*{color}
    1847 281 300 93.67 6
    1789 279 300 93.00 7
    5254 277 300 92.33 8
    1836 258 300 86.00 9
    4867 250 260 96.15 10
    1786 249 300 83.00 11
    4659 245 300 81.67 12
    1835 241 300 80.33 *{color:#ff6600}15 &lt;--{color}*
    1172 241 270 89.26*{color:#ff6600} 15 &lt;--{color}*
    3696 241 300 80.33 *{color:#ff6600}15 &lt;--{color}*
    3865 234 300 78.00 16
    5912 215 300 71.67 17
    5913 204 300 68.00 *{color:#ff6600}19 &lt;--{color}*
    3591 204 300 68.00 *{color:#ff6600}19 &lt;--{color}*
    1830 184 250 73.60 20
    </div>
    </div>
    </div>
    </div>
    <div style="width: 889px"><div class="fielddata"><div>
    But I want as following
    <div>STUDENT_ID OM TM TP PS
    1825 291 300 97.00 1
    3717 290 300 96.67 2
    2122 289 300 96.33 3
    3396 287 300 95.67 *{color:#ff6600}4 &lt;={color}*
    4554 287 300 95.67 *{color:#ff6600}4 &lt;={color}*
    1847 281 300 93.67 {color:#ff6600}5 the following entry{color}
    1789 279 300 93.00 6
    5254 277 300 92.33 7
    1836 258 300 86.00 8
    4867 250 260 96.15 9
    1786 249 300 83.00 10
    4659 245 300 81.67 11
    1835 241 300 80.33 {color:#ff6600}*12 &lt;=*{color}
    1172 241 270 89.26{color:#ff6600} *12 &lt;=*{color}
    3696 241 300 80.33 {color:#ff6600}*12 &lt;=*{color}
    3865 234 300 78.00{color:#ff6600} 13 the following entry{color}
    5912 215 300 71.67 14
    5913 204 300 68.00 *{color:#ff6600}15&lt;={color}*
    3591 204 300 68.00 *{color:#ff6600}15 &lt;={color}*
    1830 184 250 73.60 {color:#ff6600}16{color} {color:#ff6600}the following entry{color}
    </div>
    Thanks in advance for any help
    </div>
    </div>
    </div>
    <div style="width: 889px"></div>
    Edited by: sabir786 on Jan 14, 2009 4:13 AM
    Edited by: sabir786 on Jan 14, 2009 4:17 AM

    Since I do not understand at all what you are trying to do, I cannot correct your query, but I can explain the results.
    The analytic function is doing a running count of the number of records that have been outout so far. With no duplicates, this is somewhat clearer.
    SQL> WITH t AS (SELECT 1 om FROM dual UNION ALL
      2             SELECT 2 FROM dual UNION ALL
      3             SELECT 3 FROM dual UNION ALL
      4             SELECT 4 FROM dual UNION ALL
      5             SELECT 5 FROM dual)
      6  SELECT om, COUNT(rownum) OVER (ORDER BY om) ps
      7  FROM t;
            OM         PS
             1          1
             2          2
             3          3
             4          4
             5          5However, when you have duplicates, both duplicate values get the running count from the last of the duplicates (i.e. the highest running count). Here, I have duplicated 4 and see what I get:
    SQL> WITH t AS (SELECT 1 om FROM dual UNION ALL
      2             SELECT 2 FROM dual UNION ALL
      3             SELECT 3 FROM dual UNION ALL
      4             SELECT 4 FROM dual UNION ALL
      5             SELECT 4 FROM dual UNION ALL
      6             SELECT 5 FROM dual)
      7  SELECT om, COUNT(rownum) OVER (ORDER BY om) ps
      8  FROM t;
            OM         PS
             1          1
             2          2
             3          3
             4          5
             4          5
             5          6The "second" 4 record had a running count of 5 (i.e. it was the fifth record output), so both 4's get the same count. Changing the order by to descending shows the same effect, it just changes the running count:
    SQL> WITH t AS (SELECT 1 om FROM dual UNION ALL
      2             SELECT 2 FROM dual UNION ALL
      3             SELECT 3 FROM dual UNION ALL
      4             SELECT 4 FROM dual UNION ALL
      5             SELECT 4 FROM dual UNION ALL
      6             SELECT 5 FROM dual)
      7  SELECT om, COUNT(rownum) OVER (ORDER BY om DESC) ps
      8  FROM t;
            OM         PS
             5          1
             4          3
             4          3
             3          4
             2          5
             1          6John

  • I need help using the "GetCursorPos" function in the user32.dll on a machine running Win98.

    I'm able to get the x axis information by setting arg1 to TYPE=Numeric, DATA TYPE=Signed 32-bit Integer, PASS=Pointer to Value. I wired a zero to the input.
    When I setup arg2 the same, LabView crashes.???
    This is the first time I've attempted to access a dll, and I'm not sure I'm on track with the operation and I appreciate any help with this matter.

    Hi,
    What you are doing now is:
    BOOL GetCursorPos(
    LPPOINT lpX // cursor's X
    LPPOINT lpY // cursor's Y
    This is not correct! The Api pop only one parameter from stack, and returns
    to the second. The second parameter should be the return andress (set
    automatically), but in your case it's a pointer to lpY! So LV crashes!
    This is the prototype of GetCursorPos:
    BOOL GetCursorPos(
    LPPOINT lpPoint // cursor position
    Wire a cluster to the first parameter (set the dll to "adapt to type"). the
    cluster should have two U32's in it.
    Regards,
    Wiebe.
    "_K_" wrote in message
    news:[email protected]..
    > I'm able to get the x axis information by setting arg1 to
    > TYPE=Numeric, DATA TYPE=Signed 32-b
    it Integer, PASS=Pointer to Value.
    > I wired a zero to the input.
    > When I setup arg2 the same, LabView crashes.???
    > This is the first time I've attempted to access a dll, and I'm not
    > sure I'm on track with the operation and I appreciate any help with
    > this matter.

  • I don't know how to use the canlendars function and the notes are kind of messy code,anyone help me

    i don't know how to use the canlendars function and the notes are kind of messy code,anyone help me

    Step by step:
    1. On your main vi Front Panel, create your boolean indicator.
    2. On the block diagram, right click the new boolean indicator and select Create - Reference.
    3. On sub-vi front panel, create boolean indicator (or use one that is already created).
    4. On sub-vi front panel, create a reference (Controls Palette - Refnum - Control Refnum).
    5. Right click on the newly created Refnum and select Select Vi Server Class - Generic - GObject - Control - Boolean. The refnum label changes to BoolRefnum.
    6. On sub-vi block diagram, create Property Node (Functions - Application Control - Property Node). Find the BoolRefnum and move it close to the new Property Node.
    7. Wire the BoolRefnum to the reference input of the property node.
    8.
    Right click on the property node and select Change to All Write.
    9. Move mouse to point to Visible inside property node box, left click and select Value.
    10. Wire the boolean indicator from step 3 to the Value input of the property node.
    11. On sub-vi front panel, right click on icon and select Show Connector.
    12. Click on empty connector spot then click on the new BoolRefnum. Save your sub-vi.
    13. On main vi block diagram, connect refernece created in step 2 to the new connector terminal of sub-vi.
    14. Save and run.
    Here are the modified vi's.
    - tbob
    Inventor of the WORM Global
    Attachments:
    Pass_a_Reference.vi ‏20 KB
    GL_Flicker_mod.vi ‏83 KB

  • When I open up iphoto and click on the events tab then double click on an event, it used to show minis of all the photos in that event.  Now it shows only one photo at a time.  How do I get it back? Can you help?

    When I open up iphoto and click on the events tab then double click on an event, it used to show minis of all the photos in that event.  Now it shows only one photo at a time.  How do I get it back? Can you help?

    On the bottom bar of the window (on the left iPhoto 11, on the right in other versions) note the slider. Drag it left.
    Regards
    TD

  • I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks

    I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks.

    Did you already make sure that Apple Mobile Device Service is installed and active on your computer?
    http://support.apple.com/kb/TS1567
    More troubleshooting about your device not recognized in Windows can be found here: http://support.apple.com/kb/TS1495

  • Just installed a HP Color Laserjet CM2320nf MFP printer, at the same time I upgraded to Lion. It prints fine, but I cannot use the scan functions.  I downloaded the most recent driver! Any help would be appreciated.

    Just installed a HP Color Laserjet CM2320nf MFP printer, at the same time I upgraded to Lion. It prints fine, but I cannot use the scan functions.  I downloaded the most recent driver! Any help would be appreciated.

    HP says that the drivers for your all in one print/scanner are downloadable from apple. For the scanner to use preview. image capture or the scan icon from the print driver queue.  I don't know how old your HP is, but I know that the newer Os from apple don't support a lot of older printers. You might be able find a third party driver that could work.

  • I sent in my iPhone 6 for repair. I used restore on the loaner phone I was given, and the contacts, texts, reminders, and Safari pages all showed up. My phone is back, and when I used the restore function again, those items are missing.

    I sent in my iPhone 6 for repair. I used restore on the loaner phone I was given, and the contacts, texts, reminders, and Safari pages all showed up. My phone is back, and when I used the restore function again, those items are missing. I do not use iCloud because I have no wifi at home, limited data available for regularly backing up, and I have a 64GB phone and don't wish to pay to upgrade from the 5GB iCloud storage. Am I doing something wrong? It worked so seamlessly on my loaner phone that I am completely stumped as to why it will not restore those items to my original phone again.

    The iphone is designed to be synced to your computer or cloud service.  Your contacts should be in whatever program/service you have chosen to sync.
    If you have failed to do this, then they are likely gone.

  • When we use SQLScript/CE Functions or procedures in real time scenario

    Hi,
    Can anyone explain me, when we use Scripted Calculation view or procedure using SQL/CE functions in real time project implementations.
    Let me know some business requirement why we choose these instead of graphical view.

    Hi Kumar,
    <i>So in real time if you want to develop some interface whether we use existing components or we will create own user defined products and components ??</i>
    We can do both.
    If the pre-delivered content actually solves ur purpose by providing the exact format of data, then u should go for the <b>existing components</b>
    If there is any change from the content provided, then u should change it and<b> create own user defined products and components</b>
    <i> What is the criteria behind choosing either of them ??</i>
    Thus the criteria is purely based upon the type of data formats u have to use. Existing component always saves lot of development time
    Regards,
    Prateek

  • JNI - how to use java access function in TypeLibrary( .tlb file) HELP ME PL

    Hey All
    I got one project which can be done by calling up functions in xxxx.tlb
    (window type library) file, that is no problem.
    How to use java to access those functions???
    I know there are some classes which can be used to access function in
    DLL file e.g. JAWIN.
    Is the .tlb file related to one DLL file??? if so, how to locate the
    DLL file through .tlb file???
    Thanks a lot.
    Steve

    Use JNI to create a link between Java class and a DLL, then you can load that DLL (or TLB) from that class.
    Read the JNI Tutorials.

  • Stored procedure help needed please!

    dsds

    hello ive an assignment due but ive hit a brick wall, would anyone be as kind to help me?
    ShareTraders LTD is an online share brokerage which allows its customer to trade shares on the US stock market.  Customers can either sell or buy shares – the sales price depends on the curently quoted prices in the share table.  The below ERD
    shows a section of their database that refers to their customers who trade shares online.
    Funds are categorised into different categories.
    Customers may limit their exposure to a particular category of fund.
    Customers fund their share purchases through funds.
    Customers may limit their exposure to a particular category of fund.
    Shares are grouped into different categories.
    Customer trades are tracked in their portfolios.
    The shares that the customer’s trade are recorded in their portfolios.
    Staff are authorised to change the share prices of particular categories of shares.
    Staff are authorised to change the share prices of particular categories of shares.
    TSQL à Stored procedure
    Create a stored procedure (call it
    Assign1) which will
    insert a purchase of shares into the CustomerPortfolioTBL for a customer. The data that will be passed to the stored procedure is: the CustomerID, the ShareID, and the TransactionAmount.
    The data for the other columns in the CustomerPortfolioTBL will be got as follows
    TransactionID
    à make sure that this column is an identity column which will automatically generate the next TransactionID.
    TransactionType – this column will be filled by your sproc with the word “Purchase”.
    SharePrice
    à the price will be read from the share SellPrice column in the ShareTBl for that ShareID.
    TransactionDate
    à this column will be filled by your sproc with todays date
    à use the GetDate() function.
    Business Requirement
    Customers are not allowed to purchase more than 5 times in the current month. Your sproc must therefore:-
    Count the number of purchases the customer has made this month
    à use the Month() and the GetDate() functions.
    If the no of purchases is greater than or equal to 5 your sproc must send an error message of “Sorry
    purchase is refused 5 purchases have been made this month”
    Customers cannot spend over their exposure limit for a particular share category – get this from the CustomerExposureTBl.  Your sproc must therefore:-
    Read in to an internal variable the exposure limit from the CustomerExposureTBl for the inputted CustomerID.
    Add up all the transaction amount of shares that the customer has purchases (TransactionType = purchase) for shares whose category is the same as the share
    being purchased).  Put this calculation into an internal variable.
    Add up all the transaction amount of shares that the customer has sold  (TransactionType = sale) for shares whose category is the same as the share being
    purchased).  Put this calculation into an internal variable.
    iv) 
    If ((Total Purchases
    of share in this category – Total Sales of share in this category) + TransactionAmount) is greater than  exposure limit your sproc
    must send an error message of “Sorry purchase is refused Exposure limit is breached”
    Tables
    http://tinypic.com/r/2nvqt88/8
    This reads like you just want someone to do your homework for you. Could you post the following?
    What have you written so far? Please include the code in your reply.
    Where are you getting stuck specifically?
    Mark as answer or vote as helpful if you find it useful | Igor

  • Creating page items from pl/sql procedure and using them on a page

    I have a page containing 2 select lists (P21_DEPARTMENTS and P21_DATE). Originally I added them as items that were "select list with submits". The problem is that based on the clearance level of the currently logged on user I only wanted the P21_DEPARTMENTS to be a select list if the user was an administrator. If however the user is not an admin then I want the page to have a hidden form field called P21_DEPARTMENTS that stores the user's department and has a label item that has the department name.
    There is also a report region that generates a table based on the department selected from the select list (if the user is an admin) or the value stored in the hidden form field if the user is not.
    My problem is that I cannot have both those items on the same page and use the HTML built-in authentication to determine which item should be rendered because I need to use the same ID for both items so that the stored procedure in my report region doesn't break. HTML does not permit items to share the same ID.
    I tried to circumvent the problem by creating a stored procedure that performs all of the item rendering in the procedure and uses "htp.p()" to output all of my HTML code. This solution would allow me to pass a parameter into the procedure informing me as to whether or not the user is an administrator. If the user is an administrator the procedure would use a conditional statement and render a select list. If not, the hidden form field and label option would be used instead.
    I finally got the stored procedure working perfectly. Now I am encountering the most bizarre thing. Since the "select list with submit" was not working (I used the same code that gets generated when I created other items using htmlDB's GUI) I decided to use a JavaScript function instead that gets triggered by the onChange event. I send along the value that is currently selected in the select list and in the function I set:
    location.href='http://www.myoraclesite.com/pls/htmldb/f?p=111:21:729740000000000000::NO::P21_DEPARTMENTS:1';
    In theory this should work. The problem is that it doesn't. The page reloads and the P21_DEPARTMENTS select list is not pre-selected.
    The only thing I can think of is that when htmlDB generates page items that you've created with it's own admin tool it assigns some internal guid or something as opposed to when someone tries to generate dynamic page items of their own from a pl/sql procedure it's like the application doesn't even know they exist.
    Any help would be GREATLY appreciated.
    My only other solution would be to create a totally separate page (one for admin and another for non-admin). I would really like to avoid this.
    Thanks in advance.

    I would love to be able to generate my menus and
    various other items in my htmlDB applications in much
    the same way I can using ASP, PHP and Cold Fusion.
    Users should have the ability to write server-side
    code wherever they feel like it. The way htmlDB works
    right now I spend more time trying to figure out how
    to create simple effects and generate simple
    interfaces when I need to be building a portal. Ami - it's important to understand that HTML DB is not like other languages. Thus, trying to force concepts which are common in other languages into HTML DB will often result in more work.
    It's definitely worth the time to go over the HTML DB 2-day Developer, which can be found here: http://www.oracle.com/technology/products/database/htmldb/pdf/B14377_01.pdf
    I can build a portal using Classic ASP, C#, PHP or Cold
    Fusion in like 1/10 of the time that it takes me to
    build one using htmlDB. I understand that this is not
    meant for the hard-core programmer but no web
    programming application in today's day and age should
    prevent experts from getting under the hood.And I can build a Portal in HTML DB in 1/10 the time it will take me to do it in any other language. It's like anything else - proficiency comes with practice and work.
    As for getting under the hood, there is plenty of places you can do that with HTML DB. Keep in mind that HTML DB itself is an HTML DB application, so the limits on what you can build with HTML DB are virtually limitless.
    Sorry for the vent there. After spending the last 2
    days trying to figure out how to implement such a
    straightforward thing and now being informed that it
    can't be done kind of bugged me.I understand your frustration, as I've been there before. My rule for beginners is that if you are writing more than a line or two of code in the first week, you're doing something wrong. Stop, take a break, and then use the ample resources (including searching this forum) to help solve your problem. There are plenty of resources available for you to learn about HTML DB on the HTML DB home page: http://otn.oracle.com/htmldb
    Good luck,
    - Scott -

Maybe you are looking for

  • SDK 2007 on SAP B1 2005 Company Database

    Hi Guys, Does anybody know how or could we use the library of SDK 2007 (SAPbobsCOM2007.dll) on company that still running SAP B1 2005 SP1 ?? Currently in my system has installed : 1. SAP B1 Server 2005 2. SAP B1 Client 2005 3. SAP B1 SDK 2005 4. SAP

  • Unable to find Adobe PDF Printer

    I am trying to convert a Word document into a PDF by right-clicking on a Word document and telling it to Convert to Adobe PDF. I keep getting the error message "Unable to find "Adobe PDF" printer or "Acrobat Distiller" printer. Do you want to run the

  • How to change company code in Assignment tab (CJ20n-project builder)

    Dear All, Is there any config to maintain company code in assignment tab (project builder) ? We have a problem in our project. It shows that in basic data, user put company code A (in basic data) but in Assignment tab they put different company code

  • Flex SDK and commercial Websites

    Hello, I have to build and RIA for a Companys Intranet and i am not sure, if it is legal or possible to do so for free with the Flex SDK? I also would like to know, whats the difference between the Free Adobe Flex SDK and the OPen Source Flex SDK? Wh

  • Latest Security Update - Mac os/x 10.4.6

    Since installing the update today, my Intel imac is complaining that it cannot find the AirPort driver. Can anyone tell me how to install it? I cannot believe this is happening on an Apple. I moved from Windows cause I thought it would be more reliab