How to achive this in a single iview

How can i create this iview/How to achive this.
In Portal I created a Role and 2 different worksets under the role to publish BW Reports (Grouped according to the worksets)
My requirment is when user Logins into his portal account and clicks the BW Reports Tab (Role) First screen he has to see
Currently it is my Workset1 of which are assigned to role
My requirment is to show them
The screen should be divided into 2 halfs(Columns) and the Left hands side column should display our INTRANET HOME PAGE and Other hald should display a BW Report developed on Daily data Loads in Graphical Version (Web Templete is already developed)
Please update me how to achive this
Thanks

Hi Thruna,
Thanks for the update....
few Queries
Create a page with 2 column layout.
Is it possible for me to create a page with 2 Columns and the Right hand column is divided in to parts
Open the page in edit mode and select Intranet Home Page iview, right click then select "Add iview to the page" with Delta.
If i Right click the iview and select assign to page...how can i make a setting to display that iview(Intranet Home page) on Left Hand side
Thanks in advance

Similar Messages

  • How to achive this using servlet

    hi I am new to this technology... My requirement is , First I have to check whether that rebate_sku_num exists in the database or not.. If exits i need to update the row.. If now I have to insert the new row with values.. How to achive this..
    my screen contains 7 rows... in will increase.. for every submit.. i have to check with the database.. whether the rebate_sku_num exists or not.. help me out.. here is my code.. i am not sure how to format my code.. in future i will do it...
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import javax.servlet.SingleThreadModel;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import java.io.IOException;
    import java.sql.ResultSet;
    import java.io.*;
    import java.util.*;
    import java.util.Date;
    import java.text.*;
    public class AddRebate extends HttpServlet implements SingleThreadModel {
    public void init(ServletConfig servletconfig) throws ServletException {
    super.init(servletconfig);
    public void doPost(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
    throws ServletException, IOException {
    HttpSession session;
    session = httpservletrequest.getSession(true);
    String user_name;
    String divisionCode;
    String rebate_sku_num[];
    String selectedMonth;
    String amount[];
    String message = "";
    String Query="";
    String RebateId="";
    boolean flag = true;
    // from here
    Calendar todaysdate = new GregorianCalendar();
    SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
    SimpleDateFormat sdf1 = new SimpleDateFormat("MM/dd/yyyy HH:MM:SS");
    System.out.println("today's date: " + sdf.format(todaysdate.getTime()));
    String entryDate = sdf.format(todaysdate.getTime());
    String entryDate1 = sdf1.format(todaysdate.getTime());
    System.out.println("entering date is " +entryDate) ;
    System.out.println("entering date is " +entryDate1) ;
    // to here
    user_name = (String) session.getAttribute("user_name");
    divisionCode = (String) session.getAttribute("division_code");
    selectedMonth = httpservletrequest.getParameter("selectedMonth");
    rebate_sku_num = httpservletrequest.getParameterValues("rebateId");
    amount = httpservletrequest.getParameterValues("amount");
    System.out.println("AddRebate : doPost() : selectedMonth = " + selectedMonth);
    System.out.println("AddRebate : doPost() : rebate_sku_num = " + rebate_sku_num);
    System.out.println("AddRebate : doPost() : amount = " + amount);
    // from here
    flag = true;
    for (int z = 0; z < rebate_sku_num.length && flag; z++) {
    try {
    flag=false;
    String s = "select REBATE_SKU_NUM from EASMSA_REBATE_SKU_DETAILS_TB where REBATE_SKU_NUM ='" + rebate_sku_num[z] + "'";
    System.out.println("AdjustmentServlet : doGet() : checking sku validity query = " + s);
    ResultSet resultset = DatabaseConnection.executeQuery(s);
    if (resultset != null) {
    while (resultset.next()) {
    RebateId = resultset.getString("REBATE_SKU_NUM");
    flag = true;
    if ((rebate_sku_num[z] != RebateId)) {
    System.out.println("get the values" +rebate_sku_num);
    System.out.println("get the values" + RebateId);
    Query = "INSERT INTO EASMSA_REBATE_SKU_DETAILS_TB " +
    "( REBATE_SKU_NUM, REBATE_DATE, REBATE_AMT, CREATED_BY," +
    "CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE ) VALUES (" +
    "'" + rebate_sku_num[z] + "', " +
    "TO_Date( '" + "30/" + selectedMonth + "', 'dd/MM/YYYY HH:MI:SS AM'), " +
    "'" + amount[z] + "' , '" + user_name + "'" +
    ", TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM')" +
    ", '" + user_name + "'," +
    " TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM'))";
    System.out.println("query is executed" +Query);
    }else if ((rebate_sku_num[z] == RebateId )){
    Query = "update EASMSA_REBATE_SKU_DETAILS_TB set REBATE_AMT=" + amount[z] + " where REBATE_SKU_NUM='" + rebate_sku_num[z] + "'";
    System.out.println("query is executed for updation" +Query);
    } else {
    System.out.println("AdjustmentServlet : doGet() : checking for sku validity : resultset null");
    // message = "SKU '" + sku[z] + "' of customer '" + customer[z] + "' and location '" + location[z] + "' is not valid.";
    message = "SKU '" + rebate_sku_num[z] + "' is not valid.";
    flag = false;
    } catch (Exception exception1) {
    System.out.println("AdjustmentServlet : doGet() : exception in checking validity of SKU");
    exception1.printStackTrace();
    // message = "SKU '" + sku[z] + "' of customer '" + customer[z] + "' and location '" + location[z] + "' is not valid.";
    message = "SKU '" + rebate_sku_num[z] + "' is not valid.";
    flag = false;
    try {
    if (DatabaseConnection.executeUpdate(Query) == 0) {
    System.out.println(" AddRebate : doPost() : rollback: error in executing update query= " + Query);
    DatabaseConnection.rollBack();
    message = "Some problem in updating transactions. Please try again later.";
    flag = false;
    // break;
    } else {
    System.out.println("AddRebate : doPost() : update sucessfull");
    message = "Rebate Transactions has been updated.";
    flag = true;
    } catch (Exception ex) {
    System.out.println("AddRebate : doPost() : exception in update query");
    message = "Some problem in updating transactions. Please try again later.";
    flag = false;
    ex.printStackTrace();
    session.setAttribute("message", message);
    httpservletresponse.sendRedirect("Welcome1.jsp?s=y");
    return;

    Oh and you can give me the dukes for helping you here:
    http://forum.java.sun.com/thread.jsp?forum=45&thread=475828&tstart=0&trange=15

  • How to achive this report.

    Hi,
    Scenario : Some raw materials qty are moving to a series of various machines in work in poress .Here some of materials are rejected Qty by machines and let say xyz reason.
    In OBI,If i pull all required columns into report all columns are pulling correct information expect machines.
    Machine column diplaying all used machines name.. but my requirement is only rejected machines and rejected qty for particular machine should be display in report.
    How to achive this.Kindly let me . Thank you.

    867932 wrote:
    Hi,
    Scenario : Some raw materials qty are moving to a series of various machines in work in poress .Here some of materials are rejected Qty by machines and let say xyz reason.
    In OBI,If i pull all required columns into report all columns are pulling correct information expect machines.
    Machine column diplaying all used machines name.. but my requirement is only rejected machines and rejected qty for particular machine should be display in report.
    How to achive this.Kindly let me . Thank you.Please take the time to explain in more detail - your post is not very precise and you dont describe your data model.
    As a guess, I would start with a filter : rejected Qty > 0 so you only get machines which have had a rejection, compared to "Machine column diplaying all used machines name".
    Hope this helps!
    Alastair

  • How to achive this scenario

    Hi,
    We have report which contains many Financial products in product column.Some of product need to calculate by based on end user selection in terms of % in dashboard prompts.
    Example: If end user select or enter 10 in prompt then only Loan items has to calculate and need produce new row as Loan commitment 10%.
    I try by using calculated items but it not allowing to use presentation variable.How achive this.kindly let me know.
    EX:Base Report                                
    Financial Product
    Amount
    Credit Cards
    1300
    Deposit
    3000
    Shareholders' Fund
    2500
    Loans
    1000
    Expected Report:
    Financial Product
    Amount
    Credit Cards
    1300
    Deposit
    3000
    Shareholders' Fund
    2500
    Loans
    1000
    Loan commitment 10 %
    10

    I got answer for this question
    Thanks

  • How to achive this using analytical function-- please help

    version 10g.
    this code works just fine with my requirement. i am tyring to learn analytical functions and implement that in the below query. i tried using row_number ,
    but i could nt achive the desired results. please give me some ideas.
    SELECT c.tax_idntfctn_nmbr irs_number, c.legal_name irs_name,
           f.prvdr_lctn_iid
      FROM tax_entity_detail c,
           provider_detail e,
           provider_location f,
           provider_location_detail pld
    WHERE c.tax_entity_sid = e.tax_entity_sid
       AND e.prvdr_sid = f.prvdr_sid
       AND pld.prvdr_lctn_iid = f.prvdr_lctn_iid
       AND c.oprtnl_flag = 'A'
       AND c.status_cid = 2
       AND e.oprtnl_flag = 'A'
       AND e.status_cid = 2
       AND (c.from_date) =
              (SELECT MAX (c1.from_date)
                 FROM tax_entity_detail c1
                WHERE c1.tax_entity_sid = c.tax_entity_sid
                  AND c1.oprtnl_flag = 'A'
                  AND c1.status_cid = 2)
       AND (e.from_date) =
              (SELECT MAX (c1.from_date)
                 FROM provider_detail c1
                WHERE c1.prvdr_sid = e.prvdr_sid
                  AND c1.oprtnl_flag = 'A'
                  AND c1.status_cid = 2)
       AND pld.oprtnl_flag = 'A'
       AND pld.status_cid = 2
       AND (pld.from_date) =
              (SELECT MAX (a1.from_date)
                 FROM provider_location_detail a1
                WHERE a1.prvdr_lctn_iid = pld.prvdr_lctn_iid
                  AND a1.oprtnl_flag = 'A'
                  AND a1.status_cid = 2)thanks
    Edited by: new learner on May 24, 2010 7:53 AM
    Edited by: new learner on May 24, 2010 10:50 AM

    May be like this not tested...
    select *
    from
    SELECT c.tax_idntfctn_nmbr irs_number, c.legal_name irs_name,
    f.prvdr_lctn_iid, c.from_date as c_from_date, max(c.from_date) over(partition by c.tax_entity_sid) as max_c_from_date,
    e.from_date as e_from_date, max(e.from_date) over(partition by e.prvdr_sid) as max_e_from_date,
    pld.from_date as pld_from_date, max(pld.from_date) over(partition by pld.prvdr_lctn_iid) as max_pld_from_date
    FROM tax_entity_detail c,
    provider_detail e,
    provider_location f,
    provider_location_detail pld
    WHERE c.tax_entity_sid = e.tax_entity_sid
    AND e.prvdr_sid = f.prvdr_sid
    AND pld.prvdr_lctn_iid = f.prvdr_lctn_iid
    AND c.oprtnl_flag = 'A'
    AND c.status_cid = 2
    AND e.oprtnl_flag = 'A'
    AND e.status_cid = 2
    AND pld.oprtnl_flag = 'A'
    AND pld.status_cid = 2
    )X
    where c_from_date=max_c_from_date AND e_from_date =max_e_from_date AND
    pld_from_date=max_pld_from_date

  • How to achive this in Oracle SQL

    Hi All,
    How to get the below result:
    base table:
    COLA COLB
    112 01-JAN-2012
    113 02-FEB-2012
    114 02-MAR-2013
    115 01-APR-2013
    Result table:
    COLA COLB COLC
    112 01-JAN-2012 01-FEB-2012
    113 02-FEB-2012 01-MAR-2012
    114 02-MAR-2013 31-MAR-2013
    Thanks!

    user505326 wrote:
    Hi All,
    How to get the below result:
    base table:
    COLA COLB
    112 01-JAN-2012
    113 02-FEB-2012
    114 02-MAR-2013
    115 01-APR-2013
    Result table:
    COLA COLB COLC
    112 01-JAN-2012 01-FEB-2012
    113 02-FEB-2012 01-MAR-2012
    114 02-MAR-2013 31-MAR-2013
    Wrong Forum !!! Post at {forum:id=75}. Before posting there close this thread marking as answered.

  • How the achive this using the function module SO_NEW_DOCUMENT_SEND_API1

    I want to format the body of the mail like this.How to maintian proper spacing between the fields.kindly suggest.
    It may contain multiple line items also.
    SC Number                               | SC Item Number                         | SC Item Qty      | PO Number       | PO Item Price
    SC Name                                  | SC Item Text                               | SC Item Price  | PO Item             | Invoice Item Price
    <SC_NUMBER>                           <SC_ITEM>                                  <SC_QTY>          <PO_NUMBER> <PO_PRICE> 
    <SC_NAME>                               <SC_ITEM_TEXT>                         <SC_PR>            <PO_ITEM>         <IV_PRICE>

    Hi,
    You can do with SOFM method select over there Excel Sheet as same format you can select all fields respectively so in the output in an attachment you will get the values as you like that format in the same way multiple line items also you can retrive data in Excel sheet attachement, then using this FM you can send mail with this attachement.
    Thanks and regards,
    Prabhakar Dharmala

  • How i achive this data by writing exact query ?

    Dear Exparts,
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    "CORE     10.2.0.3.0     Production"
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - ProductionI have a table Name TB and Column A and B with the following data.
    A       B
    10     02-AUG-2012
    10     04-AUG-2012
    10     01-SEP-2012
    10     10-AUG-2012
    11     04-AUG-2012
    11     01-SEP-2012
    11     01-AUG-2012
    10     12-AUG-2012
    10     15-JUL-2012I need data like
    A                      B
    10            10-AUG-2012
    10            12-AUG-2012
    10            01-SEP-2012
    11            01-SEP-2012How we get this data ?
    We have to count column B group by Column A. then devided the count_value by 2 and trunc it and base on the result out put will come. the data are the maximum data.
    Like when we count group A result will be
    A            B
    10           3
    11           1base on above result my desire outpul will come...
    Here is the script
    CREATE TABLE TB
        "A" VARCHAR2(20 BYTE),
        "B" DATE
    Insert into TB (A,B) values ('10',to_date('02-AUG-2012','DD-MON-RRRR'));
    Insert into TB (A,B) values ('10',to_date('04-AUG-2012','DD-MON-RRRR'));
    Insert into TB (A,B) values ('10',to_date('01-SEP-2012','DD-MON-RRRR'));
    Insert into TB (A,B) values ('10',to_date('10-AUG-2012','DD-MON-RRRR'));
    Insert into TB (A,B) values ('11',to_date('04-AUG-2012','DD-MON-RRRR'));
    Insert into TB (A,B) values ('11',to_date('01-SEP-2012','DD-MON-RRRR'));
    Insert into TB (A,B) values ('11',to_date('01-AUG-2012','DD-MON-RRRR'));
    Insert into TB (A,B) values ('10',to_date('12-AUG-2012','DD-MON-RRRR'));
    Insert into TB (A,B) values ('10',to_date('15-JUL-2012','DD-MON-RRRR'));Thanks in advance...
    Ask2Learn
    Edited by: Asked to Learn on Sep 1, 2012 7:55 AM
    Edited by: Asked to Learn on Sep 1, 2012 8:38 AM (CHANGE DATA TYPE) SORRY

    this ?
    with t as
    select a,b,round(count(*) over(partition by a)/2) cnt,row_number() over(order by null) rn from tb
    ),t1 as
    select a.*,row_number() over(order by null) rn from tb a
    select t1.a,t1.b from t,t1 where t1.rn=t.rn and  t1.b>t.cnt order by a;
    A                    B                     
    10                   4                     
    10                   6                     
    10                   5                     
    11                   3                     
    4 rows selected
    Or
    with t as
    select a,b,round(count(*) over(partition by a)/2) cnt from tb
    select a,b from t where cnt<b;

  • How to achive current date in report

    Hi Expeorts,
    I have below Filter in one of report. how to achive this?
    Ship Date = Current Date
    What is the meaning of this? and how to do this?
    Thanks in advance
    David
    Edited by: david Rathod on Jan 10, 2012 7:50 AM

    Hi ,
    You can achieve the same using Customer exit variable .You can use the following code .
    FORM do_user_exit       USING    i_vnam        LIKE rszglobv-vnam
                                     i_vartyp      LIKE rszglobv-vartyp
                                     i_iobjnm      LIKE rszglobv-iobjnm
                                     i_s_cob_pro   LIKE rsd_s_cob_pro
                                     i_s_rkb1d     LIKE rsr_s_rkb1d
                                     i_periv       TYPE rro01_s_rkb1f-periv
                                     i_t_var_range TYPE rrs0_t_var_range
                                     i_step        TYPE i
                            CHANGING e_t_range     TYPE rsr_t_rangesid.
      if i_step = 1.
         clear l_s_range.
         l_s_range-low = sy-datum.
         l_s_range-sign = 'I'.
         l_s_range-opt  = 'EQ'.
         append l_s_range TO e_t_range.
      endif.
    ENDFORM.   
    Hope it helps .
    Thanks
    Kamal

  • How to handel this calculation in BI for the Mod. Production Planning ????

    Hi All,
    I have a scenario like this :
    Look into the follwing Data.
    PLANT |    RUNDATE|    WORK_CENTER|   SHIFT|  PRODUCT_TYPE|    ALLOWED_TIME|   LINEHOUR1  
    1010--10/01/2007D0001A400--
    0.114
    1010--10/01/2007D0001B500--
    0.142
    1010--10/01/2007D0001C100--
    0.028
    1010--10/01/2007D0001D1100--
    0.314
    1010--10/01/2007D0001E600--
    0.171
    1010--10/01/2007D0001F800--
    0.228            
    TOTAL ALLOWED_TIEM------       3500
    1010--10/01/2007D0011A1400--
    0.334
    1010--10/01/2007D0011B500--
    0.142
    1010--10/01/2007D0011C100--
    0.028
    1010--10/01/2007D0011D1100--
    0.314
    1010--10/01/2007D0011E600--
    0.171
    1010--10/01/2007D0011F800--
    0.228            
    TOTAL ALLOWED_TIEM------       4500
    I have to calculate the Production Line Hours, based on the following calculation.
    Now i have to input the  value in the INFOOBJECT LINEHOUR1 based on the following calculation.
    400 / 3500 = 0.114  (ALLOWED_TIME of every line item has to be divided with TOTAL ALLOWED_TIME)
    500 / 3500 = 0.142
    100 / 3500 = 0.028
    1100 / 3500 = 0.314
    .........so on
    The workcenter is different is two blocks of example data, and  hence to be calculated differently.
    Now how to achive this,
    I appriciate your insite on this problem.
    Regards
    Shaan.

    Hi Philips,
    Thanks for your response.
    I want to make you more clear about the problem.
    We are calculating based on the following combinations.
    PLANT--RUNDATE-WORKCENTER-SHIFT-----PRODUCTTYPE
    We have three different Plants.
    Rundate is assume as the Calday.
    We have 18 Workcenters.
    Each Workcenter can have 3 shifts maximum.
    And in every sift there would be 3 to 4 product types produced.
    So what i mean to let you know is, the calculation is not based on WORKCENTER, where as it is based on all the five(5)
    characteristics combination.
    The total allowed time will be calculated based on PLANT......RUNDATE......WORKCENTER....SHIFT.
    We normally calculate the linehour with the below formula...
    (ALLOWED TIME/ TOTAL ALLOWED TIME) * (SHIFTTIME - DOWN TIME - BREAK TIME).
    So i have all the information in the line item level except the TOTAL ALLOWED TIME.
    Now i want to insert a new column in the CUBE and wanted to have the TOTAL ALLOWED TIME in every line item,
    might not seem to be a good idea, but just let me know how to do it.
    If it is not clear, you can ask me for further questions.
    THANK  YOU PHILIPS.
    Regards
    Shaan

  • When i try to copy books to my nook, with every single title i continue to get an error message that says 'copy not allowed - no permission to copy the book'. any suggestions on how to fix this?

    when i try to copy books to my nook, with every single title i continue to get an error message that says 'copy not allowed - no permission to copy the book'. any suggestions on how to fix this?

    I had recently updated from Windows 7 to Windows 8.1 and thus had to re download Adobe Digital Editions. I downloaded Version 4.0 but the problem seemed to be with the authorization between the e-reader and the computer. While in ADE click the help button and click erase authorization then re do your user id and password. It worked for me.

  • How to fix this error? The startup disk cannot be partitioned or restored to a single partition.

    Hey guys,
         I am trying to install windows 7 ultimate 64 bit via bootcamp assistant. I open bootcamp assistant from utilities and i get the second window and try to click continue and i get a pop up, saying "The startup disk must be formatted as a single Mac OS Extneded (journaled) volume or already partitioned by Boot Camp Assistant for installing Windows." I looked around on the internet, i found that my internal HD must be set to OS Extended (Journaled). I went into disk utility and i clicked partition tab and the option was set to OS extended (journaled). Any ideas on how to overcome this error so i can install windows 7?

    Error is:
    1: common
    2: misleading and poorly worded
    3: space must be:
    A: contiguous, that means unfragmented and in ONE section, not multiple
    B: files cannot be loced, anchored or in such a manner as to prevent or block partition operation
    C: to move, unlock and shuffle files requires booting from another drive or device
    Shrink the HFS+ volume by as much or more than you need to set aside to use
    If that does not,
    Try iDefrag from another hard drive or by burning and using its own CD that is just for consolidating free space
    Clone your system (should have backups already, clone is just bootable)
    Erase and restore from clone - SuperDuper does consolidate files and free space and result in unfragmented (99% success rate)
    None of which has to do iwth what that error message says. This error has been almost a daily threat topic - has gotten less but has not "gone away."

  • How to separate single iView to several and setting its' access properties?

    Hello again!
    Well now I create a single iView from my Web Dynpro application and it's work properly. My app based on CarRentalTutor but cities and vehicles for bookings saved in its' own tables.
    View structure of my app for single view:
    window:
    |----view with only TabStrip
    |--|--1st tab has a ViewContainerUIElement:
    |--||--view with bookings list
    |--||--view wich represents form for add/edit one booking
    |--|--2nd tab has a ViewContainerUIElement:
    |--||--view with cities list
    |--||--view wich represents form for add/edit one city
    |--|--3rd tab exactly like 2nd but for vehicles
    Tasks:
    1) I need create 2 iViews: one for booking list and form for add/edit and second with TabStrip with 2 tabs (for cities and vehicles).
    2) create different roles for diff users - for example, one user can be only view a list of cities & vehicles; second can edit this data; 3-rd can adding bookings and so on. The question is: where I can make an appropriate settings?
    For 1-st task I tried to do follow:
    Create new structure:
    window:
    |----view with only TabStrip
    |--|--1nd tab has a ViewContainerUIElement:
    |--||--view with cities list
    |--||--view wich represents form for add/edit one city
    |--|--2rd tab exactly like 2nd but for vehicles
    |----view with only ViewContainerUIElement (marked as default):
    |--|--view with bookings list
    |--|--view wich represents form for add/edit one booking
    Doing step 6 from http://help.sap.com/saphelp_nw04s/helpdata/en/44/a765695df67037e10000000a422035/frameset.htm
    Of course redeploy the app.
    Creating new iView in portal, choose Create one iView from each application view, select my app and have no views to add
    What was be wrong?
    Regards,
    Lev

    Hello, Sharadha
    Yes, I have noticed about it. But I run my app inside the portal and need to have a multiple iViews.
    Well let's try to do it with easy example: I have 2 views (call it "content views") contains only labels (for simplicity) and want to create 2 iViews - one for every of content views (hope this was clear)
    Steps, wich I made:
    1) create another 2 views (call it "root views"), wich have only ViewControllerUIElement containers
    2) embed content views in these containers - one view per container. So I've got followed structure: root view #1 with embedded content view #1 and root view #2 with content view #2. One of the root views is default
    3) set application property sap.canBeSplitInIViews to true
    4) deploy app
    5) in the portal go new iView->Web Dynpro Java application->Create one iView from each application view. Next I select my app, expand it and see only one view wich have default property set to true, but want to see all views...
    (if I set default property to false for all root views then I see anything in the last step)
    Please check this list for mistakes... I'm going crazy with it

  • How do I get beyond the single screen of recent content in this forum?  There's no option for older pages.

    Adobe, your forum software is terrible.  And it differs from time to time and from product to product.  Until recently, I could scroll through multiple screens of new/newly modified posts by clicking on a "more" bar.  Now it's gone.  How do I go beyond a single screen?

    Nothing like requiring two clicks where one worked before.  And multiple clicks to back out, as well.  Plus, the discussion tab shows only highly compressed icons of each discussion, instead of a nice list.

  • How can we Restict the Char single value Variables with , , =

    Hi Experts,
    How can we Restict the Char value Variables with <, >, <=  (without selecting Inverval or only passing single value)
    For Example
    We have a standard Query 0FIAR_C03_Q1005, in this
    New Selection
    "1 - 15 Days, Posting Date<=Key Date, Clearing Date>Key Date"
    This is restricted  with the
    Clearing(0CLEAR_DATE)
    <Clearing key date(0P_KEYD3)  It is a single value SAP Exit Varible
    PostingDate(0PSTNG_DATE)
      <= Posting keydate(0P_KEYD3)  It is a single value SAP Exit Varible
    When seeing these 0P_KEYD3, 0P_KEYD3 variables in the New selection screen they looks like  >0P_KEYD3, <=0PSTNG_DATE
    if you define any custom variables these are looks like =ZV_DATE.
    to enable < , >, <= symbols for variables what we need to do.
    In other way
    Say we created one variable ZV_DATE single value, processing type as customer exit.
    for this we populated current day,
    Now Requirement is we need to display the all the records which are <= current date,
    instead of passing low and high values, i want to restrict the calday <=ZV_DATE
    New selection
    0calday
      <=ZV_DATE
    How can we achive this, this is how the business content report having the restrictions
    Please sugget me.
    Thanks
    Chandra
    Edited by: Chandra Gandla on Jun 18, 2010 11:01 AM
    Edited by: Chandra Gandla on Jun 18, 2010 11:01 AM

    Ok,
    In the InfoObject 0calday in the query designer under the filter area, under characteristic restrictions right-click over that InfoObject (0calday).
    In the next window (select Values for [0CALDAY]  Calendar Day in the dropdown box for "Show" choose Value Ranges. Under the word "Between"  dropdown box select "Less than or equal to"
    Below that word click on the button of the dropdown box Select from list.
    In the new window select instead of History Variables and double-click on your variable ZV_DATE.
    Click on the right blue arrow to move it to the right.
    And there you go.
    Tip: It exists a SAP standard variable named 0DAT which is exactly the current date (don't need to use ZV_DATE variable).
    Diogo.

Maybe you are looking for

  • Can I open files in PS 5.1 in a PS 5 installation?

    Hi. I am taking a photoshop class. The classroom pc uses PS 5 for Mac. And, I have PS 5.1. (part of Adobe Production Premium 5.5) for Windows Can PS 5 open files created in PS 5.1?

  • Page Display Preferences

    I am running Adobe Acrobat Pro 9.2 on Widnows 2008r2 and am having a problem saving my settings.  I am trying to change the Page Display preference Page Layout from Automatic to Two-up.  I set that preference and it works fine until I close Acrobat. 

  • Missing sequence in self-contained movie file.

    Hello - this has happened several times, so I know better now, to save in a full quality file, however, when exporting, I specifically marked 'make movie self-contained', so that I can delete/trash files and make room for other projects.  Cut to, thi

  • Grayscaled image , posterised, each level onto separate layer

    I am a photorealistic graphite artist and use photoshop to turn colour photos into b&w. Then I often posterize the drawing to get a better understanding of the facial shapes as expressed in their different tonal values. I would like to have each post

  • Sql query and speed of result

    public List Get(String pid, String str, List ls) {           List a = new Vector();           List d = new Vector();           pcl.addAll("num"));-----list contains numbers which are present in this column "num"           ListIterator pc = d.listIter