BI implementation for help

We organization are interested in Oracle BI solutions, and can anyone be kind enough to provide the price list of oracle BI components for different licenses?
thaks a lot

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

Similar Messages

  • To implement search help for date and time fields details

    how can i implement search help for date and time fields in screen painter

    Hi
    Declare the variables as sy-datum and sy-uzeit or any other pre-defined data typ of date and ime types. Serach help will automatically comes.
    Aditya

  • Looking for help - Company is going to Mobile Asset Management service that does not support BB - especially BB 10.

    Hello,
    I am looking for ideas/help. I currently have a BB Z10 (10.1.0.2039) with Verizon Wireless.  The company has a BB Enterprise Server for older devices (I previously was on that).  I bought a Z10 several months ago and have been connecting to the corporate network through Lotus Traveler. They do not have and will not implement a BB 10 Enterprise Server. Some in IT informed that if the company used the BB software they could manage all devices..... not accepted.
    All my contacts, calendar, and company email is funneled to the BB Hub.....
    So my company is implementing a Mobile Asset Management Service that I have to sign up for (Airwatch?).  They only support Android and IPhone.
    Will future versions of the BB OS support Android Apps.... Soon (I have less than 2 weeks)
    I have read where it is possible to put the device in development mode to run Android Apps.  I don't know if that will work with this and have no idea how stable the phone is in that mode. I travel internationally so I don't know how a development mode would work overseas. Any thoughts?
    I like my Z10 but will need to switch to keep functionality if I can't find a work around 
    Any assistance ????
    Thanks for any help.

    Hi and Welcome to the Community!
    BB10 devices have the ability to run .apk apps via special methods. Development Mode is used only for installing the app...not for normal operation. So you install (side-load) the app in Development Mode, then go back to normal mode for normal operations.
    If a .bar file for the .apk app already exists somewhere, you can side load it to the BB10 device and see if it works or not. If there is not yet any .bar file, there is an app called SideSwype that can convert many .apk apps to .bar and install it to your device.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • A Request for help from me again! Yay!

    hi guys! I was working on implementing threads for the directions of the unit. When i press forward once...nothing happens, but when i press twice it gives me this HUGE list of errors. I dont have a clue. Again, any help would be appreciated.
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class NBoard extends JFrame implements KeyListener{
         int selection = 0;
         boolean selectionmade = false;
         final int WIDTH = 600;
         final int HEIGHT = 600;
         Image Viz =Toolkit.getDefaultToolkit().getImage(JOptionPane.showInputDialog("What character do you want?")+".gif");
         int XC = 50;
         int YC = 50;
         Thread moving = new Move();
         Unit Host = new Unit();
         public NBoard(){
              this.setSize(WIDTH,HEIGHT);
              selection = Integer.parseInt(JOptionPane.showInputDialog("What level design do you want?"));
              if(selection > 0){
                   selectionmade = true;
              addKeyListener(this);
              this.setVisible(true);
         public static void main(String args[]){
              new NBoard();
         public void paint(Graphics g){
              if(selectionmade == true){
                   if(selection == 1){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine(WIDTH/2,0,WIDTH/2,HEIGHT);
                   if(selection == 2){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine(WIDTH/2,0,WIDTH/2,HEIGHT);
                        for(int ctr = 1; ctr < 6; ++ctr){
                             g.drawRect(WIDTH/4 ,ctr * 100, 20, 20);
                             g.drawRect((WIDTH / 3) * 2 ,ctr * 100, 20, 20);
                   if(selection == 3){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine((WIDTH/2) - 90,0,(WIDTH/2) + 90,HEIGHT);
                   g.drawImage(Viz,XC,YC,this);
              public void keyPressed(KeyEvent e){                              //The Problem Areas
                   if(e.getKeyChar() == 'w'){
                        moving.start();                                             //Starting the thread to move up
                   else if(e.getKeyChar() == 's'){
                        YC = YC + 2;
                   else if(e.getKeyChar() == 'a'){
                        XC = XC - 2;
                   else if(e.getKeyChar() == 'd'){
                        XC = XC + 2;
                   System.out.println(e.getKeyChar());
                   repaint();
         public void keyReleased(KeyEvent e){                              //The Problem Areas
              if(e.getKeyChar() == 'w'){
                   moving.interrupt();                                             //Trying to interrupt the thread once the key is released
         public void keyTyped(KeyEvent e){}
    class Move extends Thread{                                                  //The Problem Areas
         public void run(){                                                       //The Thread
              Unit.XC = Unit.XC - 2;
              try{
                   Thread.sleep(1000);
              catch (Exception e){}
    class Unit{                                                                      //The Object which will hold all of the information about each unit
         static int XC = 30;
         static int YC = 30;
    } By the way, here is my order of events, so you can look forward to seeing requests for help for them (hopefully not).
    Threads: Moving the guy around
    Threads: Making him shoot a ball at the mouses position
    Network: Allow others to join/play game (This is gonna be HUGE probably), while host decides on game type.
    Thanks for all the help so far!

    Where does moving ever get started? Why does Move extend Thread instead of implementing Runnable? (Implementing runnable is preferred and often the correct way to do it and it is in this case)
    But regardless there shoud be a moving.start() somewhere or start of the Thread that has the Runnable target Move.... I don't think I see one. Unless I missed it.
    so...itll work if i change the setup to Runnable?

  • [Request For Help] How To Send Email Midlet Using Secure Socket ?

    Hello, this is the first time i ask for help to forum.sun.com.
    i try to make secure connection for send email from MIDlet. Maybe you can check to my code :
    EmailMidlet.java
    import javax.microedition.midlet.MIDlet;
    import javax.microedition.midlet.MIDletStateChangeException;
    import javax.microedition.lcdui.;
    public class EmailMidlet extends MIDlet implements CommandListener{
    Display display = null;
    // email form fields
    TextField toField = null;
    TextField subjectField = null;
    TextField msgField = null;
    Form form;
    static final Command sendCommand = new Command("send", Command.OK, 2);
    static final Command clearCommand = new Command("clear", Command.STOP, 3);
    String to;
    String subject;
    String msg;
    public EmailMidlet() {
    display = Display.getDisplay(this);
    form = new Form("Compose Message");
    toField = new TextField("To:", "", 50, TextField.EMAILADDR);
    subjectField = new TextField("Subject:", "", 15, TextField.ANY);
    msgField = new TextField("MsgBody:", "", 90, TextField.ANY);
    public void startApp() throws MIDletStateChangeException {
    form.append(toField);
    form.append(subjectField);
    form.append(msgField);
    form.addCommand(clearCommand);
    form.addCommand(sendCommand);
    form.setCommandListener(this);
    display.setCurrent(form);
    public void pauseApp() {
    public void destroyApp(boolean unconditional) {
    notifyDestroyed();
    public void commandAction(Command c, Displayable d) {
    String label = c.getLabel();
    if(label.equals("clear")) {
    destroyApp(true);
    } else if (label.equals("send")) {
    to = toField.getString();
    subject = subjectField.getString();
    msg = msgField.getString();
    EmailClient client = new EmailClient(this,"[email protected]", to, subject, msg);
    client.start();
    }and EmailClient.java
    import javax.microedition.io.;
    import javax.microedition.lcdui.;
    import java.io.;
    import java.util.Date;
    public class EmailClient implements Runnable {
    private EmailMidlet parent;
    private Display display;
    private Form f;
    private StringItem si;
    private SecureConnection sc; //SSL
    private InputStream is;
    private OutputStream os;
    private String smtpServerAddress = "smtp.gmail.com"; //SSL
    String from;
    String to;
    String subject;
    String msg;
    public EmailClient(EmailMidlet m, String from, String to, String subject, String msg) {
    parent = m;
    this.from = from;
    this.to = to;
    this.subject = subject;
    this.msg = msg;
    display = Display.getDisplay(parent);
    f = new Form("Email Client");
    si = new StringItem("Response:" , " ");
    f.append(si);
    display.setCurrent(f);
    public void start() {
    Thread t = new Thread(this);
    t.start();
    public void run() {
    try {
    //SSL
    sc = (SecureConnection)
    Connector.open("ssl://"smtpServerAddress":465"); //smtp with SSL port 465
    sc.setSocketOption(SocketConnection.LINGER, 5);
    is = sc.openInputStream();
    os = sc.openOutputStream();
    os.write(("HELO there" "\r\n").getBytes());
    os.write(("EHLO" "\r\n").getBytes());
    os.write(("auth login" "\r\n").getBytes());
    os.write(("dHVnYXNha2hpci50cmlhZGl0eWFAZ21haWwuY29t" "\r\n").getBytes());
    os.write(("dGEuZW1haWxjbGllbnQ=" "\r\n").getBytes());
    os.write(("MAIL FROM:<">\r\n").getBytes());
    os.write(("RCPT TO:<">\r\n").getBytes());
    os.write("DATA\r\n".getBytes());
    // stamp the msg with date
    os.write(("Date: " new Date() "\r\n").getBytes());
    os.write(("From: "+from"\r\n").getBytes());
    os.write(("To: "to"\r\n").getBytes());
    os.write(("Subject: "subject"\r\n").getBytes());
    os.write((msg+"\r\n").getBytes()); // message body
    os.write(".\r\n".getBytes());
    os.write("QUIT\r\n".getBytes());
    StringBuffer sb = new StringBuffer();
    int ch = 0;
    while((ch = is.read()) != -1) {
    sb.append((char) ch);
    si.setText("SMTP server response - " + sb.toString());
    } catch(IOException e) {
    e.printStackTrace();
    Alert a = new Alert
    ("TimeClient", "Cannot connect to SMTP server. Ping the server to make sure it is running...", null, AlertType.ERROR);
    a.setTimeout(Alert.FOREVER);
    display.setCurrent(a);
    } finally {
    try {
    if(is != null) {
    is.close();
    if(os != null) {
    os.close();
    if(sc != null) {
    sc.close();
    } catch(IOException e) {
    e.printStackTrace();
    public void commandAction(Command c, Displayable s) {
    if (c == Alert.DISMISS_COMMAND) {
    parent.notifyDestroyed();
    parent.destroyApp(true);
    } When I try to debug project from netbeans, i found this error :
    Starting emulator in debug server mode on port 2668
    Connecting to 127.0.0.1 on port 2800
    nbdebug:
    Waiting for debugger on port 2668
    Waiting for KVM...
    Running with storage root temp.SonyEricsson_JP8_128x160_Emu10
    KdpDebugTask connecting to debugger 1 ..
    Running with locale: Indonesian_Indonesia.1252
    Connected to KVM
    Connection received.
    Attached JPDA debugger to localhost:2668
    java.io.IOException: error 10054 during TCP read +
    at com.sun.midp.io.j2me.socket.Protocol.nonBufferedRead(Protocol.java:299)+
    at com.sun.midp.io.BufferedConnectionAdapter.readBytes(BufferedConnectionAdapter.java:99)+
    at com.sun.midp.io.BaseInputStream.read(ConnectionBaseAdapter.java:582)+
    at com.sun.midp.ssl.Record.rdRec(+41)+
    at com.sun.midp.ssl.Record.rdRec(+5)+
    at com.sun.midp.ssl.In.refill(+18)+
    at com.sun.midp.ssl.In.read(+29)+
    at EmailClient.run(EmailClient.java:74)+
    Execution completed.
    5145824 bytecodes executed
    9258 thread switches
    1762 classes in the system (including system classes)
    0 dynamic objects allocated (0 bytes)
    0 garbage collections (0 bytes collected)
    debug:
    BUILD SUCCESSFUL (total time: 4 minutes 34 seconds)
    Regard
    Littlebro

    Don't multipost and don't use the browser's back button to edit your posts as that creates multiple postings. I've removed the other thread you started with the same questio.
    Also, don't post to long dead threads. I've blocked your post and locked the thread you resurrected.
    db

  • SAP Fiori Apps Error Task Facade not implemented for provider. [/IWBEP/CX_MGW_TECH_EXCEPTION].

    Dear All
    I am getting the below error while activating the sap Fiori applications
    Task Facade not implemented for provider. [/IWBEP/CX_MGW_TECH_EXCEPTION] (error).
    I have  applied all  suggestions in my  new fiori system from Masayuki Sekihara posted on his post.
    but still I am getting same error message.
    I got below error message.
    1) If I selected a EC6FIORI  system alias  to ZTASKPROCESSING services then i got below error message.
    Task Facade not implemented for provider.
    Task Facade not implemented for provider. [/IWBEP/CX_MGW_TECH_EXCEPTION] (error).
    2) some time I got different error message if I selected FIORI  system alias to ZTASKPROCESSING.
    I have shared below  my system Support Package level and all configurations.
    Component
    Release
    SP-Level
    Support Package
    Short description of comment
    SAP_BASIS
    740
    4
    SAPKB74004
    SAP Basis Component
    SAP_ABA
    740
    4
    SAPKA74004
    Cross-Application Component
    SAP_GWFND
    740
    6
    SAPK-74006INSAPGWFND
    SAP Gateway Foundation
    SAP_UI
    740
    7
    SAPK-74007INSAPUI
    User Interface Technology
    PI_BASIS
    740
    4
    SAPK-74004INPIBASIS
    Basis Plug-In
    ST-PI
    2008_1_700
    8
    SAPKITLRD8
    SAP Solution Tools Plug-In
    SAP_BW
    740
    4
    SAPKW74004
    SAP Business Warehouse
    IW_PGW
    100
    5
    SAPK-10005INIWPGW
    Process Gateway
    MDG_FND
    747
    2
    SAPK-74702INMDGFND
    MDG Foundation
    SAP_AP
    700
    30
    SAPKNA7030
    SAP Application Platform
    SAP_BS_FND
    747
    2
    SAPK-74702INSAPBSFND
    SAP Business Suite Foundation
    WEBCUIF
    747
    2
    SAPK-74702INWEBCUIF
    SAP Web UI Framework
    MDG_APPL
    617
    2
    SAPK-61702INMDGAPPL
    MDG Applications
    SAP_APPL
    617
    2
    SAPKH61702
    Logistics and Accounting
    SAP_FIN
    617
    2
    SAPK-61702INSAPFIN
    SAP_FIN
    SAP_HR
    604
    66
    SAPKE60466
    Human Resources
    SAP_HRCAR
    604
    66
    SAPK-60466INSAPHRCAR
    Sub component SAP_HRCAR of SAP_HR
    SAP_HRCAT
    604
    66
    SAPK-60466INSAPHRCAT
    Sub component SAP_HRCAT of SAP_HR
    SAP_HRCAU
    604
    66
    SAPK-60466INSAPHRCAU
    Sub component SAP_HRCAU of SAP_HR
    SAP_HRCBE
    604
    66
    SAPK-60466INSAPHRCBE
    Sub component SAP_HRCBE of SAP_HR
    SAP_HRCBR
    604
    66
    SAPK-60466INSAPHRCBR
    Sub component SAP_HRCBR of SAP_HR
    SAP_HRCCA
    604
    66
    SAPK-60466INSAPHRCCA
    Sub component SAP_HRCCA of SAP_HR
    SAP_HRCCH
    604
    66
    SAPK-60466INSAPHRCCH
    Sub component SAP_HRCCH of SAP_HR
    SAP_HRCCL
    604
    66
    SAPK-60466INSAPHRCCL
    Sub component SAP_HRCCL of SAP_HR
    SAP_HRCCN
    604
    66
    SAPK-60466INSAPHRCCN
    Sub component SAP_HRCCN of SAP_HR
    SAP_HRCDE
    604
    66
    SAPK-60466INSAPHRCDE
    Sub component SAP_HRCDE of SAP_HR
    SAP_HRCDK
    604
    66
    SAPK-60466INSAPHRCDK
    Sub component SAP_HRCDK of SAP_HR
    SAP_HRCES
    604
    66
    SAPK-60466INSAPHRCES
    Sub component SAP_HRCES of SAP_HR
    SAP_HRCFI
    604
    66
    SAPK-60466INSAPHRCFI
    Sub component SAP_HRCFI of SAP_HR
    SAP_HRCFR
    604
    66
    SAPK-60466INSAPHRCFR
    Sub component SAP_HRCFR of SAP_HR
    SAP_HRCGB
    604
    66
    SAPK-60466INSAPHRCGB
    Sub component SAP_HRCGB of SAP_HR
    SAP_HRCHK
    604
    66
    SAPK-60466INSAPHRCHK
    Sub component SAP_HRCHK of SAP_HR
    SAP_HRCID
    604
    66
    SAPK-60466INSAPHRCID
    Sub component SAP_HRCID of SAP_HR
    SAP_HRCIE
    604
    66
    SAPK-60466INSAPHRCIE
    Sub component SAP_HRCIE of SAP_HR
    SAP_HRCIN
    604
    66
    SAPK-60466INSAPHRCIN
    Sub component SAP_HRCIN of SAP_HR
    SAP_HRCIT
    604
    66
    SAPK-60466INSAPHRCIT
    Sub component SAP_HRCIT of SAP_HR
    SAP_HRCJP
    604
    66
    SAPK-60466INSAPHRCJP
    Sub component SAP_HRCJP of SAP_HR
    SAP_HRCKR
    604
    66
    SAPK-60466INSAPHRCKR
    Sub component SAP_HRCKR of SAP_HR
    SAP_HRCKW
    604
    66
    SAPK-60466INSAPHRCKW
    Sub component SAP_HRCKW of SAP_HR
    SAP_HRCMX
    604
    66
    SAPK-60466INSAPHRCMX
    Sub component SAP_HRCMX of SAP_HR
    SAP_HRCMY
    604
    66
    SAPK-60466INSAPHRCMY
    Sub component SAP_HRCMY of SAP_HR
    SAP_HRCNL
    604
    66
    SAPK-60466INSAPHRCNL
    Sub component SAP_HRCNL of SAP_HR
    SAP_HRCNO
    604
    66
    SAPK-60466INSAPHRCNO
    Sub component SAP_HRCNO of SAP_HR
    SAP_HRCNZ
    604
    66
    SAPK-60466INSAPHRCNZ
    Sub component SAP_HRCNZ of SAP_HR
    SAP_HRCPH
    604
    66
    SAPK-60466INSAPHRCPH
    Sub component SAP_HRCPH of SAP_HR
    SAP_HRCPT
    604
    66
    SAPK-60466INSAPHRCPT
    Sub component SAP_HRCPT of SAP_HR
    SAP_HRCQA
    604
    66
    SAPK-60466INSAPHRCQA
    Sub component SAP_HRCQA of SAP_HR
    SAP_HRCRU
    604
    66
    SAPK-60466INSAPHRCRU
    Sub component SAP_HRCRU of SAP_HR
    SAP_HRCSE
    604
    66
    SAPK-60466INSAPHRCSE
    Sub component SAP_HRCSE of SAP_HR
    SAP_HRCSG
    604
    66
    SAPK-60466INSAPHRCSG
    Sub component SAP_HRCSG of SAP_HR
    SAP_HRCTH
    604
    66
    SAPK-60466INSAPHRCTH
    Sub component SAP_HRCTH of SAP_HR
    SAP_HRCTW
    604
    66
    SAPK-60466INSAPHRCTW
    Sub component SAP_HRCTW of SAP_HR
    SAP_HRCUN
    604
    66
    SAPK-60466INSAPHRCUN
    Sub component SAP_HRCUN of SAP_HR
    SAP_HRCUS
    604
    66
    SAPK-60466INSAPHRCUS
    Sub component SAP_HRCUS of SAP_HR
    SAP_HRCVE
    604
    66
    SAPK-60466INSAPHRCVE
    Sub component SAP_HRCVE of SAP_HR
    SAP_HRCZA
    604
    66
    SAPK-60466INSAPHRCZA
    Sub component SAP_HRCZA of SAP_HR
    SAP_HRGXX
    604
    66
    SAPK-60466INSAPHRGXX
    Sub component SAP_HRGXX of SAP_HR
    SAP_HRRXX
    604
    66
    SAPK-60466INSAPHRRXX
    Sub component SAP_HRRXX of SAP_HR
    EA-IPPE
    400
    24
    SAPKGPID24
    SAP iPPE
    EA-APPL
    617
    2
    SAPK-61702INEAAPPL
    SAP Enterprise Extension PLM, SCM, Financials
    EA-DFPS
    600
    24
    SAPKGPDD24
    SAP Enterprise Extension Defense Forces & Public Security
    EA-FIN
    617
    2
    SAPK-61702INEAFIN
    EA-FIN
    EA-FINSERV
    600
    25
    SAPKGPFD25
    SAP Enterprise Extension Financial Services
    EA-GLTRADE
    600
    24
    SAPKGPGD24
    SAP Enterprise Extension Global Trade
    EA-HR
    607
    17
    SAPK-60717INEAHR
    SAP Enterprise Extension HR
    EA-HRCAR
    607
    17
    SAPK-60717INEAHRCAR
    Sub component EA-HRCAR of EA-HR
    EA-HRCAT
    607
    17
    SAPK-60717INEAHRCAT
    Sub component EA-HRCAT of EA-HR
    EA-HRCAU
    607
    17
    SAPK-60717INEAHRCAU
    Sub component EA-HRCAU of EA-HR
    EA-HRCBE
    607
    17
    SAPK-60717INEAHRCBE
    Sub component EA-HRCBE of EA-HR
    EA-HRCBR
    607
    17
    SAPK-60717INEAHRCBR
    Sub component EA-HRCBR of EA-HR
    EA-HRCCA
    607
    17
    SAPK-60717INEAHRCCA
    Sub component EA-HRCCA of EA-HR
    EA-HRCCH
    607
    17
    SAPK-60717INEAHRCCH
    Sub component EA-HRCCH of EA-HR
    EA-HRCCL
    607
    17
    SAPK-60717INEAHRCCL
    Sub component EA-HRCCL of EA-HR
    EA-HRCCN
    607
    17
    SAPK-60717INEAHRCCN
    Sub component EA-HRCCN of EA-HR
    EA-HRCDE
    607
    17
    SAPK-60717INEAHRCDE
    Sub component EA-HRCDE of EA-HR
    EA-HRCDK
    607
    17
    SAPK-60717INEAHRCDK
    Sub component EA-HRCDK of EA-HR
    EA-HRCES
    607
    17
    SAPK-60717INEAHRCES
    Sub component EA-HRCES of EA-HR
    EA-HRCFI
    607
    17
    SAPK-60717INEAHRCFI
    Sub component EA-HRCFI of EA-HR
    EA-HRCFR
    607
    17
    SAPK-60717INEAHRCFR
    Sub component EA-HRCFR of EA-HR
    EA-HRCGB
    607
    17
    SAPK-60717INEAHRCGB
    Sub component EA-HRCGB of EA-HR
    EA-HRCHK
    607
    17
    SAPK-60717INEAHRCHK
    Sub component EA-HRCHK of EA-HR
    EA-HRCID
    607
    17
    SAPK-60717INEAHRCID
    Sub component EA-HRCID of EA-HR
    EA-HRCIE
    607
    17
    SAPK-60717INEAHRCIE
    Sub component EA-HRCIE of EA-HR
    EA-HRCIN
    607
    17
    SAPK-60717INEAHRCIN
    Sub component EA-HRCIN of EA-HR
    EA-HRCIT
    607
    17
    SAPK-60717INEAHRCIT
    Sub component EA-HRCIT of EA-HR
    EA-HRCJP
    607
    17
    SAPK-60717INEAHRCJP
    Sub component EA-HRCJP of EA-HR
    EA-HRCKR
    607
    17
    SAPK-60717INEAHRCKR
    Sub component EA-HRCKR of EA-HR
    EA-HRCKW
    607
    17
    SAPK-60717INEAHRCKW
    Sub component EA-HRCKW of EA-HR
    EA-HRCMX
    607
    17
    SAPK-60717INEAHRCMX
    Sub component EA-HRCMX of EA-HR
    EA-HRCMY
    607
    17
    SAPK-60717INEAHRCMY
    Sub component EA-HRCMY of EA-HR
    EA-HRCNL
    607
    17
    SAPK-60717INEAHRCNL
    Sub component EA-HRCNL of EA-HR
    EA-HRCNO
    607
    17
    SAPK-60717INEAHRCNO
    Sub component EA-HRCNO of EA-HR
    EA-HRCNZ
    607
    17
    SAPK-60717INEAHRCNZ
    Sub component EA-HRCNZ of EA-HR
    EA-HRCPH
    607
    17
    SAPK-60717INEAHRCPH
    Sub component EA-HRCPH of EA-HR
    EA-HRCPT
    607
    17
    SAPK-60717INEAHRCPT
    Sub component EA-HRCPT of EA-HR
    EA-HRCQA
    607
    17
    SAPK-60717INEAHRCQA
    Sub component EA-HRCQA of EA-HR
    EA-HRCRU
    607
    17
    SAPK-60717INEAHRCRU
    Sub component EA-HRCRU of EA-HR
    EA-HRCSE
    607
    17
    SAPK-60717INEAHRCSE
    Sub component EA-HRCSE of EA-HR
    EA-HRCSG
    607
    17
    SAPK-60717INEAHRCSG
    Sub component EA-HRCSG of EA-HR
    EA-HRCTH
    607
    17
    SAPK-60717INEAHRCTH
    Sub component EA-HRCTH of EA-HR
    EA-HRCTW
    607
    17
    SAPK-60717INEAHRCTW
    Sub component EA-HRCTW of EA-HR
    EA-HRCUN
    607
    17
    SAPK-60717INEAHRCUN
    Sub component EA-HRCUN of EA-HR
    EA-HRCUS
    607
    17
    SAPK-60717INEAHRCUS
    Sub component EA-HRCUS of EA-HR
    EA-HRCVE
    607
    17
    SAPK-60717INEAHRCVE
    Sub component EA-HRCVE of EA-HR
    EA-HRCZA
    607
    17
    SAPK-60717INEAHRCZA
    Sub component EA-HRCZA of EA-HR
    EA-HRGXX
    607
    17
    SAPK-60717INEAHRGXX
    Sub component EA-HRGXX of EA-HR
    EA-HRRXX
    607
    17
    SAPK-60717INEAHRRXX
    Sub component EA-HRRXX of EA-HR
    EA-PS
    600
    24
    SAPKGPPD24
    SAP Enterprise Extension Public Services
    EA-RETAIL
    600
    24
    SAPKGPRD24
    SAP Enterprise Extension Retail
    FINBASIS
    600
    24
    SAPK-60024INFINBASIS
    Fin. Basis
    ECC-DIMP
    600
    23
    SAPK-60023INECCDIMP
    DIMP
    ERECRUIT
    600
    24
    SAPK-60024INERECRUIT
    E-Recruiting
    FI-CA
    600
    23
    SAPK-60023INFICA
    FI-CA
    FI-CAX
    600
    23
    SAPK-60023INFICAX
    FI-CA Extended
    HR-CEE
    110_604
    52
    SAPK-60452INHRCEE
    HR country version for CEE countries
    HR-CEECBG
    110_604
    52
    SAPK-60452INHRCEECBG
    Sub component HR-CEECBG of HR-CEE
    HR-CEECCO
    110_604
    52
    SAPK-60452INHRCEECCO
    Sub component HR-CEECCO of HR-CEE
    HR-CEECCZ
    110_604
    52
    SAPK-60452INHRCEECCZ
    Sub component HR-CEECCZ of HR-CEE
    HR-CEECGR
    110_604
    52
    SAPK-60452INHRCEECGR
    Sub component HR-CEECGR of HR-CEE
    HR-CEECHR
    110_604
    52
    SAPK-60452INHRCEECHR
    Sub component HR-CEECHR of HR-CEE
    HR-CEECHU
    110_604
    52
    SAPK-60452INHRCEECHU
    Sub component HR-CEECHU of HR-CEE
    HR-CEECPL
    110_604
    52
    SAPK-60452INHRCEECPL
    Sub component HR-CEECPL of HR-CEE
    HR-CEECRO
    110_604
    52
    SAPK-60452INHRCEECRO
    Sub component HR-CEECRO of HR-CEE
    HR-CEECSI
    110_604
    52
    SAPK-60452INHRCEECSI
    Sub component HR-CEECSI of HR-CEE
    HR-CEECSK
    110_604
    52
    SAPK-60452INHRCEECSK
    Sub component HR-CEECSK of HR-CEE
    HR-CEECTR
    110_604
    52
    SAPK-60452INHRCEECTR
    Sub component HR-CEECTR of HR-CEE
    HR-CEECUA
    110_604
    52
    SAPK-60452INHRCEECUA
    Sub component HR-CEECUA of HR-CEE
    HR-CEEGXX
    110_604
    0
    Sub component HR-CEEGXX of HR-CEE
    HR-CEERXX
    110_604
    0
    Sub component HR-CEERXX of HR-CEE
    INSURANCE
    600
    23
    SAPK-60023ININSURANC
    SAP Insurance
    IS-CWM
    600
    23
    SAPK-60023INISCWM
    Industry Solution Catch Weight Management
    IS-H
    600
    34
    SAPK-60034INISH
    SAP Healthcare
    IS-M
    600
    23
    SAPK-60023INISM
    SAP MEDIA
    IS-OIL
    600
    23
    SAPK-60023INISOIL
    IS-OIL
    IS-PS-CA
    600
    23
    SAPK-60023INISPSCA
    IS-PUBLIC SECTOR CONTRACT ACCOUNTING
    IS-UT
    600
    23
    SAPK-60023INISUT
    SAP Utilities/Telecommunication
    LSOFE
    600
    24
    SAPK-60024INLSOFE
    SAP Learning Solution Front-End
    SEM-BW
    600
    24
    SAPKGS6024
    SEM-BW: Strategic Enterprise Management
    GBAPP002
    600
    4
    SAPK-60004INGBAPP002
    GBAPP002
    GBHCM002
    600
    11
    SAPK-60011INGBHCM002
    HCM Employee Requests (Leave)
    GBHCM003
    600
    9
    SAPK-60009INGBHCM003
    HCM Manager Approvals (Time, Training, L
    SRA002
    600
    3
    SAPK-60003INSRA002
    Time Recording OData Integration Compone
    SRA010
    600
    3
    SAPK-60003INSRA010
    Staffing List OData Integration Componen
    SRA017
    600
    3
    SAPK-60003INSRA017
    Create Purchase Order OData Integration
    SRA018
    600
    3
    SAPK-60003INSRA018
    Purchase Order Status Tracking OData Int
    UIAPP001
    100
    4
    SAPK-10004INUIAPP001
    UIAPP001 100: Add-On Installation
    UIAPP002
    100
    3
    SAPK-10003INUIAPP002
    UIAPP002 100: Add-On Installation
    UIGIB001
    100
    4
    SAPK-10004INUIGIB001
    UIGIB001 100: Add-On Installation
    UIHCM002
    100
    4
    SAPK-10004INUIHCM002
    UIHCM002 100: Add-On Installation
    UIHCM003
    100
    4
    SAPK-10004INUIHCM003
    UIHCM003 100: Add-On Installation
    UISRA002
    100
    3
    SAPK-10003INUISRA002
    HTML5 Time Recording
    UISRA010
    100
    3
    SAPK-10003INUISRA010
    HTML5 Staffing List
    UISRA017
    100
    3
    SAPK-10003INUISRA017
    HTML5 Create Order
    UISRA018
    100
    3
    SAPK-10003INUISRA018
    HTML5 Order Status Tracking
    please help me to resolve that issue
    Regards
    Pankaj Kamble

    Hi Team,
    i have created new post.
    SAP Fiori getting error message Check the URL parameters and the scenario definition. To check the scenario definition.
    Scenario definition configuration screen short.
    2) Also getting bellow error message
    Property TaskDefinitionID not found in type WorkflowTask
    Did not find error details
    {"error":{"code":"005056A509B11EE1B9A8FEA8DE87F78E","message":{"lang":"en","value":"Property TaskDefinitionID not found in type WorkflowTask"},"innererror":{"transactionid":"E6A9CEE388D3F1EC940400155DC8D41B","timestamp":"20140428075136.7780000","Error_Resolution":{"SAP_Transaction":"Run transaction /IWFND/ERROR_LOG on SAP NW Gateway hub system and search for entries with the timestamp above for more details","SAP_Note":"See SAP Note 1797736 for error analysis (https://service.sap.com/sap/support/notes/1797736)"}}}}
    Regards
    Pankaj Kamble

  • How to implement Search Help in Interacive Form based on WebDynpro Java?

    Hi Experts,
    How to implement Search Help in Interacive Form based on WebDynpro Java?
    Could someone please provide the prerequisites and the code for the same.
    Regards,
    Shobhit

    Extend the controller and get the handle of the current row of the VO. Set set the attribute context filed accordingly. Also get the handle fo the flexbean and set the context. According rendering would change.
    Regards
    Sumit

  • Unable to create the implementation for BBP_PD_DOWNLOAD badi

    Hi ,
    Iam trying to create a new implementation for this BADI BBP_PD_DOWNLOAD  as zbbp_pd_download but  when iam trying to activate it .iam getting a message that already active implementation is there and i cannot create a new implementation unless i deactivate the other one.since it is a standard one i cannot deactivate it .
    Has any one used this earlier . any inputs on this wil be of great help .
    Thanks in advance

    Hi
    <u>You can create any number of Customer Implementations, provided only one is active at a time.</u>
    <b><u>Here are the steps -></u></b>
    Either Using SE18 / SE19 Transaction, or
    After you call the IMG activity, the system displays a dialog box where you enter a name for the implementation.
    If implementations of this Business Add-In have already been created, the system displays them in a dialog box. You then choose one of them by choosing Create, and continue as follows:
    1. In the dialog box, enter a name for the implementation of the Add-In and choose Create. (Say ZBADI)
    The system displays the initial screen for creating Business Add-In implementations.
    2. On this screen, enter a short description for you implementation in the Implementation Short Text field.
    3. If you choose the Interface tab, you will notice that the system has filled in the Name of the Implementing Class field automatically, by assigning a class name based on the name of your implementation.
    4. Save your entries and assign the Add-In to a package.
    5. To edit a method, double-click its name.
    6. Enter your implementation code between the method <Interface Name>~<Name of Method>. and endmethod. statements.
    7. Save and activate your code. Navigate back to the Change Implementation screen.
    Note: You can also create an implementation for an Add-In and not activate it until later. If you want to do this, do not carry out the following step:
    8. Choose Activate.
    When the application program is executed, the system carries out the code in the method you wrote.
    Regards
    - Atul

  • Minimum implementation for SMTP-ESMTP clients

    Hi,
    if I want to develop a Mail client I can use SMTP/ESMTP. I read already some of the RFC-Specs, but I cannot find an advice for the minimum implementation for a client - just for servers.
    Is the minimum number of commands the same as for the servers (7 commands for SMTP and 9 commands for ESMTP) ?
    Thanks for any help.
    BR

    Simple config...
    rserver host EXCHANGE001
      ip address 10.2.3.101
      probe PING_EXCHANGE
      inservice
    rserver host EXCHANGE002
      ip address 10.2.3.102
      probe PING_EXCHANGE
    rserver host EXCHANGE003
      ip address 10.2.3.103
      probe PING_EXCHANGE
    rserver host EXCHANGE004
      ip address 10.2.3.104
      probe PING_EXCHANGE
    serverfarm host EXCHANGE
      description EXCHANGE SERVERS
      predictor hash address
      probe PR-EXCHANGE-HTTPS
      rserver EXCHANGE001
        inservice
      rserver EXCHANGE002
      rserver EXCHANGE003
      rserver EXCHANGE004
    class-map match-all EXCHANGE-VIP
      10 match virtual-address 10.2.3.100 tcp any
    sticky ip-netmask 255.255.255.255 address both EXCHANGE-STICKY
      timeout 20
      replicate sticky
      serverfarm EXCHANGE
    policy-map type loadbalance first-match EXCHANGE-VIP
      class class-default
        sticky-serverfarm EXCHANGE-STICKY
    policy-map multi-match EXCHANGE_POL
      class EXCHANGE-VIP
        loadbalance vip inservice
        loadbalance policy EXCHANGE-VIP
        loadbalance vip icmp-reply
    NB: Only rsever EXCHANGE001 is active in the serverfarm.

  • Printing JPanel to fit one page, Urgent  (thanks for help)..........

    hi all,
    I am trying to print and can't get the right scaling. My problem is if the JPanel that has lot of images inside it is too big to come on one page width and height then I want the print out to be on one page. If my panel's height is too large to fit on one page and the width is only half of the page or less than page half of the width. Then I want to scale it's height only to fit on one page while keeping the width the same during printing and the images also to be scaled accordingly. And if my height is too small lets say less than half the page and the width is too large too fit on one page then in this case I want to print the original height or keep the height to be shown on the printout as it looks on the screen but scale the width to fit on to one page and the images also to be scaled accordingly. But my following piece of code doesn't honor this though it fits on one page. It keeps on increasing the width or height to fit the whole page thought the width or height is less than that and the images are also expaned accordingly. I want to scale the images too and only fit the width or height if any is greater than one page. Any help is really appreciated. Thanks in advance
    RepaintManager.currentManager(panel).setDoubleBufferingEnabled(false);
    //Creates and returns a PrinterJob.
    PrinterJob printerJob = PrinterJob.getPrinterJob();
    Book book = new Book ();
    PageFormat pf = printerJob.pageDialog(printerJob.defaultPage());
    int pagecount = this.calculatePageCount(pf);
    book.append (this, pf, pagecount);
    // set pageable
    printerJob.setPageable(book);
    if (printerJob != null && printerJob.printDialog())
    try
    //this print() method implements the Printable interface
    printerJob.print();
    catch (Exception e)
    e.printStackTrace();
    public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException
    if ( pageIndex >= 1 )
    return NO_SUCH_PAGE;
    Graphics2D g2 = (Graphics2D)graphics;
    // leave room for a page number
    double pageHeight = pageFormat.getImageableHeight();
    double pageWidth = pageFormat.getImageableWidth();
    double scaleFactorH = (panel.getSize().height)/(double)(pageFormat.getImageableHeight());
    // set the clip to the size of one page
    g2.setClip(0, 0, (int)pageWidth, (int)pageHeight);
    // translate down the graphics object to the top of this page
    g2.translate(0f, -pageIndex*pageHeight);
    // scale to fit the width
    g2.scale(scale,1.0/scaleFactorH);
    panel.paint(g2);
    return PAGE_EXISTS;
    //method to calculate
    public int calculatePageCount (PageFormat pf)
    double pageHeight = pf.getImageableHeight();
    double pageWidth = pf.getImageableWidth();
    double componentWidth = panel.getSize().getWidth();
    System.out.println("THe imageable width is " + pageWidth);
    if (componentWidth > pageWidth)
    scale = pageWidth / panel.getWidth();
    double componentHeight = panel.getSize().getHeight() * scale;
    printPageCount = (int)Math.round(Math.ceil (componentHeight/pageHeight));
    return printPageCount;
    Is there a way to fix this any help is appreciated.
    Thanks

    Dear Nadia,
    Thanks for the info.
    If I understand it correct I can make a copy of my actual css file.
    Rename it this copy to e.g. print.css
    And then make some changes such a letter fonts and colour
    Linking this css file to my pages and specify it is only for `print1`
    Right?
    I`m using a template so if I amend the template like this and have all pages updated automatically that should do the trick?
    Right?
    Is there somewhere where I need to mention that e.g. the page needs to be reduced onto 95% by printing?
    Or will the print.css do the trick?
    Sometimes I get confused on what css can do and it can do a lot.
    Many thanks for helping me out here.
    Kind regards
    martine

  • Where is the getString() implementation for RS and Object class question

    Dear all,
    I had these two questions ringing since a long time.
    1)ResultSet is an interface.
    In my jdbc code I have generally written rs.getString() and rs.getInt etc.. without giving a second thought as to where exactly is this getter implemented !
    I have RTF API .. without too much help.
    Could some one kindly explain Where is the implementation of the getString method ?
    2) Could you please tell why the Wait() Notify() and NotifyAll methods have been implemented in the Object class ? What was the need to define em in the Object class ?
    Thanks in advance for your time spent on this.
    Rgds

    Sarvananda wrote:
    In the MySQL driver for example it's implemented in com.mysql.jdbc.ResultSet Right. Now it makes sense to me. Every single db that gives me a driver will have their specific implementation for the interface methods of ResultSet.
    >
    why do you need that?
    ..Thats a design decision
    One of my friends asked me this and I was caught unawares. Any ideas on what factors could have made this design decision ?
    Rgds
    >
    In the MySQL driver for example it's implemented in com.mysql.jdbc.ResultSet Right. Now it makes sense to me. Every single db that gives me a driver will have their specific implementation for the interface methods of ResultSet.
    >
    why do you need that?
    ..Thats a design decision
    One of my friends asked me this and I was caught unawares. Any ideas on what factors could have made this design decision ?
    A desire to not have to couple your code to a particular database and JDBC driver. It's a classic example of the abstract factory pattern

  • CUA : To implement or not to Implement for Production

    Hi all,
    We have CUA implemented for our non production systems. The Basis team wants to implement CUA for our 5 production environments (R3, BW, CRM, SEM and APO). What are the pros and cons of implementing CUA in production? An opinion of someone who has CUA implemented at their company would be most helpful.
    Thanks.
    Sashank

    Hi Sashank!
    We had a central user administration for a small 3-system landscape (from the beginning on).
    Advantage: the central handling. Inconsistencies between the systems won't be a topic.
    Disadvantage: Without experience it's possible to create quite a mess (once the user for distribution lost the authority to change profiles: nearly killed our system in this situation).
    Also having different users and authorities in different systems is nothing which will be easier with a central maintenance - on the other hand it's not more difficult either.
    Since your basis team has already experience with this tool, you can give it a go. We had no technical issues, only handling and organizational problems occured. Even workload was for a test system once a topic.
    Regards,
    Christian

  • SD and FICO (in BW)  Implementation for a Chemical Industry

    Hi All,
    I Need help for implementing SD and FICO in BW. This is the first end to end implementation for me. So you guys can help me out HOW and Where to start the things?
    Any document will be helpful and will be rewarded.
    Regards,
    BW IGA

    Hi bw_I.G.A.,
    the standard documentation of <a href="http://help.sap.com/saphelp_bw30b/helpdata/en/61/7beb3cad744026e10000000a11405a/frameset.htm">FI-CO and others FI</a>
    the standard documentation of <a href="http://help.sap.com/saphelp_bw30b/helpdata/en/90/d4f33b949b6b31e10000000a11402f/frameset.htm">SD by R/3 and others</a>
    Here you can try all Cubes, ODS, Infosources..... of this Area.
    If it is useful, don't forget points!
    Claudio

  • 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

  • Where is Solaris OE Implementation for Win32 API Version 1.0.2.?

    the link on page http://soldc.sun.com/ntmigration/tools/jscoretool.html is broken.
    I search and found with no results.
    can anyone help ? or send a copy to my email box: [email protected]
    thanks a lot.

    >
    Try again for olaris[tm] OE Analyzer for C/C++ Source
    Code at
    http://soldc.sun.com/ntmigration/tools/jscoretool.html
    It has a new version now as 1.1.
    Also the Solaris OE Implementation for Win32 APIs
    also has a new version at
    http://soldc.sun.com/ntmigration/nttech/win32emulation
    .html
    Enjoy!The above link is broken. Can anyone please mail me the valid working link at [email protected]
    Would really appreciate your help,
    Thanks and Regards,
    Sanjay

Maybe you are looking for

  • Consuming a stateful web service

    We created and deployed a stateful web service(mail service) in J2EE. It is tested working fine for J2EE consumer. Now we need to create a client from SAP WebAs (abap side). We generated the proxy with logical port, having set those "State Management

  • Why does my DAQ counter count more when a capacitor is used to eliminate noise

    Hi, In my application i need to measure the speed of the motor using an encoder. The output of the encoder is a bit noisy (around 200 mV of noise.).Actually we are using a Siemens variable speed drive and it is the switching noise even after perfect

  • How can a complain about an app basically stealing money?

    hello, i couldnt find any other way to complain apart from forums My friend and I bought coins on a game. He bought rather a large amount and put it in alliance. someone else in alliance hacked the game and fed people fake coins and our alliance too.

  • Query regarding Clustering

              We are able to run 6.0 and 6.1 versions in win2000 .can we do this on Solaris ..           Do we need a differnet license for clustering ...           Can we use one of the weblogic servers in cluster as proxy or sholud we use a           d

  • ODBC driver for Cache (Intersystems) database?

    Hi, I am using Indesign to create catalogue pages and am trying to use the plug-in 'easy catalogue' by 65bit software to manage the catalogue data. The product data is stored in a cache database, on a windows server. I have tried installing the drive