Problem with dispalying out put of report RLLI0400

i have added one field in the report by copieng the report to zprogram...
i want see the out of the report ,but i am not getting any out put just giving the message saying that tha document is printed...
i need to change code in this report?
i need to change any thing in form DRUCKER_EINSCHALTEN,
if yes please tell me what changes are needed.....

Hi Kranthi,
in sub routine DRUCKER_EINSCHALTEN omit the code NO-DIALOG with NEW_PAGE command. i think it is genreating output into a spool request and suppress the dialog. if you omit this NO-DIALOG it will generate output.
Regards
Krishnendu

Similar Messages

  • Problem with Input out put parametes of IViews in callable objects

    Dear Friends,
    I have designed model which contains 2 IViews
    Apply leave IViews
    Approve leave Iviews
    In both the cases i have exposed the in & out parameters using start & end point.
    Finally deployed in portal successfully
    Guided procedures ->Design Time
    I have created folder
    when i create callable objects using this IViews , i dont see the input & out put parameters exposed in context parameters tab for this IView.
    Any step i missed.
    Regards
    shekar Chandra

    HI Nishi
                struck up with minor problem,
    We have a application designed in VC.It contains
    Create request
    Approve Request(approve or reject buttons)
    IF approved then
    a.Book Request IView
    b.Summary Iview
    If Rejected then
    a.rejected IView.
    When i am designing Process with Sequential block,
    all the actions namely
    create request
    appprove request
    reject
    book
    summary
    are processingone one by as action mentioned in sequential block irrespective of approved or rejected.
    I cannot go for alternative block, since the result state buttons are desinged in IView only namely(Approve/reject).
    How to overcome this probelm any suitable solution?
    regards
    shekar chandra

  • Problem with email out put

    Hi SD gurus,
    I have enabeld emailing fucnitnality for an out put.
    Maintained record for the same.
    When I am creating order it is pulling the out put in to the order.BUt when i am saving the order the out put didnt get succes and it is red color.
    I checked  proceeing log and the error is " Maintain an output device in your user master record "
    I even maintined out put device as per above error message in SU01.
    But sill getting same error in the out put.
    Can somebody help resolve this.
    Thanks in advance,
    Vivek

    Hi,
    Goto VV12 T.Code.
    Select your output type.
    Execute.
    Click on Communication.
    Here maintain the output device as LP01/LOCL or as the entry required for you from F4 help.
    Tick print immediately.
    Save.
    Regards,
    Krishna.

  • Problem with an Out Put Stream Writer

    I want to open an URL so I use the following code inside a try bolc
    URL recup = new URL("http://www.sun.com");
    getAppletContext().showDocument(recup,"_blank");but once I add the following line of code
    writer = new OutputStreamWriter(conn.getOutputStream Ican't open the URL mentioened above
    that means the following code doesn't work
    writer = new OutputStreamWriter(conn.getOutputStreamURL recup = new URL("http://www.sun.com");
    getAppletContext().showDocument(recup,"_blank");
    conn is a connexion that I establish before
    that is just a piece of my code

    Your post is not correct,
    Ask yourselve the following questions:
    1. does accint.dll support POST data or only GET?
    2. does accint.dll need a cookie (session)?
    3. what do you want to post?
    4. does it need authentication
    what does this give you, it will read the response if there is any:
    import java.io.*;
    import java.applet.*;
    import java.net.*;
    public class test extends Applet implements Runnable {
         public static void main(String[] args) {
              new test();
         public test() {
              new Thread(this).start();
         public void init() {
              System.out.println("this is init");
         public void run() {
              try {
                   SendPostRequest();
              } catch (Exception e) {
                   e.printStackTrace();
         public void SendPostRequest() {
              URL url = null;
              URLConnection conn = null;
              OutputStream writer = null;
              try {
                   // set value for provenance
                   StringBuffer b = new StringBuffer();
                   b.append(URLEncoder.encode("provenance","UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("CTLIDT", "UTF-8"));
                   // set value for environnement
                   b.append("&");
                   b.append(URLEncoder.encode("environnement", "UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("expsv", "UTF-8"));
                   // where is your & here, what value are you setting here????
                   b.append("=");
                   b.append(URLEncoder.encode("0", "UTF-8"));
                   // set value for CODLANG
                   b.append("&");
                   b.append(URLEncoder.encode("CODLANG", "UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("0", "UTF-8"));
                   // set value for password
                   b.append("&");
                   b.append(URLEncoder.encode("password", "UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("AAAAA", "UTF-8"));
                   // set value for nom
                   b.append("&");
                   b.append(URLEncoder.encode("nom", "UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("XYBI5400", "UTF-8"));
                   url = new URL(
                   "http://portail-sav2000.francetelecom.fr/binaccdi/accint.dll");
                   conn = url.openConnection();
                   conn.setDoOutput(true);
                   conn.setDoInput(true);
                   //Send request
                   writer = conn.getOutputStream();
                   writer.write(b.toString().getBytes("UTF-8"));
                   writer.flush();
                   writer.close();
                   // the probleme is here I can't open the " francetelecom" page in
                   // the browser
                   //this is independent from the connection above
                   // I mentione that no problem happens during the compiltaion and
                   // no exception throwed during the execution
                   System.out.println(readResponse(conn));
              } catch (Exception e) {
                   e.printStackTrace();
         public String readResponse(URLConnection urlc) {
              // it is VERRY importaint to read the entire response
              // if you want to connect to the same server again
              // this is because closing the inputstream does not close the socket
              // and response data from a previous request could be mixed up with the
              // current
              InputStream is;
              byte[] buf = new byte[1024];
              String returnValue = "";
              try {
                   is = urlc.getInputStream();
                   int len = 0;
                   ByteArrayOutputStream bos = new ByteArrayOutputStream();
                   while ((len = is.read(buf)) > 0) {
                        bos.write(buf, 0, len);
                   // close the inputstream
                   is.close();
                   returnValue = new String(bos.toByteArray());
              } catch (IOException e) {
                   try {
                        // now failing to read the inputstream does not mean the server
                        // did not send
                        // any data, here is how you can read that data, this is needed
                        // for the same
                        // reason mentioned above.
                        e.printStackTrace();
                        System.out
                                  .println(((HttpURLConnection) urlc).getResponseCode());
                        InputStream es = ((HttpURLConnection) urlc).getErrorStream();
                        int ret = 0;
                        // read the response body
                        while ((ret = es.read(buf)) > 0) {}
                        // close the errorstream
                        es.close();
                   } catch (IOException ex) {
                        // deal with the exception
              return returnValue;
    }

  • Problems with filling out PDF forms

    We have problems with filling out PDF-forms. Aotomatic filling of forms is deactivated and we use the Adobe Reader 11.0.05. The problem is: After some time the inputs are wrong put down in the form. For example: I write 120 and in the form stands 125. We have already extinguished the cache. Thanks for your help in advance.

    You will get that first message when the document has been changed in a way that invalidates the internal digital signature that's applied when a document is Reader-enabled. Certain changes are allowed (e.g., filling fields, commenting, signing) and will not invalidate the signature, but others are not. The exact cause of the change is often hard to track down, but it can be due to font problems, some type of file corruption, or something that Acrobat/Reader attempts to correct when the file is opened/saved. You will also get the message if the users system time is not correct and is currently set to some time before the document was Reader-enabled. It seems best to use the most recent version of Acrobat to enabled the documents and recent versions of Reader to work with them.
    It problem is probably not related to the user using anything in the Sign pane.

  • Problem with PDF extract in a report

    Hi guys,
    We are facing a peculiar problem with PDF extract in a report. When we run a report and export PDF , all the records in the result set are populated in the PDF. however, if I navigate away from the report and return back to the same report, and click on export pdf (with the result set already populated) i get a blank PDF document without any records. If i run the report again and then export the PDF it works fine.
    Export excel works fine for all cases.
    I am assuming it has got something to do with the way the system handles the cache for PDF export.
    I also found that this occurs only when we have a value list filter with "none" set as default,and in this case, initially on opening  the report for the first time the query does not get executed automatically.
    Any help on this would be highly appreciated.
    Thanks and Regards,
    immanuel

    Hi Immanuel,
    Have you tried clearing the cache? My guess is, it is probably a defect.
    Regards,
    Vikram

  • Problems with TV Out signal after upgrading to iOS 5.1

    Has anyone experienced problems with TV Out signals on their iPad 2 using the Apple HDMI Adapter after upgrading to iOS 5.1?  I am trying to connect to my HDTV after upgrading and cintunally receive an "Unsupported Video Signal" message with a blank/back screen.  Prior to upgrading, I had no connection problems and could view TV Shows, Movies, Music Videos, Keynote, etc...without problems.  I've been unable to find any resolution to this problem, even followed Apple guidance to detach and reattach the HDMI adapter without success.  Seems like a software bug to me and it's a major problem when trying to conduct business or personal activities.  Hopeing Apple has a fix in work already...anyone else have any ideas?  Thx in advance...

    Try a reset. Press & hold the Power and Home buttons together for 10+ seconds, ignoring the red power-off slider, until you see the Apple logo. It is safe to do, there should be no content loss. It is the same as rebooting your computer.
    If that does not work, restore the iPad to the factory settings.

  • Problem with fading out particles in cs5

    I have a problem with fading out particles or anything for that matter in my CS5 after effects!  I set up the key frames right.  O opacity at first and whatever number at next and it fades in fine,  But when I try to do the reverse it will not fade out and only stops the effect if I cut its durration at the red par representing it on the top of the time line. This produces and rough aburpt cut of the effect which will not due.  Please can anyone tell me what I am doing wrong that I can't fade out particles with opacity?

    First question: What OS and what's the build of CS5.5?
    Second question: What effect are you using? There are a bunch of ways to generate particles.
    Last question: if you turn off the effect can you get the layer to fade out? Pressing Alt/Option + t will set a keyframe for opacity on your layer and reveal the keyframe in the time line. Do that, set the value to 0, then move down the timeline a few frames and set the value to 100. This should generate another keyframe. Now move down a few more frames and press Alt/Option + t or change the value for opacity to anything and then back to 100, or copy the previous keyframe and paste to set a 3rd keyframe. Finally move down a few more frames and set the value to 0. You should have 4 keyframes in your tlimeline for opacity. If you want to clean up the layer press Alt/Option + ] to set the out point for the layer.
    Everything should work just fine. Turn on the effect and your layer and the effect should fade out.
    If you want to do something else with the particles, like fade out a particle over the lifetime of the particle we'll need to know which plug-in you're using.

  • Has anybody had a problem with greyed out wifi on i phone 4 gs

    Has anybody had a problem with greyed out wifi setting on iphone 4gs

    Forty four in the last week.
    wifi greyed out

  • Problem with Grand total in Crystal report xi

    Post Author: eshwar_polawar
    CA Forum: Crystal Reports
    Dear all,
    I am facing the problem with Grand total field in Report footer.Please advise me how should we resolve it.
    My report design as follows
    Report Title
    Page Header section:
    charged date    fee_ description charge_ amount currency_code
    Group  Header #1(Group by bank_ref)
    Group Header #2(Group by Currency code)
    Details
    charged date    fee_ description charge_ amount currency_code
    Group Footer#2 
    (Sub Total )
    Running Total field(Fields to Summarize on Charge_amount, Evaluate on "Group2# change of currency code) ,Sum of Charge_amount,Currency_ code
    Report footer:
    Sum of (charge_amount) currecy code
    Example of data:
    charged date   fee desc   chrage amount  currencycode
    0000000060129
    CAD
    10-Oct-2007    Transfer     200   Cad
    11-Oct-2007  comm          150 cad
    Sub total                        350 Cad
    0000000060129
    CAD
    10-Oct-2007    Transfer     100   USD
    11-Oct-2007  comm          150  USD
    Sub total                        250 USD
    Grand total     should   350 CAD  but it is showing  all total amoun 1000 CAD ,Group by Curreny code in the table
                                        250 USD but it is showing all  total amount 1200 USD
    Please provide the solutions like:
    1).About Running total in Report footer section
    2).Formula on While printing records for grand total
    3).How will send links with subreports
    Thanks and Regards
    Eshwar

    Post Author: eshwar_polawar
    CA Forum: Crystal Reports
    eshwar_polawar:
    Dear all,
    I am facing the problem with Grand total field in Report footer.Please advise me how should we resolve it.
    My report design as follows
    Report Title
    Page Header section:
    charged date    fee_ description charge_ amount currency_code
    Group  Header #1(Group by bank_ref)
    Group Header #2(Group by Currency code)
    Details
    charged date    fee_ description charge_ amount currency_code
    Group Footer#2 
    (Sub Total )
    Running Total field(Fields to Summarize on Charge_amount, Evaluate on "Group2# change of currency code) ,Sum of Charge_amount,Currency_ code
    Report footer:
    Sum of (charge_amount) currecy code
    Example of data:
    charged date   fee desc   chrage amount  currencycode
    0000000060129
    CAD
    10-Oct-2007    Transfer     200   Cad
    11-Oct-2007  comm          150 cad
    Sub total                        350 Cad
    0000000060129
    CAD
    10-Oct-2007    Transfer     100   USD
    11-Oct-2007  comm          150  USD
    Sub total                        250 USD
    Grand total     should   350 CAD  but it is showing  all total amoun 1000 CAD ,Group by Curreny code in the table
                                        250 USD but it is showing all  total amount 1200 USD
    Please provide the solutions like:
    1).About Running total in Report footer section
    2).Formula on While printing records for grand total
    3).How will send links with subreports
    Thanks and Regards
    Eshwar

  • Problems with parameter button in Crystal Report Server  2008

    Dear all,
    I have problems with parameter button in Crystal Report Server 2008.
    when I created some parameters and groups in Crystal Report 2008, they showed both parameters in 'Parameter button' and group in 'Group button'  on the left, so I can choose or type without clicking 'Refresh button' But when I added it to Crystal Report Server 2008 and I click parameter button , it doesn't show any parameter. Only click refresh button to choose them. On the other hand, for 'Group Tree' is ok. When go to Default Setting-> Parameter, all parameters are in 'Unused parameter'  First time I think I had problems with my installation, but when I reinstalled it again, it was like before.
    Could any one help me with this?
    I appreciate looking forward to your reply
    Ketya

    Try posting your questionin the correct forum, this is for SAP Business One, not Crystal reports Server

  • Problem with NIReport.llb\Print HTML Report using IE.vi on different machines

    We have 5 machines here in our workgroup which have the same state regarding security patches and other system updates. We recently found out that there is a problem with the NIReport.llb\Print HTML Report using IE.vi on the different machines.
    If I would open the VI on MachineA the control could be loaded. If I would open the VI on MachineB the control could be loaded. If I would copy the VI from MachineB to MachineA and open the VI the control could not be loaded. If I would copy the VI from MachineA to MachineB and open the VI on MachineB the control could be loaded. MachineB could load the version from MachineA and MachineB but on MachineA only the own version will load. I have seen that both versions have the same GUID for the Microsoft Webbrowser but are different in some other aereas.
    Since printing HTML Reports is part of the application which will be distributed as application I want to know if someone else have seen such a behaviour or has got problems distributing an application.
    Also I want to know which additional information is stored in an Active-X container about the control beside the GUID.
    We have Win XP Prof SP2 with MS IE 6.0.2900.2180 on all machines in the workgroup.
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

    Hi Tom,
    this is the VI <vi.lib>\Utillitiy\NIReport.llb\Print HTML Report using IE.vi copied from a machine that can load and run the VI and it will print. On this machine the control in the VI is white.
    This VI will give the "Control could not be loaded" message on my machine.
    The file shdocvw.dll is 2006-10-23 16:18 size 1.460 KB and I verifyed that both machines have the same version of this file.
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions
    Attachments:
    Print HTML Report using IE.png ‏11 KB

  • Problem in Print Out of ALV report

    Dear All..
    I am trying to take print out of an ALV report. there are 36 columns in my report. when i try to take print out, warning appears which says system cannot print the last 277 columns of report.
    i have tried using different formats for printer like :
    Format                  Description
    X_PAPER                 ABAP/4 list: Default list formatting
    X_SPOOLERR          ABAP list: Spooler problem report
    ZX_65_284               65 Rows and 285 Columns
    X_65_255                ABAP/4 list: At least 65 rows with a maximum number of c
    X_65_200                ABAP list: at least 65 lines with 200 columns (not for a
    X_58_170                ABAP/4 list: At least 58 rows by 170 columns
    X_65_132                ABAP list: At least 65 rows by 132 columns
    X_90_120                ABAP list: At least 90 rows by 120 columns
    X_44_120                ABAP/4 list: At least 44 rows by 120 columns
    X_65_80                 ABAP/4 list: At least 65 rows by 80 columns
    but every time the same message appears even on A3 size paper..
    i am using REUSE_ALV_GRID_DISPLAY to display ALV.
    Please help to to take out prints(can be in condensed mode) so that all columns appear on the print out..

    HI sujeet,
    Thanks for ur response. i had already checked the printer settings.. i think there is no problem with this. Can u Please suggest something else. thanks
    Hiii jyojit..
    Thanks for reply. I had already checked the said check box in spool admin. but the problem still exists. Please suggest something to get rid of the problem.

  • Problem with TV out, only audio, no video

    I has just bought a new ipod video 30GB and I also bought a A/V cable
    of apple. But when I connect to my television. Only hear audio from
    television but no video.
    I tried a lot of ways as folows:
    + video setting : changed TV out --> ON
    + I tried restone ipod to factory condition
    + I tried to change the position of 3 connectors (Yellow,Red, Whitle)
    of A/V cable (according to standard, Yellow is video connector).
    + I tried some tips from Discussion Techniques from Apple Forum
    But I still can't see video, just hear audio from Television.
    What's problem?
    I think Ipod only send the audio signal, not video signal.
    Can you help me to solve this problem?
    Thank you very much.

    As well I had the same problem with my i-pod and the one of my wife. The solution was simple:
    config: i-pod 60Gb; i-pod 30Gb
    cable: no name audio/video A/V cable
    TV-out: select ask (not on!!!)
    cable into TV: white on white
    yellow on red
    red on yellow
    There are no problems with bad video quality if volume is high, just working fine
    What may be the problem: I think, the automatic detect (if you put your setting for TV-out on your i-pod to on) is not working. As well as using only headphones there must be an electronic cirquit detection; means with no Apple stuff just not working. As well there are the yellow and red cable changed; means white and yellow have audio; red video.
    Working so for video and diashow on my pod each time I´ve to select TV-Out manually starting video or Dia Show. In that moment both applications are starting in small windows, not in Full Screen mode on the pod.
    The order to connect TV or i-pod doesn´t matter; it´s just the manual setting the i-pod for TV-out.
    I hope, the info can help you.
    i-pod 60Gb   Windows XP Pro  

  • Problems with TV out on GF4 TI4800SE

    I've been having this problem with running movies and other video files full screen from my comp to my tv. The picture is fine when it's normal sized, but when I make it full screen I get all these distorted horizontal lines over the screen...I've tried changin drivers, settings...I have no idea what to do...anyone got any suggestions?
    BTW I'm runnin XP.
    Thanx
    Kim c",)

    Hi,
    I used to have problems with Chrontel CH-700x chips producing dark horizontal banding on TV out, especially in highly saturated (highly coloured) areas of the screen, and aggravated by mouse movement.
    It only happened in full screen PAL 800x600 mode, which was the exact mode we needed to operate in  :(
    The problem was noise on the +5V power supply line to the sensitive analogue section of the CH-700x chip. The suggested solution was to increase the filtering to the AVDD pin (pin 31 on the CH-7007 for example).
    Initially, Chrontel suggested (in TB28) a filter consisting of a 20 ohm resistor in series with the supply line to this pin, and a 47uF Capacitor from pin 31 to 0V. In practice, an existing filter inductor could be changed to a resistor, and an existing capacitor replaced with a larger one (This was on a MS-6215 barebone machine).
    This worked reasonably well, but did not suppress the problem completely. I found that using a separate 5V 3 terminal regulator (78L05 etc.) fed from the +12V rail gave superior results. I reported my findings to Chrontel, who subsequently issued TB30 showing this solution.
    As far as I know, this problem only affects Chrontel TV-out chips. I don't know what is on your card, but it shouldn't be too hard to find out. Unfortunately, the above cures require a reasonable level of technical knowledge and skill to implement, and will of course VOID YOUR WARRANTY    
    I hope this helps.
    Cheers

Maybe you are looking for

  • Remote view lock ups

    I've recently started using the check-in/check-out option in DW (cs4) and started experiencing a very frustrating issue. If I am connected to the remote server, DW wants to hang every few seconds. It doesn't matter what view I am in or if a file is o

  • Export a report from another page with parameter problems...can it be done?

    Hi All, I have used Dennis Excel pkg which works fine if on the same page... however, I want users to enter two dates in my items P5_FIRST_DATE P5_SECOND_DATE I have manged to create a button that will execute the report on the second page without pa

  • Mavericks will not download from the App store. Repeatedly receive a message that "an error has occurred. Try again"

    I have repeatedly tried to download Mavericks from the App store. When attempted from the update tab it fails and instructs me to try again from the Purchases tab. When I try it there, I receive an error message that "an error has occurred" and to tr

  • Bridge Talk in InDesign CS4 js

    Hi, I need to adjust the script to open in Ph and re-save as png 2 page pdf liked file in indd. Right now the script does everything, but it re-saves and re-links first page of the pdf onto both indd's pages only. And I need it to place first png (fr

  • How do i create a shortcut on my windows pc for accessing my icloud email

    How do i create a shortcut on my laptop desktop to access an icloud email detailed instructions please , not computer literate, please don't assume I know all the terms I want to click on shortcut...enter icloud name....enter password.....read and wr