Can i take print out of report

hi
   my report has line-size 205 czn i take print out of OUTPUT of this on A4 sheet on landscape.
     my second question is : - - what CIZ refer in SAP script i have seen it like
                                            <b> &J_1IEXCHDR-EXBED(CIZ)& ,</b>  , i think it use to truncate leading space.

1) yes, you can take print out on A4 paper in landscape format.
2) There are formatting options...
    C-->  Space compression
    I -->  Surpress output initial value
   Ex: &value&   --> 0.00
         &value(I)  -->  empty space
   Z --> for omitting leading Zero
Close the thread once your question is answered.
Regards,
SaiRam

Similar Messages

  • How can we take print out for challen no. create d by J1INCHLN

    hi,.
    actually i forgot to take print after running J1INCHLN  .
    how can we take printout or display without running J1INCHLN .
    one challen number is created , is there any tcode to view or print.
    regards.
    hari priya

    hi,
    We can use the T.code  J1INMIS. GOTO   Report selection option & select challan Update status.
    Excute the report. you will get a list of all bank challan made so far. Then select the required document & take print.
    The Process is :
    Invoice in FB60/MIRO
    Bank Remittance - J1INCHLN
    Bank Challn Update - J1INBANK
    TDS Print - J1INCERT.
    assign points if found useful
    Regards,
    R.Ramakrishnaraj

  • How to take print out for "Letter of Credit"

    Hi,
    We have configuration for Letter of Credit and posted some documents for it.Now i need to take print out of Letter of Credit transactions.
    Kindly help me in this regard...
    Thanks
    Suvarna

    Hi,
    SAP does not provide the entire life cycle of L/C. we only maintain the L/c Details in SAP.
    Thre is no standard that can give you the print. You may need to customise if needed.
    Caio
    Raghu

  • Print out of report

    hi experts ,,,,
      1)...i am taking the print out of report.
      i given the horizantal and vertical lines......
    i did not want them in output(lines)....
    how can i do this, any option is available.
    2) how to delete the leading zeroes...
      i jave number like this 00000876. i need only 876.
    how can i get it. any command u can suggest me..
    thanks in advance.
    Message was edited by:
            dasr r

    hi,
    U can either use this function module also
    CONVERSION_EXIT_ALPHA_OUTPUT
    or
    SHIFT <yourField> LEFT DELETING LEADING '0'
    or
    try NO-ZERO option of WRITE statement
    or
    Another way is to create another variable of type I and assign the value into it
    example:
    DATA: L_NUMC(08) TYPE N.
    DATA: L_INT TYPE I.
    L_NUMC = '00000018'.
    L_INT = L_NUMC.
    Result will be = 18.
    Hope this helps
    regards.

  • User print out the report of Tcode-fc10 the printing is 7-8 times repeated

    Hi,
    User print out the report of Tcode-fc10 the printing is 7-8 times repeated.printer is SL00004 Korea.What can I do? so that user  gets only  one copy .Is there any setting .User is getting this issue only when they print out the report of T-code(fc10) only.
    Moderator message: no evident relation to ABAP development.
    Edited by: Thomas Zloch on Jan 18, 2011 3:09 PM

    I suspect you may be using ActiveX print control(?). If that is the case, look at permission issues.
    1) If you run the app on the server it's self, are you able to print from there?
    2) If you log in as an admin on the server, can you print?
    3) If you log in as an admin on the a workstation, can you print?
    Process Monitor will be a good utility to use to check permission issues. Process Monitor is here:
    http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx
    Ludek

  • Directly print out a report

    I make a form and a report.I try to directly print out it.but before the result print out,a html coding print out. How to print only the result of the report?
    The below is the procedure in the Form.
    PROCEDURE sendparam1 IS
         report_id                              Report_Object := FIND_REPORT_OBJECT('SHSEL_DAILY_FUNCTION');
         report_server_name     varchar2(100) := 'repfodbopera';     --Report Server Name (repseokyooperawebopera/repfodbopera)
         report_format                    varchar2(20)     := 'PDF';                              --Report Type
         report_destype_name     number                    := PRINTER;
         report_file_name          varchar2(100)     := 'SHSEL_DAILY_FUNCTION';     --Report File Name
         report_otherparam          varchar2(2000):= 'paramform=yes';     
         report_servlet               varchar2(100)     := '/reports/rwservlet';
         report_folder                    varchar2(100)     := 'M:\micros\opera\production\runtimes\';     --Real Report File folder(http://fodb/webtemp/opera/)
         pdf_folder                    varchar2(100)     := 'M:\micros\opera\operaias\webtemp\opera\';     --Real Report File folder(http://fodb/webtemp/opera/)
         report_message               varchar2(100)     := '';
         rep_status                         varchar2(100)     := '';
         vjob_id                                   varchar2(4000):= '';
         hidden_action                    varchar2(2000):= '';
         v_report_other               varchar2(4000):= '';
         report_user                         varchar2(100)     := 'OPERA/OPERA@OPERA';     --Opera DB
         resort                                   varchar2(20)     := 'SHSEL';                    --SEOKYO               
         PMS_ID                                   varchar2(20)     := 'OPERAREP';
         PMS_PW                                   varchar2(20)     := 'OPERAREP';
         v_time varchar2(10) :='';
         v_pdf_name varchar2(200):='';
    Begin
         --message(to_char(sysdate,'mmddhhmiss'));
         v_time:=to_char(sysdate,'mmddhhmiss');
         v_pdf_name:=report_file_name||     v_time||'.PDF';
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
    -- SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,report_folder || report_file_name);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,report_server_name);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,report_destype_name);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,report_format);
         --SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,report_folder ||report_file_name||     v_time||'.PDF');
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'OfficePrt'); --&#54532;&#47536;&#53552; &#51060;&#47492;
         hidden_action := hidden_action || '&report=' || GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME);
         hidden_action := hidden_action || '&destype=' || GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE);
         hidden_action := hidden_action || '&desformat=' || GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT);
         hidden_action := hidden_action || '&userid=' || report_user;
         hidden_action := hidden_action || '&desname=' || GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME);
         v_report_other := v_report_other || 'P_REPORT_DATE=' || :TXTREPORTDATE;
         v_report_other := v_report_other || '&P_END_DATE=' || :TXTREPORTDATE;
         v_report_other := v_report_other || '&P_RESORT=' || resort;
         v_report_other := v_report_other || '&P_USER=' || PMS_ID;
         v_report_other := v_report_other || '&P_PASSWORD=' || PMS_PW;
         v_report_other := v_report_other || '&P_REPORT_NAME=' ||report_file_name;
         v_report_other := v_report_other || '&P_BUSINESS_DATE=' || :TXTREPORTDATE;
         hidden_action := hidden_action || '&' || v_report_other;
         hidden_action := report_servlet || '?_hidden_server=' || report_server_name || hidden_action;
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,'pfaction=' || hidden_action || ' ' || report_otherparam);
         report_message := run_report_object(report_id);
         rep_status := report_object_status(report_message);
    While Rep_Status In ('RUNNING','OPENING_REPORT','ENQUEUED') Loop
    Rep_Status := Report_Object_Status(report_message);
    message('status : '||Rep_Status);
    End Loop;
         if rep_status = 'FINISHED' then
              --message(rep_status);
              vjob_id := substr(report_message,length(report_server_name)+2, length(report_message));
              Web.Show_Document(hidden_action,' _blank');
              --Web.Show_Document('../../webtemp/opera/'||v_pdf_name,' _blank');
              --Web.Show_Document(report_servlet || '/getjobid' || vjob_id || '?server=' || report_server_name, ' _blank');
         else
              message('Error');
         end if;
    end;

    I can print out the report but the html page as the below is printed before the report.
    Why is the html page printed ? and I don't want to print out the html page.
    <html>
    <body dir=LTR bgcolor="#ffffff">
    <form method="hidden_run_parameters" type=hidden value="server=repfoopera&rep......
    Message was edited by:
    asterika

  • Hi Guys, Im getting a secnond-hand Iphone 4S and im going to use it as an ipod. How will i set it up if i dont want a SIM Card?? And if i use a SIM card for the activation then can i take it out??

    Hi Guys, so im getting an iphone 4S as a hamy-down and im gonna use it as an ipod without a SIM Card. Im going to put my backup data on it from my old device. How will I activate it? Can i use my family members SIM (SIM that has been used in an iPhone before) to activate it,  then can i take it out and use it without a SIM.
    Regards, PulseSol

    You can't activate any GSM iPhone without a valid sim card installed. So, yes, you'll need a sim card to activate the phone. The sim itself need not be activated, but it must be valid & present. While you can remove it, after the phone is activated, I recommend you don't. If you ever need to restore the phone, or update the iOS, you'll need a sim card installed to do so.
    Make sure whoever is furnishing the phone to you, follows the directions here, before you get the phone:
    http://support.apple.com/kb/ht5661

  • Can we take print of PR like PO?

    Hi Techies ,
    Can we take print of PR like PO ?
    How ?Pl suggest .
    Thanks a ton
    Regrads

    Hye
    PR is not advicable to print as it is an internal document
    all the PR can be seen through ME5A
    this can be viewd and approved through release strategy
    Whereas PO being external document needs to be sent to vendor through mail, fax etc
    Hence there is an print optio and requires to be printed
    thx

  • Unable to take print out of JPEG image of DMS Document

    Hi Expert,
    I have used below method to print document.
            CALL METHOD cl_gui_frontend_services=>execute
              EXPORTING
                document  = w_string
                operation = 'PRINT'.
    I am able to take print out of all documents except JPEG.
    Could any one help me out to do the same?
    Thanks,
    Jay.

    Hi,
    see three possibles solution:
    First: Solution! (Hopefully) :Print label image in GIF format
    But I also used two different solutions to distinct problems.
    I used SE78 functions dynamically to print an image for SmartForm.
    In another situation I used a DVS Repro solution from SEAL Systems.

  • I am a small woman with huge wrist circumference, 177.6mm.  If I order the black men's stainless steel watch how can I take links out if needed?

    I am a small woman with huge wrist circumference, 177.6mm.  If I order the black men's stainless steel watch how can I take links out if needed?

    We are just users here, so we have no way of knowing...
    I am sure that any question that is not easily found at or from the Watch Store page > http://store.apple.com/us/watch < can be answered by this method (from the bottom of that page)
       Chat with a Specialist
    Get all your Apple Watch questions
      answered or get help finding the
    right watch. Call 1-800-MY-APPLE
    ÇÇÇ

  • Need to take Print out - PL SQL Program / Unix

    Hi,
    I need to take print out from a file already created in Database Server in a specific path to a printer. Any PL SQL program or any shell script is there to do this??
    Thanks,
    Neil

    Neil_80 wrote:
    I need to take print out from a file already created in Database Server in a specific path to a printer. Any PL SQL program or any shell script is there to do this??Not enough information.
    {message:id=9360002}
    It's perfectly possible, but will depend on where your data is and whether it's already a printer output file etc.
    e.g. you could use the dbms_scheduler package to call a command line that sends the file directly to the printer device
    However, the specifics of that will depend on your database version and your operating system, and what file you're trying to send.

  • How Can I Take Print Screen With in java Application

    Hello Every One,
    Hope U all r fine.
    How can i take print screen with in java code,
    Please Help me out

    http://search.java.sun.com/search/java/index.jsp?qp=&nh=10&qt=%2Btitle%3A%22print+screen%22&col=javaforums

  • İ have an hp 3052 all in one.how can i get print out with ipad or iphone?

    İ have an hp 3052 all in one.how can i get print out with ipad or iphone?

    Hello,
    Try following the instructions here http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02623193&cc=ad&dlc=en&lc=en&jumpid=reg_r1002_us...
    If that does not help, let me know and I will see what I can do.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • How to print out multilingual reports from the main report using Xliff temp

    Hi all,
    How to print out multilingual reports from the main report using Xliff temp?
    When I want main report call subtemplate and finish xliff tranlation
    <?for-each@section:INVOICE?><?end for-each?>
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    <?start:body?><?call:Header?><?call:Line?><?call:Weights?><?call:Banks?><?end body?><?call:Footer?>
    Prints out fine with Finnish translation
    But if I want in main program to check what language is used e.g.
    if trx_number = 142 call Finnish translation and if trx_number =144,
    call English translation.
    <?for-each@section:INVOICE?><?end for-each?>
    <?if:TRX_NUMBER=’142’?>
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    <?start:body?><?call:Header?><?call:Line?><?call:Weights?><?call:Banks?><?end body?><?call:Footer?>
    <?end if?>
    <?if: TRX_NUMBER=’144’?>
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.US/?>
    <?start:body?><?call:Header?><?call:Line?><?call:Weights?><?call:Banks?><?end body?><?call:Footer?>
    <?end if?>
    Prints out always in English and never the Finnish translation.
    Program goes fine to if branch but does not print out Finnish
    Does anybody know what could be wrong?
    BR
    Kari

    Thanks Amit,
    I have two layout, main-layout and sub-layout
    Main layout call subtemplate
    I have registered layout and xliff-file
    Main template
    Localized Templates
    File Name           Language Territory
    XXNS_INVOICE_MAIN.rtf      English
    SUB template
    Localized Templates
    File Name           Language Territory
    XXNS_INVOICE_SUB.rtf      English
    Translatable Template
    File Name           Language      Territory
    XXNS_INVOICE_SUB.rtf      English      United States
    Available Translations
    Language Territory Progress
    English Finland Complete
    If main report call subtemplate and finish xliff tranlation
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    Prints out fine with Finnish translation
    But if I want in main program to check what language is used e.g.
    if....
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    .....end if;
    if....
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.US/?>
    .....end if;
    Prints out always in English and never the Finnish translation.
    Program goes fine to if branch but does not print out Finnish
    Do you it's set up problem or program problem
    BR
    Kari

  • When someone send me a message I don't want them to no I read it I click allow this to happen when I first updated my phone but I do not want this feature how can I take it out ?

    When someone send me a message I don't want them to no I read it I click allow this to happen when I first updated my phone but I do not want this feature how can I take it out ?

    If you mean iMessage then go into Messages in the Settings app. The feature is Read Receipts.

Maybe you are looking for

  • JS CS3 Automate Creation of Hyperlinks - Repost?

    Hi all, A while back, Olav Kvern posted a JavaScript to automate the creation of hyperlinks for CS3. someone repost the code? The posting has expired on the site. Thank you so much!

  • How can I know the encoding format for a file.

    I have files encoded in English, Spanish, Japanese etc. I want to know which file has which encoding format while reading. Can anyone suggest. Ashish

  • Mm process flow

    hi will any body give a complete life cycle flow of material management module or product life cycle management of mm module regards brijesh

  • Interface program to transmit billing docs as edi 810

    Hi experts,     I am new to ale/edi/idocs. I need to develop an interface program to transmit billing documents in a text file for sending them as edi 810 docs. Can anyone give me some idea on how to deal with this? Thanks a lot... Regards, Abhinav M

  • Playing with Samba4

    Hi I've recently been "playing" with Samba4 as a test to whether our small business can make use of it. I've found what I believe to be an oddity (or two) and was after opinions on how normal this is under Arch. I can join the domain fine, messed abo