Hp-check incorrectly reports 'python3-reportlab needs to be installed'

So I have hplip installed, and I ran
hp-check
, and it reports (truncated):
libusb libusb - USB library REQUIRED - 1.0 OK -
error: python3-reportlab Reportlab - PDF library for Python OPTIONAL 2.0 3.1.44 MISSING 'python3-reportlab needs to be installed'
python3-pyqt4-dbus PyQt 4 DBus - DBus Support for PyQt4 OPTIONAL 4.0 4.11.3 OK -
Despite the fact that:
[archie@archippocrates ~ ]$ pacman -Ss python-reportlab
community/python-reportlab 3.1.44-1 [installed]
A proven industry-strength PDF generating solution
[archie@archippocrates ~ ]$ pacman -Ss python2-reportlab
community/python2-reportlab 3.1.44-1 [installed]
A proven industry-strength PDF generating solution
Anyone have any idea what I'm doing wrong here?

It was our pleasure to help address your service issues and get the credit on your account. Please post back anytime you need assistance with your service.
Anthony_VZ
**If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

Similar Messages

  • Report on Training need management

    Hello,
    we have to report on training needs by employee with delivery method : we need a report to show booked and not booked for all training needs for all employees with the delivery method of the training.
    Is there a standard report? can we create a query?
    please advise
    BR,
    K.

    There is no standard report for this.
    You can create a query BUT your requirements won't be met in a single query. Report on employees booked for trainings is easy. Remember though, that ad hoc query only displays EXISTING records not records that are not there e.g. employee who ARE NOT booked to trainings with certain delivery method.
    Heres what you do: activate the Rel. BE Type/Att in V_T77KV_2 for Person (or other otypes you want to report on). You do this so that you'll have direct relationship between D and P. Remember that Delivery method is stored in the D object type not in E.
    You might have ideas on using E as start object in your infoset. Sure you can display the 'attended by' relationship between E and P but you won't be able to filter by Delivery Method because, like i said, it is stored in the D object type not E. You hear.
    Heres what you do next.
    1. Create a query for the employee population you want to report on e.g. all Permanent employees.
    2. Create infoset with starting object P. Include 034 relationship to D. And all infoytpes of D object.
    3. Create a query for all employee with that population (Permanent Employees) who have relationship P 034 D and then select the Delivery Method as parameter. The search result would show all employees who have attended that training with the delivery method you specified.
    4. You cross-check this list with the result in step 1 to get the list of employees who HAVE NOT attended the training and then wham bam thank you maam. now give me points. lol

  • Template is not attached to AP Check Printing report (XML Publisher)

    Hi Guru,
    I have implemented XML publisher version of AP check Print report and did all the setups. When we make the payment in payables it automatically submits check print report. The report is completed successfully, but no output.
    When I check View details button noticed that template layout is not attached to the report.
    Please do the needful.
    Thank in Advance,
    Venkat.

    Hi,
    The following are the Instance details
    OS : OEL5
    Database: 11g
    EBS : 11.5.10.2
    I have completed all the setups for the report and I am able to see the template attached to the request for other reports where we submit them in SRS window.
    But "AP check Print report" submits automatically through the form while making the payment against supplier in AP.
    Thanks in Advance,
    Venkat.

  • How to Check the report is Finished while calling a report from Forms 6i

    Dear All,
    I am Calling a report from oracle forms 6i, after runing report in " Run_Product(REPORTS,:fn_cntl.nb_report_name,ASYNCHRONOUS, RUNTIME, FILESYSTEM,pl_id, NULL);"
    I need to copy the pdf to store it in another place once the report is generated.
    My Problem is : that i want ot Check first the report has generated after " Run_Product(REPORTS,:fn_cntl.nb_report_name,ASYNCHRONOUS, RUNTIME, FILESYSTEM,pl_id, NULL);" is executed ? How to check the report is generated ot not?
    As i tried to use the below procedure after "Run_Product(REPORTS,:fn_cntl.nb_report_name,ASYNCHRONOUS, RUNTIME, FILESYSTEM,pl_id, NULL);"" but his does not work... nothing happens
    {code}
    PROCEDURE FPC_COPY_REPORT (p_report_name varchar2) IS
         repid REPORT_OBJECT;
         v_rep VARCHAR2(100);
         rep_status varchar2(20);
         lv_id varchar2(1000);
    BEGIN
    repid := find_report_object('AMTP_995.RDF');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
         if rep_status = 'FINISHED' then
         message('Report Completed'); message('Report Completed');
         else
              message('Error when running report.');           message('Error when running report.');
         end if;
    END;
    {code}
    Any Help

    actually My code is this:
    declare
         ln_alert          number;
         pl_id               ParamList;
         lv_report_name varchar2(10000);
         lv_path  varchar2 (100) := 'C:\';
         lv_shared_path  varchar2(1000);
         lv_copy_file varchar2(10000);
      cursor cr_dir_path IS
      select v_dir_path
      from md_directory
      where v_dir_code ='SHR';
      lv_file_name varchar2(1000);
    BEGIN
      open cr_dir_path;
      fetch cr_dir_path into lv_shared_path;
      close cr_dir_path;
    lv_report_name :=  lv_path||:fn_cntl.nb_ref_no||'_M08600000_'||to_char(sysdate,'YYYYMMDD-HHmmss')||'.pdf';
      if ffn_check_fields  THEN
         pl_id := Get_Parameter_List('LAI');
             IF NOT Id_Null(pl_id) THEN
                 Destroy_Parameter_List( pl_id );
              END IF;             
              pl_id := Create_Parameter_List('LAI');
           if :fn_cntl.nb_report_name ='MMAT_REPORT'
                then
                     if :fn_cntl.nb_report_desc ='EXPORT'
                          then
                         Add_Parameter(pl_id, 'PARAMFORM',TEXT_PARAMETER, 'NO');
             Add_Parameter(pl_id, 'DESTYPE',  TEXT_PARAMETER,'File');
            Add_Parameter(pl_id, 'DESNAME',  TEXT_PARAMETER, lv_report_name);
            Add_Parameter(pl_id, 'DESFORMAT',TEXT_PARAMETER,'PDF');
            Add_Parameter(pl_id, 'p_mat_no',TEXT_PARAMETER, :fn_cntl.nb_mat_no);   
            Add_Parameter(pl_id, 'p_ref_no',     TEXT_PARAMETER, :fn_cntl.nb_ref_no);
            Add_Parameter(pl_id, 'p_verified_by',TEXT_PARAMETER, user);
                     Run_Product(REPORTS,:fn_cntl.nb_report_name,ASYNCHRONOUS, RUNTIME, FILESYSTEM,pl_id, NULL);
          DECLARE     
               repid REPORT_OBJECT;     v_rep VARCHAR2(100);     rep_status varchar2(20);BEGIN
                         /* REP_OBJ= REPORT OBJECT CREATED UNDER REPORT NODE AT FORM */
             repid := find_report_object('MMAT_REPORT');      v_rep := RUN_REPORT_OBJECT(repid);
                        rep_status := REPORT_OBJECT_STATUS(v_rep);          
          if rep_status = 'FINISHED' then
              message('Report Completed');          message('Report Completed');
             --copy_report_object_output(v_rep,'c:\local.pdf');
             -- host('netscape c:\tlocal.pdf');     
         else          message('Error when running report.');
                                          message('Error when running report.');     
         end if;
                 END;
         end if;
      end if;
           if :fn_cntl.nb_report_desc ='EXPORT'
                then
                  error_handler('This report will be Storde in ' ||lv_report_name||' and '||lv_shared_path|| ' Location',3);
                     lv_copy_file :='copy '||' "'||lv_report_name||'" "'||lv_shared_path||'"';
                     host(lv_copy_file,no_screen);
                  error_handler('Report Has been Generated Sucessfully.',3);
           end if;
        end if;
    END;I will try first the another solution you have replied perviously... and will let you no the results... thanks a lot...

  • Check Standard reports

    Dear All,
    Can any one explain me how to check Standard reports in SAP? Are there any T-Codes for this or what is the flow I need to follow?
    regards,
    buddhika

    Hi
    See Note 491519 - Standard analyses - Transaction codes and reports
    I hope this helps you
    Regards
    Eduardo

  • Webi selecting incorrect report

    Hi,
    I have a user of webi who when they double click a report it shows the report next in the list to it esentially displaying the incorrect report. No other users have experienced this issue and before removing and adding them back into business objects i'm wondering if there are any work arounds for this?
    The reports are scheduled and if you right click then view the report the correct report is displayed.
    Cheers

    >
    guildy wrote:
    when they double click a report it shows the report next in the list to it esentially displaying the incorrect report.
    Why your user need to double click when the report can be opened in a single click???

  • HTML links from Full Check Accessibility report do not open the corresponding PDF links

    I regularly generate full Check accessibility reports for the PDF user guides I create in MSWord. However, when I click the links in the HTML file/report generated, they are supposed to link/highlight the corresponding errors in the PDf file. Instead, I get an error message that "There was an error opening this document. Bad parameters."
    How can I get the links to work so I know which section in my PDF has the error (inaccessible items).
    Thanks

    I understand you are creating HTML reports and then using them to find errors/view the PDFs. 
    Is this a new problem or  have you always had problems with the links?  If it's a new problem, what has changed on your system?
    Can you view other PDFs in your browser? 
    Have you moved any of the files since you created the report -- as you may know the HTML report references a specific lcoation on your hard drive and if you moved the PDF after creating the report, it may not be able to find the file.

  • Does the Report Generation Toolkit need Office?

    Quick question: Does the Report Generation Toolkit (V1.1.3 for LV 8.6) need Microsoft Office installed in order to create Word documents?
    I have a need to create reports, preferably in Word format, but the target machine may only have the Word reader installed, not Office.
    Thoric (CLA, CLED, CTD and LabVIEW Champion)
    Solved!
    Go to Solution.

    Yes, you need office.
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)

  • I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the bad template with a blank.

    I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the unwanted template with a blank. It was previously possible to go to MY TEMPLATES and remove the unwanted templates. I don't if this issue is before or since installation of 10.8 (a nightmare in my case, which led to significant failure issues).  And because I haven't tried to remove templates since finally managing to install 10.8 (now at 10.8.4), I don't know if this is typical of the newer OS or a problem. I've been a Mac user for more than 25 years, but I think I'm nearing the end of the road. By the way, I've never needed to do this before because the manuals always offered an answer... they don't seem to do that anymore. In any case, I don't know how this works... I'd prefer an email reply if that's possible. But that would probably be too easy, and I don't know how to get a reply.

    Thanks, I appreciate the help.  I think this is one of the problems Apple is creating by changing the OS so often. I had fomer colleagues at [a major aerospace contractor] who told me that so many original files were ultimately lost because of the deadly change in the "Save As" operation that they are now afraid of every OS update. Apple has badly damaged their support base with that very prominent company (they won't update now until they've fully examined and understand changes in the pre-conditioned nature of OS computer functions), and they are a whole lot less enthaled with Mac-related equipment/software. Can't blame them, I too used orginal files that way (as easy-to-use templates), and lost some important files before I realized what was happening (to late to revert). Companies should not have to retrain employees each time an OS gets an update, it's can be very expensive several different ways. They learned a painful lesson with that one. And because I'm now retired and don't use multiple devices, I need iCloud like I need a hole in the head... but I'm told there's no way to keep Apple out of my computer. Fortunately, because of major problems when initially installing Mountain Lion, one hold-over of the hardware/software damage I experienced was that iCloud can no longer access my computer even though everything else is working fine again. That was the only "good luck" I had as a result of that expensive nightmare.

  • Check register report

    Anyone know of a good check register query, report, XL report etc...out there for B1. The report they have is horrible and does not give a ton of details...
    I am not an SQL wiz so I was hoping to find a XL report or query out there I can learn from
    Thanks

    Sorry I beg to differ on the "super" check register report that B1 offers. The only decent report I have seen come from the payment wizard where you can see exactly what you paid and to whom. Ya maybe you get the summary of the checks, but I have come across many who want more details....this would be for both outgoing and incoming and this is not as easy to get or add to the standard report.
    If you have a query and would love to share it....I will take it and see if it will help with what we are looking for. Thanks in advance!

  • Check print report PaymentAmountText field gets spaces while using RPAD Fn

    Hi,
    In the check print report we are using the PaymentAmountText field to print the amount in text.
    After printing the remaining spaces should be filled with '*'
    I used the below command
    <?xdofx:rpad(PaymentAmountText,100,'*')?>
    But the output is as follows:
    Twenty-Five       Pounds    And      Fifty     Pence
    Only***********************************************
    There is a huge space between two words.
    So please suggest some ideas to remove the space between two words.

    There is a huge space between two words.
    So please suggest some ideas to remove the space between two words.
    you can use normalize-space(tag_name) like
    Result - <xsl:value-of select="normalize-space('Initial     werwe rrr r     r')"/>
    and result as
    Result - Initial werwe rrr r r
    also look at Re: Problem with Rpadding in RTF

  • Check Registry Report

    Experts,
               Hi all, I have a client who is wanting to run a check registry report and wants to use the print date or creation date. If you have any suggestions please let me know. Thanks!
    Jeff Haldeman
    Support One

    Hi Jeff,
    If you want to customize system query, you can catch it by profiler.
    Open SQL Server Management Studio.
    From Menu select Tools -> SQL Server Profiler
    Create a New Trace by selecting File -> New Trace
    Then click on the report in SAP B1. By the SQL Trace, you can find out the System Query in the Trace Window.
    Thanks,
    Gordon

  • Display the Customer/Vendor Name in the Check Register Report

    Just would like to ask if its possible to display the Customer/Vendor Name in the Check Register Report? The format simply have the Customer/Vendor Code on the said report.  Is there a work around on this?
    Thanks...

    Llowen,
    You may develop a Query like this
    SELECT T0.CheckNum, T0.PmntNum, T0.VendorCode, T0.VendorName,  T0.TaxDate, T0.CreateDate, T0.PrnConfrm, T0.CHECKSUM FROM OCHO T0
    WHERE T0.Canceled = 'N' AND (T0.CheckDate BETWEEN  '[[%0]]' AND '[[%1]]') OR (T0.CheckNum BETWEEN '[[%2]]' AND '[[%3]]')
    Suda

  • Standard Report RFKABLOO i need to add email functionality

    In Standard Report RFKABLOO i need to add email functionality. I am a bit
    Confused with the field groups used and insert statements as:
    INSERT
      icdpos-tabname
      icdpos-tabkey
      icdpos-fname
      icdpos-chngind
      icdpos-f_old
      icdpos-f_new
      fldtype
      fldleng
    INTO daten
    Its having some includes too flags set. Can anyone suggest how to proceed.

    Hi,
    did you try STR+F7?
    do you mean report RFKABL00 (00 -> zero zero) or oo?
    We only have RFKABL00 (zero zero)!
    regards, dieter

  • I have SSRS parametarized report in that one data set have repeated values with query parameter . but while am mapping that query parameter to report parameter i need to pass distinct values. How can i resolve this

    I have SSRS parametarized report in that one data set have repeated values with query parameter . but while am mapping that query
    parameter to report parameter i need to pass distinct values. How can i resolve this

    Hi nancharaiah,
    If I understand correctly, you want to pass distinct values to report parameter. In Reporting Service, there are only three methods for parameter's Available Values:
    None
    Specify values
    Get values from a query
    If we utilize the third option that get values from a dataset query, then the all available values are from the returns of the dataset. So if we want to pass distinct values from a dataset, we need to make the dataset returns distinct values. The following
    sample is for your reference:
    Select distinct field_name  from table_name
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • IPhoto crash on import (not 3ivx?)

    Hello!. I've browsed through the boards for this question and come upon many similar answers. I could be mistaken, but I don' t think what's been posted is working for me. I am running Lion 10.7.4 and iPhoto 8.1.2. I'm having an issue importing certa

  • Share, Save as PDF and Find in Page are grayed

    Sahre, Save as PDF and Find in Page are grayed in settings. I uninstalled and deleted Firefox 34.0.1 from f-droid.org. Redownloaded and reinstalled Firefox. I am using a Motorola Droid 3 with Android 2.3.4.

  • Does the 'CallSapAdapter' adapter module perform the FCC?

    Hello, I have a scenarion where Step 1 - An encrypted file has to be picked by the sender file channel Step 2 - It has to be decrypted (we have developed an adapter module for doing this, so no problem with that) Step 3 - It has to be FCC'ed (since i

  • Help needed to load a viewer control in Access

    Hi, I'm having a problem viewing a Crystal Report in Access.  The code looks like this: Dim crApp As New CRAXDRT.Application Dim crRep As CRAXDRT.Report   'load a standalone report created in the designer     Set crRep = crApp.OpenReport("c:\fax\data

  • Installing FCP6 on new MBP

    I have just purchased a new MBP duo 2008 and want to install my copy of FCP Studio 2 on it. My previous laptop was a PowerBook G4. I upgraded from FCP5 about a year ago and removed the sticker with the FCP 5 serial #. Now, when I try to install FCP S