Interesting problem : table content difference

Hi to all
I am facing a problem...
I am modifying a HR report ... I aaded wagetype ....
In client 190 when i am referring the PA0008 table values are coming in fields for wage type 1065,1067.
So i am getting the correct result in report o/p.
But after  transporting it in 300 ....
and wage types are shown in PA30 for 1065,1067
But not shown in PA0008..
so i am not getting the o/p for these fields..
Plz guide me...untill and unles values are not in table how i will be able to show in o/p.....
Thanks and regards
Anubhav

Hi Anubhav,
Use TCODE->SCMP .. to check where ur going wrong,
check the below link
http://sap.ittoolbox.com/groups/technical-functional/sap-hr/how-to-compare-tables-data-in-two-different-clients-511031#
http://www.sap-img.com/basis/useful-sap-system-administration-transactions.htm
<b>Kindly reward points if you found the reply helpful.<b>
Cheers,
Chaitanya.

Similar Messages

  • Problem with clip area occurred when table content is transited

    Platform: JavaFX 1.2.1.
    Hi all
    <b>Preface</b>: I created my own table because the cell content should be not standart: buttons, progress bars, etc...and text as well.
    There is no standart decision for this and simple there is no table control in JavaFx as well :) (swing JTable in a SwingComponent wrap
    doesn't fix the problem - only combo box, check box, text box can be placed into a cell). So, I did the following: I created a sequence
    of instances of the Group class. Each instance represents one cell of the table. I put a rectangle (Rectangle class) as a cell visualization
    and other controls(buttons, progress bars, text, etc. as a cell content) to each Group instance (cell). All cells in the sequence are located
    in rows and columns as in a usual table. and I put this sequence of cells to one common Group. The whole area of all rows and columns is large
    so I use the clip variable of the Group class (common Group) and two scrollbars (vertical and horizontal) to transit the rows and
    columns. It's simple thing as in a usual table.
    <b>Problem description</b>: when I transit a thumb of a scrollbar (whatever horizontal or vertical) part of each border cells appear out of common
    Group clip area, i.e. that part of each border cell (as on the left, rigth side of the clip area for horizontal scrollbar so as on the top, botton
    side of the clip area for vertical scrollbar) that should be disapeared is appeared over other GUI controls located near this table. I tried to
    use ClipView - the problem is reproduced as well. Screenshot here:
    Initial state:
    http://foto.nnov.ru/psh500/0/86/51/e1/4e/a0/ae/0bd8ef7ebf233614.png
    Screenshots with bugs:
    http://foto.nnov.ru/psh500/0/f8/1c/28/77/b5/79/f53bbc4fd8ba8158.png
    http://foto.nnov.ru/psh500/0/3a/95/c3/6c/0e/4f/9aff2e16a544bb37.png
    Help please.
    Thanks in advance!

    Code is simple. There are two classes: TableColumn.fx and Table.fx. And as an example of use: Main.fx
    * TableColumn.fx
    package mytabletest;
    import javafx.scene.Group;
    public class TableColumn {
        public var name: String;
        public var width: Number;
        public var rows: Group[];
    * Table.fx
    package mytabletest;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.ScrollBar;
    import javafx.scene.layout.LayoutInfo;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Text;
    import javafx.scene.text.TextOrigin;
    import javafx.scene.transform.Translate;
    import javafx.scene.paint.Color;
    public class Table extends CustomNode {
        // Table width
        public var width:Number;
        // Table height
        public var height:Number;
        // Table row hight
        public var rowHeight:Number = 25;
        // Space between two cells
        public var rowMargin:Number = 2;
        var tableContent : Group;
        // Columns
        var columns: TableColumn [];
        var scrollBarWidth: Number = 8;
        // Cliping area: visible active area of the table
        var clipWidth = bind width - scrollBarWidth;
        var clipHeight = bind height - scrollBarWidth;
        // Vertical scrollbar
        var vScrollBar: ScrollBar = ScrollBar {
            height: bind clipHeight
            clickToPosition: true
            min: 0
            max: 5
            vertical: true
        // Horizontal scrollbar
        var hScrollBar: ScrollBar = ScrollBar {
            width: bind clipWidth
            clickToPosition: true
            min: 0
            max: 3
            vertical: false
        // Scroll bars triggers to transit table content in X and Y coordinates
        var vScrollBarTrigger = bind vScrollBar.value on replace {
            (tableContent.content[0] as Group).translateY =
                - vScrollBar.value * (rowHeight + rowMargin);
        var hScrollBarTrigger = bind hScrollBar.value on replace {
            (tableContent.content[0] as Group).translateX =
                - hScrollBar.value * clipWidth / getNumOfColumns();
        public override function create():Node {
            return Group {
                content: [
                    // Scrollbars
                    Group {
                        translateX: bind clipWidth
                        content: [vScrollBar]
                    Group {
                        translateY: bind clipHeight
                        content: [hScrollBar]
                    tableContent = Group {
                        clip:
                            Rectangle {
                                width: clipWidth
                                height: clipHeight
                        content: [Group{}]
        * Calculates locations for the table columns
        function calcLocations(columns:TableColumn[], e:Integer) {
            var position : Number = 0;
            if (getNumOfColumns() > 0) {
                for (i in [0..e - 1]) {
                    position += columns.width;
    return position;
    * Adds row to the table
    * @param obj sequence of objects to be added to a new row
    public function addRow(obj: Group[]): Boolean {
    var cell: Group;
    var row = getNumOfRows() + 1;
    var isEven = row mod 2 == 0;
    for (column in columns){
    cell = Group {
    transforms: Translate.translate(
    calcLocations(columns, indexof column) + indexof column * rowMargin,
    ((rowHeight + rowMargin) * row))
    clip:
    Rectangle {
    width: column.width
    height: rowHeight
    content: bind [
    Rectangle {
    width: column.width
    height: rowHeight
    fill: Color.rgb(147, 0, 255)
    Group {
    content: [obj[indexof column]]
    layoutInfo: LayoutInfo {
    width : column.width
    height: rowHeight
    insert cell into column.rows;
    insert cell into (tableContent.content[0] as Group).content;
    return true;
    * Sets columns to the table.
    public function addColumn(name: String, width: Number): Void {
    // Check if the name is an empty string then column name will be the
    // following: "Column{i}" where i is a number of columns (zero based)
    var columnName : String = if(name == "") "Column{getNumOfColumns()}" else name;
    var column: TableColumn = TableColumn {
    name: columnName
    width: width
    //Add column head
    var cell: Group;
    cell = Group {
    var rec: Rectangle;
    transforms: Translate.translate(
    calcLocations(columns, getNumOfColumns()) + getNumOfColumns() * rowMargin, 0)
    clip:
    Rectangle {
    width: width
    height: rowHeight
    content: bind [
    rec = Rectangle {
    width: width
    height: rowHeight
    Group {
    var node : Node = Text {
    textOrigin: TextOrigin.TOP
    content: columnName
    transforms: bind
    Translate.translate(width / 2 - node.boundsInLocal.width / 2,
    rowHeight / 2 - node.boundsInLocal.height / 2 + 2)
    content: [node]
    insert cell into column.rows;
    insert cell into (tableContent.content[0] as Group).content;
    insert column into columns;
    * Returns number of rows
    public function getNumOfRows(): Integer {
    if(sizeof columns > 0) {
    return sizeof columns[0].rows - 1; // The first cell is a column title
    else {
    return 0;
    * Returns number of columns
    public function getNumOfColumns(): Integer {
    return sizeof columns;
    * Main.fx
    package mytabletest;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.Group;
    * @author Naight
    var table : Table = Table {
    translateX: 100
    translateY: 100
    width: 200
    height: 200
    Stage {
    title: "Application title"
    width: 400
    height: 400
    scene: Scene {
    content: [table]
    table.addColumn("Column1", 100);
    table.addColumn("Column2", 100);
    table.addColumn("Column3", 100);
    for(i in [0..9])
    table.addRow([Group{}, Group{}, Group{}]);

  • Problem in page overflow with table contents having control level

    Hello members,
    My scenario is to display table contents from (Master Page)MP1 and then overflow to MP2 and use the MP2 for the rest of the overflowed pages too. In the form context, the table has control level grouping on a field(F1), which is set in context, because of which we can sub total for the group of records based on field F1.
    Take the scenario that the content area(CA1) of MP1 fits only 10 records and content area(CA2) of MP2 fits only 20 records.
    Test scenario 1:
    If the table contents have records upto 20, then MP1 gets filled with first 10 records and then MP2 with rest of the 10 records. This scenario works fine.
    Test scenario 2:
    If the table contents have records upto 5, then only MP1  with current 5 records gets filled. This scenario also works fine.
    Test scenario 3:( ISSUE BEING FACED)
    If the table contents have records upto 50,(which are more than the combined number of rows of MP1 and MP2) then no data is displayed on MP1 and data starts filling in next MP2 and only approx 22 records are visible where few even cross the content area of the MP2. And no over flow for the rest of the records happen.
    We use SFP Transaction in SAP to modify the layouts of the forms. Please let us know if the table having group set by control level causes any issue in this scenarion Test scenario 3.
    Thanks
    Vivek
    [email protected]

    Hi,
    master pages don't support page breaks. Those pages are only used for the background things of body pages like page numbers, company logs or letter head layouts.
    Don't use repeating objects on masterpages that may overflow its content area, this will always end up with unexpected results.
    Put all those objects on a regular page (body page) which allows page breaks.

  • Problem in creating 800 client to see table content .

    HI,
        I am new to sap .  I have ideas 4.7 in windows 2003.  i can see table content under user sap* and password 060719* . I  have created a user sapuser . through client 000 , i can create create abap program , but could not find ant table content like mara . at first time  after creating sapuser , it asked me the access key. i gave 36687663221261278694 and it has taken . but to see table content , i created a new user as partha in client 800. but at first time at the time of logging it is asking the access key. though i am giving same key it is not taking .
       1) is there any other key for that educational version ?
       2) how to crreate a user in client 800 . pls give step by step procedure .
       3) for creating a user under client 800 . should i delete my sapuser created under 000 client.

    Hi Jack,
    First of all, the client 000 is one of the standard clients that comes with any SAP R/3 installation (with client 001 and 066 (for EarlyWatch for SAP auditory purposes)). To work with the system you should always make a copy of the client 000 or 001 to a new client i.e. client 200, 400, or whatever name.
    In the case of IDES, the system always comes with the client 800, where you can find all the IDES configuration and data (for test, training, sandbox). If you want to work in the system you should work on this client (800). To check the tables you can always use transaction se12 (table structure: fields, keys) and se16 to see the table content. If you want to create users you should always do it in the client 800 or any other client you've created (not in the standard ones 000, 001, 066, try to maintain these clients clean of any custom data).
    To view the tables data you dont need any key.  The keys are requested when you want to register a developer user (to create a new abap program (all the new programs must start with Z (or X,Y) to differentiate from the standard SAP programs. The keys are also requested when you want to edit a standard program or table or any other standard SAP object.
    1) To get the keys for any SAP system (there are 2 types of keys: developer user and for editing any standard object) you must log on the OSS service (with the user and password provided by SAP when you got your SAP software) : service.sap.com/sscr. Here you use the installation number of your IDES system (the system must be registered in OSS) and then you can create your developer users or standard object keys.
    2)To create a user in any system you need to go to transaction SU01. Here you can make a copy of SAP* user for example (choosing in the trx the button copy) to create your new user. you assign a password to the user and save it. You need to login again on the system and put your new password. This is the easiest way, otherwise you can create a user from zero but you will need to add more information to the user. To start you can create a copy of SAP* or DDIC users.
    3) Yes, I suggest you delete the user you've created in client 000, try to keep it clean of any customer modifications (you could leave it there but is not a good practice).If you want to work with your IDES system and the IDES data, use the client 800.
    Good luck,

  • How to export table contents in xml file format through SQL queries

    hi,
    i need to export the table data in to xml file format. i got it through the GUI what they given.
    i'm using Oracle 10g XE.
    but i need to send the table name from Java programs. so, how to call the export commands from programming languages through. is there any sql commands to export the table contents in xml format.
    and one more problem is i created each transaction in two tables. for example if we have a transaction 'sales' , that will be saved in db as
    sales1 table and sales2 table. here i maintained and ID field in sales1 as PK. and id as FK in sales2.
    i get the combined data with this query,
    select * from sales1 s1, sales2 s2 where s1.id=s2.id order by s1.id;
    it given all the records, but i'm getting two ID fields (one from each table). how to avoid this. here i dont know how many fields will be there in each table. that will be known at runtime only.
    the static information is sales1 have one ID field with PK and sales2 will have one ID filed with FK.
    i need ur valuable suggestions.
    regards
    pavan.

    You can use DBMS_XMLGEN.getXML('your Query') for generating data in tables to XML format and you can use DBMS_XMLGEN.SETROWSETTAG to change the parent element name other wise it will give rowset as well as DBMS_XMLGEN.SETROWTAG for row name.
    Check this otherwise XMLELEMENT and XMLFOREST function are also there to convert data in XML format.

  • Dynamic SQL and Bulk Bind... Interesting Problem !!!

    Hi Forum !!
    I've got a very interesting problem involving Dynamic SQL and Bulk Bind. I really Hope you guys have some suggestions for me...
    Table A contains a column named TX_FORMULA. There are many strings holding expressions like '.3 * 2 + 1.5' or '(3.4 + 2) / .3', all well formed numeric formulas. I want to calculate each formula, finding the number obtained as a result of each calculation.
    I wrote something like this:
    DECLARE
    TYPE T_FormulasNum IS TABLE OF A.TX_FORMULA%TYPE
    INDEX BY BINARY_INTEGER;
    TYPE T_MontoIndicador IS TABLE OF A.MT_NUMBER%TYPE
    INDEX BY BINARY_INTEGER;
    V_FormulasNum T_FormulasNum;
    V_MontoIndicador T_MontoIndicador;
    BEGIN
    SELECT DISTINCT CD_INDICADOR,
    TX_FORMULA_NUMERICA
    BULK COLLECT INTO V_CodIndicador, V_FormulasNum
    FROM A;
    FORALL i IN V_FormulasNum.FIRST..V_FormulasNum.LAST
    EXECUTE IMMEDIATE
    'BEGIN
    :1 := TO_NUMBER(:2);
    END;'
    USING V_FormulasNum(i) RETURNING INTO V_MontoIndicador;
    END;
    But I'm getting the following messages:
    ORA-06550: line 22, column 43:
    PLS-00597: expression 'V_MONTOINDICADOR' in the INTO list is of wrong type
    ORA-06550: line 18, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 18, column 5:
    PLS-00435: DML statement without BULK In-BIND cannot be used inside FORALL
    Any Idea to solve this problem ?
    Thanks in Advance !!

    Hallo,
    many many errors...
    1. You can use FORALL only in DML operators, in your case you must use simple FOR LOOP.
    2. You can use bind variables only in DML- Statements. In other statements you have to use literals (hard parsing).
    3. RETURNING INTO - Clause in appropriate , use instead of OUT variable.
    4. Remark: FOR I IN FIRST..LAST is not fully correct: if you haven't results, you get EXCEPTION NO_DATA_FOUND. Use Instead of 1..tab.count
    This code works.
    DECLARE
    TYPE T_FormulasNum IS TABLE OF VARCHAR2(255)
    INDEX BY BINARY_INTEGER;
    TYPE T_MontoIndicador IS TABLE OF NUMBER
    INDEX BY BINARY_INTEGER;
    V_FormulasNum T_FormulasNum;
    V_MontoIndicador T_MontoIndicador;
    BEGIN
    SELECT DISTINCT CD_INDICATOR,
    TX_FORMULA_NUMERICA
    BULK COLLECT INTO V_MontoIndicador, V_FormulasNum
    FROM A;
    FOR i IN 1..V_FormulasNum.count
    LOOP
    EXECUTE IMMEDIATE
    'BEGIN
    :v_motto := TO_NUMBER('||v_formulasnum(i)||');
    END;'
    USING OUT V_MontoIndicador(i);
    dbms_output.put_line(v_montoindicador(i));
    END LOOP;
    END;You have to read more about bulk- binding and dynamic sql.
    HTH
    Regards
    Dmytro
    Test table
    a
    (cd_indicator number,
    tx_formula_numerica VARCHAR2(255))
    CD_INDICATOR TX_FORMULA_NUMERICA
    2 (5+5)*2
    1 2*3*4
    Message was edited by:
    Dmytro Dekhtyaryuk

  • DYNAMIC CHANGE OF TABLE CONTENTS IN WEBDYNPRO VIEW

    Hi,
      I have a requirement to display a table contents, and there are two buttons, When i select some records and clk on a button i need to delete these records in the database table as well as in webdynpro view.
    I am able to delete the records in database but the contents of table in view of webdynpro remains unchanged. Can anyone tell me how to delete the contents in the view also??
    Regards
    Naveen

    Hi Naveen,
    You need to Refresh the data you are binding to the table to make the latest data
    visible on the screen.
    On action of the button you are deleting entries from the database. After this
    Fetch data again from the database and bind to the node of the table.
    Hope this solves your problem..
    Regards,
    Ismail.

  • Read SAP table content through VBA  why  Chinese characters display as '#'

    Hi ,
    I meet a problem . I want to get sap table content through RFC in excel  VBA. now  i have solve it . It can got table content . when  i change a new  system , it can get table content ,but chinese characters display as '#' ( it works well in sap 4.6c Chinese characters can display , when upgrate to ecc 6.0 it can't works well )
    some VBA code as below :
    Set ofun = CreateObject("SAP.FUNCTIONS")  ' create a FUNCTION object
       '  Connect  has create and conneted to SAP system
    Set ofun.Connection = Connect                     ' "connect"has create connetion sucess
    Set func = ofun.Add("RFC_READ_TABLE")    ' set RFC object to call function
        func.Exports("QUERY_TABLE") = "T179T"   ' set table name for get table content
        func.Tables("OPTIONS").DATA = "SPRAS   =   'ZH'"    ' set condition of language of  'ZH'
    If func.Call = True Then
            Set oline = func.Tables.Item("DATA")       ' set table content which get from table T179T to object "oline"
    endif
    who can give me some suggestion about this ?  Thanks .
    Edited by: Chris Xu on Oct 31, 2008 6:51 AM

    Hi Chirs,
    I am facing the same problem but i am using c sharp and this is a windows application.
    I tried to change the CodePage attribute by simply setting connection.codepage = "8040";
    But i get an exception.
    attempted to read or write protected memory.
    I cant seem to change this. What should i do. Also do we have to set this at the point of connecting to the Sap system or when i'm calling the RFC. I tried both instances but none worked. Could you please help me out.
    i am using VS 2008.
    Thanks,
    Yohan

  • Interesting problem for all students and programmers Have a look!

    Hello. This is a very interesting problem for all programmers and students. I have my spalsh screen class which displays a splash when run from the main method in the same class. However when run from another class( in my case from my login class, when user name and password is validated) I create an instance of the class and show it. But the image in the splash is not shown. Only a squared white background is visible!!!.
    I am sending the two classes
    Can u tell me why and propose a solution. Thanks.
    import java.awt.*;
    import javax.swing.*;
    public class SplashScreen extends JWindow {
    private int duration;
    public SplashScreen(int d) {
    duration = d;
    // A simple little method to show a title screen in the center
    // of the screen for the amount of time given in the constructor
    public void showSplash() {
    JPanel content = (JPanel)getContentPane();
    content.setBackground(Color.white);
    // Set the window's bounds, centering the window
    int width = 300;
    int height =400;
    Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (screen.width-width)/2;
    int y = (screen.height-height)/2;
    setBounds(x,y,width,height);
    // Build the splash screen
    JLabel label = new JLabel(new ImageIcon("logo2.gif"));
    JLabel copyrt = new JLabel
    ("Copyright 2004, Timetabler 2004", JLabel.CENTER);
    copyrt.setFont(new Font("Sans-Serif", Font.BOLD, 16));
    content.add(label, BorderLayout.CENTER);
    content.add(copyrt, BorderLayout.SOUTH);
    Color oraRed = new Color(100, 50, 80, 120);
    content.setBorder(BorderFactory.createLineBorder(oraRed, 10));
    // Display it
    setVisible(true);
    // Wait a little while, maybe while loading resources
    try { Thread.sleep(duration); } catch (Exception e) {}
    setVisible(false);
    public void showSplashAndExit() {
    showSplash();
    // System.exit(0);
    // CLASS CALLING THE SPLASH
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JMenu;
    import javax.swing.*;
    import java.applet.*;
    import java.applet.AudioClip;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.net.URL;
    public class login extends JDialog
    String username;
    String password;
    JTextField text1;
    JPasswordField text2;
    login()
    //super("Login To TIMETABLER");
    text1=new JTextField(10);
    text2 = new JPasswordField(10);
    text2.setEchoChar('*');
    JLabel label1=new JLabel("Username");
    JLabel label2=new JLabel("Password");
    label1.setFont(new Font("Garamond",Font.BOLD,16));
    label2.setFont(new Font("Garamond",Font.BOLD,16));
    JButton ok=new JButton(" O K ");
    ok.setActionCommand("ok");
    ok.setOpaque(false);
    ok.setFont(new Font("Garamond",Font.BOLD,14));
    ok.setBackground(SystemColor.controlHighlight);
    ok.setForeground(SystemColor.infoText);
    ok.addActionListener(new ActionListener (){
    public void actionPerformed(ActionEvent e)
    System.out.println("ddddd");
    //validatedata();
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    System.out.println("->here");
    // setVisible(false);
    // mainpage m=new mainpage();
    // m.setDefaultLookAndFeelDecorated(true);
    // m.callsplash();
    /// m.setSize(640,640);
    // m.show();
    //m.setVisible(true);
    SplashScreen splash = new SplashScreen(5000);
    // Normally, we'd call splash.showSplash() and get on with the program.
    // But, since this is only a test...
    splash.showSplashAndExit();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    JButton cancel=new JButton(" C A N C E L ");
    cancel.setActionCommand("cancel");
    cancel.setOpaque(false);
    cancel.setFont(new Font("Garamond",Font.BOLD,14));
    cancel.setBackground(SystemColor.controlHighlight);
    cancel.setForeground(SystemColor.infoText);
    cancel.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e)
    dispose();
    System.exit(0);
    JPanel pan1=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan2=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan3=new JPanel(new FlowLayout(FlowLayout.CENTER,20,20));
    pan1.setOpaque(false);
    pan2.setOpaque(false);
    pan3.setOpaque(false);
    pan1.add(label1);
    pan1.add(label2);
    pan2.add(text1);
    pan2.add(text2);
    pan3.add(ok);
    pan3.add(cancel);
    JPanel_Background main=new JPanel_Background();
    JPanel mainpanel=new JPanel(new BorderLayout(25,25));
    mainpanel.setOpaque(false);
    // mainpanel.setBorder(new BorderLayout(25,25));
    mainpanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder
    ("Login To Timetabler Vision"),BorderFactory.createEmptyBorder(10,20,10,20)));
    mainpanel.add("West",pan1);
    mainpanel.add("Center",pan2);
    mainpanel.add("South",pan3);
    main.add(mainpanel);
    getContentPane().add(main);
    void validatedata()
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    SplashScreen splash = new SplashScreen(5000);
    splash.showSplashAndExit();
    dispose();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    public void callsplash()
    {SplashScreen splash= new SplashScreen(1500);
    splash.showSplashAndExit();
    public static void main(String args[])
    { login m=new login();
    Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();
    int screenPositionX=(int)(screenSize.width/2-390/2);
    int screenPositionY=(int)(screenSize.height/2-260/2);
    m.setLocation(screenPositionX, screenPositionY);
    //m.setResizable(false);
    m.setSize(600,500);
    m.setSize(390,260);
    m.setVisible(true);

    Hi Luis,
    Use tcode XK99 for vendor mass change, select the Fax no field. You have to take note that this changes will be only 1 fax number for all vendors.
    Else you have to use BAPI for mass change.
    regards,
    maia

  • Update a table content in database MS access

    Hi
    In my application i am using Database toolkit to write a table in to MS access.
    i am able to write a table in to database but i am facing problem in editing a perticular cell in a table which is there in data base, how this can be achieved?
    When i use insert data vi, a row of data is being inserted. but in my application i need to keep updating the data in the same field.
    Ex: If i have writen a data in the 1st row i should keep updating the values of the 1st row basically i need to edit table contents.
    regards
    anil 

    Anil
    You can DB Tools Execute Query to run an UPDATE query. Take this example where I use the example labview.mdb database in ...\examples\database directory. This VI allows the user to UPDATE the PhoneNumber field for record with CustomerID=23311 which is the first record.
    Hope this helps
    David
    Message Edited by David Crawford on 10-07-2006 09:37 AM
    Attachments:
    Example to Update PhoneNumber Labview MDB (8.0).vi ‏16 KB
    Update Phone Number.jpg ‏17 KB

  • How to Use and Filter Table contents after execution of Bapi

    Can anybody guide me how to Use and Filter the table Contents which i got after successful execution of a Bapi
    I used Component Controller in my Project
    Ex: My table contains Redundant data for a single column but i want to display the column contents with out Redundancy
    Name
    Raghu
    Raghu
    Raghu
    Debasish
    Debasish
    I want to filter the table contents and i want to display the table with out Redundancy
    and Even when i am using a Dropdown i selected a Column  from a Table as the values for that Dropdown  but that table is having redundant data and the same data is getting displayed in that Dropdown i want the Dropdown to display data with out redundancy
    Thanks

    I also got that problem recently and after debuging for a while I figured out, that it was resulting from an error in my table's model: When the model received new items to display I
    1.) Fired an delete event for the old items
    2.) Fired an insert event for the new items
    Problem was that when firing the delete event I didn't already assigned the new items to the model. Therefore it had still the old row count.
    Maybe you have also a faulty table model?...

  • Web Dynpro ALV table contents  from context comes without filter conditions

    Hi Experts,
    Please help me to solve this problem.
    I set some selfmade functions on tool bar of my WD ALV,
    and it works OK, but when I set some filter conditions,
    I get same table contents in my method ONFUNCTION.
    What can I do?
    Thank you very much
    Irena

    My question was about option Filter of ALV report.
    May be somebody knows how I can receive Interfacecontroller
    attributes: FILTER_VALUES. It should help to filter
    table inside code( in my ONFUNCTION method).
    Regards
    Irena

  • Table content alignment in SAP Scripts

    000010       MAG DX 17P           7,000                   PC     1.520,00       10.640,00
    000020       mag pa/dx  175             6,000             PX     1.599,00       9.594,00
    000030       MVC MULTI SYNC XV15      5,000      PC     2.301,00       10.155,00
    000040       MVC MULTI SYNC XV   17   1,000      PC     2.389,00        2.389,00       
    The above is the output i got...
    table i hv used is VBAP
    POSEX  -  6
    ARKTX  -  40
    KWMENG  - 15
    MEINS - 3
    NETPR - 11
    ZWERT - 13
    TABS i hv specified in paragraph format is 1,7,47,62,65,76,89....
    i hv compressed the kwmeng,netpr,zwert field as it has leading zeros....
    How to arrange the table contents in proper order?
    how to wrap the ARKTX field contents as it is too long for certain vbeln values...i think its the reason y im nt getin o/p in proper format......
    Is there any mapping need to be done for CURRENCY & QUANTITY fields as we do in smartforms....if so pls provide needful help...

    If i try these tab values am getting it as such.....
    000010 MAG DX 17P  7,000                                 PC                           1.520,00  
    10.640,00
    000020 mag pa/dx    175 6,000                            PX                           1.599,00
    9.594,00
    000030 MVC MULTI SYNC XV15     5,000           PC                            2.301,00
    10.155,00
    000040 MVC MULTI SYNC XV 17      1,000         PC                            2.389,00
    2.389,00
    i think the problem is with the field "item decription"- ARKTX.......
    In smartforms there is a tab to map with currency and quantity fields ,is there anything as such in sap scripts?

  • DB Connect after BI 7 Upgrade - can extract but not display table contents

    Hi,
    After an upgrade from 3.1 non-unicode to BI 7 unicode on Windows OS, SQL Server 2005 DB, the DB Connect connection to another SQL Server 2005 database is still established and passes all checks. We are also able to load data from the datasources previously established. However if we right-click the source system -> additional functions -> Select Database Tables (3.x), list the tables/views, double-click a view known to contain data, click 'Display Table Contents' and nothing happens. We can run a load from the datasource connected to the same view.
    I have seen one unanswered post with the same issue. If anyone else has come across this problem and has some suggestions, it would be appreciated.
    Note we have checked the normal issues on the SQL user having created the views and don't believe this is an authorisation issue. There is no authorization issue posted in SU53.
    Support pack level is 16 on Basis and 18 on BW.
    Thank you,
    Ken

    Hi Ken,
    The problem has happened in the past because fields in the table/view had lower case letters. This is not allowed. Please check the following documentation:
    ->http://help.sap.com/saphelp_bw320/helpdata/en/58/            
      54f9c1562d104c9465dabd816f3f24/frameset.htm                  
      ->Modeling ->Source System ->Transferring Data with DB Connect
         ->Requests to Database Tables and Database Views          
            ->Naming conventions for fields         
    If the above is not the cause please check the note  512739 again to make sure everything is configured correctly:
    Please make sure in particular that the section III (d) of the note entitled 'Authorizations and visible objects' has been correctly
    followed.      
    Regards,
    Des.

  • Same table content in two page...

    Hi frends in Adobe forms i have two body page..i want to display same table in two page....while iam trying this issue...
    i got table content displayed in one page but in the second page table content is not displaying..i think i have some problem in binding...help me out......

    Hi Dinesh,
    If u r binding the data to the table in the first page, u can not bind that data again to the other table. Because u can bind the data only once. Next time it ll be empty.
    For this u should hv two table in ur context.. eg: *table1* (1:n)  and *table2* (1:n) with same attributes.
    Then in the code *fetch the data -> set attributes -> bind with table1 node*..
    then, set_attrubutes for table2 -> bind table2
    Regards,
    *Surya*
    Edited by: Surya PK on Oct 2, 2009 4:21 AM

Maybe you are looking for