Check and renumeration statement smartform

Hi Experts
I am designing SMARTFORM for check and renumeration statement
I need to print payslip and cheque in a smartform
on page1 i am getting payslip but i m unable to design cheque on second page
Please help me out

Santosh,
You need to design 2 pages separately.
Lets say you payslip is page 1 and your check is page 2.
Click on page 1, in the general attributes tab, in the next page field enter - page 2.
So page 2 will be printed every time page 1 gets printed.
Hope this helps.
cheers,
Sushil Joshi

Similar Messages

  • Difference between Check and where statement.

    Hello everybody i know that where clause is efficient than check condition.
    But i want to know if in the following example,
         even after finding SBOOK_WA-CARRID = 'LH' ,
    DOES THE CHECK CONDITION TERMINATES?? OR KEEP SEARCING TILL THE END OF INTERNAL TABLE?
    IN THE 2nd EXAMPLE,
    DOES THE WHERE CLAUSE EXHIBIT THE SAME PHENOMENON?
    1st example:
    SELECT * FROM SBOOK INTO SBOOK_WA.
      CHECK: SBOOK_WA-CARRID = 'LH' AND
             SBOOK_WA-CONNID = '0400'.
    ENDSELECT.
    2nd example:
    SELECT * FROM SBOOK INTO SBOOK_WA
      WHERE CARRID = 'LH' AND
            CONNID = '0400'.
    ENDSELECT.

    Hi,
      Check statement will give low performance compare to where.
    B'cause After selecting the record for database table you are checking the value.
    WHERE: At the time of selection records from table you are checking. So based on condition record will select otherwise it will go for nect record with that database connection only.
    In first example. : It will terminate the selection.No next search...
    Second : it will continue the search....

  • While attempting to check out, ERROR states "Account registered for different country.  Please sign out and sign in using an existing account for this country."

    While attempting to check out, ERROR states "Account registered for different country.  Please sign out and sign in using an existing account for this country."  I started my account in India.  Then changed it to the US when I moved here, then tried to change it back to india when this issue arose, however, the error still occurs.  How can I fix this??

    I think a new account may be the easiest way if you don't have an existing subscription or cloud files for which to keep continuity.

  • DB13 Check and update optimizer stat error: ORA-01652: unable to extend tem

    Hi SAP Gurus,
    When running Check and Update Optimizer Statistics in DB13, an error occurs.
    BR0280I BRCONNECT time stamp: 2011-03-10 06.35.52                    
    BR0301E SQL error -1652 at location stats_tab_collect-16             
    ORA-01652: unable to extend temp segment by 12137 in tablespace SYSTEM
    BR0886E Checking/collecting statistics failed for table SAPR3.ACCTIT 
    BR0280I BRCONNECT time stamp: 2011-03-10 06.36.49                    
    BR0850I 3 of 39479 objects processed - 3.522 of 342.781 units done   
    BR0204I Percentage done: 1.03%, estimated end time: 15:47            
    Looking at tablespace SYSTEM in DB02, the percent used is 58. Auto-extent feature is OFF. Will turning the auto-extent ON, remove the error?

    It seems like Your user (by a mistake) have tablespace SYSTEM as temporary tablespace.
    Connect as sysdba in Your database and check which temp tablespaces awaiable, and size of them:
    select tablespace_name, sum(bytes)/1024/1024 "Size of TEMP TBS in MB" from dba_temp_files  group by tablespace_name;
    Check which users having SYSTEM as tamp-tbs:
    select username, temporary_tablespace from dba_users where temporary_tablespace like 'SYSTEM' order by 1;
    Change those users to have one of your temp-tablespaces:
    alter user &username temporary tablespace &&TempTBS;
    It's also a good idea to have autoextend on on Your temp TBS, but remember to set maxsize so you doesn't fill up your disksystem.
    Hope this solve Your problems.
    Regards
    Audun
    DBA

  • Extra page in renumeration statement

    Hi,
    I am facing a problem in renumeratrion statement.
    We are doing upgarde from version 4.7 to ECC 6.
    We tested everything ok in DEV of ECC 6 and transported to QA. Now in QA, when we test and print renumeration statement, we see an extra page which is not required and also we see that extra lines in renumeration statement which is resulting in extra page while printing.
    We checked the form in PE51 and when we compared it with 4.7 version form, everything looks ok i.e. there is no extra line in both versions and even in debugging we see that the flow goes the same way in both ECC 6 and 4.7 system.
    We checked the printer configuration and even that is fine.
    Can somebody help me solve this issue. Is there any functional setting required?
    Regards,
    Soumya

    Hello Somya ,
    check with your setting for all windows you have -  "print on the same page" and "print on the next page"
    it may be bouncing to next page. to print the window.
    I cant tell you more in detail, as i not ahead the system.
    Thanks and Regards
    Jaydeep Jadhav

  • No header, main area and footer in smartforms while creating table in 4.6c

    Hi Experts,
    Iam working in SAP 4.6c version and iam creating smartform for domestic invoice, in smartform i have created table but when expand the table its not giving the option of Header, Main Area and footer, can anyone explain how i can get the above details.. pls reply ASAP as its very important.
    Thanks in advance,
    Abhishek Pandey.

    Hi,
    I had faced a similar situation in 4.6c.
    As clearly stated, you get the Header and Footer from Events.
    The Window defined under Page, should have
    Main window checked in it's General Attributes
    I guess that should get hold of your problem.
    Cheers,
    Remi

  • Mutating table and row state - this was unexpected

    So, I learned in a class about 3 years ago to expect the following
    SQL> create table p (pk number primary key);
    Table created.
    SQL> create table c (fk number references p(pk));
    Table created.
    SQL> create or replace trigger t_insrt
      2  before insert on p
      3  for each row
      4  begin
      5   insert into c values (:new.pk);
      6  end;
      7  /
    Trigger created.
    SQL> insert into p values (1);
    insert into p values (1)
    ERROR at line 1:
    ORA-02291: integrity constraint (FORBESC.SYS_C00169150) violated - parent key
    not found
    ORA-06512: at "FORBESC.T_INSRT", line 2
    ORA-04088: error during execution of trigger 'FORBESC.T_INSRT'and so it led me to think that replicating ON MODIFY PARENT - MODIFY CHILD functionality wouldn't work in a BEFORE ROW trigger, but it does
    SQL> drop trigger t_insrt;
    Trigger dropped.
    SQL> create or replace trigger p_updt
      2  before update on p
      3  for each row
      4  begin
      5   update c
      6   set fk = :new.pk
      7   where fk = :old.pk;
      8  end;
      9  /
    Trigger created.
    SQL> insert into p values (1);
    1 row created.
    SQL> insert into c values (1);
    1 row created.
    SQL> select * from c;
            FK
             1
    SQL> update p
      2  set pk = 2
      3  where pk = 1;
    1 row updated.
    SQL> select * from c;
            FK
             2Why would the first scenario fail while the second succeeds? The update seems prone to a parent record also not existing, at least not by the BEFORE ROW trigger.
    ---=Chuck

    < mutating table and row state >
    BTW, you don't seem to have run into the mutating table error though 2 other threads today are also about it. You have a constraint violation, a different thing entirely.
    I believe the second scenario works because you're neatly avoiding the error of the first. The error "ORA-02291: integrity constraint (FORBESC.SYS_C00169150) violated" means that on insert Oracle is looking up the value you're trying to insert, not finding it, and raising an error. With the before trigger you are taking the assigned value from the insert, updating the parent to it, so that on actual insert when the check happens the value is there due to the update.
    I'm not convinced this is a good idea because any on-the-fly approach to data entry needs to be examined carefully.

  • G/L account in cash and bank statement

    Dear All,
    How to fill the field GL account in the cash and bank statement ? I have press tab but still can't open the list of G/L account. Thanks
    Rgds,
    Mark

    Jimmy, tks for your wonderful and quick answer. I am using PE 680.01.70 version. It is still under my exploration if our company top management would like to use it, I think we will use. I'll be back to check your answers. if nothing well, I will unassign the points.
    CU

  • How to remove Unicode errors from extended check and code inspector

    Hi
    We are working on making all our ABAP program to make unicode compliant. We are activating unicode flag in attribute and correcting syntax errors. After this when we do the extended checks or SLIN or code inspector, usually giving error for many statements such as whenever there is message.
    <b>Code is :</b>message a208 with text-004.
    <b>Error description is</b> :
    The message 208 for id zz has no long text.
    You can hide this message using "#EC *
    208 is -   & does not exist in & &. And  text 004 is - Cannot open the output file
    By using #EC * we can remove errors. But Is this the correct way and what does this indicate? Please explain.

    Hi Yogesh,
    Can you check whether the message number 208 in message id ZZ has the Self Explanatory checkbox as checked or not? I think it is not checked and u have also not maintained any long text. Hence the error.
    By using #EC - you do not remove the error, however u hide it from SLIN.
    It is used if there is some known error you cannot avoid which is returned by SLIN and you dont want it to be reported. Also, a way to "cheat" the reviewer who might be checking for errors.
    Not good !! 
    Regards,
    Aditya

  • Diff b/w IF/ENDIF and CASE statement?

    Hi all,
    Plz let me know the difference between IF and CASE statements.Which one is better to be used in general...and are there any specific situations where we have to go for CASE insted of IF.
    Rgds,
    Reddy.

    Hi,
    Case statement is good for performance wise because here we declare cases
    and according to these cases program will be executed.
    When we use if statement then the cursur goes to in the loop, when ever
    the loop is not complete till then the programme will not execute.
    Thats by in performance basis the case statement is good.
    Let me try and explain using an example...
    1) For IF statement...
    Suppost you have a variable color..and you are checking it against color names.
    then your code will be
    IF COLOR == 'BLUE'.
        statements
    ELSEIF COLOR == 'BLACK'.
        statements.
    ...and so on....
    ENDIF.
    But if you use CASE Statement
    CASE COLOR.
    when 'BLUE'.
       statements.
    when 'BLACK'.
      statements.
    so follows that CASE is easy to use and performance wise is also better.
    Regards,
    Priyanka.

  • Procedure not checking each sql statement.

    Hi All,
    I have created 2 tables names are A1 and B1. A1 table has some fields. Fields are no,sal,comm.,load_date. In A1 table NO (column) is the primary key.
    Second table is B1. this table has id,phone_no and load_date. In this table constraint
    ID column is the Not null.
    After that I have created 2 procedures one for A1 and one for B1. with in those procedures I used SQL insert statements.
    In procedures I used some valid sql statements and some invalid statements ( invalid statements means that I have specified constraint that’s why I specified duplicated and null values). While executing the procedures procedure shows error because of invalid statement and in that procedures I did not specify any Exceptions.
    If I specify Exceptions in procedures executing successfully some records are not loading procedure is comeing out. How do we mention server needs to be check and every insert sql startement.
    EX:
    If I give 6 records from 1 to 3 valid statements. I mentioned 4 th record copy of previos record( duplicated). 5 th record and 6 th valid records.
    Procedure executing successfully. Procedure loaded 1 to 4 records after that not loaded 5,6 and 7 records. How do we specify for record inserts 7. actually 7 th record is valid statement we should be insert this record. Please tell me how do we handle sql statements each and every one successfully or not.
    create or replace procedure a_proc as
    --declare
    begin
    insert into a1 values (100,2000,300,sysdate);
    insert into a1 values(200,1000,400,sysdate);
    insert into a1 values(300,3000,500,sysdate);
    insert into a1 values(400,6000,600,sysdate);
    insert into a1 values(400,900,700,sysdate);
    insert into a1 values(400,10000,1200,sysdate);
    insert into a1 values(900,11000,1300,sysdate);
    commit;
    EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('ERROR - '||sqlerrm);
    end a_proc;
    In B1 table colums are ID,PHONE_NO and Load_date. ID is not null column.
    For B1 population I have created one procedure
    create or replace procedure b_proc as
    --declare
    begin
    insert into b1 values(1,123456,sysdate); -- 1 record
    insert into b1 (phone_no,load_date) values (7896538,sysdate); --2 record
    insert into b1 (phone_no) values(6763723458); ----3 record
    insert into b1 (phone_no) values(453465778); --4 record
    insert into b1 values(400,72894894,sysdate); --5 record
    insert into b1 values(500,72894894,sysdate); --6 record
    commit;
    EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('ERROR - '||sqlerrm);
    end b_proc;
    if I execute above procedure procedure executing successfully but procedure inserting only first record not inserting 5th and 6th record. How do we exception for 5th and 6th records also.
    Thanks and Regards,
    Venkat

    {color:#808080}{color:#333300}Hi,
    Please find answer to your question below:{color}
    Venkat: Procedure executing successfully. Procedure loaded 1 to 4 records after that not loaded 5,6 and 7 records. How do we specify for record inserts 7. actually 7 th record is valid statement we should be insert this record. Please tell me how do we handle sql statements each and every one successfully or not.
    {color}
    {color:#0000ff}Guna: The procedure hits an exception after 4th record, and does not process anymore as it exits out of the procedure, I believe the data is not committed as well. You need handle exceptions if the processing has to continue. Same is the belwo case as well
    {color}{color:#333300}Regards,
    Guna{color}

  • Balance sheet and Income statement in oracle release 11i or R12

    Dear All
    i have to prepare a balance sheet and Income statement can somebody help me out.
    Regards
    xyz
    Edited by: user11309801 on Dec 18, 2011 9:54 PM

    Hi;
    Please see:
    http://docs.oracle.com/cd/A60725_05/html/comnls/us/gl/aboutfsg.htm
    http://www.oracle.com/us/industries/financial-services/059027.pdf
    Also please check below links which is mention all related doc:
    For r12.1.1:
    http://download.oracle.com/docs/cd/B53825_01/current/html/docset.html
    For r12:
    http://download.oracle.com/docs/cd/B40089_10/current/html/docset.html
    For r11:
    http://download.oracle.com/docs/cd/A60725_05/r11_doc.htm
    Regard
    Helios

  • Quantity in Balance Sheet/Profit and Loss statement

    Hello guys,
    in the output of the balance Sheet/Profit and Loss statement, we have total amount of the reconciliation accounts in a period
    Is there any statement which can tell us also how many movements (lines) were in each reconciliation accounts? Like hoe many movements composed the total amount?
    this would be needed for reporting period and also for comparison period
    thanks in advance for letting me know
    hana

    Dear:
                 To check recon a/c movement for vendors and customers please use FBL5N & FBL1N.
                  Regards

  • Profit and Loss statement Business Area Wise

    Dear Friends,
    i am trying to create Financial Statement ( Profit and loss statement) using )FIGL_V11 Virtual cube.
    its working fine  and no problem.
    We have 8 Business Areas. and i would like to create Profit and Loss statement Business Area wise.
    How can i achive this requirement.
    Any help will be higly Appricated.
    Regards.
    Malik

    Dear i check Profit Center Info Object but there are only these attributes.
    Source System
    Object Currency for CO Object
    Person Responsible
    Source system ID
    Person Responsible
    Department (Profit Center)
    Hierarchy Area (Profit Center)
    Segment for Segmental Reporting
    I am unable to fine Bussiness Area in the attribut of  info Object 0PROFIT_CTR .
    Regards
    Malik

  • DB13 CheckDb and Update Stats Error

    Hi,
    I am getting below error in CheckDb and Update stats:
    Update Stats:
    BR0301E SQL error -20003 at location stats_tab_collect-20, SQL statement:
    'BEGIN DBMS_STATS.GATHER_TABLE_STATS (OWNNAME => '"SAPCRM"', TABNAME => '"WSSOAPPROP_DARK"', ESTIMATE_PERCENT => NULL, METHOD_OPT => 'FOR ALL COLUMNS SIZE 1', DEGREE => NULL
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 14537
    ORA-06512: at "SYS.DBMS_STATS", line 14558
    ORA-06512: at line 1
    Check Db :
    BR0301E SQL error -1031 at location BrDbdiffRead-1, SQL statement:
    'PREPARE stmt_5 STATEMENT FROM'
    'SELECT OBJNAME FROM "SAPSR3".DBDIFF WHERE DBSYS IN ('ORACLE', ' ') AND OBJTYPE = 'TABL' AND DIFFKIND IN ('02', '61', '99') ORDER BY OBJNAME'
    ORA-01031: insufficient privileges
    BR0806I End of BRCONNECT processing: ceeuoqja.chk 2010-12-17 06.30.46
    BR0280I BRCONNECT time stamp: 2010-12-17 06.30.46
    BR0804I BRCONNECT terminated with errors
    Above both errors are of different System and both system are just get ready after System Copy of PRD Server.
    Please suggest possible route cause of this error.
    Shivam

    for update stats issue check Note 1417124 - Error ORA-20001 in statistics class CL_SDB_ORA_UPDATE_STATS
    for DB check error go through note 400241
    Please search before you post your thread on SDN

Maybe you are looking for

  • How do I create email list in Numbers

    I am trying to create a list of email addresses in Numbers which I can copy and paste into an email.

  • Record measuremen​ts in an Excel file

    Hello, I want to record measurements in an Excel file using the " write in measurement file" of  labview , my problem is that in the time column of the excel file  I find 01/01/1904 00: 00:00 as date,  here is a screen capture of the code . when I re

  • I tunes cover flow

    Whats wrong with my cover flow. All the art work after up date , goes complrtly wrong , Most of the songs com under differebt art work. WHY? I keep changing, But the still swap!

  • Transfering lightroom 3.6 from Pc to a Mac Desktop

    Hello everyone, I recently purchased a new Mac Desktop and I would like to transfer my lightroom from my pc to a mac desktop...how can I do this step by step? I am not very savvy on when it comes to this...the apple store will transfer all my files e

  • I pre-ordered an album and it wouldn't download so i need to know how to get a refund

    i pre-ordered an album and tried to down load after the release date.  it wouldn't down load and i wasn't able to get a refund.  please advise.