Virtual kf's and help with BADI

Hi all,
How are you? Could somebody who has worked with virtual characteristics and kf's send me the scenarios and screen shots and also the badi code implementation to my mail id.
[email protected]
Thanks and all the best
Prathibha Eluri

I found the problem! In release 4.6c has a parameter p_bapi with 'X' as default value that block bapi calls.

Similar Messages

  • I need advise and help with this problem . First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product . At the present time I'm having lots of problems with the router so I was looking in to

    I need advise and help with this problem .
    First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product .
    At the present time I'm having lots of problems with the router so I was looking in to some info , and come across one web site regarding : port forwarding , IP addresses .
    In my frustration , amongst lots of open web pages tutorials and other useless information , I come across innocent looking link and software to installed called Genieo , which suppose to help with any router .
    Software ask for permission to install , and about 30 % in , my instinct was telling me , there is something not right . I stop installation . Delete everything , look for any
    trace in Spotlight , Library . Nothing could be find .
    Now , every time I open Safari , Firefox or Chrome , it will open in my home page , but when I start looking for something in steed of Google page , there is
    ''search.genieo.com'' page acting like a Google . I try again to get raid of this but I can not find solution .
    With more research , again using genieo.com search eng. there is lots of articles and warnings . From that I learn do not use uninstall software , because doing this will install more things where it come from.
    I do have AppleCare support but its to late to phone them , so maybe there some people with knowledge , how to get this of my computer
    Any help is welcome , English is my learned language , you may notice this , so I'm not that quick with the respond

    Genieo definitely doesn't help with your router. It's just adware, and has no benefit to you at all. They scammed you so that they could display their ads on your computer.
    To remove it, see:
    http://www.thesafemac.com/arg-genieo/
    Do not use the Genieo uninstaller!

  • Checking Account and help with code ?

    Hi all..my computer hung up on me, so I'm not sure if my last post went through. First of all thank you all for helping me out the other day with my question on the Bank Account. It continues :)
    I'm trying to work on each class one by one..when I test my Checking Account, it isn't printing out the correct balance. The string method to print this is coming from the Withdrawal class...so I know it has to be somewhere in there but I can't seem to figure out why it isn't totalling the balance...or how to get it too.
    Then when I test my MyBank class, it hangs up on line 63..which I could swear I have written correctly. Again I am getting a NullPointerException and I honestly think I have the line of code written right, but I'm guessing I dont.
    Any help would be appreciated.
    public abstract class BankAccount {
        public static final String bankName = "BrianBank";
        protected String custName;
        protected String pin;
        protected Transaction[] history;
        private double balance;
        private double amt, amount;
        private double bal, initBal;
        private int transactions;
        private final int MAX_HISTORY = 100;
        private int acct;
        protected BankAccount(String cname, String cpin, double initBal) {
         custName = cname;
         pin = cpin;
         balance = initBal;
         history = new Transaction[MAX_HISTORY];
         transactions =0;
        public double getBalance() {
         return balance;
        public void withdraw(double amt) {
         history [transactions] = new Withdrawal (bal, amt);
       balance = bal;
         amount = amt;
         balance -= amt;
       transactions = transactions + 1;     
        public void deposit(double amt) {     
         history [transactions] = new Deposit (bal, amt);
         balance = bal;
         amount = amt;
         balance += amt;
         transactions = transactions +1;
        // abstract method to return account number
        public abstract int getAcctNum();
        // abstract method to return a summary of transactions as a string
        public abstract String getStatement();
    public class CheckingAccount extends BankAccount implements IncursFee
          private int transactions;
          private double balance, initBal, amt;
          private static final int NOFEE_WITHDRAWALS = 10;
          private static final double TRANSACTION_FEE = 5.00;
          public static final String bankName = "iBank";
          public static final int STARTING_ACCOUNT_NUMBER = 10000;
          private int checkingAccountNumber = STARTING_ACCOUNT_NUMBER;
          private static int accountNumberCounter = STARTING_ACCOUNT_NUMBER;
          private String custName;
          private String pin;
          public CheckingAccount (String cname, String cpin, double initBal)
             super (cname, cpin, initBal);
              custName = cname;
              pin = cpin;
             balance = initBal;
             accountNumberCounter++; 
             checkingAccountNumber = accountNumberCounter;
          //initialize a count of transactions
             transactions = 0;          
           public double getBalance()
             return balance;
           public void withdraw(double amt)
            super.withdraw (amt);
             transactions ++;
           public void deposit(double amt)
           super.deposit (amt);
             transactions ++;
           public int getAcctNum ()
             return checkingAccountNumber;     
           public String getStatement ()
             int i = 0;
             String output = "";
             while ( i < history.length && history[i] != null )
                output += history.toString () + "\n";
    i++;
    return output;     
    public void deductFee(double fee)
    if (transactions > NOFEE_WITHDRAWALS)
    {  fee = TRANSACTION_FEE *(transactions - NOFEE_WITHDRAWALS);
    super.withdraw(fee);
    balance -=fee;
    transactions = 0;
    public interface IncursFee {
    public abstract void deductFee(double fee);
    public abstract class Transaction {
    protected double initBal;
    protected double tranAmt;
    // constructor
    protected Transaction(double bal, double amt) {
         initBal = bal;
         tranAmt = amt;
    abstract public String toString();
    public class Withdrawal extends Transaction
         private double initBal;
         private double amount;
         private static NumberFormat fmt = NumberFormat.getCurrencyInstance();
         public Withdrawal (double bal, double amt)
              super (bal, amt);
              initBal = bal;
              amount = amt;
         public String toString ()
         return "Balance : " + fmt.format(initBal) + "\n" + "Withdrawal : " + fmt.format(amount);
    import java.text.NumberFormat;
    public class Deposit extends Transaction
         private double initbal, balance;
         private double amount;
         private static NumberFormat fmt = NumberFormat.getCurrencyInstance();
         public Deposit (double bal, double amt)
         super (bal, amt);
         initbal = bal;
         amount = amt;
         public String toString ()
         return "Balance : " + fmt.format(initbal) + "\n" + "Deposit : " + fmt.format(amount);
    public class TestCheckingAcct {
    public static void main(String[] args) {
         BankAccount b1 = new CheckingAccount("Harry", "1234", 500.0);
         System.out.println (b1.getBalance ());
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.deposit(50);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.deposit(10);
         b1.withdraw(1);
         System.out.println(b1.getStatement());
    // This interface specifies the functionality requirements of a bank
    public interface Bank {
    public abstract int openNewAccount(String customerName, String customerPIN, String accType, double initDepAmount);
    public abstract void processWithdrawal(int accNum, String pin, double amount);
    // executes a deposit on the specified acct by the amount
    public abstract void processDeposit(int accNum, String pin, double amount);
    // returns the balance of acct
    public abstract double processBalanceInquiry(int accNum, String pin);
    // returns summary of transactions
    public abstract String processStatementInquiry(int accNum, String pin);
    import java.util.ArrayList;
    public class MyBank implements Bank
    private ArrayList<BankAccount> savAccounts = new ArrayList<BankAccount>(); //dynamically grows
    private ArrayList<BankAccount> chkAccounts = new ArrayList<BankAccount>(); //dynamically grows
    private SavingsAccount sav;
    private CheckingAccount chk;
    private int accNum;
    private String customerName, customerPIN, accType, pin;
    private double initDepAmount, amount, balance;
    public int openNewAccount(String customerName, String customerPIN, String accType, double initDepAmount)
    this.customerName = customerName;
    this.customerPIN = customerPIN;
    this.accType = accType;
    this.initDepAmount = initDepAmount;
    if ( accType.equals("Savings"))
    BankAccount savAcct = new SavingsAccount(customerName, customerPIN, initDepAmount);
    try
    savAccounts.add(savAcct);
    catch (ArrayIndexOutOfBoundsException savAccounts)
    return savAcct.getAcctNum();
    else
    CheckingAccount chkAcct = new CheckingAccount(customerName, customerPIN, initDepAmount);
         try
    chkAccounts.add(chkAcct);
    catch (ArrayIndexOutOfBoundsException chkAccounts)
    return chkAcct.getAcctNum();
    public void processWithdrawal (int accNum, String pin, double amount)
         this.accNum = accNum;
         this.pin = pin;
         this.amount = amount;
    if (accNum >10000 && accNum < 20000)
         chk.withdraw (amount);
    if (accNum >50000 && accNum <60000)
         sav.withdraw (amount);
    public void processDeposit (int accNum, String pin, double amount)
         this.accNum = accNum;
         this.pin = pin;
         this.amount = amount;
    if (accNum >10000 && accNum < 20000)
         chk.deposit (amount);
    if (accNum >50000 && accNum <60000)
         sav.deposit (amount);
    public double processBalanceInquiry (int accNum, String pin)
         this.accNum = accNum;
         this.pin = pin;
         this.balance = 0;
    if (accNum >10000 && accNum <20000)
         balance = chk.getBalance ();
    if (accNum >50000 && accNum <60000)
         balance = sav.getBalance ();
    return balance;
    public String processStatementInquiry(int accNum, String pin)
         this.accNum = accNum;
         this.pin = pin;
         this.statement = "";
    if (accNum >10000 && accNum <20000)
    statement = chk.getStatement ();
    if (accNum >50000 && accNum <60000)
    statement= sav.getStatement ();
         return statement;

    Here's some quick code review:
    public abstract class BankAccount {
    public static final String bankName =
    me = "BrianBank";
    protected String custName;
    protected String pin;
    protected Transaction[] history;
    private double balance;
    private double amt, amount;
    private double bal, initBal;
    private int transactions;// make MAX_HISTORY private static final, too.
    private final int MAX_HISTORY = 100;
    private int acct;
    protected BankAccount(String cname, String cpin,
    pin, double initBal) {
         custName = cname;
         pin = cpin;
         balance = initBal;
         history = new Transaction[MAX_HISTORY];
         transactions =0;
    public double getBalance() {
         return balance;
    public void withdraw(double amt) {
         history [transactions] = new Withdrawal (bal, amt);
    balance = bal;
         amount = amt;
         balance -= amt;// ++transactions above would be elegant.
    transactions = transactions + 1;     
    public void deposit(double amt) {     
         history [transactions] = new Deposit (bal, amt);
         balance = bal;
         amount = amt;
         balance += amt;
         transactions = transactions +1;
    // abstract method to return account number// why abstract?
    public abstract int getAcctNum();
    // abstract method to return a summary of
    y of transactions as a string// why abstract?
    public abstract String getStatement();
    public class CheckingAccount extends BankAccount
    implements IncursFee
    private int transactions;
    private double balance, initBal, amt;
    private static final int NOFEE_WITHDRAWALS =
    WALS = 10;
    private static final double TRANSACTION_FEE =
    _FEE = 5.00;
    public static final String bankName = "iBank";
    public static final int STARTING_ACCOUNT_NUMBER
    NUMBER = 10000;
    private int checkingAccountNumber =
    mber = STARTING_ACCOUNT_NUMBER;
    private static int accountNumberCounter =
    nter = STARTING_ACCOUNT_NUMBER;// BankAccount has a custName attribute; why does CheckingAccount need
    // one if it extends BankAccount?
    private String custName;
    private String pin;
    public CheckingAccount (String cname, String
    String cpin, double initBal)
    super (cname, cpin, initBal);
    custName = cname;
    pin = cpin;
    balance = initBal;
    accountNumberCounter++;
    checkingAccountNumber =
    tNumber = accountNumberCounter;
    //initialize a count of transactions
    transactions = 0;          
    // same as BankAccount - why rewrite it?
    public double getBalance()
    return balance;
    // same as BankAccount - why rewrite it?
    public void withdraw(double amt)
    super.withdraw (amt);
    transactions ++;
    // same as BankAccount - why rewrite it?
    public void deposit(double amt)
    super.deposit (amt);
    transactions ++;
              // same as BankAccount - why rewrite it?
    public int getAcctNum ()
    return checkingAccountNumber;     
    public String getStatement ()
    int i = 0;
    String output = "";
    while ( i < history.length && history[i] !=
    ory[i] != null )
    output += history.toString () + "\n";
    i++;
    return output;     
    public void deductFee(double fee)
    if (transactions > NOFEE_WITHDRAWALS)
    {  fee = TRANSACTION_FEE *(transactions -
    ansactions - NOFEE_WITHDRAWALS);
    super.withdraw(fee);
    balance -=fee;
    transactions = 0;
    public interface IncursFee {
    public abstract void deductFee(double fee);
    public abstract class Transaction {
    protected double initBal;
    protected double tranAmt;
    // constructor
    // why protected? make it public.
    protected Transaction(double bal, double amt) {
         initBal = bal;
         tranAmt = amt;
    abstract public String toString();
    public class Withdrawal extends Transaction
         private double initBal;
         private double amount;
    private static NumberFormat fmt =
    = NumberFormat.getCurrencyInstance();
         public Withdrawal (double bal, double amt)
              super (bal, amt);
              initBal = bal;
              amount = amt;
         public String toString ()
    return "Balance : " + fmt.format(initBal) + "\n" +
    + "Withdrawal : " + fmt.format(amount);
    import java.text.NumberFormat;
    public class Deposit extends Transaction
         private double initbal, balance;
         private double amount;
    private static NumberFormat fmt =
    = NumberFormat.getCurrencyInstance();
         public Deposit (double bal, double amt)
         super (bal, amt);
         initbal = bal;
         amount = amt;
         public String toString ()
    return "Balance : " + fmt.format(initbal) + "\n" +
    + "Deposit : " + fmt.format(amount);
    public class TestCheckingAcct {
    public static void main(String[] args) {
    BankAccount b1 = new CheckingAccount("Harry",
    , "1234", 500.0);
         System.out.println (b1.getBalance ());
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.deposit(50);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.withdraw(1);
         b1.deposit(10);
         b1.withdraw(1);
         System.out.println(b1.getStatement());
    // This interface specifies the functionality
    requirements of a bank
    public interface Bank {
    public abstract int openNewAccount(String
    String customerName, String customerPIN, String
    accType, double initDepAmount);
    public abstract void processWithdrawal(int
    (int accNum, String pin, double amount);
    // executes a deposit on the specified acct by
    t by the amount
    public abstract void processDeposit(int accNum,
    Num, String pin, double amount);
    // returns the balance of acct
    public abstract double processBalanceInquiry(int
    (int accNum, String pin);
    // returns summary of transactions
    public abstract String
    ring processStatementInquiry(int accNum, String
    pin);
    import java.util.ArrayList;
    public class MyBank implements Bank
    private ArrayList<BankAccount> savAccounts =
    unts = new ArrayList<BankAccount>(); //dynamically
    grows
    private ArrayList<BankAccount> chkAccounts =
    unts = new ArrayList<BankAccount>(); //dynamically
    grows
    private SavingsAccount sav;
    private CheckingAccount chk;
    private int accNum;
    private String customerName, customerPIN,
    erPIN, accType, pin;
    private double initDepAmount, amount, balance;
    public int openNewAccount(String customerName,
    erName, String customerPIN, String accType, double
    initDepAmount)
    this.customerName = customerName;
    this.customerPIN = customerPIN;
    this.accType = accType;
    this.initDepAmount = initDepAmount;
    if ( accType.equals("Savings"))
    BankAccount savAcct = new
    vAcct = new SavingsAccount(customerName, customerPIN,
    initDepAmount);
    try
    savAccounts.add(savAcct);
    catch (ArrayIndexOutOfBoundsException
    Exception savAccounts)
    return savAcct.getAcctNum();
    else
    CheckingAccount chkAcct = new
    hkAcct = new CheckingAccount(customerName,
    customerPIN, initDepAmount);
         try
    chkAccounts.add(chkAcct);
    catch (ArrayIndexOutOfBoundsException
    Exception chkAccounts)
    return chkAcct.getAcctNum();
    public void processWithdrawal (int accNum,
    accNum, String pin, double amount)
         this.accNum = accNum;
         this.pin = pin;
         this.amount = amount;
    if (accNum >10000 && accNum < 20000)
         chk.withdraw (amount);
    if (accNum >50000 && accNum <60000)
         sav.withdraw (amount);
    public void processDeposit (int accNum, String
    String pin, double amount)
         this.accNum = accNum;
         this.pin = pin;
         this.amount = amount;
    if (accNum >10000 && accNum < 20000)
         chk.deposit (amount);
    if (accNum >50000 && accNum <60000)
         sav.deposit (amount);
    public double processBalanceInquiry (int accNum,
    String pin)
         this.accNum = accNum;
         this.pin = pin;
         this.balance = 0;
    if (accNum >10000 && accNum <20000)
         balance = chk.getBalance ();
    if (accNum >50000 && accNum <60000)
         balance = sav.getBalance ();
    return balance;
    public String processStatementInquiry(int accNum,
    m, String pin)
         this.accNum = accNum;
         this.pin = pin;
         this.statement = "";
    if (accNum >10000 && accNum <20000)
    statement = chk.getStatement ();
    if (accNum >50000 && accNum <60000)
    statement= sav.getStatement ();
         return statement;
    Very bad style with those brace placements. Pick a style and stick with it. Consistency is the key.
    Your code isn't very readable.
    You don't have a SavingsAccount here anywhere, even though your MyBank uses one.
    You use JDK 1.5 generics yet you've got ArrayList as the static type on those declarations. Better to use the interface type List as the compile time type on the LHS.
    You have a lot of compile time problems, and some incomprehensible stuff, but I was able to change it enough to my TestCheckingAcct run to completion. No NPE exceptions.
    I'm not sure I agree with your design.
    No SavingsAccount. The accounts I have ALL incur fees - no need for a special interface there. Savings accounts are usually interest bearing. That's the way they behave differently from checking accounts. Where do you have that?
    You rewrite too much code. If you put behavior in the abstract BankingAccount class (a good idea), the whole idea is that concrete classes that extend BankingAccount don't need to overload any methods whose default behavior is correct for them.
    I don't know that I'd have separate Deposit and Withdrawal to implement Transaction. I'd make Transaction concrete and have starting balance, ending balance, and a transaction type String (e.g., "DEPOSIT", "WITHDRAWAL")
    It'd be good to see some thought put into exception handling. I don't see an OverdrawnException anywhere. Seems appropriate.
    No transfer methods from one account to another. I often do that with my bank.
    That's enough to get started.

  • Want help with BADI'S ?

    Hi experts,
        I m new to BADI'S.I got a requirement to get a sub-screen to the standard transaction MFBF.The subscreen will be having 2 fields personnel number and personnel name. For this the functional guy told me to activate the badi <b>rm_hr_integration</b> to get the sub-screen.If the badi is activated he said we get the above mentioned 2 fields as columns in the table control in the selection screen of transaction MF42N. What should i do to activate the badi?If i activate the badi will i get the require sub screen?Do i need to write any additonal code?
        Please anyone suggest me the soln with some procedural steps.sloutions will be rewarded with points.
    Thanks,
    dp.

    Go to transaction SE18 and display the BAdI definition. Read the documentation which will explain what this BAdI does and even tell you how to create an implementation and where do you find additional help/documentation regarding BAdIs.
    There is also a sample code which is available in SE18 via Goto -> Sample code -> Display.

  • Premiere Pro CS6 and CC with bad quality and incorrect colors in output video

    Hi everyone!
    I'm frustrated with my results after exporting a video with Adobe Premiere Pro (both CS6 and CC).
    The color of the video output is slightly different to the original file (i've checked if it was a problem with my video player, but no, i've tested the video with WMP and others with no success).
    Also the video quality is a little bad compared to the original file (i even tried to use frame blending once).
    Notice that i'm not using any effects or anything alike, and i'm a begginer in video editing.
    These are the parameters from the original video (made by Media Info software):
    Format                              
    : MPEG-4
    Format profile                      
    : Base Media
    Codec ID                            
    : isom
    File size                           
    : 1.70 GiB
    Duration                            
    : 1h 35mn
    Overall bit rate mode               
    : Variable
    Overall bit rate                    
    : 2 540 Kbps
    Encoded date                        
    : UTC 2012-12-06 21:47:27
    Tagged date                         
    : UTC 2012-12-06 21:47:27
    Video
    ID                                  
    : 1
    Format                              
    : AVC
    Format/Info                         
    : Advanced Video Codec
    Format profile                      
    : [email protected]
    Format settings, CABAC              
    : Yes
    Format settings, ReFrames           
    : 4 frames
    Codec ID                            
    : avc1
    Codec ID/Info                       
    : Advanced Video Coding
    Duration                            
    : 1h 35mn
    Bit rate                            
    : 2 246 Kbps
    Maximum bit rate                    
    : 33.7 Mbps
    Width                               
    : 1 920 pixels
    Height                              
    : 816 pixels
    Display aspect ratio                
    : 2.35:1
    Frame rate mode                     
    : Constant
    Frame rate                          
    : 23.976 fps
    Color space                         
    : YUV
    Chroma subsampling                  
    : 4:2:0
    Bit depth                           
    : 8 bits
    Scan type                           
    : Progressive
    Bits/(Pixel*Frame)                  
    : 0.060
    Stream size                         
    : 1.50 GiB (88%)
    Title                               
    : Video
    Writing library                     
    : x264 core 128 r2216 198a7ea
    Encoding settings                   
    : cabac=1 / ref=3 / deblock=1:1:1 / analyse=0x3:0x133 / me=umh / subme=10 / psy=1 / psy_rd=0.40:0.00 / mixed_ref=1 / me_range=24 / chroma_me=1 / trellis=2 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=12 / lookahead_threads=2 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=3 / b_pyramid=2 / b_adapt=2 / b_bias=0 / direct=3 / weightb=1 / open_gop=0 / weightp=2 / keyint=250 / keyint_min=23 / scenecut=40 / intra_refresh=0 / rc_lookahead=60 / rc=2pass / mbtree=1 / bitrate=2246 / ratetol=1.0 / qcomp=0.60 / qpmin=0 / qpmax=69 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / vbv_maxrate=25000 / vbv_bufsize=25000 / nal_hrd=none / ip_ratio=1.40 / aq=1:0.60
    Encoded date                        
    : UTC 2012-12-06 21:47:27
    Tagged date                         
    : UTC 2012-12-06 21:48:02
    I'm exporting the video using almost the same parameters from the original file.
    Here's a screen shot of my settings in Premiere:
    As you can see in the printscreen, the settings only differ from the original file parameters in the bit rate (which i raised a little),
    the TV standard (which i have no ideia what it changes), the level of H.264 (which i raised from 4.0 to 4.1, 5.0 and 5.1), and the bit rate encoding (which i've tried using CBR, VBR 1, and VBR 2).
    Just for my curiosity...why these numbers in orange are so extensive? I mean, the original video is only 01:35:30:06 in final output (which is correct).
    Notice that i do not use key frame distance (as i don't know what it does).
    If i'm doing something wrong, please tell me.

    Well if i do that, the video will raise up GBs larger (and that is really bad).
    Why is it really bad?
    Its a fact of digital  life. High datarate = quality.
    example ...even the Youtube preset is in the 8mpbs area.
    ...and you are exporting 1 hr 35mins of media.

  • Tips and help with re-installing Lion over Snow Leopard

    I had MAJOR issues with my initial Lion install on my Mid-2009 MBP- so much so, that I had to wipe my hard drive and re-install Snow Leopard and all my applications. My major issues were as follows:
    1. All my files were locked out- I could open them in most cases, but I couldn't overwrite them- Lion had aded some funky permissions scheme that I didn't recognize, and my user name wasn't present on any of them. In some cases, I couldn't even open files, even though they were resident on my hard drive (and in my own user folder) before the upgrade to Lion.
    2. Apple's own Universal Binary apps wouldn't work after the upgrade. Final Cut Pro 6, in particular, came up with a message that it was a "PowerPC" app and wouldn't run- yet Shake 4.1 would run just fine!
    3. Adobe Creative Suite 3- after the upgrade, my Abode Ceative Suite 3 apps worked just fine, for about a day- that is, until I tried to correct the file permissions issue by changing permission on a few of my folders in my User folder (and electing to change permissions in the files contained therein)- at which point my Adobe apps told me that they were damaged and needed to be reinstalled. Yet after uninstaling and reinstalling the entire Creative Suite 3 times, I still would get the same message.
    My entire workflow is Adobe CS and FCS2- why chould I have to pay the upgrade costs just to use Lion? FCPX is completely brkoen for my workflow and eqipment, and Adobe can't even guarantee that CS5 works with Lion- so why does Apple insist on Lion when it's hardly even compatible with its own products?
    I really want to use Lion, but I am looking for some tips on instalation to kep these problems from happening again. I didn' have ANY of these problems with upgrading OS 10.2 through 10.6. Any help with prepping my system/files for upgrading would be helpful. Thanks!

    any new Apple kB articles
    http://support.apple.com/kb/index?page=articles
    Me, I think clone backups are more useful, and only use T.M. as secondary.
    Using Cloning as a Backup Strategy
    I'd assume that professional apps may need to be tested still; and of course check to see what you have that depends on PowerPC code and Rosetta first. That has some in a tither.
    A clone lets you still be able to boot Snow Leopard. Check out Carbon Copy, SuperDuper.

  • Need info and help with ARD

    I would really like to get some information and help that would enable me to troubleshoot my mother's new Mac Mini for her. She lives in CA and I live in WA. She is new to Macs and I just KNOW there will be lots of desperate phone calls from her to me!
    I should say right up front, though, that although I do pretty well with my own Macs, I know almost nothing about THIS subject. So, please, any help or information you choose to give me, it will need to be in plain, old English as I don't understand all this stuff.
    My setup is this: (I don't know what is relevant or not) ......I have a desktop G4 running 10.4.3 that will be the computer I will use to remotely control the Mini. The Mini is also running 10.4.3 (or will be when I get it set up for her). I am connected to the internet through a wireless connection to my ISP. I have a Linksys router and connect to that via Ethernet. We have 4 other computers here at home connected to our network wirelessly.
    My Mom will connect to the internet using a modem and AOL
    This is what I have done so far but I have not been able to make a connection. (As a test, before I go to CA and setup the Mini, I thought I’d try to remotely control my iBook, which is on my network.) On the iBook, I enabled ARD in the Sharing preferences and checked "VNC viewers nay control screen with password" and then entered a password. On my desktop computer, I downloaded Chicken of the VNC, entered in the info I needed (address of the iBook and password) but it would not connect.
    I've read so much about clients, servers, etc. here lately that my head is swimming and I’m more confused than ever!
    Can I even do what I'd like? It'd sure be a sweet deal for me and avoid a lot of frustration for my Mom .......who, incidentally, is switching to a Mac from a PC at the tender young age of 75! Cool, huh? I'd really like to make it as painless for her as possible.
    Thanks,
    Kathy
    G4/dual 1.25 and iBook G4/933   Mac OS X (10.4.3)  

    The phone line speed is the BIG issue.... there are things like DynDNS that cab help with the static issue...
    now if you get her highspeed through cable...
    good luck

  • Want help with badi implementation?

    Hi experts,
    I m new to BADI'S.I got a requirement to get a sub-screen to the standard transaction MFBF.The subscreen will be having 2 fields personnel number and personnel name. For this the functional guy told me to activate the badi rm_hr_integration to get the sub-screen.If the badi is activated he said we get the above mentioned 2 fields as columns in the table control in the selection screen of transaction MF42N. What should i do to activate the badi?If i activate the badi will i get the require sub screen?Do i need to write any additonal code?
    Please anyone suggest me the soln with some procedural steps.sloutions will be rewarded with points.
    Thanks,
    dp.

    Hi Nagaraj,
       Thanks for the reply. I created the implementation for the badi and activated the badi.Then i run the transaction MFBF to see whether i got a subscreen but i there is no change.In the implementation of the badi there is a tab for subscreen.In that tab there are some fields to fill.The fields call program and screen no are filled automatically with values SAPLBARM and 800 respectively.There are 2 more fields to fill called program and screen no.What i have to fill in those fields?any suggestions?
    Thanks,
    dp.

  • Help in ECC 6.0 - Enhancements and Modification with BADI

    Hi,
    I want <b>Enhancements and Modification help in ecc 6.0 and BADI also</b>..
    Plz tell me as soon as possible....
    Regards,
    <b>Anil Kumar</b>

    Try this one:
    http://help.sap.com/saphelp_nw04/helpdata/en/ee/a1d548892b11d295d60000e82de14a/frameset.htm
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    Regards,
    Naimesh Patel

  • Help with badi activation

    Hi friends! I want use badi definition BADI_J_1BECD for transaction J1BECD. To do this, I have created implementation on SE19 with definition "BADI_J_1BECD" and coded method "Fill entire register I051", but I cannot debug it even putting Break-point in this. I tried debug with SM50 (fake loop) but without sucess. I'm forgetting anything?
    My release is 4.6c.
    Thanks for any help.

    I found the problem! In release 4.6c has a parameter p_bapi with 'X' as default value that block bapi calls.

  • I Need some assistant and HELP with my iPod Touch  soon

    Note: Look up above at the Top to read my Problem that I am having with my iPod Touch.
    Can Someone Please HELP ME with my iPod Touch, I am running out of patience, normally when I do need help here I usually get help and a reply within ONE day, but I have posted my problem YESTERDAY, why isn't there someone not replying to my request?? I am getting 55 views but no replys, isn't there anyone out there that can help me??
    I need HELP to reset my IPod Touch to where I had it when I was able to send emails. (can't send emails anymore from my iPod Touch)
    I want to be able to sync and send my iPod Touch sent emails info. to my Computer email program, does anyone know how to do that?
    PLEASE HELP ME AND REPLY if you can solve my problem ASAP.
    Trisha Foster

    Agreed! If you want help soon, call Apples paid support line. Now while you were waiting for us to slowly get around to answering you, you could have downloaded the manual for the ipod, so that you understood the function of the mail sync options in itunes. Mail sync only copies the settings needed to access your mail servers, from the mail client on your computer, over to the ipod touch. It does not copy any actual mail messages, and does not copy any settings from the ipod back to your mail program. The advanced section is meant to be used if you have messed up the settings on the ipod itself. It will ignore any changes to bookmarks, contacts, or mail settings depending on which you check, and will copy new information to the ipod. So in your case if you are able to access, and send mail correctly from the account on your mac, then clicking on the sync mail account button in itunes as well as the replace info on this ipod whatever in the advanced section should transfer over the correct mail account settings to your ipod.

  • Hello from a new member and help with random images on refresh

    Hi All,
    I've just joined the forum. In fact I've really only just started to use Dreamweaver. I've covered a lot of ground in the last few weeks and
    have manage to set up a basic site using CSS for layout but now I've hit my first problem.
    On the index page of the site - http://www.hcadesign.co.uk/ there is a large main image which I would like to change each time someone
    visits the site or hits refresh. I've hunted around and found lots of scripts, all using java, that seem to do just this but I'm not having any
    luck getting them to work.
    My pages code is as follows -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Humphrey Cook Associates - Architects - Interior Designers - Project Managers</title>
    <link href="styles/hca_styles.css" rel="stylesheet" type="text/css" media="screen" />
    </head>
    <body>
    <div id="wrapper">
      <div id="header"><img src="images/header.gif" width="800" height="100" alt="hca_header" /></div>
      <div id="menu">
        <ul>
          <li>About Us</li>
          <li>Residential </li>
          <li>Special Needs Housing</li>
          <li>Hotels</li>
          <li>Conservation</li>
          <li>Interiors</li>
          <li>Offices</li>
          <li>Sustainability</li>
          <li>Commercial</li>
          <li>News</li>
          <li>Contact</li>
        </ul>
      </div>
      <div id="main_image"><img src="images/haydock_atrium_420x300.jpg" width="420" height="300" alt="haydock_atrium" />
      </div>
      <div id="menu_right">
        <h3>Latest News</h3>
        <p>Planning permision finally granted for the proposed 'Villa De France'</p>
        <div id="news_image_01">
          <p><img src="images/news_villa_de_france_90x50.jpg" alt="villa_de_france" width="90" height="50" /></p>
        </div>
        <p>Application submitted for new 30 storey hotel with retail in Tower Hamlets</p>
        <div id="news_image_02"><img src="images/news_alie_St_90x50.jpg" width="90" height="50" alt="alie_street" /></div>
      </div>
      <div id="spacer"></div>
      <div id="bottom_left"><img src="images/riba_logo_127x67.gif" width="127" height="67" alt="riba_logo" /></div>
      <div id="bottom_thumb_01"><img src="images/thumb_beckton_95x67.jpg" width="95" height="67" alt="beckton" /></div>
      <div id="bottom_thumb_02"><img src="images/thumb_edgeworth_link_95x67.jpg" width="95" height="67" alt="edgeworth" /></div>
      <div id="bottom_thumb_03"><img src="images/thumb_tov_bathroom_95x67.jpg" width="95" height="67" alt="haydock" /></div>
      <div id="bottom_thumb_04"><img src="images/thumb_edgeworth_interiors_portrait_95x67.jpg" width="95" height="67" alt="the_old_vicarage" /></div>
    <div id="bottom_right">
      <h1>Architects</h1>
      <h1>Interior Designers</h1>
      <h1>Project Managers</h1>
    </div>
      <div id="footer"></div>
    </div>
    </body>
    </html>
    I've highlighted where the image to be rotated is in red.
    The scripts I've found have generally involved putting something in the <head>, something where the image is to be (but I wasn't sure if it should be
    within the div tag or after img src or what?) and also a seperate *.js file stored in the root directory.
    Anyway I'm not getting anywhere and need some help as I really don't know what I'm doing with javascript.
    Cheers

    Hi and Welcome to the DW Forums. 
    For the sake of clarity, Java is not the same thing as JavaScript. 2 entirely different programming languages.
    Copy and paste the following code into a new, blank HTML page.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Random Banner</title>
    <script type="text/javascript">
    <!--//Random Banner image on Page Reload 
    //store the images in arrays below.
    //First banner is always image [0].
    //If you add more banners images, change the array count (4).
    images = new Array(4);
    images[0] = "<a href='http://www.example.com'>
    <img src='path/first-image.jpg' width=' ' height=' ' alt='some-description' /> </a>";
    images[1] = "<a href='http://www.example.com'>
    <img src='path/second-image.jpg' width=' ' height=' ' alt='some-description' /> </a>";
    images[2] = "<a href='http://www.example.com'>
    <img src='path/third-image.jpg' width=' ' height=' ' alt='some-description'  </a>";
    images[3] = "<a href='http://www.example.com'>
    <img src='path/fourth-image.jpg' width=' ' height=' ' alt='some-description'  </a>";
    index = Math.floor(Math.random() * images.length);
    document.write(images[index]);
    //done
    // -->
    </script>
    </head>
    <body>
    <h1>Random Banner on Page Load.</h1>
    <p>The more images you have in your array, the more random it will seem.</p>
    <p>Change the URLs from example.com to your your own site pages.</p>
    <p>Change path/image to images in your local site folder.</p>
    </body>
    </html>
    Good luck with your project,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web-design.blogspot.com/

  • Pls view SWF and help with Actionscript

    I am trying to get my thumbnails (Which are individual
    buttons) to show in the box to the right when you click on them but
    I don't know the code to put on the buttons to make that happen.
    Can someone please help me.
    http://www.geocities.com/demetriusmcclain/

    there are weekend course offered from time to time i large
    cities. but i think it would be less expensive to look at your
    local community college(s) and see if they have anything offered.
    you could search google for actionscript classes.
    i looked at your project and i really don't see an easy way
    to accomplish what you want. there are reasons i say that but all
    of them are solvable but one.
    the one that can't be resolved is that you cannot change the
    parentage of a duplicated movieclip.
    so, each of your elephant thumbnail duplications, for
    example, is going to be a child of panel. and panel is masked. so,
    all your duplicated elephants are going to be masked and therefore
    cannot be positioned over your canvas and still be visible. there
    is not work-around with your current set-up.
    the only way i can see to resolve the issue is to assign a
    linkage id to each of your panel buttons, use shared library assets
    and attach the corresponding button to the _level0 swf.

  • Help with badi

    Is it a good idea to use function modules in badi custom code
    i am trying to modify one of the infotype records (0004) using badi but the field is not getting updated , im using func mod HR_INFOTYPE_OPERATION.
    Can u suggest any  alternatives?? Help will be much appreciated...

    Hello Vinay
    Unfortunately you did not reveal the most important detail for answering your question:
    Which BAdI are you using?
    Assuming that you perhaps use BAdI <b>HRPAD00INFTY</b> (<i>Update / Infotype maintenance</i>) then you can see from the signature of the interface methods (IF_EX_HRPAD00INFTY; on ECC 5.0) that none of them is intended for changing current data of the transaction. On the contrary, all method parameters are IMPORTING parameters and are called BY VALUE. Thus, no changes of the parameters within the interface methods will be transmitted to the caller.
    Method IF_EX_HRPAD00INFTY~AFTER_INPUT is the only method having an exception which implies that this method can be used to perform checks (compare PBO vs. PAI data) and reject changes by raising the exception.
    Final remark:
    It is complete nonsense to commit work <b>within </b>a BAdI because the BAdI is called within a transaction which should be properly committed at the end of the transaction.
    Regards
      Uwe

  • Some advice and help with sound please

    i have just upgraded! to premier elements 8. when i import a dvd all the sound plays when viewed on the preview but as soon as i drag it down to become the next clip everything is heard (background music, dogs barking chit chat etc) except the voices of the actors. any suggestions would be appreciated. of course just to frustrate me it doesn't happen on all clips

    This is extremely odd, as if all of the sounds are heard in the DVD, you are working with that mixed Audio Stream. PrE does not break this apart, i.e. un-mix the Stream from the DVD.
    When played on either a computer through DVD player software, or on a TV through a set-top player, do you hear all frequencies?
    When you have Imported the VOB, do you hear everything in the Source Monitor?
    Are you saying that when you drag the Clip to the Timeline, suddenly the frequency ranges of human speech disappear? That is very, very hard to accomplish with a professional Audio editing program, let alone have it happen automatically and accidentally in PrE.
    Good luck,
    Hunt

Maybe you are looking for

  • Apple loops have disappeared?

    I clicked on Re-Index apple loops user library, and all my loops disappeared. I went on garageband and re indexed them again there, but not all of my loops have appeared. I've reindexed spotlight, I've re installed Logic, but they're still not there.

  • User ID Not Recognized in App Store after Migrating to new Mac

    I migrated to a new Mac using Migration Assistant being careful to create an identical user account on the new Mac. All went fine. When it came time to update apps through MAS, some apps updated and some would not (e.g. Pixelmator) and MAS tells me "

  • Is there an anti virus program for mac 9.1? Think I have a virus

    I don't use an anti virus - using outlook express I got a strange message with no subject or sender - just a blank line. I tried deleting it but it wouldn't be deleted. Since then every time I try to delete it - it crashes the system. Same with Inter

  • Ticker tape during presentation??

    Hello all. I'm a newbie with iMac. I use it in an education context - our school's announcements are presented on a few flat screen VGAs in the school using Keynote. My question... is there a better program out there that will do the same thing (ie.

  • F9k2 - Unable to add Business partner as Bank statement recipient

    Hello experts, I am having trouble with adding a BP number under the Bank statement tab of Change Bank account screen, i.e. bank account change: Account statement screen. Can someone please help me understand, why is this happening. How can I make th