Supplier Statement - Print Layout Issue

Dear Guys,
Im trying to display a supplier ref no. on the suppliers liability ageing statement through the "BP Ref No" field. I am trying to grab the ref no entered through the AP Invoice field "Supplier Ref No"
This field is sent through to Journal Entry "Reference 2" field and this is where im trying to pick it up in the Print Layout. This is however not working, im only seeing a blank in the print-out when i point to this field.
Any ideas why this is not working?
TX in advance.
Lebo

If you talking about Vendor liability Aging report then please use the By purchasing document tab in the Selection window and you will see the Ref number both in the Aging Report and the Vendor Statement

Similar Messages

  • Dunning Report Print Layout Issue

    Hi
    I have a problem with the Dunning Report Print layout (Dunning All (system)). In the wizard I select all the Invoices (Which are over due and current) for the BP and sent to printer.
    In the print out all the due dates are mixed with the acctual Due dates.
    Acctuall Invoices
    Doc No.                  DOC Due            Level
    ======================================
    10000                     05.11.07              2
    10001                     25.02.08              1
    10002                     03.03.08              1
    10003                     03.04.08              0
    Print out
    Doc No.                  DOC Due            Level
    ======================================
    10000                     05.11.07              2
    10001                     03.03.08              1
    10002                     03.04.08              0
    10003                     25.02.08              1
    How can I fix this. This is coming from the System template and we havent change anything.
    Could you please help me.
    Thanks
    Sanjaya

    Hi
    I solved the problem. But the issue was when i ran the dunning wizard the layouts messed up. For example if I had a dunning letter with 3 lines (overdue documents). The last line would copy itself 4-6 times (it would show the last document 4-6times so the total lines in the dunning letter would be 7-9 lines). But I solve the issue. Somehow the attention person (which I got from the contact persons (ocrp) and not from the document contact person (oinv) ) did the issue. When i switch it to the oinv the issue was gone.
    kind regards
    Søren
    Edited by: Bundgaard Søren Hollænder on Jan 26, 2009 9:56 AM

  • Reporting Agent - Print Layout - Issue in Displaying Key Figures in Rows

    Hi,
    We have issue while printing reports using Reporting Agent. As part of Query Definition we have Structure of key figures in Rows. But while creating Reporting Agent , in Print Layout option – Under Table – Rows – we are not able to drag Structure of key fig.
    What could be the solution to this issue. How can we use key figures in rows?
    Thanks in advance.
    Samir

    Hi,
    putting product in the rows will slove the issues as the unit cost  depends upon the  prdoduct and therefore it will uniquely identify each of the material and then it will get multiplies with the qty and therefore you will get the correct result.
    this kind of issue you will always face when you are going to multiply cost with the Qty and as the cost differ with the individual material.
    Also putting material into the rows will cause the no. of rows to increase as all the materials will show up in the individual rows for the particular month.
    Also you can make a claculated key fgure for the multiplication and use before aggregation.
    But for that your both the key figures should be in the same cube i.e. in the same rows or the before aggregation will not work you will not even get an option of before aggregation in the CKF if the key figures belong to two different cubes.
    Since your qty and cost are coming from two different cubes before aggreagtion will not work here.
    And if you do before aggregation then you report will become quite slow as it will do all the multiplication anf then will bring the result.
    So it depends on your requirement and your design how to proceed.
    Hope it helps
    Thanks

  • Print Layout issue in repeat area

    Dear Experts,
    I am not familar withe print layout and would like to know where I can learn more on this module ...??
    Due to the repeated area alway only priinted several (2-3) lines then leave blank the remaining space of the first page and push the last line to next page with page footer.
    Is there any setup I missed?
    Pls kindly advise.
    Thanks!
    Emily

    Dear Ms Liu,
    I would recommend to look at the document
    How to Create Query Print Layouts
    on the customer partner portal under the version 2007a - How to Guide:
    https://websmp109.sap-ag.de/smb/sbocustomer
    Also you can search for notes with the component SBO-GEN-PLD*
    Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • Dunning wizard print layout issue.

    Hi every one
    I need some help regarding the dunning wizard layout. Iu2019m having an issue where the last line in layout duplicates itself 4-6 times.  The weird thing is that first lines are fine but only the last one that does it.
    Kind regards
    Søren

    Hi
    I solved the problem. But the issue was when i ran the dunning wizard the layouts messed up. For example if I had a dunning letter with 3 lines (overdue documents). The last line would copy itself 4-6 times (it would show the last document 4-6times so the total lines in the dunning letter would be 7-9 lines). But I solve the issue. Somehow the attention person (which I got from the contact persons (ocrp) and not from the document contact person (oinv) ) did the issue. When i switch it to the oinv the issue was gone.
    kind regards
    Søren
    Edited by: Bundgaard Søren Hollænder on Jan 26, 2009 9:56 AM

  • Converting simple report output to PDF print layout issue

    Hi all,
    I am converted one report output to PDF format, it is working fine in one DEV sever, but when we moved it to other server the layout of output preview & font size  is not coming properly (as same in DEV server)  in the new server. I am using the below code, please check & correct me if anything is wrong.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
          EXPORTING
            copies                 = '1'
            cover_page             = space
            destination            = 'LOCL'
            expiration             = '1'
            immediately            = space
            mode                   = space
            new_list_id            = 'X'
            no_dialog              = 'X'
            user                   = sy-uname
            line_size              = 200
            line_count             = 65
    *        layout                 = 'Z_65_230'
            layout                 = 'X_58_170'
            sap_cover_page         = 'X'
          IMPORTING
            out_parameters         = mstr_print_parms
            valid                  = mc_valid
          EXCEPTIONS
            archive_info_not_found = 1
            invalid_print_params   = 2
            invalid_archive_params = 3
            OTHERS                 = 4.
        IF sy-subrc EQ 0.
    **--Creating Spool Request.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              jobname          = lv_job_name
            IMPORTING
              jobcount         = lv_job_count
            EXCEPTIONS
              cant_create_job  = 1
              invalid_job_data = 2
              jobname_missing  = 3
              OTHERS           = 4.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ELSE.
    **--Submitting the Report & Get the Output.
            SUBMIT  zpsr_submit_prcng WITH SELECTION-TABLE t_ebeln TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                                  SPOOL PARAMETERS mstr_print_parms
                                  USER             sy-uname         " User for runtime authorizations
                                  VIA JOB          lv_job_name
                                  NUMBER           lv_job_count
                                  AND RETURN.
            IF sy-subrc <> 0.
              MESSAGE ID    sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH  sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ELSE.
              CALL FUNCTION 'JOB_CLOSE'
                EXPORTING
                  jobcount         = lv_job_count
                  jobname          = lv_job_name
                  strtimmed        = 'X'
                IMPORTING
                  job_was_released = lv_job_released.
              IF sy-subrc <> 0.
                MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
              ENDIF.
    Thanks & Regards
    Avish
    Moderator Message: Please use code tags when pasting code snippets. Also paste relevant portions of the code
    Edited by: Suhas Saha on Jul 13, 2011 3:05 PM

    Dear Alexander,
    Thanks for the reply.
    In this I am using the FM 'CONVERT_ABAPSPOOLJOB_2_PDF'. I have checked the settings from SPAD that is also same in both servers for particular output device. But the patches are diffrennt in both the servers, the server from which layout is not coming properly having the high level patches in compare to the other server(which is working fine).

  • Print layout - Goods issue & Issue for Production

    I designed two print layouts separately 1 in Goods issue for Goods issue in inventory module
    and 1 in Issue for production for Issue for production in production module.
    If i take a print preview or print in Issue for production , it will reflects the print layout designed in Goods issue.
    regards
    kavitha S

    Hi Kavitha,
    I think, are you duplicate the Goods issue PLD Template to Issue for Production PLD Template on Duplicate Layout Template.
    Best, Try to create a New PLD from Issue for Production(System) PLD.
    Regards,
    Madhan.

  • My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    Soution: Delete the printer and add the same printer back in, therefore creating a new print queue.

  • Minor Layout Issue when Printing Invoices in Chrome (v20.0.1132.47)

    This is a relatively minor issue in the big scheme of things but a client of ours has reported a layout issue when bulk printing invoices in Chrome. It could be default browser behaviour which BC has no control over but I thought I’d submit it anyway.
    It occurs when you’re viewing the default Order Report (http://www.yourdomain.com/AdminConsole/#!/CRM/OrderList.aspx) in the BC v3 interface and you want to print invoices in bulk (see screenshot below).
    When you print invoices in bulk in Chrome they print on overlapping pages, as opposed to Firefox where each invoice will print on a separate page, which makes management much easier for our client. I’ve tried tinkering with the print settings inside of Chrome but I can seem to change it.
    Does anyone know a way around this or are we dealing with default browser behavior that is out of our hands?
    Cheers,
    Matt
    [email protected]

    Could someone assist please?
    I am having a similar problem.
    thanks

  • Printer offline issues

    Hi all,
    3.4 GHz iMac running 10.6.8.  Software update current.
    Epson NX430 (new) connected via wifi.  All installation, including downloading the current drivers from Epson, went smoothly.  Printing and scanning wirelessly does indeed work.  But...
    After a while, the printer, or the Mac printing system, sends the printer "offline."  When I send a document to the printer, I get a warning icon from the print monitor, and the NX430 print monitor window says "Looking for printer.... printer offline."
    The quick fix for this is to power cycle the printer (obviously a pain).  Interestingly, this was the same issue I had with the HP Photosmart 4400 device that the Epson replaced. That HP printer was hooked up via USB, but didn't scan except to PCs, so the switch was to fix that and hopefully also fix the printer offline issue at the same time. But this experience leads me to think that the problem is with the OS, and not the printer.
    Other things I have tried:  Restarting the iMac.  Deleting and re-adding printer.  Resetting the printing system (this worked for a few days, I think, although it is hard to be sure of cause and effect). Checking the network connections -- printer and gateway IP addresses are correct, and even when getting the printer offline message, I can successfully ping the printer.
    One more thing.  When the system is in this "printer offline" state, trying to activate either the printer utility, or check supply levels, results in an error message, even though I have verified network connectivity with a ping test.
    Any ideas?
    Thanks,
    Dave

    alicedave wrote:
    Checking the network connections -- printer and gateway IP addresses are correct, and even when getting the printer offline message, I can successfully ping the printer.
    One more thing.  When the system is in this "printer offline" state, trying to activate either the printer utility, or check supply levels, results in an error message, even though I have verified network connectivity with a ping test.
    With the ping getting a response from the printer it would suggest that the symptom is not network related but more to do with the supporting software, or more so with the protocols it uses to communicate with the printer. I would guess that the printer supports Bonjour and you would have added the printer by opening the Default Add Printer view and selecting the printer that was shown in this view. If this was the case then a suggestion would be to look at using an alternate protocol for the print queue, providing the printer does support such an option. If you can check the network settings for the printer there may be the option to use/enable print protocols such as LPR. With this active, the printer can be added using IP > LPD. This requires you to enter the IP address of the printer and then browse for the printer driver.
    If such an option to use an alternate print protocol does not exist then something else you can test when the printer goes offline is the scanning. Does this also fail?
    And can you confirm? You said you had to power cycle the HP to get it working again. Do you have to do the same with the Epson to get it printing again?

  • R12:Supplier statement report

    Hi
    What’s the report in oracle AP R12 Can I use for print "supplier statement"?
    And if I print the report of invoice register “mines” the payment register
    This will represent the supplier statement
    (Invoice register - Payment register = supplier statement)
    Or the “Supplier Aging” report represents the supplier statement
    (Supplier Aging = Supplier statement)
    Kindly , Advise . this report one of the highly required report need to show to the client
    Thanks

    Hi;
    The report is displaying in XML format as it should come in the pdf format i searched in oracle support it ask to apply the patch.
    R12. Supplier Statement Report Output Is in Xml Format
    I Have applied but no change can anyone suggest on this one.You already logged sr, We do not know you applied which patch and why oracle suggest that patch. So for your issue the best way keep updating SR and work wiht oracle Support.
    Regard
    Helios

  • Print module issues

    Hi,
    for me there are three issues that are missing / should be improved with the print module:
    The  sharpening quality and setting options are still behind i.e. Qimage.  Having  in mind what Qimage is costing, it should be fairly ease for  Adobe to  reach the better Qimage output sharpening quality.
    Soft proofing is still missing and should be added in the next major release at the latest.
    There  should be something like a loop view for the print layout screen. When  using large format printer formats the rulers become extremely small that an  exact positioning is almost impossible.
    Looking forward to these, in the given priority.
    Thomas

    G_Lat wrote:
    The print resolution is no longer displayed making it difficult to decide if I need to modify the resolution prior to printing.
    Why would you modify the resolution? One of the huge advantages of Lightroom is that you don't have to do things like this anymore.  You simply choose the output resolution in the Print Job panel and Lightroom takes care of the rest.  How (and why) exactly are modifying resolution?
    As to your second question, I am getting a print preview when I turn it on in the printer driver. Although I would never use it, it is working here.
    It might help to submit some system info and some printer info:

  • Print Layout Designer or Crystal.....! What to do?

    Dear All,
    We need to link our User forms to Print layouts in order to make our reports work exactly the way SAP reports work. Is there a way to enable the print and print preview toolbar buttons and make them show our Report Layout? So far the response from SDK Forum is not encouraging and many questions regarding the same issue remain unanswered there.
    After looking for the solution in the SDK Forums we came across these two replies from Mr. Nick He and Mr.Frank Moebius. Both are of the opinion that currently SAP does not offer a support for this feature and better use a third party tool. We are not in a position right now to opt for any third party tool but if we get a clear response from your side regarding this matter, we can go for it. Kindly have a look at the following links:
    Re: Print Layout  Design for user form in SapBusinessOne2005A(6.80.317) sp:01.?
    Re: Add PLD Layouts in 2005 through sdk
    The recommended solution within SAP B1 to develop Add-on reports is through User Queries and creating a Print Layout and run them via Query Manager Window. This approach in our view has the following drawbacks that make it less friendly with the end user:
    1. Add-on forms appear in the left pane/menu, whereas reports would have to run through Query Manager only, which is in fact a small toolbar button on the top right side. We can add the Query Manager link to user menu but it doesn’t solve the problem.
    2. A user with full authorization over the Print Layout can accidentally overwrite it by clicking the Create Report Button, whereas in case of SAP Reports the Layouts remain unchanged and only saved as a new Layout and set as Default Layout for a report. Add-on Reports cannot do this.
    3. Different behavior of Layouts in Query Manager on Single Click and Double Click. In the Query Manager, if a user just selects a query by a Single Click and views a Print Preview (Layout) then the custom user Layout appears. But if a user Double clicks a query then the Query Window appears, exposing the query and making it editable. Also the Preview(Layout) is different in this case. The user can either view the Window or Table Layout in this case. Hence this exercise would make the user confused and prone to errors.
    4. The Parameter/Criteria window that is SAP generated is not enough to fulfill user friendly interface requirements. Is there a way to add List boxes or Combos to that form. The parameter selection Checkboxes also behave in a strange way that even the experts find difficult to manipulate. If they are of no use, what’s the point in having them on the form in the first place.
    All these points are leading us to confusion over the decision as to whether go for Query Based Reports or use Third Party tools. Kindly help us out in this regard. Your response would help us save some valuable time for our Add-on Development.

    <<< If there is a solution then it has to be from SDK. We can only opt for third party components and frameworks only if any of the SAP representatives ensure us that the current version of SDK does not offer such support.>>>
    The answer to that is to lodge your query as an Issue to SAP directly as a support question or go through your local SAP representative. If the functionality is not offered by SAP you can do a Development Request ( DRQ) and SAP will develop it if they think it will become userful.
    <<<If this Forum is not meant to be answered by SAP representatives then kindly tell me any other Technical Support Portal from where i can get the answer directly. >>>
    This forum is accessed mostly by SAP Business One Developers on SDK. However we are fortunate that some SAP employees who are very knowledgeble take some time off to answer queries.
    Since it is a Forum, no one is obliged to answer. As indicated above , Try SAP directly if you need a definite answer.
    <<<>>>
    Since you mentioned Crystal: We as SAP Business One SDK developers, have come across similar issues and opted for a Inhouse developed Crystal Solution. It has been so popular we are selling it as a Generic add-on to B1.
    Regards,
    Indika.

  • Query Print Layout question

    How do you delete a report from the Query Print Layout? It does not give me the option to delete the layout.
    Any help is appreciated, thanks
    -David

    Hi,
    You can check the following thread for your issue as well :
    How to delete QPLD
    Regards,
    Jitin

  • Get credit memos to print on Dunning Level - All Print layout

    Greetings,
    I am wondering why credit memos do not show on the dunning level - all print layout.  If I click on the edit icon it lists credit memos within here and it looks like they should print, yet when I run the wizard and I have a customer with a credit memo on their account it does not show on the statement printout.  Any ideas?
    The only clue is on the dunning recommendation report all outstanding invoices get flagged to dunning level 1 whereas the credit memo stays at level 0.
    Thanks for any help you can give.
    Aaron

    The reason behind - might be an outstanding functions need to be developed later or a bug.  Only if the link is there, you may print them out.  This is a fixed PLD that you don't have any controls.
    Thanks,
    Gordon

Maybe you are looking for

  • Problem making an Excel file from a jsp

    Hi. I'm developing a web application that uses Excel for printing the reports. So far everything has worked fine, at least for the created Excel files that do not have any images on them. Now I need to create an excel file with an image as the header

  • I need to take a video off my iPod nano.

    I think it's a 4th generation one. I don't have iTunes on my current laptop and have no idea how to do this. Can someone help please? Thanks

  • Hyperlink opening in Oracle

    Hi, In my Oracle database dump file pdf files were stored as BLOB. Is there any way to check the stored hyperlink to open in Oracle 10g? or Any external functionality required to check the stored PDF files whether those were stored properly or not? R

  • How do I transfer PSE 7 to my new computer?

    I wish to transfer PSE 7 to my new computer.  I no longer have the activation code. How can I accomplish this?

  • I Can't Open my iPhoto? HELP PLEASE

    I can't open iPhoto and how can i get all the photos that i uploaded in iPhoto without opening iPhoto?