Urgent help telnet remote problem

Hello,
i have a problem with remote telnet connection to cisco 800 series router
I can connect via telnet/ssh from my local network when connecting to public ip
but nobody can connect from outside
here is my config
interface FastEthernet4
ip address 85.xx.xx.xx 255.255.255.252
ip nat outside
ip virtual-reassembly
duplex auto
speed auto
interface Vlan1
ip address 192.168.1.1 255.255.255.0
ip nat inside
ip virtual-reassembly
ip forward-protocol nd
ip route 0.0.0.0 0.0.0.0 85.xx.xx.xx
no ip http server
no ip http secure-server
ip nat inside source list 10 interface FastEthernet4 overload
access-list 10 permit any
line con 0
password cisco
login
no modem enable
line aux 0
line vty 0 4
password cisco
login
transport input all
transport output all
HELP

I have seen problems before with very similar symptoms that telnet did work from inside but did not work from outside. In most of these cases it turned out to be a problem in the way that address translation was configured. I suggest that you change the access list used to select traffic for address translation.
no access-list 10
access-list 10 permit 192.168.1.0 0.0.0.255
Give this a try and let us know if it helps.
HTH
Rick

Similar Messages

  • Urgent Help Reqd: Delta Problem....!!!

    Hi Experts,
    Urgent help reqd regarding follwoing scenario:
    I am getting delta to ODS 1 (infosource : 2LIS_12_VCHDR) from R/3. Now this ODS1 gives delta to Cube1. I got one error record which fails when going to cube (due to master data check).And this record would be edited later.
    So I thought of re loading cube and using error handling to split request in PSA and load valid records in cube.Later when I have coorect info abt error, I would load erroneous record manually using PSA.
    I did following steps:
    1)Failed request is not in cube...(setting is PSA and then into target)....also it has been deleted from PSA.
    2)Remove data status from source ODS1.
    3)Change error handling in infopackage to valid " Valid records update, reporting possible".
    4)start loading of cube.
    But when I did this I got following message :
    <b> "Last delta update is not yet completed.Therefore, no new delta update is possible.You can start the request again if the last delta request is red or green in the monitor"</b>
    But both my requests in cube and ODS are Green...no request is in yellow...!!
    Now the problem is :
    1) I have lost ODS data mart status
    2)how to load valid records to cube, since errorneous record can be edited only after 3- 4 days.
    3)How not to affect delta load of tomorrow.
    Please guide and help me in this.
    Thanks in advance and rest assured I will award points to say thanks to SDNers..
    Regards,
    Sorabh
    Message was edited by: sorabh arora

    Hi Joseph,
    Thanks for replying....
    I apolgize and I have modified the message above..
    I just checked in cube...there is no failed request for today...and neither in PSA....Person who has handed this to me may have deleted this is PSA..and why req is not in failed state in cube...I am not sure..though setting is "PSA and then into data package".....
    So how to go frm here....
    Thanks
    Sorabh

  • Asking urgent help for UI problems

    Hope to get any reply and help from you!
    Now, as for the UIs we want to get, we require that when users press one button on UI1 with "Enter" in keyboard(not using mouse), another UI2 would appear in front. Moreover, when users press "ESC" in keyboard, it can also return back from UI2 to UI1.
    However, we have some following problems as below:
    1. Now we use the following way for ui programming. However, we always find that the UI would be dead without any response for any key press. What's wrong with the following porgramming style and way:
    //UI1 class
    dispse();
    UI2 ui2 = new UI2();
    ui2.setVisible(true);
    //UI2 class
    dispse();
    UI1 ui1 = new UI1();
    ui1.setVisible(true); Many thanks for you! I hope it would not cost you much time!
    best wishes for you!

    Sorry if the code is rather long. However most of them are for the design of GUI only.
    Thanks in advance.
    import javax.swing.SwingUtilities;
    import java.awt.Color;
    import java.awt.Font;
    import javax.swing.AbstractAction;
    import javax.swing.Action;
    import javax.swing.JDialog;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JButton;
    import javax.swing.KeyStroke;
    import java.awt.Rectangle;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.JLabel;
    public class sample extends JFrame
         private static final long serialVersionUID = 1L;
         private JPanel jContentPane = null;
         private JButton[] EntButton = new JButton[3];
         private JLabel jLabel = null;
         int current = 0;
         Font originalfont = new Font("serif", Font.BOLD, 20);
         Font changedfont = new Font("serif", Font.BOLD, 30);
         Color blue = new Color (0,0,255);
         Color violet = new Color (182,122,132);
         Color red = new Color (255,0,0);
         Color black = new Color (0,0,0);
         private JButton getJButton() {
                   EntButton[0] = new JButton();
                   EntButton[0].setText("Movies");
                   EntButton[0].setBounds(new Rectangle(256, 190, 180, 40));
                   EntButton[0].setBackground(blue);
                   EntButton[0].setFont(originalfont);
                   EntButton[0].setForeground(red);
              return EntButton[0];
         private JButton getJButton1() {
                   EntButton[1] = new JButton();
                   EntButton[1].setBackground(violet);
                   EntButton[1].setBounds(new Rectangle(280, 250, 135, 31));
                   EntButton[1].setFont(originalfont);
                   EntButton[1].setText("TV Series");
              return EntButton[1];
         private JButton getJButton2() {
                   EntButton[2] = new JButton();
                   EntButton[2].setBackground(violet);
                   EntButton[2].setBounds(new Rectangle(280, 310, 135, 31));
                   EntButton[2].setFont(originalfont);
                   EntButton[2].setText("News");
              return EntButton[2];
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        sample thisClass = new sample();
                        thisClass.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                        thisClass.setVisible(true);
         public sample() {
              super();
              initialize();
         private void initialize() {
              this.setSize(1024,768);
              this.setContentPane(getJContentPane());
              //this.setUndecorated(true);
              EntButton[0].requestFocus(true);
              EntButton[0].setFocusPainted(false);
         private JPanel getJContentPane() {
              if (jContentPane == null) {
                   jLabel = new JLabel();
                   jLabel.setBounds(new Rectangle(345, 130, 135, 31));
                   jLabel.setText("Video");
                   jContentPane = new JPanel();
                   jContentPane.setLayout(null);
                   jContentPane.add(getJButton(), null);
                   jContentPane.add(getJButton1(), null);
                   jContentPane.add(getJButton2(), null);
                   jContentPane.add(jLabel, null);
                   jContentPane.getInputMap(jContentPane.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke(KeyEvent.VK_DOWN,0), "MoveDown"); //KeyStroke.getKeyStroke("DOWN")
                   Action ActionDown = new AbstractAction() {
                       public void actionPerformed(ActionEvent e)
                            current = current < 2 ? current = current + 1 : (current + 1 > 2 ? 0:1);
                            EntButton[current].setBackground(blue);
                            EntButton[current].setFont(changedfont);
                            EntButton[current].setForeground(red);
                           if (current==1){
                                EntButton[1].setBounds(new Rectangle(256, 250, 180, 40));
                                EntButton[0].setBackground(violet);
                                EntButton[0].setFont(originalfont);
                                EntButton[0].setForeground(black);
                                EntButton[0].setBounds(new Rectangle(280, 190, 135, 31));
                           if (current==2){
                                EntButton[2].setBounds(new Rectangle(256, 310, 180, 40));
                                EntButton[1].setBackground(violet);
                                EntButton[1].setFont(originalfont);
                                EntButton[1].setForeground(black);
                                EntButton[1].setBounds(new Rectangle(280, 250, 135, 31));
                           if (current==0){
                                EntButton[0].setBounds(new Rectangle(256, 190, 180, 40));
                                EntButton[2].setBackground(violet);
                                EntButton[2].setFont(originalfont);
                                EntButton[2].setForeground(black);
                                EntButton[2].setBounds(new Rectangle(280, 310, 135, 31));
                   jContentPane.getActionMap().put("MoveDown", ActionDown);
                   jContentPane.getInputMap(jContentPane.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke(KeyEvent.VK_UP,0), "MoveUp");
                   Action ActionUp = new AbstractAction() {
                       public void actionPerformed(ActionEvent e)
                            current = current < 3 ? current = current - 1 : (current - 1 > 0 ? 1:0);
                          if (current == -1)
                               current = 2;
                          EntButton[current].setBackground(blue);
                          EntButton[current].setFont(changedfont);
                          EntButton[current].setForeground(red);
                           if (current==0){
                                EntButton[0].setBounds(new Rectangle(256, 190, 180, 40));
                                EntButton[1].setBackground(violet);
                                EntButton[1].setFont(originalfont);
                                EntButton[1].setForeground(black);
                                EntButton[1].setBounds(new Rectangle(280, 250, 135, 31));
                           if (current==1){
                                EntButton[1].setBounds(new Rectangle(256, 250, 180, 40));
                                EntButton[2].setBackground(violet);
                                EntButton[2].setFont(originalfont);
                                EntButton[2].setForeground(black);
                                EntButton[2].setBounds(new Rectangle(280, 310, 135, 31));
                           if (current==2){
                                EntButton[2].setBounds(new Rectangle(256, 310, 180, 40));
                                EntButton[0].setBackground(violet);
                                EntButton[0].setFont(originalfont);
                                EntButton[0].setForeground(black);
                                EntButton[0].setBounds(new Rectangle(280, 190, 135, 31));
                   jContentPane.getActionMap().put("MoveUp", ActionUp);
                   jContentPane.getInputMap(jContentPane.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke("ESCAPE"), "MoveESC");
                   Action ActionESC = new AbstractAction() {
                       public void actionPerformed(ActionEvent e)
                            System.exit(0);
                   jContentPane.getActionMap().put("MoveESC", ActionESC);
                   jContentPane.getInputMap(jContentPane.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER,0), "MoveEnter");
                   Action ActionEnter = new AbstractAction() {
                       public void actionPerformed(ActionEvent e)
                            if(current==0)
                                 dispose();
                                //JDialog MoviesMenu = new MoviesMenu();
                                MoviesMenu MoviesMenu = new MoviesMenu();
                                MoviesMenu.show();
                                //MoviesMenu.setVisible(true);
                   jContentPane.getActionMap().put("MoveEnter", ActionEnter);
              return jContentPane;
         //second UI start
         public class MoviesMenu extends JDialog {
              private static final long serialVersionUID = 1L;
              private JPanel jMovieContentPane;
              private JButton[] MoviesButton = new JButton[3];
              private JLabel jLabel,jLabel1;
              private int current1 = 0;
              private JButton getJButton() {
                        MoviesButton[0] = new JButton();
                        MoviesButton[0].setBounds(new Rectangle(110, 230, 450, 40));
                        MoviesButton[0].setText("Vid 1");
                        MoviesButton[0].setBackground(blue);
                        MoviesButton[0].setFont(changedfont);
                        MoviesButton[0].setForeground(red);
                   return MoviesButton[0];
              private JButton getJButton1() {
                        MoviesButton[1] = new JButton();
                        MoviesButton[1].setBounds(new Rectangle(135, 320, 400, 46));
                        MoviesButton[1].setText("Vid 2");
                        MoviesButton[1].setBackground(violet);
                        MoviesButton[1].setFont(originalfont);
                   return MoviesButton[1];
              private JButton getJButton2() {
                        MoviesButton[2] = new JButton();
                        MoviesButton[2].setBounds(new Rectangle(135, 410, 400, 46));
                        MoviesButton[2].setText("Vid 3");
                        MoviesButton[2].setBackground(violet);
                        MoviesButton[2].setFont(originalfont);
                   return MoviesButton[2];
              public MoviesMenu() {
                   super();
                   initialize();
              private void initialize() {
                   this.setSize(1024,768);
                   this.setContentPane(getjMovieContentPane());
                   this.setTitle("JFrame");
                   this.setUndecorated(true);
                   MoviesButton[0].requestFocus(true);
                   MoviesButton[0].setFocusPainted(false);
              private JPanel getjMovieContentPane() {
                   if (jMovieContentPane == null) {
                        jLabel1 = new JLabel();
                        jLabel1.setBounds(new Rectangle(650, 270, 361, 226));
                        jLabel1.setText("Text Introduction");
                        jLabel = new JLabel();
                        jLabel.setBounds(new Rectangle(650, 105, 226, 136));
                        jLabel.setText("VIDEO IMAGE");
                        jMovieContentPane = new JPanel();
                        jMovieContentPane.setLayout(null);
                        jMovieContentPane.add(getJButton(), null);
                        jMovieContentPane.add(getJButton1(), null);
                        jMovieContentPane.add(getJButton2(), null);
                        jMovieContentPane.add(jLabel, null);
                        jMovieContentPane.add(jLabel1, null);
                        jMovieContentPane.getInputMap(jMovieContentPane.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke(KeyEvent.VK_DOWN,0), "MoveDown"); //KeyStroke.getKeyStroke("DOWN")
                        Action ActionDown = new AbstractAction() {
                            public void actionPerformed(ActionEvent e)
                                 current1++;
                                 if (current1==0){
                                      MoviesButton[0].setBounds(new Rectangle(110, 230, 450, 40));
                                      MoviesButton[2].setBackground(violet);
                                      MoviesButton[2].setFont(originalfont);
                                      MoviesButton[2].setForeground(black);
                                      MoviesButton[2].setBounds(new Rectangle(135, 410, 400, 46));
                                      MoviesButton[2].repaint();
                                if (current1==1){
                                     MoviesButton[1].setBounds(new Rectangle(110, 320, 450, 46));
                                     MoviesButton[0].setBackground(violet);
                                     MoviesButton[0].setFont(originalfont);
                                     MoviesButton[0].setForeground(black);
                                     MoviesButton[0].setBounds(new Rectangle(135, 230, 400, 40));
                                     MoviesButton[0].repaint();
                                if (current1==2){
                                     MoviesButton[2].setBounds(new Rectangle(110, 410, 450, 46));
                                     MoviesButton[1].setBackground(violet);
                                     MoviesButton[1].setFont(originalfont);
                                     MoviesButton[1].setForeground(black);
                                     MoviesButton[1].setBounds(new Rectangle(135, 320, 400, 46));
                                     MoviesButton[1].repaint();
                                if(current1>2){
                                current1=0;
                                MoviesButton[0].setBounds(new Rectangle(110, 230, 450, 40));
                                MoviesButton[2].setBackground(violet);
                                 MoviesButton[2].setFont(originalfont);
                                 MoviesButton[2].setForeground(black);
                                 MoviesButton[2].setBounds(new Rectangle(135, 410, 400, 46));
                                 MoviesButton[2].repaint();
                                 MoviesButton[current1].setBackground(blue);
                                 MoviesButton[current1].setFont(changedfont);
                                 MoviesButton[current1].setForeground(red);
                                 MoviesButton[current1].repaint();
                        jMovieContentPane.getActionMap().put("MoveDown", ActionDown);
                        jMovieContentPane.getInputMap(jMovieContentPane.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke(KeyEvent.VK_UP,0), "MoveUp");
                        Action ActionUp = new AbstractAction() {
                            public void actionPerformed(ActionEvent e)
                                current1--;
                               if (current1==2){
                                    MoviesButton[2].setBounds(new Rectangle(110, 410, 450, 46));
                                    MoviesButton[0].setBackground(violet);
                                    MoviesButton[0].setFont(originalfont);
                                    MoviesButton[0].setForeground(black);
                                    MoviesButton[0].setBounds(new Rectangle(135, 230, 400, 40));
                                    MoviesButton[0].repaint();
                                if (current1==0){
                                     MoviesButton[0].setBounds(new Rectangle(110, 230, 450, 40));
                                     MoviesButton[1].setBackground(violet);
                                     MoviesButton[1].setFont(originalfont);
                                     MoviesButton[1].setForeground(black);
                                     MoviesButton[1].setBounds(new Rectangle(135, 320, 400, 46));
                                     MoviesButton[1].repaint();
                                if (current1==1){
                                     MoviesButton[1].setBounds(new Rectangle(110, 320, 450, 46));
                                     MoviesButton[2].setBackground(violet);
                                     MoviesButton[2].setFont(originalfont);
                                     MoviesButton[2].setForeground(black);
                                     MoviesButton[2].setBounds(new Rectangle(135, 410, 400, 46));
                                     MoviesButton[2].repaint();
                                if(current1==-1){
                                     current1=2;
                                     MoviesButton[2].setBounds(new Rectangle(110, 410, 450, 46));
                                     MoviesButton[0].setBackground(violet);
                                    MoviesButton[0].setFont(originalfont);
                                    MoviesButton[0].setForeground(black);
                                    MoviesButton[0].setBounds(new Rectangle(135, 230, 400, 40));
                                    MoviesButton[0].repaint();
                               MoviesButton[current1].setBackground(blue);
                               MoviesButton[current1].setFont(changedfont);
                               MoviesButton[current1].setForeground(red);
                               MoviesButton[current1].repaint();
                        jMovieContentPane.getActionMap().put("MoveUp", ActionUp);
                        jMovieContentPane.getInputMap(jMovieContentPane.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke("ESCAPE"), "MoveESC");
                        Action ActionESC = new AbstractAction() {
                            public void actionPerformed(ActionEvent e)
                                 dispose();
                                 JFrame sample = new sample();
                                 //sample.validate();
                                 sample.show();
                        jMovieContentPane.getActionMap().put("MoveESC", ActionESC);
                   return jMovieContentPane;
    }

  • Need Urgent Help in remote debugging

    Folks!
    Im having difficulties remote debugging my application.
    Im using jdev rc2 using oc4j 9.0.2 externally on a win2k machine.
    My sources are compiled outside jdeveloper using the oracle compiler.
    Ive setup the server to run with: d:\oradev\jdk1.3\bin\java -ojvm -XXdebug,port4000 -jar oc4j.jar
    After compiling the sources on my own, i deploy them. Then i mark a breakpoint in Jdeveloper and debug the source with the breakpoint. The debugger connect properly ( both server and jdev confirms ).
    I trigger the flow which should reach my breakpoint, it runs and doesn't stop.
    When i tried debugging something which i had compiled in jdev it worked under the same setting.
    Any ideas?
    any kind of help would be appreciated.
    Yuval.

    You can get good summary of checklist from this article about
    DBA checklist for data warehousing.
    Which highlights on below pointers:
    New system or old. (I.e. Up-gradation vs starting from scratch)
    Complexity of SQL Server architecture 
    SQL Server storage
    Determining SQL Server processing power
    SQL Server installation consideration 
    SQL Server configuration parameter
    SQL Server security
    SQL Server Database property
    SQL Server jobs and automation
    Protecting SQL Server data
    SQL Server health monitoring and check ups
    SQL Server ownership and control 
    based on my real time experience, I will suggest you to keep an eye on 
    Load performance (It will be useful when your database(Warehouse) will have huge amount of data)
    System availability (Check for Windows update and up time configuration) 
    Deployment methodology should be planned in advance. Development of packages and respective objects should be done systematically.
    Source control mechanism 
    Disk space and memory usage
    You might or might not have full rights on production environment, so be prepared to analyze production environment via Select statements [I guess you got my point]
    Proper implementation of Landing , Staging and Mart tables.
    Column size (this can drastically decrease your database size)
    Usage of indexes (Index are good, but at what cost?)
    I hope this will assist you in building your check list.

  • Urgent Help - Redo Log problem

    Hi,
    I have an implementation of Oracle 9i. Presently I have got 3 redo log groups with 2 members each. There are lot of updation and insertion of records going on with few tables. When the load increases the DB lands in a hang state and in the Log I get this message
    Thread 1 cannot allocate new log, sequence 234
    All online logs needed archiving
    Current log# 1 seq# 233 mem# 0: D:\ORACLE\ORADATA\ORCL\REDO01.LOG
    Current log# 1 seq# 233 mem# 1: D:\ORACLE\ORADATA\ORCL\REDO04.LOG
    Can any one help me in solving this problem. I tried to Switch the log files but as they already are waiting for archiving so no use.
    Any help on this will be highly helpfull to me as I am in Live environment.
    Arvind

    The way the log groups work is.
    Log Writer(lgwr) starts writing to group 1. When group 1 fills up, it switches to group 2. When lgwr starts writing to group 2, the Archiver (arc) wakes up and starts writing group 1 to the archive file. When group 2 fills up lgwr start writing group 3 and arc archives group 2 once it has finished writing group 1. When group 3 fills up, lgwr starts writing to group 1 again, assuming that arc has finished writing group 1 to the archive.
    In your case, it appears that arc is still writing group 1 when lgwr wants to use it again, so the database stalls until arc is finished writing group 1.
    Fundamentally you have two choices. You can increase the size of each file in each log group, so they will fill up less often. However, this will also make arc take longer to archive the group. If you can gain enough time based on slower filling to offset the slower writing you should be ok.
    The other option is to add a few more groups of the same size as the existing groups. This will give lgwr more groups to use before needing to start re-using earlier groups.
    Typically, in our systems we run between 4 and 6 64M log groups and never see these hangs.
    HTH
    John

  • I need urgent help in that problem

    Hi All,
    first I have project in forms 6i and I migrate it to 10g successfully after that I make deploying for forms locally on my machine (without installing oracle application server ) and it works good (forms , reports , icons) everything is good after that I want to move to the production stage then I installed oracle application server 10.2 on the machine (the same machine which I have the oracle database on it ) and after installation successfully I make the changes for deploying forms in forsweb.cfg and default.env files as I made it locally on my machine and write the url like that
    http://computer name/forms/frmservlet?config= sepwin&form=login_ncs.fmx
    The login screen appears but I cannot make any action on it like login, exit or close. on the contrary it was working very good locally and all the projects forms also.
    I searched for that problem allots but I didn't get any answer.
    Note:
    The OS for oracle Database and application server machine is XP
    So can anyone help?
    Regards,
    Nasser

    Hi:
    I recompile the forms again with forms compiler tool in application server and the forms now works fine,
    But the problem is I can't open the reports from the forms.
    Note:
    The reports open successfully from forms locale,and that is my code
    ------------------------------------ PROCEDURE -----------------------------------------
    PROCEDURE VIEW_PRINT_REPORT (v_p_dest varchar2) IS
         RO_Report_ID REPORT_OBJECT;
         Str_Report_Server_Job VARCHAR2(200);
         Str_Job_ID VARCHAR2(200);
         Str_URL VARCHAR2(200);
         PL_ID PARAMLIST ;
         rep_status VARCHAR2(50);
    BEGIN
         PL_ID := GET_PARAMETER_LIST('report_parameter');
         IF NOT ID_NULL(PL_ID) THEN
              DESTROY_PARAMETER_LIST(PL_ID);
         END IF;
         PL_ID := CREATE_PARAMETER_LIST('report_parameter');
         RO_Report_ID := FIND_REPORT_OBJECT('PROJECTS_REP');
    IF v_p_dest = 'P' THEN
                   add_parameter(PL_ID,'DESTYPE',TEXT_PARAMETER,'PRINTER');
              END IF ;     
              add_parameter(PL_ID,'PARAMFORM',text_parameter,'NO');
              add_parameter(PL_ID,'ORIENTATION',TEXT_PARAMETER,'PORTRAIT');
         add_parameter(PL_ID,'MAXIMIZE',TEXT_PARAMETER,'YES');
         add_parameter(PL_ID,'H_USER',text_parameter,:PARAMETER.user_id);     
         if :ctrl.customer_id is not null then
              add_parameter(PL_ID,'p_customer_id',text_parameter,:ctrl.customer_id);
         end if;
         if :ctrl.mgr_id is not null then
              add_parameter(PL_ID,'p_mgr_id',text_parameter,:ctrl.mgr_id);
         end if;
         if :ctrl.pr_status is not null then
              add_parameter(PL_ID,'p_pr_status',text_parameter,:ctrl.pr_status);
         end if;
         add_parameter(PL_ID,'ORACLE_SHUTDOWN',text_parameter,'YES');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_EXECUTION_MODE, BATCH);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESTYPE, CACHE);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESFORMAT, 'PDF');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_SERVER, 'rep_autoserve_mt');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID,REPORT_OTHER, 'jobname='||'projects.RDF');
         Str_Report_Server_Job := RUN_REPORT_OBJECT(RO_Report_ID, PL_ID);
    rep_status := REPORT_OBJECT_STATUS(Str_Report_Server_Job);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(Str_Report_Server_Job);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT('/reports/rwservlet/'||'getjobid'||
    substr(Str_Report_Server_Job ,instr(Str_Report_Server_Job ,'_',-1)+1)||'?'||'server=rep_autoserve_mt','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;
    ------------------- and when WHEN-BUTTON-PRESSED trigger
    view_print_report('V');
    and i great report object in object navigator
    So any help or idea about what I do or change to open reports from forms on application server.
    Regards,
    Nasser.
    Edited by: eng nasser on Apr 29, 2010 8:00 AM

  • Urgent help in following problem

    Hi..all of u.
        sir, when m installing addon on client machine , i have face d problem of "SAP B1.EXE-APPLICATION ERROR"
        Click ok to terminate the program.
        click cancel to debug the program.
          so please how resolve the above problem.
          thanks.
    regards
    sudhir pawar

    Hi,
    What's the user account type for your client machine when you're installing the addon? Try to user an administrator account to install the addon instead of using power or standard user account. I've the same problem last time, and it's solved once I've change the user account to administrator for the installation. Hope's it help.
    cheers,
    serene

  • Urgent Help Needed: Installation problem on Win2K

    My j2sdk1.4.1_01 folder got deleted, I tried to reinstall J2SDK1.4.1_01 but everytime I try I get a dialog box that pops-up saying:
    You already have the Java 2 SDK , SE v1.4.1_01installed on this machine. Would you like to uninstall it?
    Clicking OK runs a very brief uninstall, but apparently doesn't actually uninstall, Win Add/Remove Programs does the same thing, it runs, says it uninstalled it, but doesn't. Anyone have any ideas?

    Same problem here. The installer crashed at the very end of the installer procedure, so I attempted to uninstall. I failed, so I manually deleted files and attempted to reinstall.
    The system claims that the software is still installed and when I instruct it to uninstall, it immediately terminates.
    I've even deleted the HKLM\SOFTWARE\JavaSoft\Java Development Kit\1.4.1_01 key. The installer puts it back when you tell it to uninstall the software!!
    Anyway, the work around is to go into RegEdit and delete the two keys that contain mention of version 1.4.1_01. There are two, one in
    HKLM\SOFTWARE\Microsoft\Code Store Database\Distribution Units
    and the other in
    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
    Both has long hexadecimal string names (CSIDs?)
    I was then able to reinstall...

  • URGENT help please. Problem creating Chinese language text field in Adobe LiveCycle.

    A client requested to create an employee details form in which few text fields has to be in Chinese language. I selected "Arial Unicode MS" for that fields. In final PDF I am able to insert text in Chinese text fields in Acrobat. But I cant insert text when i opened the final PDF in Adobe Reader. (only these Arial Unicode MS fields are disabled). All other fields (English) are in Arial font., they are working in both (Acrobat and Reader). As these forms will be distributed to people who may don't have Acrobat and only the Free Adobe Reader. Can someone please advice me how to solve this problem.
    Thank you
    - Amal

    Make sure the format of the date strings provided by the calendar is what you are expecting. Or use the "formattedValue" for the input strings.

  • Urgent help about Interface problem

      Please take a look at the following picture:
    Description:The vitual keyboard doesn't disappear when I slide to the leftmost "Search :iPhone" and then slide to the right.Whatever I slide the interface It remains until I start an app ! What is the problem?
    Location:China mainland
    OS:iOS 5.1, Not  Jailbreak
    问题描述:如图所示,当滑动到最左面的"搜索:iPhone"后,再向右滑动,该虚拟键盘不消失,此时,不论左滑还是右滑,都是这种情况,只有当点击一个程序时,它才会消 失!
    位置:中国大陆
    <Edited by Host>

    Please ignore - DOH
    Mental Block removed, twas a silly mistake ;-) When I had tried it earlier this way I had made a typo.

  • URGENT HELP NEEDED: Sorting problems

    I am trying to sort large document of around 1,000,000 records into file but I can't do it.
    I receive the following message:
    Cputime limit exceeded
    52.760u 8.240s 1:46.94 57.0% 0+0k 0+0io 2098pf+0w
    Is this fixable? Do you know what's the cause of the problem?

    There should be a limit placed by UNIX systems administrator.
    Is there any other way? I looked in the man pages for some way of setting and changing the resource limits from the command line, but couldn't find anything. Perhaps someone who understands *nix better might know.
    java -Xmx10m ...This switch sets memory rather than cpu time.
    How long is the sort taking any way?

  • Urgent help java security problem

    hi,
    i am trying to run simple message example in tahiti but all the time i got this error:
    java.security.AccessControlException: acces denied (com.ibm.aglets.security.contextPermission atp://mycomputername:4434/@ReplyChild create) java.lang.NullPointerException
    please i have to submit this code iknow it is right but what is the problem??why i am getting this error??please help

    Well what you are doing is trying to access a local file from an Applet, an operation that won't be permitted by the default applet security model.
    I guess what you want is to fetch the file from a directory related to the path of the applet classes. To do this you need to use the URL class and the associated constructors of the ImageIcon class. To form the URL to the image file:
    String fileName="warning.gif";
    URL codeBase= this.getCodeBase();
    URL imageURL= new URL(codeBase, fileName);
    ImageIcon warning = new ImageIcon(imageURL);

  • Urgent help! Multiple problems.

    My iPhone 3GS screen is cracked, my lock button doesn't work even when I push the screen in, the screen loses it's touch sometimes, wont sync music, doesn't unlock sometimes, touch it slow, internet doent work sometimes, freezes a lot ect. How much will it cost to fix it? I use my phone for everything and I cant be without it for long. :/

    you could always upgrade sience you have a 3gs your probilly available for a upgrade

  • Urgent Help about scope problem?

    Hi
    I have a changed my program that was written with one object in the class to now call another class so I can have numerous objects.
    I have an application opens up a DialogClass. I now want the DialogClass to call another class. I have put the call to the NewClass in the constructor of the Dialoglass, however any calls to the NewClass in the DialogClass methods do not work, the compiler says the symbol is not recognised. I am assuming that the object is out of scope due to the calls being made elsewhere in the class.
    Is this the case? If so where do I declare the NewClass object to be generated?
    My code is too big to post here, but hopefully someone can point me in the right direction.
    Many thanks
    Joseph

    Please ignore - DOH
    Mental Block removed, twas a silly mistake ;-) When I had tried it earlier this way I had made a typo.

  • No more connections available to this remote computer...Urgent Help for File server...

    Hi Guys,
    I need urgent help regards to our school File server which is having "No more connection to this remote computer error"
    on SMB Shares where I usually authenticate with a domain username it used to work fine since till 3 weeks ago.
    Now I can browse the SMB shares with only IP... Netbios gets straight away this error message from non-domain joined pc's where the computer needs to connect to the SCCM distribution point on this file server.
    Strangely, Domain joined pc's does not have this problem at all they can use Netbios or IP no problem at all. But someone from a standalone laptop or desktop who needs to access shares through netbios gets this message.
    Can someone help me please?
    I did check DNS yet there is no problem on DNS I checked PTR record for the server to make sure it is not turned in to multihome accidently but nothing at all.
    I also did a NETMON where I captured the data from server and the client I get these errors:
    205 4:54:35 PM 16/12/2013
    7.3299179 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=......S., SrcPort=49312, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=1771710719, Ack=0, Win=8192 ( Negotiating scale factor 0x2 ) = 8192
    {TCP:22, IPv4:21}
    206 4:54:35 PM 16/12/2013
    7.3299668 10.2.0.13
    10.2.1.96 TCP
    TCP:Flags=...A..S., SrcPort=Microsoft-DS(445), DstPort=49312, PayloadLen=0, Seq=2167618331, Ack=1771710720, Win=8192 ( Negotiated scale factor 0x8 ) = 2097152
    {TCP:22, IPv4:21}
    207 4:54:35 PM 16/12/2013
    7.3301468 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=...A...., SrcPort=49312, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=1771710720, Ack=2167618332, Win=16425 (scale factor 0x2) = 65700
    {TCP:22, IPv4:21}
    208 4:54:35 PM 16/12/2013
    7.3301468 10.2.1.96
    10.2.0.13 SMB
    SMB:C; Negotiate, Dialect = PC NETWORK PROGRAM 1.0, LANMAN1.0, Windows for Workgroups 3.1a, LM1.2X002, LANMAN2.1, NT LM 0.12, SMB 2.002, SMB 2.???
    {SMBOverTCP:23, TCP:22, IPv4:21}
    209 4:54:35 PM 16/12/2013
    7.3307974 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R   NEGOTIATE (0x0), GUID={8447F237-5219-D48A-40C0-29092450C68E}
    {SMBOverTCP:23, TCP:22, IPv4:21}
    210 4:54:35 PM 16/12/2013
    7.3314064 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   SESSION SETUP (0x1) {SMBOverTCP:23, TCP:22, IPv4:21}
    211 4:54:35 PM 16/12/2013
    7.3318815 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R  - NT Status: System - Error, Code = (22) STATUS_MORE_PROCESSING_REQUIRED  SESSION SETUP (0x1), SessionFlags=0x0
    {SMBOverTCP:23, TCP:22, IPv4:21}
    212 4:54:35 PM 16/12/2013
    7.3324012 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   SESSION SETUP (0x1) {SMBOverTCP:23, TCP:22, IPv4:21}
    215 4:54:35 PM 16/12/2013
    7.3339977 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R  - NT Status: System - Error, Code = (109) STATUS_LOGON_FAILURE  SESSION SETUP (0x1)  
    {SMBOverTCP:23, TCP:22, IPv4:21}
    216 4:54:35 PM 16/12/2013
    7.3341805 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=...A.R.., SrcPort=49312, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=1771711788, Ack=2167619070, Win=0 (scale factor 0x2) = 0
    {TCP:22, IPv4:21}
    217 4:54:35 PM 16/12/2013
    7.3357089 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=......S., SrcPort=49313, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=2943201172, Ack=0, Win=8192 ( Negotiating scale factor 0x2 ) = 8192
    {TCP:27, IPv4:21}
    218 4:54:35 PM 16/12/2013
    7.3357422 10.2.0.13
    10.2.1.96 TCP
    TCP:Flags=...A..S., SrcPort=Microsoft-DS(445), DstPort=49313, PayloadLen=0, Seq=3718656547, Ack=2943201173, Win=8192 ( Negotiated scale factor 0x8 ) = 2097152
    {TCP:27, IPv4:21}
    219 4:54:35 PM 16/12/2013
    7.3359768 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=...A...., SrcPort=49313, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=2943201173, Ack=3718656548, Win=16425 (scale factor 0x2) = 65700
    {TCP:27, IPv4:21}
    220 4:54:35 PM 16/12/2013
    7.3359768 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   NEGOTIATE (0x0), GUID={8213462D-2600-D1B1-11E3-65FC4BCDE707}
    {SMBOverTCP:28, TCP:27, IPv4:21}
    221 4:54:35 PM 16/12/2013
    7.3364173 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R   NEGOTIATE (0x0), GUID={8447F237-5219-D48A-40C0-29092450C68E}
    {SMBOverTCP:28, TCP:27, IPv4:21}
    222 4:54:35 PM 16/12/2013
    7.3369702 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   SESSION SETUP (0x1) {SMBOverTCP:28, TCP:27, IPv4:21}
    223 4:54:35 PM 16/12/2013
    7.3373474 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R  - NT Status: System - Error, Code = (22) STATUS_MORE_PROCESSING_REQUIRED  SESSION SETUP (0x1), SessionFlags=0x0
    {SMBOverTCP:28, TCP:27, IPv4:21}
    224 4:54:35 PM 16/12/2013
    7.3377060 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   SESSION SETUP (0x1) {SMBOverTCP:28, TCP:27, IPv4:21}
    227 4:54:35 PM 16/12/2013
    7.3390552 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R  - NT Status: System - Error, Code = (109) STATUS_LOGON_FAILURE  SESSION SETUP (0x1)  
    {SMBOverTCP:28, TCP:27, IPv4:21}
    Regards,
    Gokhan

    Solution has been found, 
    After doing bit of a backtrack, site DC's were out of sync with PDC with time.
    Also Time service was shutdown on PDC which has been enabled and pointed to the Australian pool ntp IP address.
    Everything is back on track now.
    Regards,
    Gokhan Cil

Maybe you are looking for

  • Rename accounts in SAP R/3

    We need to rename several hundred accounts in  R/3 Enterprise system to meet new naming conventions. We should be able to keep the history of transactional data in the system. What is the best way?

  • Sequential file naming for repeating action on same file

    I need to export all the hands of a clock to animate the individual hour and minute hands in the software I'm using. So, I'm trying to set up an automated process to save 60 clock hands so that I don't have to do this manually for all future clock de

  • Why won't the delete all photos button work

    I press this button to delete all my photos but it doesn't do anything. Is it a new feature in iOS6? Is it buggy? Is it just there but not functional? It doesnt do anything after I press it (it doesnt delete all photos). Delete all music does work th

  • Start up drama

    First attempt at forum,could not find thread relating so here goes! Board in question K7TPro2-A(MS-6330). Problem: When turned on at power point machine starts but Led display stays all red, that is 4 red. By turning on at power point and depressing

  • Backing up a USB drive connected to TC

    Hi, I have a small home network which consists of a usb drive connected to my time capsule. Is there anyway i can back the usb drive thats connected to the TC up via Time Machine....so the USB drive thats connected to the TC is back up to the TC via