Kindly help me out.

We have two DEV and TST R/3 servers running on 4.6C, the client has enhanced their operating system just by enhancing the version of OS is HP- UX, even the previous version is also HP-UX . d/b is Oracle 9i. it remains the same even in target system. So I have to perform a Homogenous system copy. Kindly guide me How do we proceed. I have the steps to be followed in Homogenous system copy. But would like to know do I have install the R/3 on target system first and the proceed with the steps as given in Homogenous copy or just by installing the database , central instance and have to follow the steps in the guide for the database instance.

http://www.sap-img.com/
<b>SAP System Administration </b>
Basis Components
Sapgui, Unix, SAP ITS, Router, Client Copy and IDES
Regards,
Rajesh Banka

Similar Messages

  • Kindly help me out with this prepared statement

    Hi All,
    I am having some problem with this code.The databaseUsername and databasePassword seem to be printing only null, what could be the problem.
    AFIAK, it is not going into the while loop itself.
    Help would be greatly appreciated.
    TIA
    AS
    try {
                  String sql = "SELECT username, password FROM admintable WHERE username = ? AND password = ?";
                PreparedStatement stmt = null;
                ResultSet rs = null;
                stmt=con.prepareStatement(sql);
                stmt.setString(1, username);
                stmt.setString(2, password);
                rs = stmt.executeQuery();
                String databaseUsername = null;
                String databasePassword = null;
                while (rs.next()){
                    databaseUsername=rs.getString("username");
                    databasePassword=rs.getString("password");
                     System.out.println("Values are Username " + databaseUsername);
                     System.out.println("Values are Password "+ databasePassword);
                 rs.close();
                 stmt.close();

    Hi Again,
    I would like to tell that there is only one entry in the database table.
    String sql = "SELECT username, password FROM professorforminfo.admintable WHERE username = ? AND password = ?";
                PreparedStatement stmt = null;
                ResultSet rs = null;
                stmt=con.prepareStatement(sql);
                stmt.setString(1, username);
                stmt.setString(2, password);
                rs = stmt.executeQuery();
                String databaseUsername = null;
                String databasePassword = null;
                while (rs.next()){
                    databaseUsername=rs.getString("username");
                    databasePassword=rs.getString("password");
                     System.out.println("Username value " + databaseUsername);
                     System.out.println("Password value "+ databasePassword);
                  }catch(SQLException sqlEx){
                       System.err.println("Unable to connect to DB");
                       sqlEx.printStackTrace();
                 rs.close();
                 stmt.close();Why do you think that the databaseUsername and databasePassword has null values in them.
    Kindly help me out.
    Thanking you
    AS

  • Please kindly help me out.... i just update my iphone to the latest os but i was unable to set my phone up now

    Please kindly help me out.... i just update my iphone to the latest os but i was unable to set my phone up now

    Did you buy your phone unlocked from Apple or did you have the original carrier unlock it? Or did you have some third party unlock it for you? If the latter, and you are trying to set the phone up with a different carrier than the original, you're going to have problems as the update most likely reversed the unauthorized unlock.

  • Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out

    Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out because it cost me to high and if this is not activated i have to bear a huge loss.i am a loyal customer of apple from a past 5 years.thank you for your cooperation

    Yes, this is activation lock. Return the phone for a refund, as it is useless without the activation information of the previous owner.

  • I'm not able to create my apple id without my credit card number in my iphone 5c.there is no way to skip this step.there is no option like "NONE" to skip that step.kindly help me out.im unable to download even free apps

    i'm not able to create my apple id without my credit card number in my iphone 5c.there is no way to skip this step.there is no option like "NONE" to skip that step.kindly help me out.im unable to download even free apps

    See
    Why can’t I select None when I edit my Apple ID payment information?
    and
    Creating an iTunes Store, App Store, iBooks Store, and Mac App Store account without a credit card
    Step 3 is important, no matter whether you do this on a Mac or an iPad / iPhone:
    Important: Before proceeding to the next step, you must download and install a free application. ...
    Important: Before proceeding to the next step, you must download and install the free application by tapping Free followed by tapping Install App. …
    First you must download a free app from the App Store. When you are asked to sign in with your Apple ID, select "Create new account". Accept the terms and conditions checkbox, then click Continue. After you enter all the requested personal data, click Continue.
    When you are asked to select a payment method, select "None". 
    That's all there is to it.

  • Kindly help me out with viterbi algorithm coding....

    Hi everybody,
    V r doing a project on Spread Spectrum image steganography. One of our module is Low Rate ECC.We plan to do it using convolutional codes using viterbi algorithm.we have a problem in implementing it.Please help me out with the coding .

    U would also be requiring Diagram.java
    import java.awt.Color;
    import java.awt.Graphics;
    class Diagram
    Diagram()
    competitors = new int[20][27];
    Letters = "abcdefghijklmnopqrstuvwxyz";
    status = "";
    x = 10;
    y = 70;
    no_letters = 0;
    word_viable = true;
    int[] Get_survivors(String s, int i)
    int ai[] = new int[27];
    float af[][] = Read_prob.reading_bigrams();
    float af1[][] = Read_prob.reading_conf_matrix(i);
    float af2[][] = new float[27][27];
    float af3[][] = new float[27][27];
    int ai1[][] = new int[27][27];
    float af4[] = new float[27];
    for(int l = 0; l < 27; l++)
    af3[0][l] = 0.0F;
    af4[l] = 100000F;
    ai[l] = 0;
    int k = s.length();
    int j = s.charAt(0) - 96;
    if(j < 0)
    j += 32;
    for(int i1 = 1; i1 < 27; i1++)
    af3[0][i1] = -(af[27][i1] + af1[j][i1]);
    float f = 100000F;
    for(int j1 = 1; j1 < k; j1++)
    j = s.charAt(j1) - 96;
    if(j < 0)
    j += 32;
    for(int k1 = 1; k1 < 27; k1++)
    for(int i2 = 1; i2 < 27; i2++)
    af2[k1][i2] = af3[j1 - 1][i2] - (af[i2][k1] + af1[j][k1]);
    if(af2[k1][i2] < af4[k1])
    af4[k1] = af2[k1][i2];
    ai1[j1 - 1][k1] = i2;
    for(int j2 = 1; j2 < 27; j2++)
    af3[j1][j2] = af4[j2];
    af4[j2] = 100000F;
    for(int l1 = 1; l1 < 27; l1++)
    af2[k][l1] = af3[k - 1][l1] - af[l1][27];
    if(af2[k][l1] < f)
    f = af2[k][l1];
    ai[k - 1] = l1;
    j = ai[k - 1];
    for(int k2 = k - 2; k2 >= 0; k2--)
    ai[k2] = ai1[k2][j];
    j = ai[k2];
    Sort_q(af3, k);
    return ai;
    void Sort_q(float af[][], int i)
    boolean flag = false;
    int j = 0;
    float f = 100000F;
    for(int k = 0; k < i; k++)
    for(int l = 0; l < 10; l++)
    for(int i1 = 1; i1 < 27; i1++)
    if(af[k][i1] < f)
    f = af[k][i1];
    j = i1;
    competitors[k][l] = j;
    af[k][j] = 100000F;
    f = 100000F;
    void Table(Graphics g, int i, String s)
    int ai[] = Get_survivors(s, i);
    int ai1[] = new int[20];
    int ai2[] = new int[20];
    no_letters = s.length();
    x = 500 / no_letters - no_letters;
    for(int j1 = 0; j1 < no_letters; j1++)
    x += 35;
    y = 80;
    int l = x;
    int i1 = y;
    boolean flag = false;
    g.setColor(Color.red);
    int j = s.charAt(j1) - 97;
    if(j < 0)
    j += 32;
    g.drawChars(Survivor, j, 1, x + 5, y + 11);
    g.setColor(Color.blue);
    g.drawRect(x, y, 16, 14);
    y += 17;
    for(int k1 = 0; k1 < 10; k1++)
    int k = competitors[j1][k1];
    if(word_viable)
    g.setColor(Color.green);
    g.drawRect(x, y, 16, 14);
    g.setColor(Color.red);
    g.drawChars(Survivor, k - 1, 1, x + 5, y + 11);
    if(k == ai[j1])
    flag = true;
    if(k == j + 1)
    ai1[j1] = l + 17;
    ai2[j1] = i1 + 7;
    } else
    g.setColor(Color.blue);
    g.drawRect(x, y, 16, 14);
    g.setColor(Color.green);
    g.drawRect(l, i1, 16, 14);
    ai1[j1] = x + 17;
    ai2[j1] = y + 7;
    } else
    if(!flag)
    ai1[j1] = l + 17;
    ai2[j1] = i1 + 7;
    y += 17;
    for(int l1 = 0; l1 < no_letters - 1; l1++)
    g.setColor(Color.blue);
    g.drawLine(ai1[l1], ai2[l1], ai1[l1 + 1] - 18, ai2[l1 + 1]);
    g.drawChars(Survivor, ai[l1] - 1, 1, ai1[l1] - 12, y + 17);
    g.drawChars(Survivor, ai[no_letters - 1] - 1, 1, ai1[no_letters - 1] - 12, y + 17);
    void Trellis(Graphics g, int i, String s)
    int ai[] = Get_survivors(s, i);
    int ai1[] = new int[20];
    int ai2[] = new int[20];
    no_letters = s.length();
    x = 500 / no_letters;
    for(int k = 0; k < no_letters; k++)
    x += 35;
    y = 60;
    for(int l = 0; l < 26; l++)
    g.setColor(Color.green);
    if(word_viable)
    int j = Survivor[l] - 96;
    if(ai[k] == j)
    g.setColor(Color.blue);
    ai1[k] = x + 17;
    ai2[k] = y + 7;
    g.drawRect(x, y, 16, 14);
    g.setColor(Color.red);
    g.drawChars(Survivor, l, 1, x + 5, y + 11);
    y += 17;
    for(int i1 = 0; i1 < no_letters - 1; i1++)
    g.setColor(Color.blue);
    g.drawLine(ai1[i1], ai2[i1], ai1[i1 + 1] - 18, ai2[i1 + 1]);
    g.drawChars(Survivor, ai[i1] - 1, 1, ai1[i1] - 12, y + 17);
    g.drawChars(Survivor, ai[no_letters - 1] - 1, 1, ai1[no_letters - 1] - 12, y + 17);
    void delete()
    for(int i = 0; i < no_letters; i++);
    public String status;
    public int competitors[][];
    public String Letters;
    public char Survivor[] = {
    'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
    'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
    'u', 'v', 'w', 'x', 'y', 'z'
    public int x;
    public int y;
    public boolean word_viable;
    public int no_letters;
    private Read_prob r_prob;
    }

  • Kindly help me out guys

    Can somebody tell me how to attach data to url of a jsf page for example String url="http://w-ngphc-0672.ng.ad.ep.corp.local:8080/Questionnaire/QuestionnaireConnector.jsp?ticket_id="+C.getTicket_id(); accesing this url uses value of C.getTicket_id() and populate the jsp page. How can I achieve this using jsf page in sun creator

    http://forum.java.sun.com/thread.jspa?threadID=786784&tstart=0
    Why are you doubleposting?

  • Order by problem in my query - plz help me out

    Dear all,
    I have a query like this,
    Select Booking_No, Get_Bl_Number (Booking_No) Bl_No, Depot_Code
    From Booking_Table
    Where Booking_Mode = 'B'
    Order By Depot_Code, Bl_No, Booking_No
    i need the output like NULLs of Bl_No should come first..ie.,
    DEPOT_CODE BL_NO BOOKING_NO
    DEPOT01 BOOKING01
    DEPOT01 BL01 BOOKING02
    DEPOT03 BL04 BOOKING03
    DEPOT04 BOOKING04
    DEPOT05 BL05 BOOKING06
    since am using the function to get the Bl_No, am not getting the NULLs first...kindly help me out
    Thanx and Rgds,
    M Thiyagu

    You can use like this:
    Order By
       Depot_Code,
       Bl_No nulls first ,
       Booking_No

  • Adding Field in Additional Data B in VA02-Please help me out this

    Kindly help me out , I have a requirement to add a custom field at Header level in Additional Data B tab of VA01/VA02.
    Program: SAPMV45A
    screen 8459
    Can any body tell me procedure to do that.
    Appreciate your response.Thanks in advance

    Hi
    Check the link
    http://techbays.com/2008/04/17/implicit-enhancement-in-sap-ecc-60/
    There is a BADI BADI_SD_V46H0001 and Method EXIT_SAPLV46H_003.
    You should be able to it without access keys.Consult your SD Functional Guy also
    Regards
    Sanil Bhandari

  • Want to Create a Report Server Kindly Help?

    Hello Everyone,
    My name is Sarmad and I am a student of BS(Software Engineering) in 5th semester now. I have assigned a project on 'Oracle Report Server'. My instructor requirements are that it should generate 'Matrix Reports' and i have to use Oracle Database 10g XE. I have researched a lot on Internet and found that following tools are necessary to make a report server on Oracle for Win 7 32 Bit OS:
    1. Oracle Forms and Reports 11g for Win 7 32 Bit
    2. Oracle Web Logic Server 11g (10.3.5) for Win 7 32 Bit
    3. Oracle Data Base 10g XE for Win 7 32 Bit
    Therefore, I installed Data base first and then i installed Web Logic Server and integrated my Data base's sample DB HR within the 'Data Sources' link present in Web Logic Server's Administration Console. Connection test went successful for Web Logic Server and Database. Then i installed Oracle Forms and Reports for Development mode and it also installed successfully on my system.
    Now the issue is that i want to integrate Oracle Reports and Forms services with Oracle Web Logic Server. I don't know how to do that and also i don't have any idea whether i may need any further tools or these are enough to generate reports as i think that there should be some Report Layout builder so that data coming from Web Logic Server should be presented in that layout i.e. Matrix Layout.
    Kindly help me out in this and guide me through.
    Thanks!

    hi
    I am not saying wrong about this question but how can you expect some one to give the code..if you any doubt in terms of logic or if u need any clarification on the functionality how the element behave, the people around here would definitely help you out...
    But straight forward asking the code i believe you might not get the correct answer sometimes..Narrow down your question so that people around here could help you out if they can
    Regards
    Ramesh Kumar S

  • Hi ppl help me out in removing bug

    package helloclient;
    import java.util.Properties;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.rmi.PortableRemoteObject;
    import Hello.*;
    import org.omg.CORBA_2_3.ORB;
    import org.omg.CosNaming.NamingContextExt;
    import org.omg.CosNaming.NamingContextExtHelper;
    public class Main {
    /** Creates a new instance of Main */
    public Main() {
    * @param args the command line arguments
    public static void main(String[] args) {
    try {
    Properties p=new Properties();
    p.setProperty("Djava.naming.factory.initial","com.sun.jndi.cosnaming.CNCtxFactory");
    p.setProperty("Djava.naming.provider.url","iiop://172.20.33.218:3700");
    InitialContext ic = new InitialContext(p);
    Object o= ic.lookup("ejb/TellHelloBean");
    TellHelloRemoteHome helloHome = (TellHelloRemoteHome)PortableRemoteObject.narrow(o,TellHelloRemoteHome.class);
    TellHelloRemote obj=helloHome.create();
    System.out.println("" + obj.printHello());
    System.out.flush();
    } catch(Exception e) {
    e.printStackTrace();
    The above code is the client side code which calls upon the server
    When i call the server from the same client its working cool...
    But when i try to call it from another system its not working and its throws the following exception.
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resou
    rce file: java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
    kindly help me out
    gopal

    p.setProperty("java.naming.factory.initial","com.sun.jndi.cosnaming.CNCtxFactory");
    p.setProperty("java.naming.provider.url","iiop://172.20.33.218:3700");
    take the D out
    regards

  • Hi go through my code and help me out

    hi all
    this is my javascript code using this i could develop the vertical menus and submenus in it
    plz help me how to write the bean code to connect to the databases using this menus
    that is my menus should be specified in the database my menu should be dynamically
    so kindly help me out how to write and function in javascript and call that function in my bean and connect to MYSQL database
    plz help me out
    thank u
         var NoOffFirstLineMenus=9;               // Number of main menu  items
         var LowBgColor="#336699";               // Background color when mouse is not over
         var HighBgColor="#009900";               // Background color when mouse is over
         var FontLowColor="#ffffff";               // Font color when mouse is not over
         var FontHighColor="#ffffff";               // Font color when mouse is over
         var BorderColor="#ffffff";               // Border color
         var BorderWidthMain=1;               // Border width main items
         var BorderWidthSub=1;               // Border width sub items
         var BorderBtwnMain=1;               // Borderwidth between elements
         var BorderBtwnSub=1;               // Borderwidth between elements sub items
         var FontFamily="arial,comic sans ms,technical";     // Font family menu items
         var FontSize=11;                    // Font size menu items
         var FontBold=1;                    // Bold menu items 1 or 0
         var FontItalic=0;                    // Italic menu items 1 or 0
         var MenuTextCentered="left";          // Item text position left, center or right
         var MenuCentered="left";               // Menu horizontal position can be: left, center, right
         var MenuVerticalCentered="top";          // Menu vertical position top, middle,bottom or static
         var ChildOverlap=0.2;               // horizontal overlap child/ parent
         var ChildVerticalOverlap=0.2;               // vertical overlap child/ parent
         var StartTop=50;                    // Menu offset x coordinate. If StartTop is between 0 and 1 StartTop is calculated as part of windowheight
         var StartLeft=0;                    // Menu offset y coordinate. If StartLeft is between 0 and 1 StartLeft is calculated as part of windowheight
         var VerCorrect=0;                    // Multiple frames y correction
         var HorCorrect=0;                    // Multiple frames x correction
         var DistFrmFrameBrdr=2;               // Distance between main menu and frame border
         var LeftPaddng=8;                    // Left padding
         var TopPaddng=2;               // Top padding. If set to -1 text is vertically centered
         var FirstLineHorizontal=0;               // Number defines to which level the menu must unfold horizontal; 0 is all vertical
         var MenuFramesVertical=1;               // Frames in cols or rows 1 or 0
         var DissapearDelay=1000;               // delay before menu folds in
         var UnfoldDelay=100;               // delay before sub unfolds     
         var TakeOverBgColor=1;               // Menu frame takes over background color subitem frame
         var FirstLineFrame="navi";               // Frame where first level appears
         var SecLineFrame="main";               // Frame where sub levels appear
         var DocTargetFrame="main";               // Frame where target documents appear
         var TargetLoc="";                    // span id for relative positioning
         var MenuWrap=1;                    // enables/ disables menu wrap 1 or 0
         var RightToLeft=0;                    // enables/ disables right to left unfold 1 or 0
         var BottomUp=0;                    // enables/ disables Bottom up unfold 1 or 0
         var UnfoldsOnClick=0;               // Level 1 unfolds onclick/ onmouseover
         var BaseHref="file:///C|/rao/projects/";     // BaseHref lets you specify the root directory for relative links.
         var Arrws=[BaseHref+"/resources/ThemeIE/arrow.gif",5,10];
         var MenuUsesFrames=1;               // MenuUsesFrames is only 0 when Main menu, submenus,
         var OverFormElements=1;               // Set this to 0 when the menu does not need to cover form elements.
         var RememberStatus=0;               // RememberStatus: When set to 1, menu unfolds to the presetted menu item.
         var BuildOnDemand=1;               // 1/0 When set to 1 the sub menus are build when the parent is moused over
         var BgImgLeftOffset=5;               // Only relevant when bg image is used as rollover
         var ScaleMenu=0;                    // 1/0 When set to 0 Menu scales with browser text size setting
         var HooverBold=0;                    // 1 or 0
         var HooverItalic=0;                    // 1 or 0
         var HooverUnderLine=0;               // 1 or 0
         var HooverTextSize=0;               // 0=off, number is font size difference on hoover
         var HooverVariant=0;               // 1 or 0
         var MenuSlide="";
         //var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.5, transition=19)";
         //var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.5, wipeStyle=1)";
         var MenuShadow="";
         //var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#888888, offX=2, offY=2, positive=1)";
         //var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#888888, direction=135, strength=3)";
         var MenuOpacity="";
         //var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=85)";
         function BeforeStart(){return;}
         function AfterBuild(){return;}
         function BeforeFirstOpen(){return;}
         function AfterCloseAll(){return;}
    Menu1=new Array("DataCollection","","",6,20,120,"","","","","","",-1,-1,-1,"","");
         Menu1_1=new Array("Record Based","","",3,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_1_1=new Array("File Based","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_1_2=new Array("Auto Upload","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_1_3=new Array("Validation Failure","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_2=new Array("File Based","","",3,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","Nation");
              Menu1_2_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_2_2=new Array("Senarai ATR","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_2_3=new Array("Senarai Kertas Siasat","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_3=new Array("Auto Upload","ATR_Eksibit_Form.htm","",4,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_3_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_3_2=new Array("Senarai ATR","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_3_3=new Array("Senarai Kompaun","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_3_4=new Array("Senarai LJKR","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_4=new Array("Validation Failure","Permohonan_Keluar_Eksibit_Form.htm","",3,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_4_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","Football Every Day");
              Menu1_4_2=new Array("Senarai ATR","ATR_Eksibit_Form.htm","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_4_3=new Array("Senarai Eksibit","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_5=new Array("Pendakwaan","Permohonan_Keluar_Eksibit_Form.htm","",3,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_5_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_5_2=new Array("Senarai ATR","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_5_3=new Array("Senarai LKKP","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_6=new Array("OKT","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu2=new Array("Statistical Analysis","","",1,20,120,"","","","","","",-1,-1,-1,"","");
         Menu2_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu3=new Array("Discovery Analysis","","",1,20,120,"","","","","","",-1,-1,-1,"","");
              Menu3_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu4=new Array("Case Management","","",2,20,120,"","","","","","",-1,-1,-1,"","");
         Menu4_1=new Array("Operasi","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu4_2=new Array("Pengurusan","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu5=new Array("Content Management","","",3,20,120,"","","","","","",-1,-1,-1,"","");
         Menu5_1=new Array("e-LesenNiaga","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu5_2=new Array("e-Tribunal","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu5_3=new Array("e-Aduan","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu6=new Array("Audit log","","",0,20,120,"","","","","","",-1,-1,-1,"","");
    Menu7=new Array("Administration","","",6,20,120,"","","","","","",-1,-1,-1,"","");
         Menu7_1=new Array("Akta","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_2=new Array("Jenis Cetak Rompak","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_3=new Array("Jenis Eksibit","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_4=new Array("Jenama","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_5=new Array("Karya Cetak Rompak","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_6=new Array("Kawasan","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu8=new Array("Pentadbiran","","",0,20,120,"","","","","","",-1,-1,-1,"","");
    Menu9=new Array("Tukar Kata Laluan","","",0,20,120,"","","","","","",-1,-1,-1,"","");

    Hi.
    How often did you post this now? 4 times? Till now nobody helped you out which is pretty understandable to me. But nobody ever will if you don't start learning the technologies you want to use. You should just give it a chance and get an approach to solve your task. Start with some easy tutorials and extend them step by step to get closer to your problem. By the way, at least 80% of the code you posted is irrelevant to the solution you are looking for. If you have a special, single problem you are always welcome but I am not (and I think nobody else is) going to spend some hours to find out what exactly you need to achieve and I also won't code it for you.
    Greetings, jimbo

  • Kind help on Revenue Recognition

    Friends I need some help on revenue recognition.
    Example of a bundle solution that includes product license, education and consulting services. One parent SKU that auto-explodes into three child SKUs – product, education, consulting.
    1. Booked revenue is allocated to one PL (based on parent SKU). Do we need to create a new unique PL? Can this be re-allocated to 3 PLs? How is this done?
    Example of a Education blended offering which includes different delivery methods – ILT, video-ILT, eLibrary (WBT modules) and certification. One parent SKU that auto-explodes into the child SKUs. Each child SKU will trigger the appropriate behavior similar to the standalone offering. Customer will need to get a voucher for each component to redeem against.
    2. Can we still track revenue for each delivery method and certification by the child SKU? If not, why not and how can this be done?
    3. Will revenue recognition be handled separately for each component (child SKU) or as part of the bundle, by the parent SKU. For example, we send the customer a voucher for each component, sometime revenue can be recognized when the voucher is sent to the customer (eg. WBT can recognize revenue immediately once the voucher is sent to the customer).
    4. Issues/requirements we need to be aware when setting this up?
    If some one know how to deal with these kindly help me out...
    Thanks for all the help...

    An invoice cancellation would reverse all the FI entries hence the revence would be reduced by the revenue amount posted by that invoice...
    Actually all the entries posted to FI would be reversed
    Further use your imagination....
    Regards

  • Hi, my hp dv4-1503tu fingerprin​t sensor is not working after I formatted it. please help me out

    After formatting the finger print sensor is not working.
    I have got hp dv4-1503tu.
    Kindly, help me out.
    Warm regards,
    Tanbir Singh

    Hello TanbirSingh,
    You’re having a problem with the fingerprint reader not working.
    Go into device manager and uninstall the Biometric device. Don’t restart the computer.
    Go to HP.com and update the Fingerprint reader, this will be the newest driver.
    Here is a link to the update.
    Also update the BIOS to make sure that the device is being detected.
    Here is the link to the BIOS.
    Let me know how everything goes.

  • Kindly help with a button to go back and do editing.

    Hi All,
    Thanks every one for helping me with trivial questions out here.I have one more here.
    I would like to have a button "edit" that has the functionality on being pressed would be able to direct to a page with the filled values , so that the user can edit the form and resubmit it.
    I have tried the following code , but it doesnt seem to have that effect.Kindly help me out with regrds to this.
    <script language="Javascript">
    <!--
    function button(location) {
    top.location = location
    //-->
    </script>
    <form action="./welcome.html" method=post>
    <b>Course :  <input type="text" name="course" readonly=true value="<%=            bean.getCourse() %>" ><br>
              <b>Semester : <input type="text" name="sem" readonly=true value="<%= bean.getSemester() %>"><br>
              <b>Instructor :<input type="text" name="inst" readonly=true value="<%= bean.getInstructor() %>"><br>
         <input type="submit" value="Edit" onclick="button('javascript:history.back(1)')">
    </form>Many thanks
    AS

    Hi All,
    Thanks every one for helping me with trivial
    rivial questions out here.I have one more here.
    I would like to have a button "edit" that has the
    functionality on being pressed would be able to
    direct to a page with the filled values , so that the
    user can edit the form and resubmit it.you want the values to be sent to another page where they can be edited if needed..right?what is it u r trying to acheive with the history.back function....
    >
    I have tried the following code , but it doesnt seem
    to have that effect.Kindly help me out with regrds to
    this.
    and what is the name of the page u have given here....I mean the filename...can u elaborate ur requirement
    <script language="Javascript">
    <!--
    function button(location) {
    top.location = location
    //-->
    </script>
    <form action="./welcome.html" method=post>
    <b>Course :  <input type="text" name="course"
    readonly=true value="<%=            bean.getCourse()
    %>" ><br>
    <b>Semester : <input type="text" name="sem"
    m" readonly=true value="<%= bean.getSemester()
    %>"><br>
    <b>Instructor :<input type="text" name="inst"
    t" readonly=true value="<%= bean.getInstructor()
    %>"><br>
    <input type="submit" value="Edit"
    " onclick="button('javascript:history.back(1)')">
    </form>Many thanks
    AS

Maybe you are looking for

  • ITunes won't install because Quicktime won't

    I had QT on my computer, the latest version, and I tried to download iTunes and it says "Quicktime will not install. iTunes needs Quicktime to run." and the only option I have is to close. I removed QT and tried to install QT w/ iTunes, same error. I

  • Floating Time Zones messed up in Mobile Me and Published Calendars

    Having researched this for 3 years, I'm sure only Apple can answer this... but it would be very reassuring to know if others are frustrated with this too! FLOATING TIME ZONES, incredibly, are not supported when PUBLISHING and SHARING iCAL! I travel a

  • How to Use a UDF in PLD?

    I want to use a user defined field in a PLD of a marketing document. Can anybody tell me how to access this UDF because its not in the column of the respective table. Thx

  • Design advice for setting users default time

    I have an application that in a number of different places requires that records when being updated or created are shown to default to the user's current date. Depending on the location of the user, this could be a different day than where the server

  • Why do all versions after 10.1.102.64 get strange with youtube when shifting from/to fullscreen?

    ive just installed latest flash, and like others versions except 10.1.102.64, my shifting to and from fullscreen gets annoying, screen goes black and sound vanishes for a millisecond, why does this happend with all versions after 10.1.102.64 ??? ie9