Can't load Print Layout Designer from Query Manager

Hi All,
I'm facing this issue when I try to load the Print Layout Designer from Query Manager.
I define my own query report and I need to change the layout for the report.
When I click on the print layout designer button is nothing happen.  I've check the the RDOC table the report already created in the RDOC.
How do I call out the layout to customize it?
Please advice.
Thank you.
Regards,
Foong Yee

Hi
If i remember correctly you must use the menu at the top. Click tools->queries->query layout designer.
Hope this helps

Similar Messages

  • Copy Express - Copying Print Layout Designs from one company to another

    Dear All,
    i was wondering if one of you on the forum could help me with copy express.
    I understand through the DIAPI, you cannot code to copy print layout designs, and if you copy the fields through SQL, SAP will no longer support the database.
    It is the first time using Copy Express and am very confused about what to do.
    Could someone post a step by step was of saving a design and then copying from one database to another.
    Thank you so much for anyone that can help.
    Regards

    Hi Troy.......
    You can do this......
    Go to PLDs and save a different copy of every PLDs by making Save as and then try to copy such PLDs.
    I also encountered such problem and I tried the same I suggest you.
    So try once.....
    Regards,
    Rahul

  • Print layout designer for develop report based on query

    Dear Experts/Gurus,
    I am amazing about the manage previous reconciliation report. When I opened it using print layout designer, it looks like the report is not built using query, but I am not sure yet. This is very confusing. I created query similar with manage previous reconciliation (MPR), but when I link the query to print layout and try to make similar format/appearance with MPR report (reconciliation management (system)), it is not success.
    Isn't the MPR report built not based on query ? I appreciate your answer. TIA
    Rgds,

    Hi,
    I am not sure I understand what's the problem:
    Is it the layout that is different or the data?
    Regarding the data you can use SQL Profiler (maybe you did?) to find out what queries are fired, but please note that there are some stored procedures in the DB that are used for some specific functions - not sure whether the "MPR" uses any of these.
    Then you must include some non-default filter in SQL Profiler...
    ...but you can also use the logging functionality in B1 for that purpose:
    Just activate the logging (see the "log" folder in the B1 subdirectory) in the corresponding config file: choose the option to have the SQLs logged in conjunction with the logging being triggered in all cases (not just error).
    Thus you will get all the SQLs - just plain - from the B1 application, but note that it will obviously slow it down!
    HTH,
    Frank

  • How to use query print layout design

    i have a sql query and i want to see its result on report with the help of print layout design.

    In addition to Tuvia's answer, here is the printing procedure of query PLD:
    Printing User-Defined Queries
    Use
    After you have linked a user-defined query to a user report template, you can print it according to its linked print layout.
    Procedure
    To print a user-defined query, use one of the following two procedures:
    Using the Query Print Layout window:
    1. Choose Tools u2192 Queries u2192 Query Print Layout.
    2. Choose the Reports tab page and select the query you would like to print.
    3. Choose File u2192 Print.
    The user-defined query is printed according to its linked print layout.
    Using the Queries Manager window:
    1. From the toolbar, choose with the quick info text Queries Manager.
    2. Select the query you would like to print.
    3. Choose File u2192 Print.
    The user-defined query is printed according to its linked print layout.
    You can also display a print preview for user-defined queries. To do so, choose File u2192 Print Preview.
    Printing User-Defined Queries with Variables
    Use
    When a user-defined query contains variables, its linked print layout will also display the variables data and print them.
    In the print layout linked to that query, you can see that an additional area containing the condition's parameters was added
    There is pdf file relate to Query PLD in  the SAP service marketplace website.
    Rgds,

  • Adding data field in query print layout designer (PLD)

    Dear Experts/Gurus,
    I would like to add data field in query PLD in repetitive area1 but it can't. The query I made excluding sequence no., so I think I must use datafield for that. I  use textfield in the repetitive area header1. is it correct what I have thought, I mean is it really datafield can't be add in the print layout designer if it is from query ? I appreciate your answer. TIA
    Rgds,

    No you can't, you will have to recreate the query with the missing field and recreate a new print layout for this.  Is still a flaw in SAP B1. 
    If you go to the service market place under education you can get the flashbook for the print layout design and the query manager and wizard, study them, they are of great help to understand the technology behind the PLD and the queries in SAP B1.
    Regards,
    WB

  • Help me . Query in " Query Print layout Design "

    Hi Everybody .
    I Design Report by Query Print layout Design , So when I run Report , I see Message : " Table not found Administrator (OA DM)" .
    This is My Query .
    ( Note :this  Query is run ok in Microsoft SQL  . )
    Select Cast(left([dbo].[Get_rate](T0.BatchNum,left(T0.Account,4),T1.U_VNS_JType),5)       as nvarchar(50))+ Cast(T0.BatchNum as nvarchar(50))As No_Number    ,  T0.TaxDate As Date       ,     case left(T0.Account,4)when '1112'then '0.00'     when '1122'then'0.00' else           [dbo].[Get_11](T0.BatchNum,left(T0.Account,4),T1.U_VNS_JType)end  as Amount1              , case left(T0.Account,4) when '1111'then '0.00' when '1121' then '0.00'           else [dbo].[Get_111](T0.BatchNum,left(T0.Account,4),T1.U_VNS_JType) end  As Amount2            , T1.U_VNS_MEMO  As U_VNS_MEMO, T1.U_VNS_VNUMBER as PV_No    , T1.U_VNS_JType as 'Voucher Type'         , T0.Account  As AC_Code    , T3.AcctName as Description  , T0.Debit As Debit ,T0.Credit As Credit        , T1.U_VNS_NAME,     T0.U_VNS_REMARKS   From BTF1 T0                Inner Join OBTF T1 On T0.BatchNum = T1.BatchNum               Inner Join OBTD T2 On T0.TransID = T2.BatchNum                Inner Join OACT T3 On T0.Account = T3.AcctCode                    Where  T0.BatchNum = '[%0]'  Group by   Cast(left([dbo].[Get_rate](T0.BatchNum,left(T0.Account,4),T1.U_VNS_JType),5)       as nvarchar(50))+ Cast(T0.BatchNum as nvarchar(50)) ,  T0.TaxDate   ,       case left(Account,4)when '1112' then '0.00'     when '1122'then'0.00' else           [dbo].[Get_11](T0.BatchNum,left(Account,4),T1.U_VNS_JType)end             , case left(Account,4) when '1111'then '0.00' when '1121' then '0.00'           else [dbo].[Get_111](T0.BatchNum,left(Account,4),T1.U_VNS_JType) end            , U_VNS_MEMO  , T1.U_VNS_VNUMBER    , T1.U_VNS_JType       , Account     , AcctName       , T1.U_VNS_NAME,     T0.U_VNS_REMARKS      order by  Amount1 desc
    Please help me .
    Thank you very much .
    Message was edited by:
            Tran Ba Hai

    Note: This Quey if I change = [%0] by = 1 ,  and I run Report in SAP is ok .

  • 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.

  • Print Layout Designer

    Hi, I want to create one report for sales invoice using 'Print Layout Designer'.
    1. Some fields like Price, Tax Amount are not picking up from Table, rather 'variable' is being used for them. So how to use these variables and on what basis variable number is defined????????
    2. If I have defined one new taxcode(for example Insurance with rate 0.75), then how can I display the tax amount on report??????/

    exactly,
    then you can use query assistant to create a customized query
    ciao

  • Print layout design

    hi friends,
    using print layout design i am getting reports for a purchased item with all types of taxes included.
    i want to display the total cost of same purchased items but more than one and each purchased items having different taxes included with it.
    Example:
    product1:
    cost price:Rs100
    tax:4%
    total cost price:Rs104
    Product1:
    cost price:Rs100
    tax:5%
    total cost price:Rs105
    i want to have final report as:
    product1
    total cost price:Rs209.
    in 2005 .B version
    so please help me out....
    regards,
    varalakshmi.

    Hi,
    If you want to create a base on tax rate, you can, First, goto to Sort and from the Sort properties, set/sort the Product to by ascending the do not check the summarize, then choose the Field where the tax is then check the Summarize then ok.
    In you report proper, make a formula for the rate with Content : Concat(Field_rate) then put from the Group values as '1' then uncheck visible, then create a your report since the rate is not visible it will group according to rate and sort according to product.
    regards,
    Clint

  • Print Layout Designer \Custom Reports

    Hello All,
    Is there a way to set a custom report as default in the Print Layout Designer for A/R Invoice in SAP B1 ?
    Thank you and Best wishes and Happiness in the New Year 2009.
    Ben

    Hello All,
    Thank you for your answer but I would like to be more exact in my question  because I already know how to set a  Print Layout as default in a screen of SAP B1 like A/R Invoice by the way that Parlati has mentioned :
    1. Open a blank AR Invoice (e.g. service or item type)
    2. Click on Menu >> Tools >> Print Layout Designer... or pen icon on toolbar
    3. With The Document Type selected - choose template and click on Set as Default
    But I usually use the Query Manager Tool of SAP B1 to create new queries and reports and I use the Print Layout Designer to setup the layout of these reports. These reports are printed normally via the print preview Icon of the toolbar. But now I would like to know how can I set one of these Reports as default in A/R Invoice screen of SAP. Because it's a one of my customized Invoices.
    Is there a way to do this?
    Thank you.
    Ben.

  • Print layout designer using Crystal report

    Hi Dear;
    how can i create a print layout in crystal report instead of print layout designer
    is any conversion of should i created from scratch?
    from where can i download the crystal report templates?
    regards;

    Hi,
    There is no conversion tool between these two reports.  You have to create them from scratch.
    Check these threads to find out more:
    Sample Crystal Reports
    Re: SAP Business One and Crystal Reports
    Thanks,
    Gordon

  • Transaction Journal Report - Print Layout Design

    Hi all
    Is it possible to add Journal Entry Project Codes to this Transaction Journal Report (Print Layout Design)?
    I tried to add Journal Entry Project Codes to this system PLD but the result still not showing any Project Code.
    Kedalene

    Hi Kedalene Chong
    ou don't need a list of variables to use them. Simply go to View -> System Information so whenever you hover around a field with the cursor, in the left bottom corner of the screen you will see the details of that screen along with the variable number if it is a variable.
    So you will see something like:
    [Form=139 Item=29 Pane=0 Variable=91]
         -> in this case the variable number is 91 - use it in Print Layout Designer.
    So you can just use the variable specified in these details. When creating the print layout, just go back to your form, stand on a field with your mouse and you will see what variable to use.
    Also Check with the PLD Variables Note No 867048...
    Symptom
    Using system variables when designing a print template for the General Ledger report.
    Please note that variable numbers might change when upgrading to a higher version.
    Cause
    FAQ
    Solution
    Field Name
    Variable Number
    Posting Date
    62
    Due Date
    63
    Document Date
    112
    Series
    140
    Document Number
    141
    Transaction Number
    65
    Journal Voucher
    66
    Reference 1
    67
    Reference 2
    68
    Reference 3
    69
    Details
    70
    Transaction Code
    71
    Project Code
    72
    Costing Code
    73
    Offsetting Account
    74
    Indicator
    137
    Total (LC)
    75
    Debit (LC)
    96
    Credit (LC)
    95
    Balance (LC)
    76
    Total (SC)
    77
    Debit (SC)
    98
    Credit (SC)
    97
    Balance (SC)
    78
    Total (FC)
    79
    Debit (FC)
    100
    Credit (FC)
    99
    Balance (FC)
    80
    Creator
    138
    Internal Reconciliation
    131
    External Reconciliation
    132
    System variables from the Business Partner Master Data window available for use in the General Ledger report:
    Phone
    117
    Fax
    118
    Contact Name
    119
    Address
    120
    Sales Employee
    133
    Remarks
    134
    Full Address
    135
    Hope Hepful
    Regards
    Kennedy

  • Incoming Excise Invoice - Print Layout Design

    Dear all,
            How to prepare the Incoming Excise Invoice Print Layout Design.
            That Excise is Dealers Invoice.
            For Ex: 'X' is the one material , this has defined in material master as Inventory , Purchase and Sales item and its Excisable material.
           Ths 'X' material purchase from the vendor and selling to the customer.
           At the time sales for incoming excise invoice, in that invoice should include the what is purchases of that material and what is sales?
         This information how to bring the Print Layout Design at Incoming Excise Invoice.
             Please guide to me
    Warm Regards,
    K.Prasad,
    +919921525560.

    At first you have to check the Excisable in Item master for doing excise transactions.
    Incoming Excise Invoice can be generated after doing Goods Receipt Transactions.
    From Copy to Option Goto >> Incoming Excise Invoice >> the invoice form will be opened
    From here you can select the PLD icon and design the layout you need.
    come back here if any queries

  • Add a new table to an existing Print Layout Designer report

    Is it possible to add a new table to an existing Print Layout Designer report? For example, in the Production Order there is a Sales Order field (which is displayed on the report), I would like to display some information from UDFs found on the Sales Order, but when I add a Database Field to the report the Sales Order tables does not appear in the list (OWOR).

    Hi
    It is possible provided there is a relationship which exists between two tables.
    You can add a Database field. Goto the Properties and selct Content Tab.
    Now in the Table dropdown, hold the Alt Key and click. This displays all the tables in B1. After selecting the Table, you can select the related Column.
    Remember there should be a relationship which exists between this column and existing columns.
    Because PLD works completely on Joins to my understanding

  • Ask Print Layout Designer for customize report

    Dear all
    I am newbie in SAP, and i must create report with PLD  like :
    PAYMENT TYPE          AMOUNT
    By CASH
    Cash               1000
    Cash               2000
    Cash               3000
    Cash               4000
    Total Cash          10000
    By CREDIT
    Credit               10000
    Credit               15000
    Credit               17500
    Total Credit          42500
    By TRANSFER
    Transfer          20000
    Transfer          25000
    Total Transfer          45000
    Total Payment          97500
    From database example:
    PAYMENT TYPE          AMOUNT
    Cash               1000
    Cash               2000
    Credit               10000
    Cash               3000
    Cash               4000
    Credit               15000
    Transfer          20000
    Credit               17500
    Transfer          25000
    Right Now,I just can create report like this :
    PAYMENT TYPE          AMOUNT
    Cash               1000
    Cash               2000
    Cash               3000
    Cash               4000
    Credit               10000
    Credit               15000
    Credit               17500
    Transfer          20000
    Transfer          25000
    Total Payment          97500
    Please help me.. because i very need it.
    Thankyou so much for your help
    Regards,
    Dony
    Edited by: dony donse on Dec 18, 2007 4:29 AM
    Edited by: dony donse on Dec 18, 2007 4:38 AM

    Finnaly...
    someone send me PLD manual
    And my problem solved
    ==============
    Procedure
    After defining the sort, perform the following steps
    1. From the menu bar choose Print Layout Designer &#8594; Group.
    2. Select a group number.
    3. Select 1 for a sub-sort or sub-total for the primary sort, select 2 for the secondary sort and so on.
    Each group is linked to its relevant row number in the Sort window described above. Thus, every field created in a certain group relates only to its group's corresponding row in the Sort window.
    The Repetitive Area Header titles are now hidden as well as any field created in the Repetitive Area Footer. The reason is that these two areas are linked to groups. Each one of the groups has two areas of its own.
    4. To define the sub-sort, do the following:
    a. In the Repetitive Area Header assign a title for the required sort.
    b. Create a new Formula field
    c. Choose the Formula Editor button and select the operand SortValue() in the Operation field.
    This action will print the Items table divided into separate titles each time the Item number changes.
    5. To define sub-totals do the following:
    a. In the Repetitive Area Footer create a Formula field.
    b. Choose the Formula Editor pushbutton and select the operand ColSum(UniqueID as String) in the Operation field (for the Quantity field from the rows in the Sales Quotation).
    The field within the brackets defines the column for which a total will be calculated. You can also calculate totals for the Price and Total columns.

Maybe you are looking for

  • How to determine the month from the week number?

    Hi all, in a routine i have the week number in a year and i need to find the month but i don't know the correct FM to use for this. Is there anyone that had to face a similar problem? I'm considering that to determine the month it will be used the fi

  • Details in query

    Hi ,  I have to document the query . with entire technical specifications 1. Key Figure used in Restriction 2.Char used in Restriction 3.Variable used in Restriction 4.char values 5. Default Value of Variable 6. definition of ckf 7. list of formulas

  • I buy second hand phone, but its lock, now i want to use zain SIM in it so how i can unlock it

    i buy second hand phone, but its lock, now i want to use zain SIM in it so how i can unlock it

  • Why no 720p25???

    I am occasionally using FCE3.5. There are setups for 1080i for PAL and NTSC but 720p for just NTSC. Why no PAL version at 25fps??? Can I do anything to create a sequence at 720p25? I think version 4 of Final Cut has this sequence setting, plus the ab

  • How start Logic using template without 'save as' dialog box?

    Hi Is there a way to start-up logic from a template without logic always asking where i want to save my song. I find this very annoying because i don't always have the 'need' to save everything i do. Thanks