MICR Printing  for Cheques

Hi all,
    IIam having Problem printing the MICR font on the Cheques . I searched many responses  , but  cudnt    get the solution yet.
We have installed   MICR font  on the Cheque printer.
I have created  character format MI  which has family  MICR_E and font  10.0 pt ,  coz  only 10  or blank is available.
In the Script the code i have written  is
      <MI>"C"&REGUD-CHECT&"C"</>   -----> For 1st one
     For the 2nd one
      <MI>"A"&REGUH-UBNKL&"A"</> 
     For the 3 rd one
      <MI>&REGUH-UBKNT&"C"</> 
The  Output  what iam getting in Normal printer is
"C"00069207    "A"000123456  0002220005678
Why is   "C"   and "A"  getting printed ,  it must get converted  to MICR font  right?
             or
When  i check it in MICR printer   does this come properly.  The Problem is The MICR printer  is  at client place  and  i cant check it each and every time.
Please do let me  know    the " "  what iam using  is right or wrong?
the MICR_E  what i have taken is right ?
Please  do let me know.
Regards,
Shuja

Dear Friend,
Please Try this...
For 1st one
<MI>&REGUD-CHECT&"C"</>
For the 2nd one
<MI>&REGUH-UBNKL&"A"</>
For the 3 rd one
<MI>&REGUH-UBKNT&"C"</>

Similar Messages

  • Printing MICR Characters for cheques

    Hi All,
    I am trying to print MICR_C fonts on the Check.
    I am able to print the numbers in MICR format but i am not getting the Transit and On-us.. symbols in the output
    i defined a paragraph format with MICR_C .
    my code in the SAP SCRIPT is below.
    C&REGUD-CHECT&C,,A&REGUH-UBKNT&A,,&REGUH-UBNKL&A
    "transit" - "A".
    "amount" - "B".
    "on-us" - "C".
    "dash" - "D".
    do i need to enter(define)  this symbols in SAP SCRIPT? if so where i need to enter?
    my check printer is TROY MICR 4000T secure.(Hp)
    regards
    Ram

    Hi All
    i found the solution,
    i passed  " / " and " &`" symbols in my sap script to get the special symbols.
    i don't y i am getting this speical symbols on output when i use this symbols.
    if i tried with
    C&UD-CHECT&C,,A&UH-UBKNT&A,,&UH-UBNKL&A
    but it didnt work.
    Regards
    Ram

  • Default Printer for Cheque print

    Hi Experts,
    We are using Y forms which are assigned to SAPWIN and we are using SAPWIN as device type. How ever when we are testing cheque print function, the error is coming "Device Type HPLIID does not support YINFORM"
    Is there any place where this default printer is coming up? Even we have this set in our User Master data as LOCAL(assigned to SAPWIN and YFORM), still this issue is coming.
    Tried to search SDN and SAP notes but could not find specific to our issue. Any help are highly appreciated. Thanks in advance.
    Regards,
    Sabita

    Hi,
    Can you tell here this is dmp or leser printer which is going to set. Go in spad and create new printer and check it. If you have any error then mentioned error here.
    Anil

  • How to print Spool requests for cheque printing sequentially

    Dear All,
    I am making vendor payments and printing cheques using F-58. It automatically creates a spool requests at the end of the transaction. When i complete all my payments and go to SP01 for viewing spool requests, the last request appears at the top of the list.
    If i select 3 consecutive requests and print them at a time, the last request gets printed first on the first cheque number and the first request gets printed on the last cheque number.
    This results in anomaly in the cheque number assigned in the system and the printed cheque as the last payment is printed on the first cheque.
    I am using dot matrix printer with  page format fixed for cheque specifications. The cheques are printed properly as per the format except the order of printing.
    Kindly let me know how to print multiple requests sequentially from the spool requests list such that the spool request number printed matches with the serial cheque numbers.
    Regards,
    SAP_2009

    Hi,
    I understod your issue.
    Whenever you posted multiple payment documents, and after that if you want to take cheque printouts sequentially by using more spool requests.........there is a way to sort out this issue.
    1) Select all of your spool requests and click on Sort in ascending Order (CtrlShiftF5) and click on Print directly (CtrlShiftF8). By doing this you will get the cheque printouts sequentially according to your payment document sequence.
    Hope this will help you
    Assign ********, if it solved your problem.
    Thanks,
    Srinu

  • Advance payment - TDS deducted but cheque printed for full amount

    Hello SAPians,
    Advance payment to vendor - TDS is applicable - SAP entry shows about TDS Deduction but the cheque printed for full amount.
    Cheque needs to be printed after TDS deduction.
    Please suggest.
    JK

    Hi in REGUH and REGUP tables there is no tds amount if you want to deduct the tds amount then while printing the cheque give the logic as in regup document you need to pass into WITH_ITEM table and if the document is matched then get the value against WT_QBSHH field and deduct this valu into your invoice amount.
    i have done this job in current client it will work properly.
    Let me know if you need further claification

  • Cheque Printing for Vendor Advance Payment

    Hi Gurus,
    I am creating vendor down payment wrt payment request in T code F-48 screen. again i am creating cheque for that payment document in FCH5 screen.
    How to do cheque printing manually for cheque cerated in FCH5 screen.
    Please help me in this regard.
    Regards,
    Ganesh

    Hi
    There is no way u can print a manual check.
    Try this :
    After making Advance payment transaction in F-48.
    Go to FBZ5.
    There give Doc no generate from Advance payment transaction.
    Award points if useful.

  • Numeric value in words (for Cheque printing)

    Hi All,
    To convert numeric value in words (for Cheque printing), I created two functions in Forms and reports 6i.
    1) FUNCTION Spell (val number) RETURN CHAR IS
    sp varchar2(100);
    BEGIN
    if val > 0 then
         return(initcap(to_char(to_date(val, 'SSSSS'), 'SSSSSSP')));
    else
         return('');
    end if;
    END;
    2) function SPELLED_AMOUNTFormula return Char is
    cents number;
    c_str varchar2(80);
    val number;
    begin
    val := :p_instr_amt;
    cents := (val mod 1) * 100;
    if cents > 0 then --creates string for cents
    c_str := ' and ' || spell(TO_CHAR(cents)) || ' fils Only';
    else
    c_str := ' Only';
    end if;
    if val < 1000 and val > 1 then
    return (initcap(spell(floor(val))) || c_str);
    elsif val > 1000 then
    return(initcap(spell(floor(val/1000))) || ' Thousand ' ||
    spell(floor(val mod 1000)) || c_str);
    else
    return('Zero'||c_str);
    end if;
    end;
    This convert value up to thousands. How to convert the value more than 1 lac. please configure this code.
    Thanks in advance

    Hi,
    To spell integers as high as 5,373,484, use 'Jsp' instead of 'ssssssp'.
    TO_CHAR ( TO_DATE ( n     -- n = integer to be spelled
                  , 'J'
         , 'Jsp'          -- Case-sensitive
         )5373484 is the Julian date of December 31, 9999, the latest DATE value in Oracle. In Oracle 10.2, you can actually spell numbers a little bit higher using the expression above, but I'm not sure why, and I wouldn't count on being able to do so in future versions.
    There's no need for INITCAP here. If the 2nd argument to TO_CHAR is initcapped (as above), then the output will be, too.
    To spell even larger numbers, see this page by Tom Kyte, which also includes languages other than English, and lakh-crore-arab-kharab wording.
    Edited by: Frank Kulash on Oct 13, 2012 7:21 AM

  • Printer setting for Cheque

    Dear All,
    I am facing problem while doing Cheque Printing. or (document having definite length). Cheque printing is done on Epson printer.
    For Particular Cheque printing I created Page Format  Under "Dev. type"  SAPWIN     "Rel.4.x/SAPlpd 4.09+ ONLY!".
    Page Format Description is:
    Format            Ty.    Format               P   L     Lines     Columns    Comment
    ZZCHEQUK     S      ZZCHEQUK        X
    Format         P L  Width            Height
    ZZCHEQUK  X      00205     MM 00093     MM
    Paper Size set on this printer is A4.  But client can able to Print in same size & on same printer from there previous software.
    Is it required to set particular Height on each & every printer for definite use.
    Pl suggest me how to to resolve this issue.
    Thanks,
    Abhay

    Hi Abhay,
    Question is not clear like how you are getting out put, so far my understanding from your query, you need to set up both the <i>Device Types</i> and <i>Page Formats</i> from SPAD Tcode.
    Ex: page length and width
    SPAD -> Device Types
    Select the Device type and go to Formats
    Select the Printer initilization
    Change No of lines and Hex Values.
    Page Format is the same like what you defined

  • Cashier cannot see the some documents for cheque printing

    Some Payment proposals have been made but the Cashier cannot see the documents for cheque printing. They are showing complete when you check with T.code SWIA.
    What could be the reason?
    Regards,
    Chansa

    Dear  Vivek,
    Yes the cashier cannot see these documents in SBWP.
    regards,
    Chansa.

  • Settings and/or adjustments after installing micr toner for check printing with p1102w ??????

    Ive installed a brand new micr cratridge in my p1102w. After my first attempt at publication I was disappointed to find that check readers are unable to read my checks. Is there anything in settings or something anywhere that Im missing or unaware of that will dial my printer in to printing checks that can be read??

    Hello, if you would like us to help with your question, please contact one of our Secure Solutions Specialists at 800-633-2266. TROY is an HP Business Partner and the only one worldwide authorized to modify their printers for MICR printing. We also provide OEM MICR toner for many HP laserjets including the 1102 you mention. We'd be happy to help.

  • Adobe Form for printing Pay Cheque

    Does anyone know / tried using adobe form for printing pay cheque using payment medium workbench (PMW) instead of using  traditional sapscript and using RFFOUS_C program ?
    Regards,
    Trikanth Basetty

    Hi Praveen,
    Find out the data what is being printed for the first time, and check what is the flag that is making the change.  Hope that should resolve your issue.
    Thanks,
    Rakesh.

  • Cheque MICR printing

    Hi,
    i have to modify a report which print a cheque,
    I just want to know what are report codes or properties needed to print the cheque infos,
    particularly cheque number at the bottom...
    Thanks.
    Edited by: Tabit7 on 2012-03-10 05:07

    Hi, and thanks,
    The number of the cheque which is at the bottom of the cheque is not at the report footer....
    It is the MICR line, i see on the report, 3 text areas with small squares which are the section of the cheque MICR, but do not know how to find the source,
    when i did ''F4'' on one of this area, i do not see source property...
    hope you understand my problem...
    Thank you.
    Edited by: Tabit7 on 2012-03-10 05:09

  • How to Print the Cheques in SAP6.0

    Hai, Every Body
    we are using SAP 6.0 in our company
    we have developed a program for printing the cheques.
    and our printer name is Wep DX 800 (Dot Matrix Printer)
    but after printing the cheque the printer automatically scrolls A4 Length paper
    at each we need to reset the cheque into the printer manually
    this is very problamatic for us
    we need a solution to stop the scrolling of paper after printing the cheque
    the cheque size is height- 95 MM  and width - 231 MM
    please send any body the document to configure our sap to support this  
    Regards
    Sudheer

    ' the cheque size is height- 95 MM and width - 231 MM '.
    Please nake sure you have created a page format of same length in SPOOL ADMINSTRATION (t-code SPAD) , with help of ur basis consultant , use the same in your Smartform.
    In the Print controls of that format AT THE END OF THE PAGE : If u find  '\F' , change it to # no action .
    Try this .
    Your Problem will be solved.
    Regards,
    Ramesh.

  • How to print the Cheques in Oracle Payroll in R12

    After Running the Cheque Writer Process in Oracle Payroll how can one print the Cheque Leaves in the Payroll module for each employee that is to be paid through cheque.
    Please give the Navigation for the same.
    Regards,
    Chetan

    Please if there is any one who has tried out some customisation on how to print the cheques after running the cheque writer process kindly share it with me as i am in big trouble here....

  • Printing of cheque created through FCH5

    Hi
    I am creating vendor down payment wrt payment request in T code F-48 screen. again i am creating cheque for that payment document in FCH5 screen.
    How to do cheque printing manually for cheque cerated in FCH5 screen.
    Please help me in this regard.
    Regards
    Sanil Bhandari

    hi sanil,
    see you can clear the payment through F-48 but you cannt print it.
    If you want to clear the payment go to Tcode F-58 this is to clear the Payment with the print out.
    1. Create the check lot number in Tcode FCHI.
    Thanks
    Ranjit

Maybe you are looking for

  • Can i have 2 different i phones use the same computer to update

    can i have 2 different i phones use the same computer to update

  • Error when trying to connect in synch manager

    Hi there, When trying to connect to an administration in synch manager, an error appears: SBO Error #-111: Failed to Connect to SBOCommon System: SAP Business One 2007A PL42 SQL Server 2005 SAP Webtools 2007 PL 13 Kind regards, Andy Grootens

  • N+1 & OfficeExtend Access Points

    There seems to be a lot of conflicting information out there so I thought I'd ask you guys. Is N+1 supported with OfficeExtend Access Point (OEAP) 600 clients supported? I want to implement it on the following 2* 8510 WLC's release 7.5

  • CS6 Photo merge error 1 error

    Hi, Trying to use the following in Automate all fail with the same error codes: Lens Correction Merge to HDR Photomerge all have this error; I have tried to change CS6 Preferences/Performance to allow more memory etc but that didnt help. Restarting d

  • Router receives a frame/packet with unknown MAC address

    Hi Everyone, Lets assume that a router received a frame/packet on an interface due to switch did not have the destination mac address listed on its mac address table and therefore broadcatsed this packet out of all ports, and router receives that pac