What's meaning of the code??

CALL 'AB_GET_CX_DATA'
      ID 'PROGRAM' FIELD 'SAPMZCPSD02'
      ID 'CXNAME' FIELD 'GT_WBS_VIEW'
      ID 'DYNPRODEF' FIELD ''
      ID 'TCVIEWTAB' FIELD CURRENT_DATA[].
      CURRENT_DATA-TCINVISIBL = 'X'.
      MODIFY CURRENT_DATA TRANSPORTING TCINVISIBL
      WHERE TCFIELDNAM = 'ZCPSS14-ZVATFLG'.

Hi
Happy Independence Day To All Indians
call 'AB_GET_CX_DATA' means sap is calling internally C Program these C rograms are exist in the serverside as a text files...
please reward points for helpful ans's AND CLOSE THREAD
kiran.M

Similar Messages

  • What's wrong with the code?

    public void run()
    try
    {     for(;;)
         mgr = (RTPManager)RTPManager.newInstance();
         mgr.addSessionListener(this);
         mgr.addReceiveStreamListener(this);
         try{  /*****port1 = port2 = 29261, which port is only used in here
         localAddr = new SessionAddress(InetAddress.getLocalHost(), port1);
         destAddr = new SessionAddress(ipAddr, port2);
         }catch(Exception e)
              System.out.println(e + " 4");
         try{
         mgr.initialize(localAddr);
         }catch(Exception e)
         System.out.println(e + " 5");
         //set buffer
         bc = (BufferControl)mgr.getControl("javax.media.control.BufferControl");
         if (bc != null)
         bc.setBufferLength(20);
         try{
              mgr.addTarget(destAddr);
         }catch(Exception e)
         System.out.println(e + " 2");
    catch(Exception e)
         System.out.println(e+ " 3");
    the error when i run the code is like that:
    javax.media.rtp.InvalidSessionAddressException: Can't open local data port: 29261
    5
    java.io.IOException: Address already in use: Cannot bind 2
    which means there is error in :
    mgr.initialize(localAddr);
    mgr.addTarget(destAddr);
    But i don't know what's wrong with the code,
    can any one help me?

    I do not find any problem using the same ports for local and destination address with several unicasts. My problems are others.
    But note that the error is even at constructing the localAddress, I mean before trying the destinationAddress. Thus the reason cannot be the former is already in use. In fact I think the later belongs to a remote hosts. Likely, it is trying to access the destinationAddress through the localAddress, but this has not been constructed properly.

  • I received a second iPad Air as a gift and sold on Ebay.  The person who bought it asked if is a Oem pad.  Not sure what that means.  The model part number is PF004LL/A

    I received a second iPad Air as a gift and sold on Ebay.  The person who bought it asked if is a Oem pad.  Not sure what that means.  The model part number is PF004LL/A.

    You can see the model number in Settings>General>About>Model. The model number has a two-letter code, a number and some more letters. The last part stands for the country/region. The first letter can be "F" (refurbished), "M" (normal retail), or "P" (personalized / engraved). For example MC605B is the model MC605 and B is for the region.
    What country does my device belong to?
    http://www.jbfaq.com/article.asp?id=63
     Cheers, Tom

  • HT4759 What ((null)) mean on the top of my Apple Mail?

    Does anybody know what ((null)) mean on the top of my Apple Mail? Has something to do with the outgoing smtp server...but what does it mean? Thanks in advance. Joeri

    1. Try doing a reset(no data will be lost):
    Disconnect the iPhone from any computer. Press and hold both the Home button and the Sleep/wake button simultaneously for about 15 seconds and release when the Apple logo appears. Given your information, I suspect this won't work but try it anyway.
    2. If that doesn't solve the issue, backup the device and restore it as new to isolate the issue to hardware failure.
    In that case, use: http://support.apple.com/kb/HT4137
    NB: set up as a NEW device because a software issue will be in the backup. If the issue persists after restoring as new, you should offer the device for service.
    If you get specific error messages/codes in iTunes when updating/restoring, check this: http://support.apple.com/kb/ts3694 for causes and solutions
    Good luck
    Stijn

  • TS1503 Does anyone know what "other" means in the sync summary bar? I have 850mb using storage space in my iphone and can't understand what that is. I have tried to delete everything, restore to factory settings and change the icloud account. Thanks.

    Does anyone know what "other" means in the sync summary bar? I have 850mb using storage space in my iphone and can't understand what that is. I have tried to delete everything, restore to factory settings and change the icloud account. Thanks.

    Hi there AnthPy,
    You may find the troubleshooting steps in the article below helpful.
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    -Griff W. 

  • Red highlight next to code in dreamweaver. What is wrong with the code and is it affecting the websi

    What is wrong with the code and is it affecting the website?

    Line 107 looks dodgy to me and it won't have any effect on your code.  However, it is a good idea to post a complete link to your CSS for us to see it in full and to validate it using external tools.  In fact, you could validate the CSS (and HTML) yourself..
    <http://jigsaw.w3.org/css-validator/>
    Good luck.

  • I'm trying to add the system date with a Label. What is wrong with the code

    import java.util.*;
    import javax.swing.*;
    public class CurrentDateApplet extends JApplet
         Calendar currentCalendar = Calendar.getInstance();
         JLabel dateLabel = new JLabel();
         JPanel mainPanel = new JPanel();
         int dayInteger = currentCalendar.get(Calendar.DATE);
         int monthInteger = currentCalendar.get(Calendar.MONTH)+1;
         int yearInteger = currentCalendar.get(Calendar.YEAR);
         public void init()
              mainPanel.add(dateLabel);
              setContentPane(mainPanel);
              dateLabel.append(currentCalendar.get(Calendar.HOUR) + currentCalendar.get
                        (Calendar.MINUTE);
    }

    As for what's wrong with the code, it would be easier if you said: it doesn't show the date (it does this instead), it doesn't compile (I get this message) etc.
    Anyway I'll assume you want to display the time in a label...
    dateLabel.append(currentCalendar.get(Calendar.HOUR) + currentCalendar.get
    (Calendar.MINUTE);This won't compile: the parentheses are mismatched, and there is simply no such thing as append(). So we could trydateLabel.setText("" + currentCalendar.get(Calendar.HOUR) + currentCalendar.get(Calendar.MINUTE));This wroks, but looks pretty nasty and it's not how you are supposed to format dates and times. Here's the unofficial party line, nicked from one of jverd's posts:
    Calculating Java dates: Take the time to learn how to create and use dates
    Formatting a Date Using a Custom Format
    Parsing a Date Using a Custom Format
    From those links you should be able to find those applicable to times like this: http://www.exampledepot.com/egs/java.text/FormatTime.html
    Using this approach you would end up with something like:import java.text.Format;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import javax.swing.JApplet;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    public class CurrentDateApplet extends JApplet
        private Date date;
        private JLabel timeLabel;
        private JPanel mainPanel;
        public void init()
            mainPanel = new JPanel();
            timeLabel = new JLabel();
            mainPanel.add(timeLabel);
            setContentPane(mainPanel);
            date = new Date();
            Format formatter = new SimpleDateFormat("HH:ss a");
            timeLabel.setText(formatter.format(date));
    }

  • SQL Server XQuery: Sequence Expression - What is @x in the code statement of DECLARE @x xml; ? What is N in the code statement of SET @x = N ' '; ?

    Hi all,
    I did the basic stuff of T-SQL long time ago. I dive in to do the SQL Server XQuery programming. I saw the following set of code statements from a tutotial website:
    DECLARE @x xml;
    SET @x = N'';
    SELECT @x.query('(1,2,(10,11,12,13,14,15)),-6');
    1) What is @x in the code statement of DECLARE @x xml;? What is N in the code statement of SET @x = N ' '? 
    2) Is the N in the code statement of SET @x = N ' '; absobutally necessary in the SQL Server XQuery programming?  From XQuery Language Reference of SQL Server 2012 Books Online, I saw the following set of code statements:
    DECLARE @x XML
    SET @x = '<a/>'
    SELECT @x.query('if (/a[1]) then "true" else "false"')
    go
    I wonder why there is no N in the code statement of the XQuery Language Reference?
    Please kindly help, clarify my confusions and answer my questions mentioned above.
    Thanks in advance,
    Scott Chang

    @x is a variable with xml data type. An N prefix stands for the string in Unicode. The N is not necessary in the SQL Server XQuery programming if the values of the element or attribute in the xml are not in an international language.
    A Fan of SSIS, SSRS and SSAS

  • What will happen with the code?

    What will happen with the code below?
    for (i=0; i<=10000; i++)
    Object[] obj = new Object[5];
    In every loop, a new Array of Object wll be created. Will the Array of Object created in the
    current loop( for example, i=2001), eliminate the Array of Object created in previous loop
    (for example, i=2000 or 1999)? How the memory is allocated in every loop?
    Thanks.

    Each time through the loop, an array of five Object references is created. A reference to this array is assigned to the reference variable obj, causing the previously allocated array to be unreachable (except the first time through the loop, if obj was originally null). The garbage collector will collect these unreachable arrays if the memory gets low.

  • HT1438 i keep getting SIM locked message on my iphone 4s and I need to unlock it please please can someone help me? The voice activation is on and when I type in what I think is the code It wont even put in the numbers

    I am trying to unlock my SIM from my iphone 4s, as I am getting a mesage SIM locked. How do I unlock this?Also I am typing in what I think my code is and it is not working. The voice activation wil not allow me to type in the numbers for some reason. I have turned it off and on about 7 times now. please please please can someone help me?

    If you bought the iphone in the US and it is locked to a specific carrier, then you can't use a different sim (from another carrier).  Is this your situation?
    Otherwise I'm not sure what you mean by "trying to unlock my SIM".  In which country did you buy the iphone?  Who's your carrier?

  • What's mean of the object ,tablename,fieldname in transaction bd52?

    in bd52,under the name of message type,have some item with name object ,tablename,fieldname,what is mean of them?is it as same as fields in idoc segment?why some message type have items and some have no?do they store value in transmission?
    Edited by: p y on May 10, 2008 11:23 AM

    hi,
    in ale's u hav a method called change pointers in which u can send some data which has to be changed in reciever system,so u hav to define the fields u want to send through change pointers method in BD52.
    if already exists no need to give,if not exist just give thm and save.
    ex: u hav sent a material from client 100 to 300.
    now u want to change basic uom(meins) for tht material thn u define [ material mara meins] in BD52 and save.
    thn u follow the remaining steps in change pointer method to send changes in uom from 100 to 300.
    reward if hlpful.

  • What is wrong with the code? (JOptionpane)

    I tried to run the program "AddingNumbers.java", but i always get error message, can anyone tells me what is wrong?
    Here is the code:
    import javax.swing.JOptionpane;     //import class JOptionpane
    public class Addition {
    public static void main( String args[])
         String firstNumber, secondNumber;
         int number1, number2, sum;
         firstNumber =
         JOptionpane.showInputDialog( "Enter first integer");
         secondNumber =
         JOptionpane.showInputDialog( "Enter second integer");
         number1 = Integer.parseInt( firstNumber);
         number2 = Integer.parseInt( secondNumber);
         sum = number1 + number2;
         JOptionpane.showMessageDialog(
         null, "The sum is " + sum, "Results",
         JOptionpane.PLAIN_MESSAGE );
         System.exit( 0 );
    The error messages are:
    import javax.swing.JOptionpane; //import class JOptionpane
    ^
    AddingNumbers.java:12: cannot resolve symbol
    symbol : variable JOptionpane
    location: class Addition
    JOptionpane.showInputDialog( "Enter first integer");
    ^
    AddingNumbers.java:15: cannot resolve symbol
    symbol : variable JOptionpane
    location: class Addition
    JOptionpane.showInputDialog( "Enter second integer");
    ^
    AddingNumbers.java:24: cannot resolve symbol
    symbol : variable JOptionpane
    location: class Addition
    JOptionpane.PLAIN_MESSAGE );
    ^
    AddingNumbers.java:22: cannot resolve symbol
    symbol : variable JOptionpane
    location: class Addition
    JOptionpane.showMessageDialog(
    ^
    6 errors
    Thanks.

    Hi, noah.w: can you help me for this code? it has error, too.
    the code:
    import javax.swing.JOptionPane;
    public class Comparison {
    public static void main( String args[])
         String      firstNumber,
              secondNumber
              result;
         int number1,
         number2;
         firstNumber =
         JOptionPane.showInputDialog( "Enter first integer");
         secondNumber =
         JOptionPane.showInputDialog( "Enter second integer");
         number1 = Integer.parseInt( firstNumber);
         number2 = Integer.parseInt( secondNumber);
         result = " ";
         if (number1 == number2 )
         result = result + number1 + " == " + number2;
         if (number1 != number2 )
         result = result + number1 + " != " + number2;
         if (number1 < number2 )
         result = result + "\n" + number1 + " < " + number2;
         if (number1 > number2 )
         result = result + "\n" + number1 + " > " + number2;
         if (number1 <= number2 )
         result = result + "\n" + number1 + " <= " + number2;
         if (number1 >= number2 )
         result = result + "\n" + number1 + " >= " + number2;
         JOptionPane.showMessageDialog(
         null, result, "Comparison Results",
         JOptionPane.INFORMATION_MESSAGE );
         System.exit( 0 );
    the error is:
    result = result + "\n" + number1 + " <= " + number2;
    ^
    Comparison.java:40: cannot resolve symbol
    symbol : variable result
    location: class Comparison
    result = result + "\n" + number1 + " <= " + number2;
    ^
    Comparison.java:43: cannot resolve symbol
    symbol : variable result
    location: class Comparison
    result = result + "\n" + number1 + " >= " + number2;
    ^
    Comparison.java:43: cannot resolve symbol
    symbol : variable result
    location: class Comparison
    result = result + "\n" + number1 + " >= " + number2;
    ^
    Comparison.java:46: cannot resolve symbol
    symbol : variable result
    location: class Comparison
    null, result, "Comparison Results",
    ^
    15 errors
    How can i get the full screen of the messages? the DOS always shows the end part of the screen and i can't go back to take look the begainning of the errors.
    Thanks again.

  • What is wrong with the code II?

    The code below did not display "test" as expected. Why and how
    to fix it? Thanks.
    import java.awt.*;
    import javax.swing.*;
    public class component extends JFrame
    public component()
    setTitle("add component test");
    Container c = getContentPane();
    ComboBoxTest cc = new ComboBoxTest("test");
    c.add(cc);
    setSize(200, 200);
    setLocation(400, 300);
    public static void main(String [] args)
    component c = new component();
    c.show();
    class ComboBoxTest extends Component
    public ComboBoxTest(String s)
    a = new Label(s);
    private Label a;

    The code below did not display "test" as expected. Why
    and how
    to fix it? Thanks.I assume you mean the Label that has the text, test. If that's right, there isn't any code in ComboBoxTest that causes the Label to be displayed. I think you should extend something like JPanel instead of Component and add a JLabel to the JPanel.

  • What's wrong in the code.....Not giving proper answer.

    Hi All,
    below is code for adding 2 simple no's using pl-sql but by setting serveroutput on size 50000,I'm unable to find answer to this ..
    declare
    no_1 number;
    no_2 number;
    result number;
    a number;
    b number;
    begin
    dbms_output.put_line ('Enter the First Number :'||&no_1);
    a:=no_1;
    dbms_output.put_line ('Enter the Second Number :'||&no_2);
    b:=no_2;
    result:=to_number(a+b);
    dbms_output.put_line ('Sum of given numbers is '||result);
    end;
    Thanks in advance.

    In the code you are trying to display the user supplied number, after taking the no_1 and no_2 it is displaying the number. After that there are no value in the
    variables no_1. So do like below.
    declare
    result number;
    a number;
    b number;
    begin
    dbms_output.put_line ('Enter the First Number :');
    a:=&no_1;
    dbms_output.put_line ('Enter the Second Number :');
    b:=&no_2;
    result:=a+b;
    dbms_output.put_line ('Sum of given numbers is '||result);
    end;
    Regards
    SUN

  • Still trying to center the text of the jTextP. What is wrong with the code?

    The Code:
    JTextPane jTextPane1 = new JTextPane();
    MutableAttributeSet mas;
    mas=new SimpleAttributeSet();
    StyleConstants.setAlignment (mas, StyleConstants.ALIGN_RIGHT);
    jTextPane1.setCharacterAttributes(mas,false);
    jTextPane1.setText("message");
    The code doesn't align the text.
    Please HELP MEEEEEE
    Thanks.

    I've found the solution!!!!!!!!!!!!!!!!!!!!!
    insted of:
    jTextPane1.setCharacterAttributes(mas,true);
    you have to use:
    jTextPane1.setParagraphAttributes(mas,true);
    yuhuuuuuuuuuuuuuuuuuuuuuu!!!!!!!

Maybe you are looking for

  • Lenovo 3000 N200 0769 ERG

    I need urgent help please, I just bought a Lenovo 3000 N200 0769 ERG and we changed Microsoft Vista with XP but we have a problem with the drivers. The Lenovo doesn't recognise them for example: Audio driver, Video VGA driver, and all the drivers nee

  • Why Won't Launchctl Load Script After Reboot?

    Hello, iMac with OS X 10.7.3 root# ls -lah /Library/LaunchAgents/dbase_backup.plist -rw-r--r--  1 root  wheel   479B Feb 24 10:24 /Library/LaunchAgents/dbase_backup.plist I load it with:  root# launchctl load /Library/LaunchAgents/dbase_backup.plist

  • Youtube video playback freeze

    Hi, I've been experiencing a lot video playback freezing, I've noticed it happens on youtube. It is not my internet connection, the video freeze even it's already been downloaded. It happens with all video resolution from 360P to Full HD, I've tried

  • My mac pro became very slow

    suddenly my mac pro and the imac started to get very slow. it take's up to 10 seconds to show what is inside a folder can anyone please give me some help? thx

  • Running SQL Procedure with dg4msql errors: Function sequence error HY010

    I am trying to execute a stored procedure on a SQL database and get the error Function sequence error HY010. A simple query on a table returns teh expected result. I have a single Win2008R2 server with MSSQL Express 2008 and Oracle 11gR2 (32bit not 6