Problem BADI FTR_CUSTOMER_EXTENT

Hi masters,
I'm trying to add a new tab in tcode TS01 using the badi FTR_CUSTOMER_EXTENT.
I was able to add the new tab, but i dont know how to add the fields on that tab (subscreen).
I think that i need to code the PBO and PAI of the subscreen area, but i dont know how to do it.
I need some helps, please.
how to add the new fields on the new tab? so i can put data on it.
Regards

HI Daniel,
To add a new custom tab in TM_XX transactions you have to follow these steps:
1. (SE80) Create a dynpro as SUBSCREEN, with the structure (fields, tablecontrols...) you want in the new tab, located in a modul-pool.
  Example: Program: ZCFM001
                 Dynpro: 1010
2. (SE18) Create your custom implementation of BADI FTR_CUSTOMER_EXTENT. This will create a Z class where you can program the new tab management.
  Example: Implementation: ZAMPLIACIOTM001
                Class:               ZCL_IM_AMPLIACIOTM001
3. (SE24) Implement method EVT_APPLICATION_START of your new class. This method is called when the transaction is going to be painted, and manages (among other things) which tabs need to be shown. In general terms, you will have to assign your dynpro to a function code.
This BADI offers you 2 custom function codes, and so, the ability to add two custom tabs. These function codes are OPEN_TRTM_CUST_01 and OPEN_TRTM_CUST_02.
To add your dynpro to a function code, you have to identify this relationship in the internal table (parameter) PC_TAB_BADI_TABS. This is the table that contains the custom tabs to be added.
To do this, you have to add the following piece of code:
      DATA: LS_BADI_TABS TYPE FTROP_BADI_SUBSCREEN.
    4.1. Modify the tab structure.
      LS_BADI_TABS-REPID    = ZCFM001. "Report
      LS_BADI_TABS-TEXT_TAB = 'New Tab'.  "Text (max. 30 CHAR) to display
      LS_BADI_TABS-DYNNR    = '1010'. "Subscreen
    4.2. Add the new tab.
      MODIFY         PC_TAB_BADI_TABS
        FROM         LS_BADI_TABS
        TRANSPORTING REPID DYNNR TEXT_TAB
        WHERE        FCODE = 'OPEN_TRTM_CUST_01'.
And that's it! Now you will be able to see you new tab in these transactions.
I hope this helps you.
Alberto.

Similar Messages

  • Screen exit in badi FTR_CUSTOMER_EXTENT for tcode FTR_EDIT

    Hi,
    I need to add new tab to standard screen interest rate instrument (SAP t-code FTR_EDIT).  In the new tab i need to add input parameter to save customised field in table vtbfha. I'm using SAP ECC6.
    When searching for any user exit or badi, i found out badi FTR_CUSTOMER_EXTENT.  There is no sample code that i can refer to.
    I've looked at that BaDi and there is an option to add FCodes and Subscreen.
    Is there possiblities that we can add new tab and input parameter to the standard screen.
    How can i proceed from there.
    Kindly help.
    Thanks,
    Biah
    How

    Hi,
    Yes definitely you can add tab (screen enhancement) to the existing screen. The all you need to do is create implementation for that badi (FTR_CUSTOMER_EXTENT).
    First create screen '9000' using function group or program.
    In method EVT_APPLICATION_START there is changing parameter 'PC_TAB_BADI_TABS'.
    Now in this method write down the code as:
    DATA: LS_BADI_TABS TYPE FTROP_BADI_SUBSCREEN.
         LS_BADI_TABS-REPID    = 'Program Name'.
         LS_BADI_TABS-TEXT_TAB = 'New Tab'.  "Text (max. 30 CHAR) to display
          LS_BADI_TABS-DYNNR    = '9000'. "Subscreen
         MODIFY PC_TAB_BADI_TABS  FROM LS_BADI_TABS
            TRANSPORTING REPID DYNNR TEXT_TAB
             WHERE  FCODE = 'OPEN_TRTM_CUST_01'.
    Hope it works. <removed by moderator>
    Thanks
    Vishvesh
    Message was edited by: Thomas Zloch

  • BADI FTR_CUSTOMER_EXTENT Implementation for Facility creation - TM_61

    Hello Experts
    I am trying to add new tab in the create facility transaction and I feel that the right BAID to do this is FTR_CUSTOMER_EXTENT. I am not able to update the new values in the screen to the database table. I check in the forum and there are many questions for the same but there is no clear answer for the same. Request your help in letting me know how this can be achieved.
    I have also checked the same Function Group FTR_CUSTOM_BADI_SAMPLE but still I am not clear as to how I can achieve this.
    Thanks in advance
    Vijay V

    Hello Claudia,
    I finally solved the problem, and I hope my solution may suite your problem.
    The bigger problem I had was pass the data from the screen to the BADI itself, so I created a function group following the FTR_CUSTOM_BADI_SAMPLE in which I developed the objects.
    Those are the steps I followed:
    I enhanced the structure VTBFHA with the custom field I needed;
    I created an implementation for the FTR_CUSTOMER_EXTENT
    in EVT_APPLICATION_START method I called a function module (copied from the FTR_CUSTOM_BADI_SAMPLE_START) in which I started the subscreen I draw in new tab. (Please note that by doing this I now have the interface if_open_trtm_customer_data always at hand). Follow the instruction of the sample code or the http://scn.sap.com/thread/1534252 thread)
    in the PBO of the subscreen I retrivied the custom data via GET_CUST_DATA of the IF_OPEN_TRTM_CUSTOMER_DATA interface and pass the data in my screen fields. In order to do that I called a function module developed in the same function group, so that the interface is ready to be used.
    in the PAI of the subcreen, once the data is entered I pass the new data via  SET_CUST_DATA of the IF_OPEN_TRTM_CUSTOMER_DATA interface, again developing a FM within the function group of the EVT_APPLICATION_START custom function module I used.
    I am sure there must be a better solution, but it owrked pretty fine for me, so I hope this my help you as well.
    Moody

  • Animation problem ( badly needs) ?

    Hello,
    Sorry i 'm posting again and again. because nobody couldn't respond . I badly need this application to be run. Here is what am doing. First applet should start and display '+'( by painting) after keypressed(eg spacebar) then sleep for a while and paint rectangles and next arrow then sleep and etc . this goes on until i keypressed again. Here is that i wrote code , could u please check and modify it. Where i stucked is that KeyPressed code is not working. Please see the code modify it wherever is necessary.
    Thanks in advance,
    - Balaji
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Color;
    import java.awt.Rectangle;
    import java.awt.GradientPaint;
    import java.awt.geom.GeneralPath;
    import java.awt.Polygon;
    //<applet code="ExptA4.class" width=300 height=300></applet>
    public class ExptA4 extends Applet implements Runnable {
         Thread animator;
         Dimension appSize;
         boolean frozen = false;
         int appWidth = 1000, appHeight = 800;
         int delay = 500;
         java.awt.geom.Ellipse2D.Double circle;
         public void init(){
              appSize = new Dimension(appWidth,appHeight);
              this.setSize(appSize);
             addKeyListener(new KeyAdapter(){
                  public void keyPressed(KeyEvent e){
                  ExptA4 exptA4 = (ExptA4) e.getSource();
                  if (e.getKeyCode() == KeyEvent.VK_SPACE)
                       System.out.println("in the keypressed method ");
                  }// end of if      
                  } // end of keyPressed method
         } // end of init
         public void start(){
              if(frozen)
               { // do nothing
              else
                 if(animator == null) {
                           animator = new Thread(this);
                animator.start();  
               } // end of else
               requestFocus(); 
         } // end of start
         public void stop(){
              // stop the animation thread
              animator = null ;
         } // end of stop
         public void run(){
              Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
              while(Thread.currentThread() == animator)
                      repaint();
                      try {
                     Thread.sleep(5400);
                       } catch (InterruptedException e) {
                             break;
         } // end of run
         public void paint(Graphics g){
              Graphics2D g2 = (Graphics2D)g;
            Rectangle leftRect,rightRect,plus_horz,plus_vert;
            Polygon downArrow = new Polygon();    
           // drawing the plus               
           int xHPoint = 440,yHPoint = 350, widthP = 30, heightP = 30;
           plus_horz = new Rectangle(xHPoint,yHPoint,widthP,heightP-27);
           plus_vert = new Rectangle(xHPoint+10,yHPoint-10,widthP-17,heightP-10);
           // black interior
            g2.setColor(Color.black);
            g2.fill(plus_horz);
            // black border
            g2.setColor(Color.black);
            g2.draw(plus_horz);
           // black interior
            g2.setColor(Color.black);
            g2.fill(plus_vert);
            // black border
            g2.setColor(Color.black);
            g2.draw(plus_vert);
               try{
                     Thread.sleep(4000);
                 } catch (InterruptedException ie)
           // drawing the Rectangle
                  leftRect = new Rectangle(300,300,100,100);
             rightRect = new Rectangle(500,300,100,100);
             // white interior
            g2.setColor(Color.white);
            g2.fill(leftRect);
            // black border
            g2.setColor(Color.black);
            g2.draw(leftRect);
            // white interior
            g2.setColor(Color.white);
            g2.fill(rightRect);
            // black border
            g2.setColor(Color.black);
            g2.draw(rightRect);
           try{
                     Thread.sleep(4000);
                 } catch (InterruptedException ie)
           // drawing downArrow
            int xPointA = 340,yPointA = 340, widthA = 30, heightA = 30;
             downArrow.addPoint(xPointA,yPointA);
            downArrow.addPoint(xPointA+25,yPointA-25);
            downArrow.addPoint(xPointA+13,yPointA-25);
            downArrow.addPoint(xPointA+13,yPointA-75);
            downArrow.addPoint(xPointA-13,yPointA-75);
            downArrow.addPoint(xPointA-13,yPointA-25);
            downArrow.addPoint(xPointA-25,yPointA-25);
            g2.setColor(Color.white);
            g2.fill(downArrow);
            // black border
            g2.setColor(Color.black);
            g2.draw(downArrow);
           try{
                     Thread.sleep(4000);
                 } catch (InterruptedException ie)
       // drawing circle             
           int xPoint = 340,yPoint = 340, width = 30, height = 30;
           circle = new java.awt.geom.Ellipse2D.Double(xPoint,yPoint,width,height);
            // black interior
            g2.setColor(Color.black);
            g2.fill(circle);
            // black border
            g2.setColor(Color.black);
            g2.draw(circle);
           try{
                     Thread.sleep(4000);
                 } catch (InterruptedException ie)
         } // end of paint method
    }

    hi ,
    here is modified code . I kept all sleep methods in the run method.
    But the problem is i couldn't get any response from the keyboard.
    What i need is that whenever key presses then animation should starts.
    please help me in this regard.i 'm putting my code here, please modify
    it according to my requirements. Once again i badly need this one to be run. i really appreciate if anyone help in this one.
    Thanks,
    -balaji
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Color;
    import java.awt.Rectangle;
    import java.awt.GradientPaint;
    import java.awt.geom.GeneralPath;
    import java.awt.Polygon;
    //<applet code="ExptA5.class" width=300 height=300></applet>
    public class ExptA5 extends Applet implements Runnable,KeyListener {
         Thread animator;
         Dimension appSize;
         boolean frozen = false;
         int appWidth = 1000, appHeight = 800;
         int delay = 500;
      // drawing circle and arrow.
         DrawCircle circle = new DrawCircle();
        DrawArrow downArrow = new DrawArrow();
         public void init(){
            // setting dimension for applet
              appSize = new Dimension(appWidth,appHeight);
              this.setSize(appSize);
              // adding key listener
             addKeyListener(this);
         } // end of init
    // to activate keys
         public void keyPressed(KeyEvent e ){
              System.out.println("in the keypressed method ");
              ExptA5 exptA5 = (ExptA5) e.getSource();
        // when space bar presses then start the thread and animation starts
              if( e.getKeyCode() == KeyEvent.VK_SPACE)
               if ( Thread.currentThread() == animator)
                     exptA5.animator.start();
              } // end of if
         } // end of keyPressed
    // other key methods
         public void keyTyped(KeyEvent e){}
         public void keyReleased(KeyEvent e){}
         // applet starts and animation starts .
         public void start(){
              if(frozen)
               { // do nothing
              else
                 if(animator == null) {
                           animator = new Thread(this);
                animator.start();
               } // end of else
         } // end of start
         public void stop(){
              // stop the animation thread
              animator = null ;
         } // end of stop
         public void run(){
              Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
              while(Thread.currentThread() == animator)
              try {
                 Graphics g = getGraphics();
                   Graphics2D g2 = (Graphics2D)g;          
                  // drawing arrow which is calling from other class
                 downArrow.drawPoly(g2);
                 // sleeps for a while                               
                 Thread.sleep(5400);
                    // drawing circle which is calling from other class
                    circle.drawCircle(g2);
                    // sleeps for a while
                 Thread.sleep(5400);
                 repaint();   
                       } catch (InterruptedException e) {
                             break;
         } // end of run
         public void paint(Graphics g){
         } // end of paint method
    // drawing circle
    public class DrawCircle{
       java.awt.geom.Ellipse2D.Double circle;
       public void drawCircle(Graphics2D g2)
              int xPoint = 340,yPoint = 340, width = 30, height = 30;
          circle = new java.awt.geom.Ellipse2D.Double(xPoint,yPoint,width,height);
          // black interior
          g2.setColor(Color.black);
          g2.fill(circle);
            // black border
          g2.setColor(Color.black);
          g2.draw(circle);
    // drawing Arrow
    public class DrawArrow{
          Polygon downArrow = new Polygon();
       public void drawPoly(Graphics2D g2)
              // drawing downArrow
            int xPointA = 340,yPointA = 340, widthA = 30, heightA = 30;
             downArrow.addPoint(xPointA,yPointA);
            downArrow.addPoint(xPointA+25,yPointA-25);
            downArrow.addPoint(xPointA+13,yPointA-25);
            downArrow.addPoint(xPointA+13,yPointA-75);
            downArrow.addPoint(xPointA-13,yPointA-75);
            downArrow.addPoint(xPointA-13,yPointA-25);
            downArrow.addPoint(xPointA-25,yPointA-25);
            g2.setColor(Color.white);
            g2.fill(downArrow);
            // black border
            g2.setColor(Color.black);
            g2.draw(downArrow);
    }

  • EMac monitor problem: bad caps or rastor shift or... ?

    Something is wrong with my brother's eMac. About three years or so ago he had the bad caps (leaky capacitators) problem, and sent it off to Apple and got it repaired. But that wasn't the end of it. About a year ago the problem returned, though not in quite the same form. Originally, his eMac would freeze and get funny colours. This time if he has it set to anything higher than 256 colours the screen not only gets funny colours but appears to display twice (the top of the screen occurs again at the bottom, though it is hard to see in the pic). Here is pic:
    The grey square in the middle is the cursor and it is selecting the monitor resolution/colors. The square surrounding it is the pull down menu which occurs again above it if you can make it out.
    On 256 colurs, which is the only resolution he can work at, you get the following:
    Here is a closer look:
    It is only the small rectangles which are crazy colors - the rest is normal. Does this suggest that it is only one or two faulty caps, while the rest are fine? What else could this problem be?
    Also, if we send it back to Apple, will they fix the problem again for free?

    Looks more like the video ram is (has) failed to me you could try Apple again but don't think it will get repaired for free and probably not worth the cost as if it's a 1.25Ghz machine it's now around 7 years old and the CRT will probably go belly up soon as well - sorry.
    custom mini.

  • Javac probleme: bad class file error

    I'm new to java
    I have two classes myPoint.jav and TestPoint.java, when I compile them, I error:
    in the command line I type:
    C:\otman\java>javac -g geometry\src\myPoint.java TestPoint.java
    TestPoint.java:8: cannot access myPoint
    bad class file: c:\otman\java\geometry\src\myPoint.class
    class file contains wrong class: geometry.src.myPoint
    Please remove or make sure it appears in the correct subdirectory of the classpa
    th.
    myPoint p = new myPoint();
    ^
    1 error
    Can some one help me Thanks
    //Here is the class c:\otman\java\TestPoint.java
    import geometry.src.*;
         Testing my class Point
    public class TestPoint {
    public static void main(String[] args) {
              myPoint p = new myPoint();
              System.out.println("thank you very much");
              System.exit(0);
    // And here is the class c:\otman\java\geometry\src\myPoint.java
    package geometry.src;
         class myPoint members and methods of a 3D point
    public class myPoint {
         private double m_x,m_y,m_z;          // the coordinates
         public double getx() {return m_x;}
         public double gety() {return m_y;}
         public double getz() {return m_z;}
         public void setx(double x) {m_x=x;}
         public void sety(double y) {m_y=y;}
         public void setz(double z) {m_z=z;}
         public void translate(double dx,double dy, double dz) {
              m_x += dx;m_y += dy;m_z += dz;
         // Constructor ------------------------------------------------------------
         myPoint(double x,double y,double z) {
              m_x=x;m_y=y;m_z=z;
         myPoint() {
              m_x=0;m_y=0;m_z=0;
         myPoint(myPoint p) {
              m_x=p.getx();m_y=p.gety();m_z=p.getz();
    // ---------------------------------------------------------------------------------

    Thank you for the reply but still have problem.
    I created a directory classes and the directories look like:
    C:\otman\java\
    TestPoint.java
    classes\
    geometry\
    src\
    myPoint.java
    When I compile using the line command:
    C:\otman\java>javac -g -d classes geometry\src\myPoint.java TestPoint.java
    I get the error:
    TestPoint.java:8: cannot find symbol
    symbol : constructor myPoint()
    location: class geometry.src.myPoint
    myPoint p = new myPoint();
    ^
    1 error
    Now the directories look like:
    C:\otman\java\
    TestPoint.java
    classes\
    geometry\
    src\
    myPoint.class
    geometry\
    src\
    myPoint.java
    I think that myPoint was compiled without problem but TestPoint was not compiled and it gives 1 error.
    Can you help me? Thanks.<!--Session data-->

  • IMAP Problems "Bad Command. 12"

    Hey there,
    i've got a problem with Exchange 2010 and IMAP4. The service is started successfully but it is unable to handle imap requests. When i try to test it with telnet is says by typing any command with "BAD Command Error. 12"
    Here is the configuration from "Get-ImapSettings | fl":
    RunspaceId                        : 49df46c8-c92d-4860-8e5d-33b212ad3044
    ProtocolName                      : IMAP4
    Name                              : 1
    MaxCommandSize                    : 10240
    ShowHiddenFoldersEnabled          : False
    UnencryptedOrTLSBindings          : {0.0.0.0:143}
    SSLBindings                       : {0.0.0.0:993}
    InternalConnectionSettings        : {SYNCHEXCASHUB01.sync.hosting:993:SSL, SYNCHEXCASHUB01.sync.hosting:143:TLS}
    ExternalConnectionSettings        : {msyncing.net:993:SSL}
    X509CertificateName               : msyncing.net
    Banner                            : The Microsoft Exchange IMAP4 service is ready.
    LoginType                         : PlainTextLogin
    AuthenticatedConnectionTimeout    : 00:30:00
    PreAuthenticatedConnectionTimeout : 00:01:00
    MaxConnections                    : 2147483647
    MaxConnectionFromSingleIP         : 2147483647
    MaxConnectionsPerUser             : 16
    MessageRetrievalMimeFormat        : BestBodyFormat
    ProxyTargetPort                   : 143
    CalendarItemRetrievalOption       : iCalendar
    OwaServerUrl                      :
    EnableExactRFC822Size             : False
    LiveIdBasicAuthReplacement        : False
    SuppressReadReceipt               : False
    ProtocolLogEnabled                : True
    EnforceCertificateErrors          : False
    LogFileLocation                   : E:\IMAPLOGS
    LogFileRollOverSettings           : Daily
    LogPerFileSizeQuota               : 0 B (0 bytes)
    ExtendedProtectionPolicy          : None
    EnableGSSAPIAndNTLMAuth           : True
    Server                            : SYNCHEXCASHUB01
    AdminDisplayName                  :
    ExchangeVersion                   : 0.10 (14.0.100.0)
    DistinguishedName                 : CN=1,CN=IMAP4,CN=Protocols,CN=SYNCHEXCASHUB01,CN=Servers,CN=Exchange Administrative
                                         Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=Sync Hosting,CN=Microsoft Exch
                                        ange,CN=Services,CN=Configuration,DC=sync,DC=hosting
    Identity                          : SYNCHEXCASHUB01\1
    Guid                              : 7005ade4-ce3e-4a95-a352-45164924fdec
    ObjectCategory                    : sync.hosting/Configuration/Schema/ms-Exch-Protocol-Cfg-IMAP-Server
    ObjectClass                       : {top, protocolCfg, protocolCfgIMAP, protocolCfgIMAPServer}
    WhenChanged                       : 07.11.2011 16:17:51
    WhenCreated                       : 19.09.2011 20:53:51
    WhenChangedUTC                    : 07.11.2011 15:17:51
    WhenCreatedUTC                    : 19.09.2011 18:53:51
    OrganizationId                    :
    OriginatingServer                 : SYNCHEXAD02.sync.hosting
    IsValid                           : True
    Here is the protocol log output:
    #Fields: dateTime,sessionId,seqNumber,sIp,cIp,user,duration,rqsize,rpsize,command,parameters,context
    2011-11-07T15:10:10.499Z,0000000000000001,0,178.250.172.237:143,93.223.147.244:50724,,-2147483648,0,53,OpenSession,,
    2011-11-07T15:10:11.218Z,0000000000000002,0,10.0.7.10:993,10.0.7.10:7103,,-2147483648,0,53,OpenSession,,
    2011-11-07T15:10:11.311Z,0000000000000002,1,10.0.7.10:993,10.0.7.10:7103,,62,15,135,capability,,R=ok
    2011-11-07T15:10:11.358Z,0000000000000002,2,10.0.7.10:993,10.0.7.10:7103,,0,11,91,logout,,R=ok
    2011-11-07T15:10:12.374Z,0000000000000001,1,178.250.172.237:143,93.223.147.244:50724,,0,4,28,InvalidCommand,HELO,"R=""HELO BAD Command Error. 12"";RpcL=-1;LdapL=-1"
    2011-11-07T15:10:13.889Z,0000000000000001,2,178.250.172.237:143,93.223.147.244:50724,,0,4,28,InvalidCommand,EHLO,"R=""EHLO BAD Command Error. 12"";RpcL=-1;LdapL=-1"
    2011-11-07T15:10:15.624Z,0000000000000001,3,178.250.172.237:143,93.223.147.244:50724,,0,4,57,InvalidCommand,HELP,"R=""HELP BAD Command Error. 12"
    2011-11-07T15:11:32.873Z,0000000000000003,0,10.0.7.10:993,10.0.7.10:7334,,-2147483648,0,53,OpenSession,,
    2011-11-07T15:11:32.888Z,0000000000000003,1,10.0.7.10:993,10.0.7.10:7334,,0,15,135,capability,,R=ok
    2011-11-07T15:11:33.029Z,0000000000000003,2,10.0.7.10:993,10.0.7.10:7334,,140,50,23,login,[email protected] *****,"R=""aDIO NO LOGIN failed."";Msg=LogonFailed:LoginDenied"
    2011-11-07T15:11:33.029Z,0000000000000003,3,10.0.7.10:993,10.0.7.10:7334,,0,0,0,CloseSession,,
    I've already fixed this once with adding the "compliance.dll" lines that was missing from the "..exe.config" files. After applying UR 6 the error is appearing again and i don't know how to fix it this time..
    please advise,
    Peter

    Hi Peter,
    Can you use Outlook (via IMAP) connect to Exchange Server?
    If this is the same issue as you fixed before, do you follow the old way to have a try? per my knowledge, when Exchange install the updates, the configure file will
    be restore( any changed manually will be removed) .
    Thanks,
    Evan

  • V1.2.1 found my problem - bad RAM!

    FCP HD 4.5 QT 7.0.3 Compressor 1.2.1
    Bad RAM in my G5 was my problem. I never had the "cannot connect to back ground process" problem just kernel panics message forcing shutdown.
    I removed 2x1Gb sticks installed by Apple reseller, so far so good w/ factory 512MB. Importantly, although I hardly stressed the machine in 4 days nothing else crashed - only compressor even on 3min short QT self-contained movies. FCP HD editing for 3-4 hrs = fine, CS fine, Internet, mail, newsreaders etc all okay - just compressor seemed to allocate well into my faulty 2gb sticks.
    After a doom & gloom weekend trying to get a client DVD done I am very much relieved my $2,200 purchase is now working and just wanted to post my experience.
    I didn't really consider I had a hardware problem. PULL THAT RAM back to factory installed is a must check for unexplained crashes on G5...I knew that too but I took some convincing before removing RAM tonight!
    **** I thought I'd never see the back of my trusty G4DP - I think it's earned its place to remain as back-up/server/disc burning machine

    Okay, this is weird. I can get around this by setting the 'Select default path for scripts' preference to something other than blank!
    I'm wondering if this is because a group policy sets the default homedrive / My Documents folder to something on a network share. Could it be that having this value blank is causing SQL Developer to poll this share, and therefore the network, causing the performance issue?
    As it is, setting the value to something on the local drive (C:\) seems to fix it - contrary to what other posts have had to say on the matter of this preference!

  • ME51n Problem--BADI name required

    Hi ,
       I have attached 2 fields (check boxes) in ME51n tcode with the help of sreen exit . Now my requirement is to get the value of these z-fields (entered through the ME51n ) when i will be creating the Purchase Order in respect to the Purchase Requisition (ME51n).
      Please provide any exit or BADI name to resolve this problem .

    with BADI: ME_GUI_PO_CUST
    1. you can put ur custom fields(the fields which are created in ME51N) on ME21N screen.
    2. using some method of the badi, you can pull the values from requisation tables.
    3. these values can be desplayed on ME21N/22N/23N
    Reddy

  • Icu 4.8.1 Problem, Bad Support Of Persian(Farsi) [SOLVED]

    Hi everybody! i tried to install new LibreOffice, But New Package has bad support of Persian. maybe LibreOffice or LibreOffice-fa packaged badly. bcaz my friend test this program on other distroes without problem with Persian language.
    i wanted to report a bug in LibreOffice Bug tracker but this is only in Archlinux, So if you thing this must be disscuss in LibreOffice Bug Trackers tell me!
    GNOME 3, Linux 3.0 (64 bit), Updated System (updated mirror).
    testcase:
    in LibreOffice 3.4.2 (wrong):
    س ل ا م
    in LibreOffice 3.4.1 (right):
    سلام
    Last edited by Bersam (2011-10-29 23:28:00)

    Bersam wrote:...i wanted to report a bug in LibreOffice Bug tracker but this is only in Archlinux, So if you thing this must be disscuss in LibreOffice Bug Trackers tell me!
    Well, it is not imperative you discuss it there; but it would be a good idea.  I think it is safe to say that Persian is something with which most here have little experience.  Since it is unique to Arch, the bug tracker is your best bet.
    In any event, you are welcome to discus it here.  You might also try posting in the Other Languages section of the forums to attract the attention of others using your language.
    I see that you included test cases.  That is a terrific idea.  You may find that the developer who supports this may not have a mastery of the Persian language and could well use constructive feedback from a native speaker;  I think you could make a significant contribution in that way.
    Last edited by ewaller (2011-08-09 04:42:00)

  • P965 Neo-F memory problems - bad mobo or something I missed?

    I bought a new system the other day, and chose the P965 Neo-F as my motherboard. However, it seems I either have a broken unit or missed something crucial.
    The machine originally shipped with a G-Skill 800MHz 2 gig set of the NB series. I spent my first night trying to get Windows installed, only to have it crash repeatedly as it tried to copy kodak_dc.icm and various other files. Always the same ones. I thought my CD was bad, so I dug out a copy of Vista's Beta 2. It also failed on a generic "Failed to copy files" error. I then did what I probably should've done immediately and ran Memtest86+.
    Within the first 5% I had about 200 errors, so I figured my RAM was bad. I experimented with various slot combinations, dual channel and otherwise. I discovered that the first stick in the first slot would run Memtest86+ until the cows came home with no problems, everything else caused a huge number of errors sooner or later. Interestingly the other stick on its own in slot one would cause massive amounts of errors within seconds. Sometimes these errors would occur within the first few percentages of the first pass, sometimes at the very end. I experimented by upping the voltage in increments from 1.80 to 2.00 and then lowering the RAM speed to 667MHz. No effect.
    I exchanged the RAM at the store, but since they were out of G-Skill I got two sticks of generic TwinMOS 667MHz DDRII. The problems continued. One stick in slot 1 will run all day, Windows installs and runs fine. Any other combination causes huge amounts of errors (my record was 7200 errors at the 67% mark with sticks in slots 1 and 4) and data corruption in Windows.
    I just rang up the guys at the store and we agreed that since the system is running fine on one stick, I'll try to debug this thing over the weekend. If I can't come up with anything I'll go and have the motherboard swapped on Monday. So, any ideas on things I could try?

    Quote from: soralapio on 08-December-06, 16:33:31
    I bought a new system the other day, and chose the P965 Neo-F as my motherboard. However, it seems I either have a broken unit or missed something crucial.
    The machine originally shipped with a G-Skill 800MHz 2 gig set of the NB series. I spent my first night trying to get Windows installed, only to have it crash repeatedly as it tried to copy kodak_dc.icm and various other files. Always the same ones. I thought my CD was bad, so I dug out a copy of Vista's Beta 2. It also failed on a generic "Failed to copy files" error. I then did what I probably should've done immediately and ran Memtest86+.
    Within the first 5% I had about 200 errors, so I figured my RAM was bad. I experimented with various slot combinations, dual channel and otherwise. I discovered that the first stick in the first slot would run Memtest86+ until the cows came home with no problems, everything else caused a huge number of errors sooner or later. Interestingly the other stick on its own in slot one would cause massive amounts of errors within seconds. Sometimes these errors would occur within the first few percentages of the first pass, sometimes at the very end. I experimented by upping the voltage in increments from 1.80 to 2.00 and then lowering the RAM speed to 667MHz. No effect.
    I exchanged the RAM at the store, but since they were out of G-Skill I got two sticks of generic TwinMOS 667MHz DDRII. The problems continued. One stick in slot 1 will run all day, Windows installs and runs fine. Any other combination causes huge amounts of errors (my record was 7200 errors at the 67% mark with sticks in slots 1 and 4) and data corruption in Windows.
    I just rang up the guys at the store and we agreed that since the system is running fine on one stick, I'll try to debug this thing over the weekend. If I can't come up with anything I'll go and have the motherboard swapped on Monday. So, any ideas on things I could try?
    I think at least using ddr2 800mhz had some restrictions on size or something.
    Im my self running 2x1gb Kingston Valueram 667mhz no probs. So I would suggest mobo is bad, or you need to get newer bios. My original was 1.5, im using 1.6B9 because of my scsi problems. 1.5 was fine with my memory in dual channel mode.
    But to the quality of mobo i think its not ready for shipment yet. I have 3 scsi controllers, where 2 raid controllers isnt working/booting propebly and have performance issues on this mobo, while they work ok with my old a64 system, or my yet older p3 system.

  • 865PE Neo2-V problem/bad BIOS ver. 6.2

    A new BIOS for the 865PE Neo2-V has been posted at http://www.msi.com.tw/program/support/download/dld/spt_dld_detail.php?UID=612&kind=1.   This BIOS did not work for me and I had to revert to version 6.1.    If you plan a BIOS update, make sure you keep your previous version handy!
    Symptoms: after the flash, the system would not post.  I had an 8-beep error code (video problems on AMI BIOS).  Removing either or both video cards did not help, neither did the usual (re-set BIOS by jumper, remove battery, remove RAM, disconnect HDs, etc.)  Using the recovery flash method (place BIOS file as AMIBOOT.ROM on a floppy) with version 6.2 resulted in the same issues.  Recovery flash to version 6.1 and all worked fine again.
    System specs (if more details are needed I can provide them, I'm not at the system in question right now).
    865PE Neo2-V  (MS-6788)
    2x 512MB RAM  (Corsair?  I would need to dig for specifrics)
    NVIDIA GeForce 6800GT in AGP slot
    NVIDIA GeForce FX 5500 in PCI
    (plus a bunch of HDs and USB devices, but this problem occured even with all this removed).

    Quote from: crazy on 28-February-06, 08:36:40
    I just want to ask one question: you said that after you flashed the bios to the 6.2 version, then it could not even boot. Thus could you tell me how could you flash the bios to 6.1 version?
    There is a way to flash the BIOS even when the system won't boot.  For AMI BIOS (as on this board):
    1- Format a floppy, and copy the BIOS file to it.
    2- Rename the BIOS file to AMIBOOT.ROM
    3- Put floppy in the drive.
    4- Power up system while holding CTRL-HOME
    5- Wait until you hear floppy drive access, then you can release CTRL-HOME
    6- When you hear 4 beeps, the BIOS had been flashed from the file on the floppy.
    7- Power off, reset BIOS by jumper (just to be safe) and then power up again.

  • Display problems, bad logic board?

    Hi I'm a first timer here! I have a iBook G4 14" 1.33ghz laptop I am fixing for someone. When it boots up, the screen looks like you are watching TV with old rabbit ears. You can make out the mac logo and what not, then the screen goes blue, like the basic blue background, and it looks perfect, then once the desktop comes up, it all fuzzy again. I've replaced the LCD screen, AND the lcd cable that connects to the logic board. Same results. I guess the last part would be the logic board to replace? Does anyone have any suggestions?
    Here are some links to the pictures to show you what is going on...
    http://www.tylersweb.net/mac/1.jpg
    http://www.tylersweb.net/mac/2.jpg
    http://www.tylersweb.net/mac/3.jpg

    inverter board controls brightness, the lines in your pics look more like the logic
    since you have a stick of RAM, try another module or maybe remove it if you have on-board RAM
    would be good to connect to the external display if the adapter is available - it would confirm bad logic board if the same lines are on the external display, it wont completely rule out the board though if there are no lines

  • New problem - bad cracks during playback

    I'm getting back cracks and crackling during playback despite the fact that there is no obvious cause. The cracks happen when I use any effect (though my gut feeling tells me this isn't the underlying problem). I'm using UAD vst plugins but and Adobe effects but I am no where near being maxxed out, only using around 50-60% of my vst power. The cracks happen even when I use Audition's Studio Reverb or graphic eq.only, no vst.
    It sounds like a latency type of cracking or the type of cracking that happens when my plugins are maxxed out (nearly 100% on my meter) but as I said, that's not it (although it goes away when I remove all effects, even Audition effects).
    The strange thing is I am only working with 3 tracks!!!...2 guitars and vocal. I have many sessions with full band, easily 2 dozen tracks and not had this problem before. But with only 3 tracks...something is screwy.
    When I change the latency the cracking gets worse (currently it's at 1.5 seconds).
    Any ideas on how I can troubleshoot this??? My software is up to date and my system is virus checked. I'm also an experienced Audition user (years).
    Thanks for any ideas.

    Hey guys, my audio computer just developed this crackling on playback about 2 weeks ago.
    On mastered out audio files, the crackle is not there, but on playback on new projects (started over the last 2 weeks) there is crackle in the playback on all tracks (I get crackling on playback on my speakers and on my headphones).  Even individually, if I mute certain tracks.
    I found some weird points when playing with new projects:
    -I shut down the computer, and started Audition 2.0 again.  I started a new project @ 48000 Htz and 32 bit sampling.  And there was NO CRACKLING on playback (on speakers, on headphones, on mastered test audio files)
    -I went back to my problem projects with crackling playback and, yup, my playback had crackling on them
    -I mastered out my origional raw audio tracks (from the crackling project timeline) and put them on my new project timeline, and NO CRACKLING DURING PLAYBACK.... hmmmmmmm.
    I have no idea why it's doing this.
    But if your project is having playback issues.  Try a full shutdown/reboot, open a new project and do a test record to see if there is crackle.  If no crackle on playback, then go back to your crackling project and master out and re-import your raw audio tracks to your new project timeline
    If you guys have found another work-around, or a complete fix, post up and lemme know.

  • N81 8gb Software Update problems (bad!)

    hi i have an N81 8gb phone, great phone but now, its as good as a paper weight, heres whats goin on, the 1st time i updated the software everything was fine and the update went smooth after a few months of use and heavy download (i mean 8GB! a lot of **bleep**) i decided to reinstall the software and start clean slate, so midway into the update the phone just froze and the status bar wasnt moving, and i thought to myself 11 mins seems forever, scary! after an hour i decided to just push some buttons just maybe to "wake up " the phone, but to no avail, man, i was like ok, so i pulled the plug and took out the battery and when i restarted my computer and clicked on the update program, it said i have to reinstall the SOftware and what not. but the problem is everytime it reaches 11 mins left it would spit out an error message saying phone connection lost, then i would have to do it again, after 5 days of trying to update, still the same. 11 mins to me now is a nightmare. PLease help or advise,
    Solved!
    Go to Solution.

    hi,
    can you try this:
    1) Remove the battery, and then wait for about 20 min or so before putting it back
    2) Press and hold these three keys together -Green dial key, Star key[*], Three key [3]
    3) switch ON the phone.
    4) Do not let go the three keys until you see the WELCOME screen displayed and just let it complete the boot process
    if that doesnt help you at all, you better run to the nearest nokia care point

Maybe you are looking for

  • IMovieS not compatible with iPad 2

    I've purchased this app, however when trying to install the latest update it says it's incompatible with this iPad. I've deleted the app but can't reinstall. Any ideas??

  • I need help converting a pdf file to a word document

    I am having problems converting a pdf file to a word document

  • Order summary report

    Hi Guru, My clients want to see below fields in Order summary report, is there any standard report to meet below requirement: Debtors' Name (standard Report) Date Received (Standard Report) Date Deliver No of cartons sent Weight of Carton. Please adv

  • User details  popup for a KM User.

    We are EP 7.0 SP 14 Just want to which property I need to change to modify the context menu on a user. If you go to KM content and besides any document. You have user who last modified it. when you click on the user. You get a popup with all the user

  • Help Feature from MenuBar

    I have a simple editor created which has a help menu bar. What I want is when I click on the help menu item it opens up a already written file in a separate window. Can anyone help pls . Thanks