Dynamic update of calendar month in titles

Hi,
I'm running a YTD report. When I open the report, I have the calendar/month button defaultet to the previous month (e.g.03/2005). If I select another month e.g.11/2004. I need to calculate YTD current year for selected month 11/2004, YTD previous year e.g. 11/2003, total previous year e.g. 2003, Variance and update the columns with the months e.g.YTD112004, YTD112003, TY2003, VAriance%. How do I translate the month, I selected to the columns title and values? Could you please explain the entire process?
Thx,
Ramona

Hello all ,
  I am new in BW, in learning stage, working on devlopment server 3.0,I have created the generic extracter view with vbrk, vbrp data ,While uploding the data from PSA to cube system gives the error the sid is not found for perticule type of Unit,
so i wanted to delete the complete record in Transfer rule , How can i do with the coding .
system soding in unit as follows :
FORM INVERT_UNIT
  USING    I_RT_CHAVL_CS      TYPE RSARC_RT_CHAVL
           I_THX_SELECTION_CS TYPE RSARC_THX_SELCS
  CHANGING C_T_SELECTION      TYPE SBIWA_T_SELECT
           E_EXACT            TYPE RS_BOOL.
$$ begin of inverse routine - insert your code only below this line-
  DATA:
    L_S_SELECTION LIKE LINE OF C_T_SELECTION.
An empty selection means all values
  CLEAR C_T_SELECTION.
Selection of all values may be not exact
  E_EXACT = RS_C_FALSE.
$$ end of inverse routine - insert your code only before this line -
ENDFORM.
Regards,
Milind

Similar Messages

  • Dynamic selection of Calendar month/year

    I need to create a dynamic combo for calendar month/year, which will display the last 3 months.
    I have a query that displays the cumulated amounts for the last three months and I need to have a combo with the option to filter the query for only one of these months...
    How can I do that in Visual Composer?
    Thanks in advance,
    Cris

    Hi Cris,
    The simplest way is to create a service that's returns the correct month and use it as dynamic list for the drop-down.
    Hope it helps,
    Shay

  • Dynamically updating the window title?

    Is there a way to dynamically update the JFrame window title of my program?

    The "substring" method allows you to get any subpart
    of a String (and thus, in effect, "subtract" characters
    from a String).
    Please take a closer look at
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html
    Please don't ask every little question.

  • Microsoft 2010 exchange not updating my calendar and contacts

    I use Microsoft Office 2010 (exchange server) for my email, calendar and contacts. My email on both my iPhone (4) and iPad (4) works fine. However after a software update a few months ago, my calendar no longer updated on either my iphone or ipad.
    The calendar and contacts are set to the default exchange setting but neither is updating. I deleted the exchange account (on my ipad only) and then added it back...now ALL of my birthdays and reoccuring appointments that were in my calendar prior to the software update are gone. The birthdays and reoccuring stuff still shows on my iphone HOWEVER, any new appointment that I have added don't show up on either device. I was going to upgrade to the iphone 6 when it comes out but am having second thoughts since I can't get my calendar to sync with any new appointments. I never had issues prior to othe update. Any assistance would be MOST appreciated!

    Hello Bev76,
    Thanks for participating in the Apple Support Communities.
    It sounds like contacts and calendars on your iPad are not being synced to your iPhone 5, but the data syncs from iPhone to iPad.
    If you are using iCloud for your contacts and calendars, start with the troubleshooting steps in the "iOS" or "Troubleshooting on iOS devices" sections of these articles:
    Get help using iCloud Contacts - Apple Support
    iCloud: Troubleshooting iCloud Calendar - Apple Support
    All the best,
    Jeremy

  • Dynamic update of safety stock in SAP R/3 systems (ECC 5.0 version)

    Hi Friends,
    Forgive my newness to SAP. Let me explain the problem i am facing in SAP. I want to identify the parameters to dynamically update the finished goods safety stock for each depot by SKU wise.
    Current process :- Safety stock is calculated manually and updated by using Transaction code MS02 in the system.
    It would be highly useful if i know the flow in SAP system and how the current process can be changed?
    If more info is required i'm ready to give.
    Thanks in advance

    Hi Mario Adler,
    Thanks a ton for ur answer.
    Will it update safety stock for finished goods in each depot by SKU wise? Raw material safety stock isn't my concern.
    project description :  Manufacturer of chemical goods , 70+ products,350 skus
    Distribution : factory to depot (bulk volume)
                          Mother go-down to depot(Stock transfer)
                         No of depots :33,factory:3,mother go-down -1
    Sales forecasting is done in excel for every month and updated to SAP via  BAPI. After that DRP,MRP and other runs takes place.
    What are all the areas i need to touch in to get the parameters to update the safety stock?
    Regards
    Arasu
    Edited by: Arasu_IIM on Apr 26, 2011 12:52 PM

  • Dynamically Updating Content Server Portlets

    [urlHi, I am currently having difficulty dynamically updating content server portlets.  I have a portlet of the following form:[/url]
    ArticleName Author Title Date mystory author1 title1 04/05/01
    story2 author2 title2 06/07/04
    story author3 title3 01/02/03
    So I have this table where each one of the line items is an article in the content server. So, for example the first line item is an article "mystory" by "author1", with title "title1" and date "04/05/01" additionally there is an article text field, but this isn't displayed unless I click on the article name.
    I can set up the basics of this portlet, but when I try to add any real functionality I run into one of two problems.
    First Problem: Passing Information
    I cannot find a way to pass information between content portlets. For instance, if the user would like to "re-sort" this table based on "date", I would like to have the user click on the "date" column heading and then reload the page. To do so, I would have to pass the section name back to the page so that it could resort based on this data. I have not found anyway to effectively pass information to a content server portlet. I am building these pages through use of the presentation template framework (so I can have access to the content items) but that seems to change the way portlets are handled.
    I got around this limitation with a regular portlet by creating an intermediary page which captures passed information and stores it to the session state. Once the information was in the session state, it is accessible to the portlet on the first page. However, this only works because remote portlets do not change their session id once loaded. Content Server portlets, on the other hand, change their session id after every reload of the browser or page change. I can send information from a content server portlet to an intermediary page, but I cannot send it back to the portlet because the session id has changed so I have no idea of knowing where to send the information. I can write it to a session state, but by the time I return to the portal page, the content server has changed its session id so it does not know where to look any longer.
    I suppose it would be possible to create an application state variable and append it with some static token (if there is some static variable per portal session) but I would rather not have to deal with application variables if at all possible.
    Second Problem: Dynamically Updating PCS Tags
    Even if I were able to the pass information back to my content server portlet, I run into another issue. The easiest way to sort content server items is using the filter command in the pcs:foreach tag. So, if I wanted to sort by author name, I could do something like the following <pcs:foreach var="item" expr="filter(folderByName('content'), filtered.name == '"name")" or something like that (the syntax may be incorrect, I just wrote this off the top of my head). However, it appears that the way the presentation templates are compiled goes in the order of PCS tags THEN JSP. So I would have no way of dynamically changing the variable on which I sort. For example, if I clicked on "Date" above in my table, I would like to be able to dynamically change my code so that I sort on date, and not name. I cannot find a solution to this problem.
    My workaround is to use the pcs tags to write out all the possible sortings to java array objects. This gives me access to the data on a JSP level and based on whatever the user will chose, I could then display that array. While this works, it is extremely ghetto and inefficient. Any help or suggestions would be fantastic.
    Thanks a lot,
    Jason Grauel

    You can use just about any javascript you want in any Content Server presentation template including ones that are used for portlets.
    However, you should be careful to name javascript functions and global variables uniquely so that they do not conflict with any other javascript on the page. To do this, you can append the item id to function and variable names, for example,
    function doSomething<pcs:value expr="pcs_id"></pcs:value>() {
    return true;
    Randy

  • GUI of a calendar (monthly)

    I tried to built a GUI for a Kalender but i need explanation with comments to understand the code. Can someone help me?
    I work with this code, it is form this forum (post at the end of line):
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.text.*;
    public class MightyMouse1
         static class SimpleCalendar
              extends JPanel
              private static final String[] sDays=
                   new DateFormatSymbols().getWeekdays();
              private static int sStartDay= 0;
              static {
                   for (int i= 0; i< sDays.length; i++)
                        if (sDays.length() <= 0)
                             sStartDay++;
              private static final int[] sMonthDays=
                   {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
              private Calendar mDate;
              private int mCellWidth= 1;
              private int mCellHeight= 1;
              private int mStartDay;
              private int mDaysInMonth;
              public SimpleCalendar()
                   mDate= Calendar.getInstance();
                   addMouseListener(new MouseAdapter() {
                        public void mouseClicked(MouseEvent e) {
                             hitTest(e.getPoint());
                             e.consume();
              public void setDate(Date date)
                   mDate.setTime(date);
                   repaint();
              public Date getDate() { return mDate.getTime(); }
              public Dimension getPreferredSize() { return getMinimumSize(); }
              public Dimension getMinimumSize() { return new Dimension(180,180); }
              public void paint(Graphics g)
                   g.clearRect(0, 0, getSize().width, getSize().height);
                   doMonth(g);
              private void hitTest(Point p)
                   int cellX, cellY, dom;
                   cellX= (int) p.x / mCellWidth;
                   cellY= (int) p.y / mCellHeight;
                   if (cellY != 0) { // not the days title bar
                        dom= cellX+1+((cellY-1)*7)-mStartDay;
                        if (dom > 0 && dom <= mDaysInMonth) {
                             mDate.set(Calendar.DAY_OF_MONTH, dom);
                             setDate(mDate.getTime());
              private boolean leapYear(int year)
                   if ((year % 400) == 0)
                        return(true);
                   if ((year > 1582) && ((year % 100) == 0))
                        return(false);
                   if ((year % 4) == 0)
                        return(true);
                   return(false);
              private void drawMonth(Graphics g, int startDay, int days, boolean special)
                   mStartDay= startDay;
                   mDaysInMonth= days;
                   mCellWidth= getSize().width / 7;
                   mCellHeight= getSize().height / 7;
                   int day= mDate.get(Calendar.DAY_OF_MONTH);
                   FontMetrics metrics= g.getFontMetrics();
                   // Draw the days of the week (M, T, W ...) on the top line
                   for (int col= 0, x= 0, y= 0; col < 7; col++) {
                        String s= String.valueOf(sDays[col+sStartDay].charAt(0));
                        // Make (x,y) the top left of the cell
                        x= col * mCellWidth;
                        y= 0;
                        // Make (x,y) the center of the cell
                        x= x + (mCellWidth/2);
                        y= y + (mCellHeight/2);
                        // Move (x,y) to accomodate the text
                        x= x - (metrics.stringWidth(s)/2);
                        y= y + (metrics.getAscent()/2);
                        g.setColor(Color.blue);
                        g.drawString(s, x, y);
                   // Draw the days of the month starting one line down
                   for (int i= 1, row= 1, col= startDay, x= 0, y= 0; i <= days; i++) {
                        if (special && (i == 5))
                             i += 10; // skip 10 days (Oct 5-14) in October, 1582
                        String s= "" + i;
                        // Make (x,y) the top left of the cell
                        x= col * mCellWidth;
                        y= row * mCellHeight;
                        if (i == day) {
                             g.setColor(new Color(255,255,200));
                             g.fillRect(x, y, mCellWidth, mCellHeight);
                        // Make (x,y) the center of the cell
                        x= x + (mCellWidth/2);
                        y= y + (mCellHeight/2);
                        // Move (x,y) to accomodate the text
                        x= x - (metrics.stringWidth(s)/2);
                        y= y + (metrics.getAscent()/2);
                        g.setColor(Color.black);
                        g.drawString(s, x, y);
                        col++;
                        if (col > 6) {
                             col= 0;
                             row++;
              private void doMonth(Graphics g)
                   int month= mDate.get(Calendar.MONTH);
                   int year= mDate.get(Calendar.YEAR);
                   int daysInMonth;
                   int startOfMonth;
                   int y= year - 1;
                   boolean leap= leapYear(year);
                   boolean special= ((year == 1582) && (month == 9));
                   boolean pre= ((year < 1582) || ((year == 1582) && (month <= 9)));
                   if (pre)
                        startOfMonth = 6 + y + (y/4);
                   else
                        startOfMonth = 1 + y + (y/4) - (y/100) + (y/400);
                   if (leap && month == 1)
                        daysInMonth= 29;
                   else
                        daysInMonth= sMonthDays[month];
                   for (int i = 0; i < month; i++)
                        startOfMonth += sMonthDays[i];
                   drawMonth(g, startOfMonth % 7, daysInMonth, special);
         static class FancyCalendar
              extends JPanel
              private static final String[] sMonths=
                   new DateFormatSymbols().getMonths();
              private JComboBox mComboMonths;
              private JComboBox mComboYears;
              private JLabel mLabel;
              private SimpleCalendar mCalendar;
              private int mSelectedMonth;
              private int mSelectedYear;
              private Dimension mMinimumSize;
              private int mFirstYear;
              private int mLastYear;
              private Date mDate;
              private boolean mShowTime;
              public FancyCalendar() { this(-10, 10); }
              public FancyCalendar(int firstYear, int lastYear)
                   mFirstYear= firstYear;
                   mLastYear= lastYear;
                   adjustYears();
                   setLayout(new BorderLayout(2,2));
                   mCalendar= new SimpleCalendar();
                   add(mCalendar, BorderLayout.CENTER);
                   setupCombos();
                   setDate(mCalendar.getDate());
              public void setDate(Date date)
                   mDate= date;
                   mCalendar.setDate(date);
                   Calendar cal= Calendar.getInstance();
                   cal.setTime(date);
                   mSelectedMonth= date.getMonth();
                   mSelectedYear= cal.get(Calendar.YEAR);
                   mComboYears.setSelectedIndex(mSelectedYear-mFirstYear);
                   mComboMonths.setSelectedIndex(mSelectedMonth);
              public Date getDate() { return mDate; }
              public Dimension getPreferredSize() { return getMinimumSize(); }
              public Dimension getMinimumSize() { return mMinimumSize; }
              private void adjustYears()
                   Date today= new Date();
                   if (mFirstYear < 0 && mFirstYear >= -50)
                        mFirstYear= 1900+ today.getYear() +mFirstYear;
                   if (mLastYear > 0 && mLastYear <= 50)
                        mLastYear= 1900+ today.getYear() +mLastYear;
                   if (mFirstYear < 1900)
                        mFirstYear= 1900;
              private void setupCombos()
                   mMinimumSize= new Dimension(170,180);
                   JPanel p= new JPanel();
                   mComboMonths= new JComboBox(sMonths);
                   mComboYears= new JComboBox();
                   p.add(mComboMonths);
                   p.add(mComboYears);
                   add(p, BorderLayout.NORTH);
                   for(int i= mFirstYear; i<= mLastYear; i++)
                        mComboYears.addItem(""+i);
                   mComboMonths.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e)
                             if(mComboMonths.getSelectedIndex() != mSelectedMonth) {
                                  mSelectedMonth= mComboMonths.getSelectedIndex();
                                  Calendar cal= Calendar.getInstance();
                                  cal.setTime(getDate());
                                  cal.set(Calendar.MONTH, mSelectedMonth);
                                  setDate(cal.getTime());
                   mComboYears.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e)
                             int y= mComboYears.getSelectedIndex() +mFirstYear;
                             if((y > 0) && (y != mSelectedYear)) {
                                  mSelectedYear= y;
                                  Calendar cal= Calendar.getInstance();
                                  cal.setTime(getDate());
                                  cal.set(Calendar.YEAR, mSelectedYear);
                                  setDate(cal.getTime());
                                  // If date was feb 29 and new year is not leap,
                                  // then the month will have moved on one, so re-set
                                  // the combo box
                                  mComboMonths.setSelectedIndex(
                                       cal.get(Calendar.MONTH));
    public static void main(String[] argv)
    JFrame frame= new JFrame();
    frame.getContentPane().add(new FancyCalendar());
    frame.pack();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    It is from the forum here:
    http://forum.java.sun.com/thread.jspa?forumID=31&threadID=
    This post:
    [Dukes Earned 470] dchsw
    Posts:449
    Registered: 9/1/98
    Re: Developing a calendar
    Nov 6, 2003 6:37 AM (reply 3 of 6)

    > I tried to built a GUI for a Kalender but i need explanation with comments to understand the code.
    http://java.sun.com/docs/books/tutorial/java/index.html
    http://java.sun.com/docs/books/tutorial/uiswing/
    Let us know if you have a specific question.
    ~

  • Dynamic Update in real time with slider control

    We have requirements to display complex data in a graphical format. So far this has gone well by leveraging ADF and DVT components (dvt:Map, dvt:gauge, dvt:bargraph, af:tables, af:inputNumberSlider, etc.); however, we recently have been asked to add real-time animation of these controls over time. In brief, the user requires the ability to control the on-screen visualization of data by sliding the control on an af:inputNumberSlider (or equivalent) that represents a multi-month time scale. While sliding this control, the user expects to see the data visualization controls dynamically update in real time, keeping up with the rate at which the user moves the slider control. Think of this like a flip book animation where the slider controls the page the user is looking at and they can flip through the pages forwards or backwards at any desired speed. The time slider increments are one hour.
    Our current application architecture:
    Oracle ADF Fusion Web Application (v 11.1.1.5)
    EJB 3.0
    Eclipselink
    Oracle 11g
    Any kind of help is highly appreciated.
    Thanks,
    Mehabub

    Hi,
    the af:inputNumberSlider does not provide this functionality. Your alternative is a custom component (or any component that raises a client JS event) and call an af:serverListener in a custom event to send the notification to the server.
    Frank

  • Currency conversion by Calendar month in the query?

    Hellow...
    Users want DB currencies when executing query at first. And then want to change currency conversion by Calendar month in the query, if navigating by target currency. Tried as created TEST Currency Translation Key. Database currency is different currencies.
    Appreciate your help.
    Don.

    Hi,
    Create Currency conversion type using Trans: RRC1.
    1.Specify your Exchange rate type.                     
    2.Dynamic Exchange rate type
    3.Source curency from data rec.
    4.Fixed currency say USD.
    5.Select Variable Time reference "Start Month" and Special Info Object - 0calmonth
    Secondly In the key figure field to be converted in the query,   select properties - select the currency conversion key name .
    Thanks,
    Nagesh
    Sony Singapore

  • Dynamically updating UI (binding, maybe?)

    So I am writing an export plugin for lightroom. I need to update the export UI dynamically after getting a result from Lrhttp.post. The code is underlined below. Basically, how can I display to the user that their login is successful by dynamically updating the export UI after they click the submit button (I want the last row to display whether the login was a success or not)? I could not find a UI refresh function in the LR API.
    I tried looking at Lr.Binding to try to bind resultlogin but that did not work as intended. Any suggestions? Thanks!
    ExportDialogSections = {}
    function ExportDialogSections.sectionsForTopOfDialog(f, propertyTable)
               return {
                                  title = "...",
                                  f:row {
                                            spacing = f:control_spacing(),
                                            f:static_text {
                                                      title =  "Username",
                                                      width = share 'labelWidth',
                                                      alignment = 'right',
                                            f:edit_field {
                                                      value = bind 'Username',
                                                      width_in_chars = 40
                                  f:row {
                                            spacing = f:control_spacing(),
                                            f:static_text {
                                                      title = "Password",
                                                      width = share 'labelWidth',
                                                      alignment = 'right',
                                            f:password_field {
                                                      value = bind 'Password',
                                                      width_in_chars = 40
                                  f:push_button{
                                            title="Submit",
                                            action = function( button )
                                                      import "LrTasks".startAsyncTask( function()
                                                                resultlogin = LrHttp.post(...)
                                                      end )
                                                      if resultlogin == "success" then
                                                                --send username to exporttask and display username is valid
                                                                sendUsername(...)
                                                      else
                                                                sendUsername(...)
                                                      end
                                            end,
                                  f:row {
                                            spacing = f:control_spacing(),
                                            f:static_text {
                                                      title = resultlogin,
                                                      width = share 'labelWidth',
                                                      alignment = 'right',
    end
    return ExportDialogSections

    You have to assign resultLogin as a member of a (observable) property table, then bind to that member by name, for example:
    f:static_text {
        title = LrView.bind( 'resultlogin' ),
        width = share 'labelWidth',
        alignment = 'right',
    In the case of export dialog box, the export settings themselves are a usable property table. In other cases, you may need to create one yourself - see LrFunctionContext, in which case the only trick is to make sure that the property table is specified as bind_to_object.
    There are examples galore in my plugin's source code:
    http://www.robcole.com/Rob/ProductsAndServices
    Rob

  • Domains for calendar month and quarter

    Hi,
    I have a fields that are calendar month and quarter fields. Are there a domains for these fields for use to check the data to be filled or would Ihave to write code to check for the format before saving the data intot the table?
    Thanks
    Will

    Hi Arun,
    Actually I am referring to a table that I created a Z data element but I am using CHAR for types. But for the Fiscal Year I created the Z data element with the domain GJAHR. I am looking for a domains for creating Z data elements for the calendar month and quarter. I would suppose the domain GJAHR will check for the correct data format when I update my table to the field Z fiscal Year.
    Thanks & Regards

  • Creating calendar-Month names shrink for no apparent reason?

    In the midst of creating a calendar and for no apparent reason, the Month Year title on every page shrinks to a barely legible size and cannot be repaired.  Has anyone else had this problem and found a solution?  This is the third time it has happened - most recently while reproducing on the calendar on which it last happened.

    No - But I believe that printing of iPhoto projects is no longer supported for iPhoto '08 - you may have to upgrade to iPhoto '09 or '11 to actually print the calendar
    LN

  • Change calendar month view in iOS 6.

    Can calendar month view be changed in iOS 6? I want my weekend to complete the weeks as I am able to do in iCal.

    I have the same problem. What happened?!?!?
    This is terrible and only occurred over last few days.
    If you hit magnifying glass goes to search, if you hit the computer icon goes as far as split screen.
    Tried to go under general to see if calendar view options but nothing....
    This is horrendous for people that have more than two items in a day ( how about the ENTIRE world)!!!
    Please fix!!!

  • Update after 2 months breaks my squirrelmail / imap authentication

    Ok, updated after 2 months, normally expecting some issues, but nothing this bad.
    Squirrelmail is used for remote hosts to access my server mail over internet.
    This update broke authdaemon I think.
    Here's output of authtest:
    [root@cyclops log]# authtest mark pw(redacted)
    ERR: authdaemon: s_connect() failed: No such file or directory
    Authentication FAILED: No such file or directory
    [root@cyclops log]#
    Which is the same output as in my errors.log when a client tries to access imap. 
    How do I turn verbosity up to get more useful output?
    EDIT:  SOLVED
    Forced REINSTALL of courier-authlib fixed it.  WHY WOULD IT DO THAT?
    That was part of the update I believe, but why would it bork the install on a basic update?
    Last edited by 86turbodsl (2010-04-08 10:19:23)

    Same problem here. For whatever reason, courier-impa is starting authdaemond and also stopping authdaemond directly after running the courier-processes in its init-script.
    I hacked the script a bit, now it's working properly:
    At the top, insert a line
    AUTO_AUTHDAEMON="false"
    Change the first if-clause to read:
    if [ $AUTO_AUTHDAEMON == "true" ] ; then
    and do the same for the second if-clause containing $AUTO_AUTHDAEMON.
    That's it.
    My complete init-script:
    CI_DAEMONS=
    AUTO_AUTHDAEMON="false"
    [ -f /etc/conf.d/courier-imap ] && . /etc/conf.d/courier-imap
    [ -z $AUTO_AUTHDAEMON_LAG ] && AUTO_AUTHDAEMON_LAG=2
    . /etc/rc.conf
    . /etc/rc.d/functions
    case "$1" in
    start)
    if [ $AUTO_AUTHDAEMON == "true" ]; then
    /etc/rc.d/authdaemond start
    sleep ${AUTO_AUTHDAEMON_LAG}
    fi
    if [ ! -f /var/run/daemons/authdaemond ]; then
    echo "ERROR: authdaemond is not running"
    stat_fail
    exit 1
    fi
    for daemon in $CI_DAEMONS; do
    stat_busy "Starting Courier ${daemon}"
    /usr/lib/courier-imap/${daemon}.rc start
    if [ $? -gt 0 ]; then
    stat_fail
    else
    add_daemon $daemon
    stat_done
    fi
    done
    if [ $AUTO_AUTHDAEMON == "true" ]; then
    /etc/rc.d/authdaemond stop
    fi
    stop)
    for daemon in $CI_DAEMONS; do
    stat_busy "Stopping Courier ${daemon}"
    /usr/lib/courier-imap/$daemon.rc stop > /dev/null
    if [ $? -gt 0 ]; then
    stat_fail
    else
    rm_daemon $daemon
    stat_done
    fi
    done
    restart)
    $0 stop
    sleep 1
    $0 start
    echo "usage: $0 {start|stop|restart}"
    esac
    exit 0
    Last edited by mauritzius (2010-04-12 14:52:21)

  • How to merge calendar month dimension on dashboard??

    Hi All
    can anyone get me solution for below issue?
    Report : Vendor Performance
    Reporting tool : Dashboard
    Selection : Vendor1
    Requirement : Should show the report as you see in pic 1
    1. I have three different KPI's which has to be shown in same table like u see in Pic 1 and each KPI values comes from different queries.
    2. When i map this data to excel i am getting values as you see in Pic 2, Pic 3 and Pic 4.
    3. if you see Pic 1 (data comes from query 1)  there is data for JAN where as we dont have JAN data for Pic 2( or query 2).
    Now my question is how we can combine all this values as we see in Pic 1?.. I need all values to be shown for respective month. for example if there is no data for march and it should be blank.
    Can it be done on BW side if not in BO?\
    Note : I am able to done this on webi report by merging calendar month for all three query.
    Thanks in advance

    Hi Vijay
    It can be on BW side also. Check with your BW team if all three queries are built on different infoproviders if yes built a multiprovider on top of all infoproviders and create a new query. This query will have calendar month and your KPI1, KPI 2 and KPI3 key figures in it.
    You can use this single query in Dashboard now.
    As suggested by others you can use webi merged dimension functionality or HLOOKUP also.
    Regards
    Shabnam

Maybe you are looking for

  • Match Pattern does not function properly when searching for a null character

    I'm using Match Pattern to extract a null terminated string from a response I'm getting from a device on a serial port. The VI is attached and below is a screenshot of the block diagram. It works just fine with index set to 0, 1, or 2. When index is

  • Windows 8.1 Pro with Media Center - Problems with Activation

    Hello. I was one of those who tried Windows 8 early and got a Windows Media Center key for free. Today through Dreamspark Premium I got a Windows 8.1 key. I normally used my new Windows 8.1 key and Windows 8.1 were activated successfully and because

  • Changing a jsp in application

    I have a java web application that is running on Sun's web server for a few years. It consists of jsp pages. In one of the jsp pages, there is a string for database. The database location and name is changing. I can change the jsp page in notepad wit

  • Configuring Device - Device not reachable

    My new Envy 4500 _IS_ on my network. My new MacBook Pro _IS_  on my network. I get to the configuration step and all looks good until I get the response below: "Configuring Device 0 Select Device 0 Confirm Wreless Settings O Select Network Configurin

  • IWeb '08 and missing comments

    I know that there has been some discussion on other threads about comments suddenly disappearing from sites that were made in iWeb '06 and then converted to iWeb '08. (All of my comments disappeared after upgrading...) Before I give up and just accep