Variable No. Of BP refrence no.

Hi Expert,
I want to find the variable no. of NumAtCard , in the Withholding Tax report.
selecting vendor layout Purchasing and after expanding a particular vendor by double clicking the serial no.
the system report comes without the BP reference No. , we can active that field through form setting.
I need to pull the BP ref no. in the layout.
please help
Agranshu

Hi,
Not all variables can be used in PLD. Variable in View --> System information for the field is not need to be the same as used in PLD.
To know the list of variables available for PLD, you may check this link
[How to use System variables.pdf|https://websmp204.sap-ag.de/~sapidb/011000358700000449672010E/HowTo_PLD_Variables_88.zip]
Regards,
Bala

Similar Messages

  • Passing internal table data to a variable

    Dear experts,
    i am having below code
      ASSIGN (w_dyn_tbl_fld) TO <fs_dyn_fld_data>.
          IF sy-subrc <> 0.                                   
            CLEAR <fs_dyn_fld_data>.                  
          ENDIF.                                      
    and this is in loop of an internal table having 30 records at 28 record im having  value REGUH-VBLNR in (w_dyn_tbl_fld) and
    <fs_dyn_fld_data> is having the value as 2000022827 and here in assigning is getting failed
    and hence it is clearing  <fs_dyn_fld_data> data.
    which should nt happen
    dont know why it is happening.
    i have internal table it_reguh which is having value as it_reguh-vblnr.
    i need to declare one work area and than from this internal table i have to pass this value to an work area.
    kindly suggest how to proceed
    thank u
    regards
    ravikumar

    dear keshav,,
    see the below code
        LOOP AT it_flds_maps_tbl INTO wa_flds_maps_tbl
                                 WHERE ( recty = 'I'  ). "I STRUC TABLES
        POPULATE A VARIABLE WITH TABLENAME-FIELDNAME. >>>
          CONCATENATE wa_flds_maps_tbl-tabname
                      wa_flds_maps_tbl-fieldname
                      INTO w_dyn_tbl_fld
                      SEPARATED BY w_seperator.
        USE THE VARIABLE TO ASSIGN A REFRENCE TO THE ACTUAL TABLE-FIELD
        FOR RETRIEVEING THE DATA USING A FILED SYMBOL. >>>
          ASSIGN (w_dyn_tbl_fld) TO <fs_dyn_fld_data>.
          IF sy-subrc <> 0.                                     "BS1+
            CLEAR <fs_dyn_fld_data>.                            "BS1+
          ENDIF.                                                "BS1+
          CLEAR w_clspace.
        QUERY THE TYPE OF FIELD
          CLEAR w_type.
          DESCRIBE FIELD <fs_dyn_fld_data> TYPE w_type.
          CASE w_type.
    ABSOLUTE VALUE AND THOUSAND SEPARATORS SUPRESSED
            WHEN 'P' OR 'I' OR 'F'.
              WRITE <fs_dyn_fld_data> TO w_clspace
                NO-SIGN NO-GROUPING LEFT-JUSTIFIED.
              IF <fs_dyn_fld_data> < 0.
                CONCATENATE '-' w_clspace INTO w_clspace.
              ENDIF.
    INTERNAL REPESENTATION IS PASSED
            WHEN 'D'.
              MOVE  <fs_dyn_fld_data> TO w_clspace .
            WHEN OTHERS.
    *IF CONVERSION ENTRIES ARE MAINTAINED THEN CONSIDER THESE
              IF wa_flds_maps_tbl-conv_exists = 'X'.
                READ TABLE it_flds_conv_tbl INTO wa_flds_conv_tbl
                WITH KEY tabname = wa_flds_maps_tbl-tabname
                     fieldname = wa_flds_maps_tbl-fieldname
                     oldvalue  = <fs_dyn_fld_data>.
                IF sy-subrc EQ 0.
                  WRITE wa_flds_conv_tbl-newvalue TO w_clspace.
                ENDIF.
              ELSE.
                WRITE <fs_dyn_fld_data> TO w_clspace.
              ENDIF.
          ENDCASE.
    INCLUDE PREFIX AND SUFFIX
          IF NOT w_clspace IS INITIAL.
            CONCATENATE wa_flds_maps_tbm-prefix w_clspace
      wa_flds_maps_tbm-suffix INTO w_clspace SEPARATED BY space.
          ENDIF.
    *REMOVE # FROM RECORD
          REPLACE '#' INTO  w_clspace WITH ''.
          SHIFT w_clspace LEFT DELETING LEADING space.
        CONSTRUCT A STRING WHICH WOULD CONTAIN THE DATA EXTRACTED BY THE
        FIELD SYMBOL AND DELIMIT EACH DATA EXTRACT BY A DELIMITER. >>>
          w_offset = STRLEN( w_i_record ).
          w_len    = STRLEN( w_clspace ).
          WRITE w_clspace TO w_i_record+w_offset(w_len).
    IF DELIMITER IS REQUIRED AFTER THE FIELD
          IF wa_flds_maps_tbl-delrq EQ 'X'.
            CONCATENATE w_i_record c_delimiter INTO w_i_record.
          ELSE.
            CONCATENATE w_i_record '^' INTO w_i_record.
          ENDIF.
    *... GET RID OF THE SOFT SPACE FOR EMPTY FIELD
          REPLACE '^' INTO w_i_record WITH ''.
          REPLACE '|^' INTO w_i_record WITH '|' .
          REPLACE '^|' INTO w_i_record WITH '|'.
          REPLACE ' |' INTO w_i_record WITH '|'.       "MAY NOT BE REQD???
       ENDLOOP. " ENDLOOP FOR I STRUC CONSTRUCTION.
    in assining w_dyn_tbl_fld       to      fs_dyn_fld_data
    it is getting failed due to miss assigning
    so i just want to know whether i can create a variable of type any
    and i pass this fs_dyn_fld_data to that variablke or not
    and whether this variable value can be  used in where condition(vblnr = reguh-vblnr) or not in loop of the below code
       LOOP AT it_regup INTO regup
                         WHERE ( laufd = reguh-laufd )
                         AND   ( laufi = reguh-laufi )
                         AND   ( xvorl = reguh-xvorl )
                         AND   ( zbukr = reguh-zbukr )
                         AND   ( lifnr = reguh-lifnr )
                         AND   ( kunnr = reguh-kunnr )
                         AND   ( empfg = l_w_empfg )   " BY RMK
                         AND   ( vblnr = reguh-vblnr ).

  • Clone Variables (Locals and FileGlobals)

    Hi !
    Is it possible to clone variables ? 
    I found the way to use the clone method with steps, but I can't find the way to do it with variables.
    What I did is get the reference onto the 'Locals' in sequence (the reference is a PropertyObject). Then cloned this PO using the Clone method, which returns a reference on the cloned Object.
    I have the reference of a sequence in another sequence file, in which I want to copy my variable. But I can't find any method from the Sequence class which would allow to add the cloned variables using the clone refrence.
    Any idea ?

    Hi,
    Clone is possible,
    Just see these threads, there were some examples
    http://forums.ni.com/t5/NI-TestStand/Repeating-a-Failed-Sequence-once-more/m-p/1042268/highlight/tru...
    http://forums.ni.com/t5/NI-TestStand/Copy-result-container-why-do-I-get-a-property-types-do-not-matc...
    Regards
    Juergen
    =s=i=g=n=a=t=u=r=e= Click on the Star and see what happens :-) =s=i=g=n=a=t=u=r=e=

  • FRM-18108 AT OPENING FORMS

    Hi All,
    At time of opening forms getting error FRM-18108.
    Is there any place where I need to give paths of refrenced library or forms.
    I am doing this with forms10g on Linux.
    I have set CLASSPATH variable in .bash_profile to refrence to library & other refrened dir.
    But then also this error is there.
    I was thinking including this path some where in default.env or formsweb.config but these are
    refrenced at runtime so this is also not the place where I should attach those path.
    And there any large number of thing referenced so It is not possible to mannualy incude each
    file in forms buildeer.
    THIS ERROR AGAIN FOLLOWS WITH FRM-10102 can not attach Pl/sql librarys
    SO IS THERE ANY PLACE IN FORMS BUILDEER TO MAINTAIN PATHS.
    PLEASE GUIDE WITH YOUR SUGESIONS OVER THIS PROBLEM.

    Hi All,
    The Error FRM-18108 got resolved I maintained the Paths in FORMS_PATH in .bash_profile.
    And also by manually opening object library file through forms builder.
    But there remains error FRM-10102 which comes due to Case of file names.
    Temporary I am renaming the files as they asks.
    But is there any tipical and easy way to come up with FRM-10102
    Thanks

  • How to create a Node variable without fetching in Char Restriction.

    Hi Expert - I got the refrence from this thread -  [Hierarchy variables in webi / Universe;
    to create a node variable for hierarchies.
    Requirement - the  characteristic on which you want to create a node variable must not be in Default section and in Free Characteristics Restriction
    But - if we fetch any characteristic in free characteristic then it will appear in Default value section. I donu2019t want that , I donu2019t want that in Default Value section. how can i get this ?
    Also I need to create a node variable on profit center characteristic it without fetching it into Free Characteristics Restriction, Can I do this? How ?

    Hi Ingo - Thanks for your valuable input.
    After putting much efforts - here is result. I fixed my hierarchy , means now there is no hierarchy variable , And i just create a node variable by putting it into Bex characterstic  restriction. - But it looks like this in Universe.
    LovHierNodeL00 G/L Account
    LovHierNodeL00 G/L AccountBase
    LovHierNodeL01 G/L Account
    LovHierNodeL01 G/L AccountBase
    LovHierNodeL02 G/L Account
    LovHierNodeL02 G/L AccountBase
    LovHierNodeL03 G/L Account
    LovHierNodeL03 G/L AccountBase
    LovHierNodeL04 G/L Account
    LovHierNodeL04 G/L AccountBase
    Is this correct- ?
    What i feel is correct - it should look like this -
    LovG/L Account Node Variable
    LovG/L Account Node VariableBase

  • Selection Variable on Report Heading

    Dear Friends,
    i have a report with four variables on selection screen.
    i would like to show one of variable on the heading of my report.
    regards,
    Malik

    I did the same thing my friend.
    Query properties > variable button in description field> create new text variable processing by
    replacement path and choose company code in refrence characterstics becuase my selection is
    on company code.
    but its giving me following warning on selection screen.
    Text variable VAR_20090112123701 in "Aging&VAR_20090112123701&" cannot be replaced - value not found
    and when i run the report i get the heading like this
    Aging&VAR_20090112123701&
    Name of variable is comming not value.
    any idea.
    Regards,
    Malik

  • Static variable error

    I know that non-static variables cannot be refrenced from a static context and I see where this error is happening but I can't figure out why. It doesn't appear that I am cross referencing static and non-static variables.
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.util.*;
    public class CookieStuff extends JFrame implements ActionListener
         private final int XSIZE = 600;
         private final int YSIZE = 300;
         private JButton myButton;
         private JButton myButton2;
         private JLabel myLabel;
         private JLabel myLabel2;
         public JTextField myTextField;
          * Constructor
         public CookieStuff(String title)
              super(title);
              setSize(XSIZE,YSIZE);
              myButton = new JButton("Bake cookies");
              myButton2= new JButton("Eat cookies");
              myLabel = new JLabel("Number of cookies left: ");
              myLabel2= new JLabel("Enter # of cookies and select a button");
              myTextField = new JTextField(5);
              myButton.addActionListener(this);
              myButton2.addActionListener(this);
              add(myButton,BorderLayout.NORTH);
              add(myButton2,BorderLayout.SOUTH);
              add(myLabel,BorderLayout.WEST);
              add(myLabel2,BorderLayout.EAST);
              add(myTextField,BorderLayout.CENTER);
         public static void welcomeStuff()
              JOptionPane.showMessageDialog(null,"Welcome to grandma's cookie jar..");
         public void actionPerformed(ActionEvent ev)
             Object source = ev.getSource();
             if(source == myButton)
                   if(CookieJar.bake() > CookieJar.COOKIES_ALLOWED)
                        JOptionPane.showMessageDialog(this, "Grandma's jar is too small for that many cookies");
                   else
                        JOptionPane.showMessageDialog(this, CookieJar.bake());
                        myLabel.setText("Number of cookies left: " + (CookieJar.bake()));
              else
                   if(CookieJar.eat() < 0)
                        JOptionPane.showMessageDialog(this, "There are not enough cookies in the jar fatso");
                   else
                        JOptionPane.showMessageDialog(this, CookieJar.eat());
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.util.*;
    public class CookieJar
        public static final int COOKIES_ALLOWED = 40;
        public int numOfCookies;
        public int cookieCount;
        public CookieJar()
              cookieCount = numOfCookies;
              numOfCookies++;
         public int eat()
              int numOfCookies = 0;
              numOfCookies = (numOfCookies - Integer.parseInt(CookieStuff.myTextField.getText()));
              return numOfCookies;
         public int bake()
              int numOfCookies = 0;
              numOfCookies = (numOfCookies + Integer.parseInt(CookieStuff.myTextField.getText()));
              return numOfCookies;
    }The last 2 methods eat( ) and bake( ) are giving the errors. Thanks.

    C:\Documents and Settings\Travis Mandrell\Desktop\DePaul\CSC212\hw8\CookieStuff.java:49: non-static method bake() cannot be referenced from a static context
                   if(CookieJar.bake() > CookieJar.COOKIES_ALLOWED)
    ^
    C:\Documents and Settings\Travis Mandrell\Desktop\DePaul\CSC212\hw8\CookieStuff.java:55: non-static method bake() cannot be referenced from a static context
                        JOptionPane.showMessageDialog(this, CookieJar.bake());
    ^
    C:\Documents and Settings\Travis Mandrell\Desktop\DePaul\CSC212\hw8\CookieStuff.java:56: non-static method bake() cannot be referenced from a static context
                        myLabel.setText("Number of cookies left: " + (CookieJar.bake()));
    ^
    C:\Documents and Settings\Travis Mandrell\Desktop\DePaul\CSC212\hw8\CookieStuff.java:62: non-static method eat() cannot be referenced from a static context
                   if(CookieJar.eat() < 0)
    ^
    C:\Documents and Settings\Travis Mandrell\Desktop\DePaul\CSC212\hw8\CookieStuff.java:68: non-static method eat() cannot be referenced from a static context
    JOptionPane.showMessageDialog(this, CookieJar.eat());
    ^
    .\CookieJar.java:21: non-static variable myTextField cannot be referenced from a static context
              numOfCookies = (numOfCookies - Integer.parseInt(CookieStuff.myTextField.getText()));
    ^
    .\CookieJar.java:28: non-static variable myTextField cannot be referenced from a static context
              numOfCookies = (numOfCookies + Integer.parseInt(CookieStuff.myTextField.getText()));
    ^
    7 errors

  • Replacement string variable in data form

    Hi everybody,
    in Planning 11.1.2, is it possible to set a replacement variable, with type String, and then use it in a data form to let the user inserting a string value (i.e "actual")?
    I need to reuse the value inserted in a business rule. I think to use the @MEMBER to refrence it to the corresponding dimension member.
    For example:
    If I define a string variable named SCENARIO and the user insert in the data form "actual", can i reference it in a cross-dimension:
    Account1->Peiod1->Fy12 -> @MEMBER(SCENARIO)
    does this cross-dimension return the value corresponding to Account1->Period1->FY12->Actual?
    Thank All
    Maurizio

    Why you just don't use RPT with type Member ?
    Users chose member name from the LOV (no chance for mistake) and run your rule

  • Java is pass by value or pass by refrence

    Can any one explain whetherjava is pass by value or pass by refrence.

    Everything in Java is passed "by value". Everything.
    Pass-by-value
    - When an argument is passed to a function, the invoked function gets a copy of the original value.
    - The local variable inside the method declaration is not connected to the caller's argument; any changes made to the values of the local variables inside the body of the method will have no effect on the values of the arguments in the method call.
    - If the copied value in the local variable happens to be a reference (or "pointer") to an object, the variable can be used to modify the object to which the reference points.
    Some people will say incorrectly that objects are passed "by reference." In programming language design, the term pass by reference properly means that when an argument is passed to a function, the invoked function gets a reference to the original value, not a copy of its value. If the function modifies its parameter, the value in the calling code will be changed because the argument and parameter use the same slot in memory.... The Java programming language does not pass objects by reference; it passes object references by value. Because two copies of the same reference refer to the same actual object, changes made through one reference variable are visible through the other. There is exactly one parameter passing mode -- pass by value -- and that helps keep things simple.
    -- James Gosling, et al., The Java Programming Language, 4th Edition
    [Pass-by-Value Please (Cup Size continued)|http://www.javaranch.com/campfire/StoryPassBy.jsp]

  • Tables which stores Variables information

    Hi Gurus,
    I want to know how to find the vaiables information ???
    where can i find the complete information of the Variables of Bex reports . there must be tables which stores complete info.. right
    kindly help me in this regard
    Regards
    AK

    Hi,
    Below is the table whcih stores variables.
    V_RSZGLOBV
    Other tables for your refrence.
    RSZELTDIR
    Directory of the reporting component elements
    RSZELTTXT
    Texts of reporting component elements
    RSZELTXREF
    Directory of query element references
    RSRREPDIR
    Directory of all reports (Query GENUNIID)
    RSZCOMPDIR
    Directory of reporting components
    Assign points if it helps.
    Cheers,
    Malli.

  • Refrencing level1 library

    I created an swf which loads another swf at level1. The swf
    at level1 attaches some movieclips from its library. It runs
    perfect when played individually.
    I added those elements which are being attached from the
    library in level0 swf and then level1 movie runs perfectly.
    Now the issue is that
    - If I add the elements to level0 library then the elements
    make level0 swf heavy.
    - If i make a shared library then all the elenets are loaded
    in the library thru swf which mus be preloaded.
    but by these way the elements increasing size of both swf and
    weather the level1 movie is loaded or not its elements are in the
    memory.
    to make the application memory optimized I need when the
    level1 movie is loaded it should refrence to its level1 library.
    Please help.

    Here is the variable stmtInt I want to access in my
    SubmitPassword.java file
    public String selectPassword() {
    // create all the variables I will need.
    Connection C = null;
    Statement Stmt = null;
    try {
    // load the driver
         Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    // create the connection
    C = DriverManager.getConnection("url", "username", "password");
    // create the statement
         Stmt = C.createStatement();
    // create the sql to execute
         String find = "select * from table where USERNAME = '" + this.getUsername() + "' AND PASSWORD = '" + this.getPassword() + "'";
    System.out.println(find);
    // execute the sql
         int stmtInt = Stmt.executeUpdate(find);
    // return which row was affected
         System.out.println("No of Rows Found " + stmtInt);
         return "No of Rows Found " + stmtInt;

  • Problem with Threads and a static variable

    I have a problem with the code below. I am yet to make sure that I understand the problem. Correct me if I am wrong please.
    Code functionality:
    A timer calls SetState every second. It sets the state and sets boolean variable "changed" to true. Then notifies a main process thread to check if the state changed to send a message.
    The problem as far I understand is:
    Assume the timer Thread calls SetState twice before the main process Thread runs. As a result, "changed" is set to true twice. However, since the main process is blocked twice during the two calls to SetState, when it runs it would have the two SetState timer threads blocked on its synchronized body. It will pass the first one, send the message and set "changed" to false since it was true. Now, it will pass the second thread, but here is the problem, "changed" is already set to false. As a result, it won't send the message even though it is supposed to.
    Would you please let me know if my understanding is correct? If so, what would you propose to resolve the problem? Should I call wait some other or should I notify in a different way?
    Thanks,
    B.D.
    Code:
    private static volatile boolean bChanged = false;
    private static Thread objMainProcess;
       protected static void Init(){
            objMainProcess = new Thread() {
                public void run() {
                    while( objMainProcess == Thread.currentThread() ) {
                       GetState();
            objMainProcess.setDaemon( true );
            objMainProcess.start();
        public static void initStatusTimer(){
            if(objTimer == null)
                 objTimer = new javax.swing.Timer( 1000, new java.awt.event.ActionListener(){
                    public void actionPerformed( java.awt.event.ActionEvent evt){
                              SetState();
        private static void SetState(){
            if( objMainProcess == null ) return;
            synchronized( objMainProcess ) {
                bChanged = true;
                try{
                    objMainProcess.notify();
                }catch( IllegalMonitorStateException e ) {}
        private static boolean GetState() {
            if( objMainProcess == null ) return false;
            synchronized( objMainProcess ) {
                if( bChanged) {
                    SendMessage();
                    bChanged = false;
                    return true;
                try {
                    objMainProcess.wait();
                }catch( InterruptedException e ) {}
                return false;
        }

    Thanks DrClap for your reply. Everything you said is right. It is not easy to make them alternate since SetState() could be called from different places where the state could be anything else but a status message. Like a GREETING message for example. It is a handshaking message but not a status message.
    Again as you said, There is a reason I can't call sendMessage() inside setState().
    The only way I was able to do it is by having a counter of the number of notifies that have been called. Every time notify() is called a counter is incremented. Now instead of just checking if "changed" flag is true, I also check if notify counter is greater than zero. If both true, I send the message. If "changed" flag is false, I check again if the notify counter is greater than zero, I send the message. This way it works, but it is kind of a patch than a good design fix. I am yet to find a good solution.
    Thanks,
    B.D.

  • Error while offsetting a variable

    Hello Experts
    I want to display the data for last 5 years in my query. So I tried using the SAP exit variable Current Calendar Year (0CYEAR) and the offset it by 5. However, I am getting the following error message for the query "System error in program SAPLRR12 and form REP_ASSIGN_INITIAL_OPT-01"
    Any Help on this is appreciated and points will be assigned.
    Thanks

    Thanks Chetan for your prompt reply. I have assigned points.
    But I would appreciate if you help me clear my understanding of offseting a variable.
    Say if the Current Calendar Year variable returns 2008, then will offseting that variable by 5 return me the data for years 2008, 2007, 2006, 2005 , 2004. Or, will it just return me the data for 2008 - 5 = 2004 only.
    Thanks
    Rishi

  • Error while Creating Presentation variable

    Hi,I am new to OBIEE
    I am facing this error:
    "A numeric value was expected (received "max("Sales Measures".Dollars)").
    Error Details
    Error Codes: EHWH2A7E"
    1.I am using paint rpd.I want to use presentation variable.
    2.So i took two column in criteria 1.Region 2. Dollars
    3.In Dollars edit formula ,I created presentation variable i.e. @{Doller_presentation}{max("Sales Measures".Dollars)} in the column formula.
    4.And In the same column i use filter
    Add ->presentation variable->variable exp =Doller_presentation and default =max("Sales Measures".Dollars)
    5.I have added this request on dashboard page,but error is coming.
    6.Also i have created dashboard prompt,
    Set presentation variable to "Doller_presentation"
    and in column formula :@{Doller_presentation}{max("Sales Measures".Dollars)}
    and took that prompt on the same dashboard page.
    so promt with 2 values are coming.1.All choces 2.13087528..may be ths is max value of dollar but on click its showing error as
    "Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 42021] The query does not reference any tables. (HY000)
    SQL Issued: SELECT 13087529 FROM Paint ORDER BY 1"
    I am confuse abt use of presentation variable
    Please Help,
    Thanks
    Kapil
    [email protected]
    Edited by: user13098263 on May 9, 2010 10:58 PM
    Edited by: user13098263 on May 9, 2010 11:01 PM
    Edited by: user13098263 on May 9, 2010 11:02 PM
    Edited by: user13098263 on May 9, 2010 11:04 PM

    Hi Rachit
    You answered my doubt.This one really works . Thanks a lot !
    But i have one more doubt i.e if have created the Presentation variable in the dashboard prompt and I want to use it in a report
    i.e the scenario is If I have created a new column i.e " Revised Salary " in the Presentation Services and want the values to be entered there dynamically upon end users choice. For ex the end user selecrts value of 1 then the report would display an increament of 500 to all the employees in the " Revised Salary " column and if the end user select value of 2 .. the report would display a decrement of 500 in the " Revised salary column".
    I am getting the following error :
    ========================================================================
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 59001] Binary Logical operation is not permitted on VARBINARY, INTEGER operand(s). (HY000)
    SQL Issued: SELECT "D0 Time"."T05 Per Name Year" saw_0, "D2 Market"."M04 Region" saw_1, "D4 Product"."P01 Product" saw_2, "D1 Customer"."C1 Cust Name" saw_3, "F1 Revenue"."1-01 Revenue (Sum All)" saw_4, CASE WHEN 0='1' then "F1 Revenue"."1-01 Revenue (Sum All)" +500 else "F1 Revenue"."1-01 Revenue (Sum All)" - 500 end saw_5 FROM "Sample Sales" ORDER BY saw_0, saw_1, saw_2, saw_3
    ========================================================================
    Please NOTE : The column on which I want to do an increament is : "F1 Revenue"."1-01 Revenue (Sum All)"
    Thanks

  • Error message into a Variable.

    Dear users,
    I have a rather usual (unusual from the weekend beers for me though!!) query which I can't figure out a proper way to implement.
    My requirement is like this:
    I have a message class in which I want to define a text 'Employee number & not found'.
    I want to use this in the program, but not to raise this error. Instead, I want to move this error message with the Employee number into a Character(200) variable.
    So instead of using MESSAGE e0xx(messageclass) USING employee number, I would like to move the error text into a variable which looks like:
    lv_text = e0xx(messageclass) USING '1234'   which stores the text 'Employee number 1234 not found' in lv_text.
    How would I acheive it??
    Thanks, V!

    Try tis way
    message e999(00) with i_emp-empno into lv_text.
    press f1 in message will provide you more details

Maybe you are looking for

  • Bonjour printing to HP AIO printer

    While trying to get a pair of HP 3180 printers working, I found that I had to install DIFFERENT drivers for the one that was directly connected and one that was connected via Bonjour. If I used the wrong driver, I would get a 9672 error. I am also tr

  • Workbook Text Elements are missing After Upgrade to BI7.0

    Hi All I am unable to see "Text Elements" in Workbook which is migrated from BW3.x to BI 7.0. I am using Windows XP, MS-office 2007, GUI 710 FEP5. workbook is working fine with Bex 3.0 I had checked all the pre- requisite for BI 7.0 and BEx . Please

  • From a consumer's point of view (a recent purchaser of an iMac G5)

    I understand that new models come out all the time. Nevertheless, the iMac G5s basically just came out. People, like me, who just bought one did not feel they were buying it at the end of a life cycle, but rather at the beginning of one. Up until yes

  • Internal Mail Server IP Address

    I recently starting working in a new office that runs their Exchange email server internally, so in my Outlook settings it just lists a local domain as my Server. I would like to be able to receive my emails from my phone but the IT department won't

  • Error Message - "Time Interval is not valid for dummy activities"

    Friends, I am trying to create a planned order on a resource at a plant. However it shows up an error message. An application program called an LCA routine. The following error occurred: Time interval is not valid for dummy activities. Probable cause