Print pld variable

Hi,
in sap b1 which table sap use  to memory the variables? i want to find variable 61 ( total payment for an invoice) and i want to find its table, if it is possible? thanks a lot

As I see the variable 61 is the RCT2.BfDcntSum or RCT2.BfDcntSumF depending on the  currency.

Similar Messages

  • SAP 2007B: PIS / COFINS Variables aren`t implemented as PLD Variables at SO

    Hello,
    At SAP 2007B, the PIS and COFINS Variables are not implemented as PLD Variables at Sales Orders.
    I needed to print these values and created a message at SAP Portal (#1052007), where they told me to post this suggestion here in this forum. Is it possible?
    Their answer is below:
    "Dear Alice,
    You are asking for a functionality which is currently not implemented in the standard software version of SAP Business One.
    We would like to ask you to post your requirement in our SAP Business One Product Development
    Collaboration forum and not via message (please kindly close the message
    if you have opened one for a non-legal requirement):
    /community [original link is broken]@forumID=265.
    Please refer to note 1028874 for further information.
    As a workaround I suggest to store theinformation in the user defined fields. To automate the storing you may create formatted searches on those user defined fields.
    Kind regards,
    Julius Mastilak
    SAP Business One Product Support "

    Hi,
    Your understanding is correct.  Here is the right forum to post you DRQ.  However, this may result too long time waiting that far from your expectation.  SAP support team's suggested work around should be implemented while you are waiting.
    Thanks,
    Gordon

  • How doi print Any variable at the end of page in ALV report?

    Hi,
    Anyone can tell me that How do i print Any variable at the end of page in ALV report?
    Exmale: at the ende of alv report i want to print total no of employee who has taken house loan or education loan.

    Hi,
    Go through these links
    Thread in sdn regarding FOOTER IN ALV
    [ALV  FOOTER;
    Wiki in sdn regarding HEADER AND FOOTER IN ALV
    [https://wiki.sdn.sap.com/wiki/display/Snippets/ABAP%20Objects%20-%20ALV%20Model%20-%20Using%20Header%20and%20Footer]
    Header and Footer in ALV
    [http://www.sap-img.com/abap/test-alv-display-with-header-footer.htm]
    Hope this helps.
    Thank you,
    Pavan.

  • Problem with printing one variable in one line in smartforms

    Hi,
           Please help me.  It's my first time to use smartforms, and my problem is that I am trying to print one variable on one line and I just don't know why the variable splits and prints the other half on the next line.  On my paragraph format, I only chose the "Left-aligned" as my alignment choice and line spacing as one.  I used a character format for the variable just to make it bold.  The width of the window is 19.9cm.  Please, really hope someone could help me.  Thanks.
    Moderator message - Moved to the correct forum
    Edited by: Rob Burbank on Oct 13, 2009 9:16 AM

    Yes.  There are actually 3 variables on that window:
    SURNAME   <E1>&wa_surname(C)&</>
    FIRSTNAME <E1>&wa_fname(C)&</>
    MIDDLE NAME <E1>&wa_midname(C)&</>
    The variable for the firstname is the one being split to the next line.  It's like half of the firstname is combined with the middlename as shown in the example:
    FIRSTNAME    FIRST
    MIDDLE NAME NAME MIDDLE NAME
    When it should be:
    FIRSTNAME    FIRST NAME
    MIDDLE NAME MIDDLE NAME
    Thanks.

  • Can we print boolean variable in dbms_output_put_line ?

    Hi
    Can any one please tell me Can we print boolean variable in dbms_output_put_line ?
    Is it possible or not ?
    Thanks,
    Sanjeev.

    user13483989 wrote:
    Hi
    Can any one please tell me Can we print boolean variable in dbms_output_put_line ?
    Is it possible or not ?
    Thanks,
    Sanjeev.The answer is in the package definition (or the documentation) if you just look:
    SQL> desc dbms_output
    PROCEDURE DISABLE
    PROCEDURE ENABLE
    Argument Name                  Type                    In/Out Default?
    BUFFER_SIZE                    NUMBER(38)              IN     DEFAULT
    PROCEDURE GET_LINE
    Argument Name                  Type                    In/Out Default?
    LINE                           VARCHAR2                OUT
    STATUS                         NUMBER(38)              OUT
    PROCEDURE GET_LINES
    Argument Name                  Type                    In/Out Default?
    LINES                          TABLE OF VARCHAR2(32767) OUT
    NUMLINES                       NUMBER(38)              IN/OUT
    PROCEDURE GET_LINES
    Argument Name                  Type                    In/Out Default?
    LINES                          DBMSOUTPUT_LINESARRAY   OUT
    NUMLINES                       NUMBER(38)              IN/OUT
    PROCEDURE NEW_LINE
    PROCEDURE PUT
    Argument Name                  Type                    In/Out Default?
    A                              VARCHAR2                IN
    PROCEDURE PUT_LINE
    Argument Name                  Type                    In/Out Default?
    A                              VARCHAR2                IN
    SQL>PUT_LINE - argument type is VARCHAR2. Simples.

  • Printing PLD through Line printer

    Hi All,
    Is it possible to print PLD through a
    Line printer - Star SP 200. If yes,
    please guide me the steps.
    Regards
    Deep

    Hi,
    Thanks for replying,
    What are the three printers that are supported and since we have some
    Star SP 200 printers ,is there some way we can print PLDs though this.
    Regards
    Deep

  • PLD Print Input Variable

    I have a working query where I input the two variables: 
    declare  @StartDate DateTime
    declare @EndDate DateTime
    /* select * from rdr1 t where t.docdate between [%0] and  [%1]*/
    set @StartDate = [%0]
    set @EndDate = [%1]
    How can I get these two variables to print on the report?

    Hi Shannon
    the only method to track posting dates in report is track the posting date details in the query and give inputs  posting date
    and hide those field in report and track those details in the header level of the repetitive area and finally suppose dates from 20032010  to 21032010 so all my line item from Date should be 20032010 & To  Date should be 20032010 then only we track those
    Regards
    jenny

  • Print system variable 71 in page header section

    Hi all,
    I have captured system variable 71 in order to print customer's CST and VAT numberin PLD of A/R Invoice. But it is printing I instead of vat number.
    I have confirmed the number by View - system information in Tax screen of accounting tab of business partner master screen.
    Help needed.
    Thanking you
    Pradnya

    Hi Gordon,
    In A/r Invoice I printed total before discount 85
    tax 116
    total 91
    and it is printing.
    How would i find system variable to be used for printing CST and vat of customer.
    I also tried relating customer code from ocrd with taxid column of crd7 and giving validation on addresstype field but no success.
    Thanking you
    Pradnya

  • Printing OUT variables from a Stored Procedure

    Hi all,
    I'm running an SQL command that calls a Stored Procedure and passes in some value. I've pasted in the important parts of it below. What I am trying to do is access the OUT variables that have been assigned to the DECLARED variables. I come from a SQL Server background and there we can do "SELECT @variable" which will print it to screen. I'm trying to do something similar here.
    I need to access the contents of the three variables declared at the top of the script.
    Thanks in advance.
    DECLARE
    l_error_value NUMBER;
    l_error_product VARCHAR2 (10);
    l_CE_DOC_ID number;
    BEGIN
    PEM.create_enquiry   
         (      ce_cat => 'COMP'
                   , ce_class => 'FRML'
                   , error_value => l_ERROR_VALUE
                   ,error_product => l_ERROR_PRODUCT
                   , ce_doc_id => l_ce_doc_id
    END;

    Ah yes I see. Sorry I misunderstood what you were suggesting. I'm currently working on a test script that uses an approach similar to the one you mentioned, but I'm having trouble resolving foreign key relationships with test data.
    I've no access to the tables or anything so it's proving to be a time consuming task!!
    Is it required that all fields are given a value, even if they have a "DEFAULT" defined for them within the procedure. At the moment I'm using a rather cumbersome approach to this:
    i.e.
    With cmmAddRequest
        .ActiveConnection = strConnect
        .CommandType = adCmdText
        .CommandText = strSQL
        .Parameters(0).Direction = adParamInput
        .Parameters(1).Direction = adParamInput
        .Parameters(2).Direction = adParamInput
        .Parameters(3).Direction = adParamOutput
        .Parameters(4).Direction = adParamOutput
        .Parameters(5).Direction = adParamOutput
        .Parameters(0).Value = "COMP"
        .Parameters(1).Value = "FRML"
        .Parameters(2).Value = "1"
        .Execute
        WScript.Echo(.Parameters(5).Value)
    End With

  • Syntax to print out variable

    I need to know the syntax to print out bind variable to
    xterm. ( :import.out := outdir ).
    I believe forms doesn't have the dbms package but
    does have the text_io. I would like to know the
    syntax for both as I want to monitor a variable's contents
    from unix script through forms and through a stored procedure.

    > I want to use the select statement instead of anonymous block.
    Like I wrote above, functions with out parameters is poor programming practice. Oracle won't let you use a function with an out parameter in a select statement. You MUST use PL/SQL. See this example:
    SQL> Create or replace function ABC(i in number, o out number)
      2    return number is
      3  Begin
      4    o := 2 * i;
      5    Return 3 * i;
      6  End;
      7  /
    SQL> variable o1 number
    SQL> select ABC( 5, :o1 ) from dual;
    select ABC( 5, :o1 ) from dual
    ERROR at line 1:
    ORA-06572: Function ABC has out arguments
    SQL> variable r1 number
    SQL> Begin
      2    :r1 := ABC( 5, :o1 );
      3  End;
      4  /
    SQL> print :r1
            R1
            15
    SQL> Print :o1
            O1
            10
    SQL> drop function ABC;
    SQL>

  • 1099 Printing PLD

    The 1099 form 2 records on a page does not line up  correctly. The top part does but the bottom part does not, the information does not line up in the boxes. I can't touch the top part but need to move the second record further down. How can I make the PLD make more space between the records.... Thanks

    Rosi,
    You may check this: Re: 1099 Form - Misc doesn't print 2 forms per page.
    Thanks,
    Gordon

  • Check Printing PLD

    Hi Guys,
    I am trying to design check using PLD which is Check Stub Stub.What customer need is data to get picked up from Invoice showing details of what is the total amount,how much is paid and what is the remaining amount.
    I tried by picking up value from database directly also tried using the variables but it is not worming.
    Need help thanks in advance
    Regards-
    Mona

    Hi,
    Some of the reports in SAP are hardcoded. It is not possible to find system variables and modify system layout.
    Thanks & Regards,
    Nagarajan

  • Print local variable from print prog into sapscript

    Hi,
    I have one local variable declared in the print program for one SAP-form. I want to print it in some window of that form.
    How do i pass that variable to the form for printing ?
    Thanks & Regards
    Hrishi

    Problem solved
    EXCL_VAT is a quantity field and the value field in ITCSY is a Character field,  so had to change the code in the following manner.
    write EXCL_VAT to outtab-value.
    condense outtab-value.
    Regards
    Hrishi

  • Need a character which can nullify a tab while printing a variable

    My variable has data as  vinod,,reddy,,g
    When, I am passing to script it should print as it is, but it is printing as vinod                     reddy                           g
    This is causing error to read the text as lot of space is coming inbetween...
    I know ,, will act as tab in Script. But need some character which can be placed inbetween the data of ,, so that it gets nullified in sap script while printing and data prints as vinod,,reddy,,g

    declare variable like data: lv_space type char10 value '          '
    pass vinod &lv_space& reddy &lv_space& g.

  • How to print PLD report on A3 & A2 size papers

    Hi,
    I want to print the PLD Report on A3 size paper.
    In Tally, already this Report is printed as "Sstd Fanfold" paper.
    i selected the same paper type in SAP b1.
    but it is not displaying properly.
    normal A4Traversal it is showing.
    plz help me asap.
    Regards,
    Nagababu

    Hi Nagababu,
    If you want to set the PLD Report to Print on a different (A3) size paper, Couple of things you may need to check.
    The printer where you intend to print on A3 should be set as the printer in the PLD document properties.  From the design mode of PLD, click on <b>Print layout designer on the top menu</b> and Click <b>Display Document Properties</b>
    Go to Paper format Tab > Select the Printer which you want
    Doing this will expose the different Paper formats available on this Printer.
    Now, for the Paper format drop down select the A3 / whichever Paper format you want.
    Suda

Maybe you are looking for

  • How can I prevent Aperture from playing slideshow when hitting the play button on the keyboard?

    I am getting a bit frustrated by the fact that the play button on the keyboard, which I use all the time for controlling audio playback in iTunes and now Spotify, is assigned to starting the slideshow in Aperture. Playing a slideshow is something I n

  • Opera Mini Video Quality

    Hi All, I use a BB 9360 Curve 3G and at times I use Opera Mini which is an amazing browser however when I watch youtube videos on it the quality of the video is pathetic as compared to the video quality when I stream videos on the BIS browser?? Pleas

  • Upgrade Final Cut Express to use on MacBook?

    I have FCE 3.0.1 Is there an upgrade path to where I could use it on an intel MacBook? It appears to install but then demands an AGP video card.

  • BIOS detects M500 SSD but Windows 8 Does not

    Hi Crucial, I am hoping you can assist me with the situation below,  I have just placed my new Crucial M500 480 gb in my Alienware M17x R4 Laptop, The BIOS detects the newly placed SSD Crucial M500, however when I login into Windows 8, My Computer do

  • Where's the search bar in itunes store

    Trying to search for songs to download but can't find a search box!  Can anyone help?