Problum in view

Hi All
I have view
CREATE OR REPLACE VIEW order_tracker2 AS
         SELECT
            s.sale_order_no,
            s.party_name,
            c.vip_cutomer,
            c.agent_name,
            s.del_date,
            sum(NVL(sd.total_qty,0)) ITEM,
            sum(NVL(sd.total_price,0)) VALUE,
            s.TYPE,
            s.comment1,
            S.PERFORMA_TYPE,
            C.CURRENCY,
           CD.country,
           CD.CITY,
           CD.PIN_CODE,
         SA.edit_date,
         DM.delivery_status
        FROM
         sale_order s,sale_order_audit SA,
         sale_order_detail sd,
         customer_master c,
         CUSTOMER_DETAIL CD,
     delivery_master DM
           WHERE s.id=sd.id AND s.id=sa.id(+) and S.SALE_ORDER_NO = DM.SALE_ORDER_NO(+) AND
           s.cust_id=c.cust_id and C.CUST_ID=CD.CUST_ID AND CD.ADDRESS_TYPE ='DELIVERY ADDRESS'
           GROUP BY s.SALE_ORDER_NO,
                    s.party_name,
                    s.comment1,
                    s.del_date,
                    s.order_date,
                    c.vip_cutomer,
                    c.agent_name,
                    C.CURRENCY,
                    CD.COUNTRY,
                    CD.CITY,
                    CD.PIN_CODE,
                    S.TYPE,
                    S.PERFORMA_TYPE,
              SA.edit_date,
              DM.DELIVERY_STATUS;
SQL> desc sale_order
Name                                      Null?    Type
ID                                        NOT NULL NUMBER
SALE_ORDER_NO                                      VARCHAR2(50)
ORDER_DATE                                         DATE
PARTY_NAME                                         VARCHAR2(100)
DEL_DATE                                           DATE
COMMENT1                                           VARCHAR2(200)
CUST_ID                                            NUMBER
DISCOUNT                                           NUMBER
SEASON_YEAR                                        VARCHAR2(20)
TYPE                                               VARCHAR2(50)
SHOW                                               VARCHAR2(100)
VAT_PERSENTAGE                                     NUMBER
VAT_PRICE                                          NUMBER
PERFORMA_TYPE                                      VARCHAR2(50)
AGENT_NAME                                         VARCHAR2(50)
CURR                                               VARCHAR2(15)
SHIP                                               VARCHAR2(20)
VIP                                                VARCHAR2(100)
CONTACT_NO                                         VARCHAR2(15)
VAT_NO                                             VARCHAR2(100)
PAYMENT_TERM                                       VARCHAR2(500)
CONTACT_PERSON                                     VARCHAR2(100)
DELIVERY_ADDRESS                                   VARCHAR2(300)
SHOWROOM_ADDRESS                                   VARCHAR2(300)
INVOICE_ADDRESS                                    VARCHAR2(300)
SQL> desc sale_order_audit;
Name                                      Null?    Type
ID                                                 NUMBER
EDIT_DATE                                          DATE
PERFORMA_TYPE                                      VARCHAR2(50)
SQL> desc sale_order_detail
Name                                      Null?    Type
ID                                                 NUMBER
PROD_ID                                            VARCHAR2(20)
STYLE                                              VARCHAR2(100)
COLOR                                              VARCHAR2(20)
XS                                                 NUMBER
S                                                  NUMBER
M                                                  NUMBER
L                                                  NUMBER
XL                                                 NUMBER
PCS                                                NUMBER
TOTAL_QTY                                          NUMBER
COMMENTS                                           VARCHAR2(100)
GRAND_TOTAL                                        NUMBER
PRICE_TOTAL                                        NUMBER
DISCOUNT_PRICE                                     NUMBER
TOTAL_PRICE                                        NUMBER
PRICE                                              NUMBER
SQL> desc customer_master
Name                                      Null?    Type
CUST_ID                                            NUMBER
VIP_CUTOMER                                        VARCHAR2(100)
CUSTOMER_TYPE                                      VARCHAR2(50)
AGENT_NAME                                         VARCHAR2(50)
CUSTOMER_NAME                                      VARCHAR2(100)
JOIN_DATE                                          DATE
WEB_ADDRESS                                        VARCHAR2(100)
SHIPPED_FROM                                       VARCHAR2(20)
AC_NAME                                            VARCHAR2(100)
AC_NO                                              VARCHAR2(20)
VAT_APPLICABLE_OR_NOT                              VARCHAR2(10)
VAT_NO                                             VARCHAR2(100)
DISCOUNT_TYPE                                      VARCHAR2(100)
CURRENCY                                           VARCHAR2(15)
CONTACT_NO                                         VARCHAR2(15)
PAYMENT_TERMS                                      VARCHAR2(500)
CONTACT_PERSON                                     VARCHAR2(100)
AGENT_CODE                                         VARCHAR2(20)
VAT_PERSENTAGE                                     NUMBER
SQL> desc customer_detail
Name                                      Null?    Type
CUST_ID                                            NUMBER
ADDRESS_TYPE                                       VARCHAR2(20)
CONTACT_NAME                                       VARCHAR2(100)
MOBILE_NO                                          VARCHAR2(20)
DELIVERY_ADDRESS                                   VARCHAR2(300)
OFF_CONTACT_NO                                     VARCHAR2(20)
EMAIL_ID                                           VARCHAR2(50)
CITY                                               VARCHAR2(50)
PIN_CODE                                           VARCHAR2(50)
COUNTRY                                            VARCHAR2(30)
CONTACT_NAME_1                                     VARCHAR2(100)
CONTACT_NAME_2                                     VARCHAR2(100)
MOBILE_NO_1                                        VARCHAR2(20)
MOBILE_NO_2                                        VARCHAR2(20)
OFF_CONTACT_NO_1                                   VARCHAR2(20)
OFF_CONTACT_NO_2                                   VARCHAR2(20)
EMAIL_ID_1                                         VARCHAR2(50)
EMAIL_ID_2                                         VARCHAR2(50)
SQL> desc delivery_master
Name                                      Null?    Type
ID                                        NOT NULL VARCHAR2(20)
SALE_ORDER_NO                                      VARCHAR2(50)
SEASON                                             VARCHAR2(30)
CUSTOMER_NAME                                      VARCHAR2(300)
DELIVERY_NOTE_DATE                                 DATE
DISPATCH_DATE                                      DATE
CUSTOMER_ADDRESS                                   VARCHAR2(300)
DELIVERY_ADDRESS                                   VARCHAR2(300)
ACCOUNTS_ADDRESS                                   VARCHAR2(300)
CONTACT_INFORMATION                                VARCHAR2(300)
PAYMENT_TERMS                                      VARCHAR2(300)
SHIPPING_TERMS                                     VARCHAR2(300)
DEL_PERIOD                                         VARCHAR2(100)
SHIPPER                                            VARCHAR2(100)
WEIGHT                                             VARCHAR2(100)
DIMENTIONS                                         VARCHAR2(100)
NUM_OF_CARTONS                                     VARCHAR2(100)
COMMNETS                                           VARCHAR2(300)
CURRENCY                                           VARCHAR2(15)
TOTAL_PCS                                          NUMBER
DELIVERY_STATUS                                    VARCHAR2(50)
CUST_ID                                            NUMBER
{code}
i have only id, cust_id and party_name in sale_order and i want to check the view it was not showing me the customer_name in the view please guide
Thanks And Regards
Vikas Singhal
Edited by: vikas singhal on Aug 12, 2009 5:30 PM
Edited by: vikas singhal on Aug 12, 2009 5:31 PM
Edited by: vikas singhal on Aug 12, 2009 5:32 PM
Edited by: vikas singhal on Aug 12, 2009 5:34 PM
Edited by: vikas singhal on Aug 12, 2009 5:48 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Vikas,
You only added the agent name from the customer master. add customer name also.
CREATE OR REPLACE VIEW ORDER_TRACKER2 AS
SELECT S.SALE_ORDER_NO, S.PARTY_NAME, C.VIP_CUTOMER, C.AGENT_NAME, C.CUSTOMER_NAME, S.DEL_DATE, SUM(NVL(SD.TOTAL_QTY,0)) ITEM, SUM(NVL(SD.TOTAL_PRICE,0)) VALUE, S.TYPE, S.COMMENT1, S.PERFORMA_TYPE, C.CURRENCY, CD.COUNTRY, CD.CITY, CD.PIN_CODE, SA.EDIT_DATE, DM.DELIVERY_STATUS
FROM SALE_ORDER S,SALE_ORDER_AUDIT SA, SALE_ORDER_DETAIL SD, CUSTOMER_MASTER C, CUSTOMER_DETAIL CD, DELIVERY_MASTER DM
WHERE S.ID = SD.ID AND S.ID = SA.ID(+) AND S.SALE_ORDER_NO = DM.SALE_ORDER_NO(+) AND S.CUST_ID = C.CUST_ID AND C.CUST_ID = CD.CUST_ID AND CD.ADDRESS_TYPE = 'DELIVERY ADDRESS'
GROUP BY S.SALE_ORDER_NO, S.PARTY_NAME, S.COMMENT1, S.DEL_DATE, S.ORDER_DATE, C.VIP_CUTOMER, C.CUSTOMER_NAME, C.AGENT_NAME, C.CURRENCY, CD.COUNTRY, CD.CITY, CD.PIN_CODE, S.TYPE, S.PERFORMA_TYPE, SA.EDIT_DATE, DM.DELIVERY_STATUSRegards,
Manu.

Similar Messages

  • Problum in creating view

    Hi i want to create a view based on three table i am getting problum please guide me
    SQL> ed
    Wrote file afiedt.buf
    1 CREATE VIEW order_tracker1 AS
    2 SELECT
    3 s.id,
    4 s.party_name,
    5 s.comment1,
    6 s.del_date,
    7 s.order_date,
    8 sum(sd.total_qty),
    9 sd.discount_price,
    10 c.vip_cutomer,
    11 c.agent_name,
    12 c.shipped_from,
    13 c.payment_terms
    14 FROM sale_order s, sale_order_detail sd,customer_master c
    15 WHERE s.id=sd.id and
    16 s.cust_id=c.cust_id
    17 group by s.id,
    18 s.party_name,
    19 s.comment1,
    20 s.del_date,
    21* s.order_date
    SQL> /
    sd.discount_price,
    ERROR at line 9:
    ORA-00979: not a GROUP BY expression
    Thanks and Regards
    vikas
    Edited by: vikas singhal on May 26, 2009 11:27 PM

    Your script to create view should be like this
    SQL> CREATE VIEW order_tracker1 AS
    2 SELECT
    3 s.id,
    4 s.party_name,
    5 s.comment1,
    6 s.del_date,
    7 s.order_date,
    8 sum(sd.total_qty),
    9 sd.discount_price,
    10 c.vip_cutomer,
    11 c.agent_name,
    12 c.shipped_from,
    13 c.payment_terms
    14 FROM sale_order s, sale_order_detail sd,customer_master c
    15 WHERE s.id=sd.id and
    16 s.cust_id=c.cust_id
    17 group by s.id,
    18 s.party_name,
    19 s.comment1,
    20 s.del_date,
    21 s.order_date,
    22 sd.discount_price,
    23 c.vip_cutomer,
    24 c.agent_name,
    25 c.shipped_from,
    26 c.payment_terms
    27 ORDER by s.id,
    28 s.party_name,
    29 s.comment1,
    30 s.del_date,
    31 s.order_date,
    32 sd.price_total
    33 ;
    Try this.
    Arvind

  • Materiliezed View Replication Problum

    Hello,
    I am working on materiliezed view replication but i have an crucial issue. I have a refresh group wich contain many MVs some are Read only and some are updateble but all are in Fast refresh mode (logs are created on both replication and MV sites on these objects) and are refrentially intigrated to each other i.e thay have parent child relationship with each other as at replication site on base tables.
    When refresh group job runs to refresh these MVs i got the errors
    ORA-02292: integrity constraint (string.string) violated - child record found
    After that job status has changed to break,but in the same time all the panding transactions at the MVs sites are pushed to Replication site i e ( Base tables at replication site and MVs of these tables are syncronized).In order to change the status of job to Normal, i have to disable some constraints(not all) on the MVs and manually run the job .Atfer that job status will become Normal even i enable these constraints with validation.
    What will be the reason ? Are there some MVs trying to complete refresh instead of Fast or increment refresh in this refresh group?If yes how i can trace out MVs and solve this problum?
    Some other information ,
    Replication site running with 10gR2 Enterprize Edition.
    Materiliezed View site running with 10gR2 Standered Edition.
    Thanx.

    You can't control order of refresh of MV in refresh group. So if in master-detail relation FK with on delete restrict clause is defined then when master MV is refreshed and delete was performed, than this error is raised. Similar error is raised when detail MV is refreshed before master MV and insert is performed on detail a there is no master record.

  • Execute view prpblum

    Hi All
    I have view based on three tables it executes well
    but in between i need one column in one of the tables and i alter the table and add a column after this it will craeting problum while i am try to execute it
    it Through the erroe frm:-40505 :ORACLE error unable to perform query
    Regards
    Vikas singhal

    Vikas,
    Try to regenerate the Form again by refreshing the datablocks.
    Also try to lookinto the error messages which its giving,
    FYI once you get the error 40505 :ORACLE error unable to perform query
    press Ctrl_Shift+E , you will get specific error which you are encountering ..
    Hope it helps

  • Can not refresh view data in STRUST

    I am using the JSP (STRUTS) for developing my App.
    I get a list of contact. In bellow it, I make a link for each contacts.
    When i view details of one contact. On click link below.
    My pages:
    listcontact.jsp
    contactdetails.jsp
    When i request a details of contact from list contact -> View successfull.
    But when i refresh the contactdetails.jsp page. I got a message error:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.7 logs.
    I have to use:
    response.setHeader("Cache-Control","no-store");
    response.setHeader("Pragma","no-cache");
    But can't refresh any way this page.
    Plase show me the way to solve it.
    Thanks
    Vu Nguyen

    hi,
    Here are codes
    listdata = new CompanyListData();
    companyList = (ArrayList) session.getAttribute("datalist_company");
    if (companyList == null)
    companyList = (ArrayList) listdata.getCompanyList(datasource);
    session.setAttribute("total", companyList.size()+ " companies");
    session.setAttribute("datalist_company", companyList);
    return (mapping.findForward("success"));
    And for details:
    if ((addressItem==null && companyName!=null)||(addressItem==null&& companyId!="0"))
    addressData = new AddressDetailData();
    addressItem = addressData.getAddressItem(datasource, companyId);
    session.setAttribute("addressDetail", addressItem);
    I got companyID by:
    String companyId = request.getParameter("companyId");
    return (mapping.findForward("success"));
    Please gest the problems that.
    Thanks,

  • Year-at-a-glance View in iCal

    Once again, I am filling out next year's year-at-a-glance wall calendar and wish I had this view in iCal. With today's screens, a year-at-a-glance view shouldn't be difficult to implement and would be very useful. My favorite layout has 12 rows (one for each month, January at the top) and blocks for each day running from left to right with weekends shaded. When is Apple going to improve iCal? or at least enable others to make such improvements?
    Message was edited by: Jim Putnam

    I can't believe this, I finally get round to organizing myself and ical doesn't do a year view.
    I have hunted online for some way to make this happen and have ended up making a pdf of a printout to be able to see it.
    This can only be a temp solution, as my diary changes a lot and printing/pdf is not very elegant or efficient or even that easy to read quickly.
    In my online search I have found posts requesting this as far back as 2003, and 6 years is to long to wait for something that surely must be such a simple solution.
    I'm also stunned by the lack of plugin/widget/app solutions from 3rd party developers, I would definitely pay a a buck or 2 for something to let me do this well within ical,
    And If I want it you can be sure there are at least another 100,000 who would also pay, maybe we could get the guy who wrote the ifart app for iphone to write it for us, about 2000 people a day were buying that at 99 cents a pop in the run up to christmas.
    Apple should embarrassed by this.
    If anyone knows the solution please post it.
    Brin

  • Hi, i am trying to open and view a report that comes from another server with different odbc connection

    hi, i am trying to open and view a report that comes from another server with different odbc connection
    i created a crystal report for a mysql database on my machine and everything works great
    but we have other reports that come from other machines with different odbc connection
    and this its not working when opens the report asks for credentials
    and i cannot use the remote ip for these reports that come from other machine
    question
    if i cannot connect to remote ip to open the report
    for each report i have to create a database the report database on my machine and then open the report ?
    or there is some other way to open the report ?
    i am using visual studio 2013 and mysql and
       <add key="MYSQLODBCDRIVER" value="{MySQL ODBC 5.3 UNICODE Driver}"/>
    thanks

    short
    i have a report that it was created on another server with a specific dsn
    now i am trying to open the report on my machine
    the database from the other server does not exist on my machine
    the server machine where the report was created the ip its not accessible
    question ?
    can i open the report on my machine or its impossible ?
    thanks

  • Mini-DVI to Video Adapter: For TV Viewing?

    The Apple-Salesperson sold me a Mini-DVI to Video Adapater to send pictures to the TV from my MacBook. I get sound on the TV but not the slids. The TV picture only displays the computer's main screen.
    Is this the correct adapter? I see other threads here use something different. Is there a special setting I need to change?
    Thanks,

    With your TV hooked up to your Macbook, you should be able to view anything on your computer. If you have all of your pictures in iPhoto, your best option is to use FrontRow by using the remote.
    (make sure your displays are mirroring eachother, Preferences>Displays)

  • Refreshing the Data from a embed view in a view container

    Hi everybody
    I would like to know how can I do to refresh all data from a View with a view container the problem is:
    that I have a window that has a view at the same time this has a view container.  The Main view brings the data of editable elements when I select one element of the main view the view container brings a list for that element (dependencies) but only the first time a choose an element loads the correct data, when I choose another one it brings the same old data and doesn't make the call for the wdDoInit() method.
    The question is:
    How do I force the view to refresh all the data or call again the wdDoInit() method?
    Thank you for your help

    Aida,
    Lets say you have two components C1 and C2 and you want method from C1 to be available in C2 then follow these steps:-
    1) Goto the Interface Controller of C1 and create a method there lets say doSomething
    2) Then goto C2. There you can see Used Web Dynpro Components --> Right click Add Used Component --> Give some name say C1Comp --> Click browse and select C1 --> Click Finish.
    3) Next goto Component Controller of C2 --> Properties --> Click Add and check if C1 is added. If not then select the checkbox and select OK.
    4) Now goto Implementation tab of C2 and lets say wdDoInit you can write following code:-
    wdThis.wdGetC1CompInterface().doSomething();
    Chintan

  • How to load a specific view in a browser

    Hi Guys,
          In my application, I hav 3 views..I need to set particular view at window level..So How can I do that..Thanks in advance

    Good day,
    Please check my reply in the following thread.
    Re: Change of default view in a web dynpro window
    Regards and Best wishes.

  • Possible to see at a glance who has/has not viewed pdf via the 'Tracker'?

    We are working on setting up procedures for Browser-based reviews. We were hoping we'd be able to see at-a-glance who had/had not viewed or sent back comments, and the date they sent them in the Tracker, but it seems to be just a list of who it was sent to originally. How do you know who has sent comments, other than manually scrolling through all the comments to see people's names?

    Hi;
    No, there isn't a way for you to see anything about who has saved progress.
    Thanks,
    Josh

  • Mini Month View in iCal

    Can't say I like the new iCal running on Lion. One feature that I can't seem to find is the mini month view. I did away with my paper calendar for viewing full months because of the mini month calendars on my Macs.
    Is that functionality gone? I've searched preferences and menus and can't find a way to turn it on.
    So many things about this new iCal that I find I do not like. I sure hope updates are coming to fix it.
    CJ

    Last thing about iCal which I think could be fixed, is that it would be easier to type down events and making line-breaks if one whouldn't have to hold 'Alt' in while doing it.  I make line-breaks much more often than I finish editing an event (in which case you just press enter or click outside the event you were editing).  It would be better to press 'alt' + 'enter' in order to finish editing an event, and reserve the action of just pressing 'enter' for line-breaks.  This, btw, was also this way in iCal 4.
    Ok, last last thing: in the preferences of iCal one can add a default alert to all new timed events and invitations and one can specify how many minutes before one wants to be alerted.  I do not want to add a default alert to all new events/appointments, but I would like to be able to specify the default number of minutes put on all new alerts that I put on events.  It seems quite intuitive to me that the default number of minutes one can specify for every alarm added to events by defult (if that option is checked in the preferences), should be the defult number of minutes set to alarms one manually puts on events, in stead of the '15 minutes before' default that is in the system and which seems to be unchangable.
    If it says '0 minutes before the start time' there, then all alerts that I manually put on events should have this value put to zero by default! 

  • Printing list view in ical

    I use mail and ical for everything now. Everything is fine except When I want to print the "list view" which shows my “to dos”. It displays the URL the “do to” is attached to in mail. I use notes often in mail and enter to dos in the notes so they will have URL links. The link only becomes a nuisance when I want to print, otherwise it’s very useful.
    Why would the long URL paths display when in print view???!!!!! It doesn’t make any sense.
    Is there anything I can do?
    Thank you

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • Weekly "List View" in iCal

    Hello - my family has recently converted to Mac, and my wife and I have been long-time Outlook users in our workplaces...
    Trying to help my wife get her calendar data to iCal - one of the few things that we miss from Outlook is the "Week" view, which shows like Outlook's (7-Day view), which has a large grid of the 7 days in the current week, and all events displayed in a text-based "list" format, and clearly displaying numerical start and end times, rather than the graphical "block" method of iCal's default Week view.
    The Month view on iCal comes close, but it is rather cramped when you want a closer-in look, and also omits end time.
    Any suggestions?
    Thanks!

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • Hiding a Maintenance View in a View Cluster

    Hello ABAP Experts,
    We have a scenario where we would like to hide a maintenance view to an existing view cluster based on condition.
    Is it possible via events of a view cluster, where i can hide the view at runtime based on some condition before the view cluster is displayed ?
    Is there any way as well, which help achieve this hiding of views ?
    For example in the below View Cluster, i would like to hide "Define object links" view from the main view cluster "Define document Types".
    Thanks,
    Naresh

    Hi Naresh,
    Yes, you can do it in events of a view cluster, define a subroutine and bounding it to event(02) in SE54,
    when you define the subroutine, it will ask you creat a mian program, in this main program, you need  'INCLUDE lsvcmcod'.
    Then you can access some standard data, http://help.sap.com/saphelp_nw04/helpdata/en/62/c302c7de8e11d1a5960000e82deaaa/frameset.htm
    INCLUDE lsvcmcod.
    FORM yourSubroutineName.
    DATA: viewname TYPE vclstruc-object,
            error_flag TYPE vcl_flag_type,
      viewname = 'ZTEST_VIEW1'.
    *  PERFORM vcl_set_table_access_for_obj USING    viewname
    *                                       CHANGING error_flag.
      ----> according your condition to change the view.
    IF xxx = yyy.
      DELETE vcl_struc_tab WHERE object = viewname.
    ENDIF.
    ENDFORM.
    regards,
    Archer

Maybe you are looking for

  • DTW-BOM

    what is the procedure for uploading bom using DTW?

  • Hide Projects SOLAR_PROJECT_ADMIN

    Hi, This is quite a simple question. Is it possible to hide/filter projects in SOLAR_PROJECT_ADMIN (to limit the number of projects you can view) but the projects are still visible in SOLAR01 and SOLAR02? I have marked completed projects as RELEASED

  • Any pointers?

    Hi I recently got this piece of work set as a practice for my finals, I will be given something similar in a lab and be given 3 hours to do it, I'm just wondering if anyone can give me any pointers on how to get started with this: (a)     A firm that

  • Laptop shuts down when lid closes

    My 15" powerbook has been acting up the last few days ever since I downloaded the last group of updates. When I close the lid to put it to sleep the entire computer shuts down. When I open it and start it up it gives me the message that the computer

  • How to use collection in my code

    PROCEDURE irp_status_check_list(P_YEAR IN VARCHAR2,P_SEASON IN VARCHAR2)  AS g_count NUMBER; BEGIN        FOR CUR_GID IN (SELECT GENERATION_ID                        FROM VRESS_GEN_DDLB_VW                        WHERE SEASON_YEAR=P_YEAR AND SEASON_CO