Insert members in input form

Hello gurus,
Is it possible to insert members (At Selected Cell; Insert method:Insert) without "This operation will result in the loss of all current dynamic information for the Row axis"?
Also I have the problem with insertion after the last axis member as I am using EPM InsertCellsBeforeAfterBlock and after Insertion this function does not work and I get the error "The execution of report Default Report failed".

And did you save data on the USD line? (suppress option on?)
Do you have the option restore-dynamic selection on?
If you save data on the USD line and you have that option on and your report design allows USD members to appear in the report, then the line should be there..
Both questions above are quite crucial. If you do not want to return to the original row dimension selection after adding new lines (which might exclude the USD members), than do not select that option..
Just look what happens to your selection of these dimensions after adding new lines and evaluate whether the new line should appear.

Similar Messages

  • Input Form/Reports Refresh time

    Hi all,
    We have input form/reports which takes about 45 seconds to refresh which is ok for the first time but the frustration from the user community is that every subsequent refresh also takes 45 seconds for even a small change. Is that possible to reduce time on the subsequent refresh time?
    Please share.
    Thanks,
    D

    Hi Devang,
    Refresh means that all data on the form have to be read from database. You can play with user settings: Refresh only Expanded and Inserted Members; Refresh only Data on "Save & Refresh Data", but not sure it will help.
    In general, the initial refresh for 45 seconds is a bit long. Do you have not default measures and dimension member formulas in the report?
    Vadim

  • Creation of input form without basemembers

    Hi,
    We are on SAP BPC NW10,SP10.
    Last week we faced a data loss issue in production system.How ever we could recover as we had backups for the data.
    Now analyzing the root cause for the data loss.During the suspected period there were no "Clear" or "Copy" jobs.
    Checked the logs for these process chains in BW back end and in UJFS as well.There are no exact logs in SM37 also.
    So we are assuming that data was not cleared with (Clear and Copy)DMPs.
    Only possibility I am assuming is some users might have cleared the data with input forms accidentally.
    But this is huge data(around 25,000 entries)which is not accepted by the management.
    Is there any other possibility for data loss?
    Can we clear the data on higher nodes in input forms?
    (I mean if we select top node Organization and top node Term,any functionality or Macro can clear the data for base members?)
    Thanks for anticipated help,
    Manohar
    NB:Audit logs are not turned on as they are consuming lot of space.

    Hi Manohar,
    It looks bit strange to me that Audit logs are not turned on.
    As s practice it is  advised to turn on the Audit logs at least in Production system.
    please cross check in UJD_STATUS table for the suspected period.
    "Audit logs are not turned on as they are consuming lot of space."--  It is advised to archive the data Audit logs by setting the frequency of purge  so that the performance will be improved while you query the audit logs.
    Thanks,
    Dinesh.V

  • ADF input form, changing mode to input rather than display

    aim of what i am tring to do:
    create an input form using ADF and UIX which accepts input and moves to a different page.
    approach taken:
    I have a data control based on a business component created from a database table. I have dragged the columns onto a UIX page as an input form without navigation.
    the problem/question:
    how do i set the data controls mode to create upon displaying the page? I want the page just to accept input and submit. it will never be used for displaying data, which is its current default state.
    i have tried calling the create method of the data control from a few places, but i am not sure where the correct place to call this is.

    You can create a dataaction before the page is called and drag the Create method on to it.
    Or you can add the create method as a button to the page that will end up calling your insert page.
    http://www.oracle.com/technology/obe/obe9051jdev/ADFWorkshop/BuildingADFApplicationsWorkshop.htm

  • SAP BPC 10 - Error on Refreshing Reports  Input Forms

    Hi all,
    We are working on an BPC 10 Consolidation project for the Netweaver Version.
    We setup the Environment, Dimensions, Models, etc. We created a few reports too using the Excel interface.
    These were tested and they worked well.
    However, then one day we started getting this message, whenever we opened any Report or Input Form -
    "The Report that was defined is invalid - at least one of the axis contains no members."
    We observed that this message appeared when there was no data available for EPM Context (Current View) given.
    In short -
    - The data is pulled out in the report, where for a CV there is data available.
    - However, if the CV is changed to something which has no data available, the report does not go blank (i.e. does not get refreshed) and it keeps showing the old figures.
    We tried opening reports in the SAP delivered IFRS Starter Kit too but got the same message.
    We are not able to locate what went wrong. Did we change any option by mistake.
    If anybody has faced this message and got it resolved or has an idea why this message might be appearing, please reply.
    Any help would be highly appreciated!
    Thanks!
    Rajneesh

    Hi Rajneesh,
    Check whether you have both the row-axis and column-axis of the input template through 'edit report'.
    Probably your input template has some member dimensions missing in your template.
    We have faced the same problem before and corrected it.
    This error occurs sometimes when we create a input template by clearing defining the row & column axis in the template but afterwards try some EPMOlapmember in any axis by deleting the original report elements.
    So check the input template once again. I think you will track the error.
    Regards,
    Bishwajit

  • JSP + MYSQL question: input form value into a SQL table

    Hello,
    I am writing some JSP code to read input information from a input form to write this information into a SQL field.
    My problems are:
    - how can i pass the input form information to other jsp file ? (like Getproperty of something like this)
    - how can i move the content of any input information into a variable ? I mean something like this:
    String a1;
    username.value.of.the.input.field.in.forum_jsp = a1.in.addmessage_jsp;and then:
    int rowsAffected = stmt.executeUpdate("INSERT INTO forummessages (messagecode, " +  " usercode, " + " messagedate,  " + " message) VALUES(6,3,06/07/2007,'" + a1 + "')");------
    The SQL table looks like this:
    stmt.executeUpdate("CREATE TABLE forummessages (messagecode int AUTO_INCREMENT PRIMARY KEY, usercode int, messagedate date, message char(255) not null)");My codes are:
    forum.jsp - this one should pass the input information to addmessage.jsp
    <%@ page contentType="text/html; charset=iso-8859-2" %>
    <%@ page import="java.sql.*" %>
    <%
    Connection con = null;
    Statement stmt = null;
    try {
      Class.forName("com.mysql.jdbc.Driver");
      String url =  "jdbc:mysql://localhost:3306/mysql";
      con =  DriverManager.getConnection(url,"root", "");
      stmt = con.createStatement();
      String sql = "SELECT * FROM forummessages,users,bmwecode WHERE (forummessages.usercode=users.usercode) AND (users.bmwcode=bmwecode.bmwcode)";
      ResultSet rs = stmt.executeQuery(sql);
    %>
    <html>
    <head>
    <title>JSP + MYSQL Teszt</title>
    </head>
    <body>
    <a href="forum.jsp">Forum / Uj hozzaszolas</a>
    <a href="userlist.jsp">Felhasznalok kilistazasa</a>
    <a href="adduser.jsp">Felhasznalo hozzadasa</a>
    <a href="deletemessage.jsp">Hozzaszolas torlese</a>
    <br><br>
    <form action="addmessage.jsp" method=post">
    Felhasznalo:
    <input type="text" name="username">
    <br><br>
    Hozzaszolas:
    <input type="text" name="message">
    <br><br>
    <input type="submit" value="Uj hozzaszolas">
    <br><br>
    <table border="0">
    <tr>
    <th>messagecode</th>
    <th>user</th>
    <th>car type</th>
    <th>message</th>
    </tr>
    <%
      while(rs.next()){
    %>
    <tr>
    <td><%=rs.getInt("messagecode") %></td>
    <td><%=rs.getString("username") %></td>
    <td><%=rs.getString("bmwtype") %></td>
    <td><%=rs.getString("message") %></td>
    </tr>
    <%
      } // end while
    %>
    </table>
    </body>
    </html>
    <%
    } catch (Exception e) {
      out.println("<font color=red><h3>Error:</h3></font>" + e);
      e.printStackTrace();
    } finally {
      try {
        if (stmt!=null) {
          stmt.close();
        if (con!=null) {
          con.close();
      } catch (Exception e) {
        e.printStackTrace();
    %> ----
    addmessage.jsp
    <%@ page contentType="text/html; charset=iso-8859-2" %>
    <%@ page import="java.sql.*" %>
    <%
    Connection con = null;
    Statement stmt = null;
    try {
      Class.forName("com.mysql.jdbc.Driver");
      String url =  "jdbc:mysql://localhost:3306/mysql";
      con =  DriverManager.getConnection(url,"root", "");
      stmt = con.createStatement();
    int rowsAffected = stmt.executeUpdate("INSERT INTO forummessages (messagecode, " +  " usercode, " + " messagedate,  " + " message) VALUES(6,3,06/07/2007,'" + a1 + "')");
    } catch (Exception e) {
      out.println("<font color=red><h3>Hiba:</h3></font>" + e);
      e.printStackTrace();
    } finally {
      try {
        if (stmt!=null) {
          stmt.close();
        if (con!=null) {
          con.close();
      } catch (Exception e) {
        e.printStackTrace();
    %>
    <a href="forum.jsp">Forum / Uj hozzaszolas</a>
    <a href="userlist.jsp">Felhasznalok kilistazasa</a>
    <a href="adduser.jsp">Felhasznalo hozzadasa</a>
    <a href="deletemessage.jsp">Hozzaszolas torlese</a>
    <br><br>---
    Thank you for your help in advance.

    SELECT DISTINCT
    hou.name
    ,poh.segment1 po_num
    ,pol.line_num po_line_num
    ,poh.currency_code
    --,trunc(poh.creation_date) po_creation_date
    ,pol.cancel_flag
    ,msi.segment1 item_num
    ,pol.unit_price
    ,round(cost.item_cost,5)
    ,round((&p_rate * pol.unit_price),5) "CONVERSION"
    ,(cost.item_cost - round((&p_rate * pol.unit_price),5)) difference
    ,pov.vendor_name
    FROM
    po.po_headers_all poh
    ,po.po_lines_all pol
    ,po.po_vendors pov
    ,hr.hr_all_organization_units hou
    ,inv.mtl_system_items_b msi
    ,bom.cst_item_costs cost
    WHERE
    poh.po_header_id = pol.po_header_id
    and pov.vendor_id = poh.vendor_id
    and poh.org_id = hou.organization_id
    and hou.organization_id = :p_operating_unit
    and poh.currency_code = :p_currency
    and poh.creation_date between :po_creation_date_from and :po_creation_date_to
    and poh.type_lookup_code = 'BLANKET'
    and msi.inventory_item_id = pol.item_id
    and cost.INVENTORY_ITEM_ID = pol.ITEM_ID
    --and (cost.item_cost - pol.unit_price) <> 0
    and (cost.item_cost - round((&p_rate * pol.unit_price),5)) <> 0
    and cost.organization_id = 1
    and msi.organization_id = 1
    and cost.cost_type_id = 3 --- Pending cost type
    and nvl(upper (pol.closed_code),'OPEN') not in('CANCELLED', 'CLOSED', 'FINALLY CLOSED', 'REJECTED')
    and nvl(upper (poh.closed_code),'OPEN') not in('CANCELLED', 'CLOSED', 'FINALLY CLOSED', 'REJECTED')
    and nvl(pol.cancel_flag, 'N') = 'N'
    and &p_rate user parameter
    I want this p_rate to be passed as a user parameter.

  • Input Form issue

    Hi,
    I have created one input form in which products and the accounts members are coming in rows and 12 months are in columns as below---
    --------------------------Jan Feb Mar......
    SONY - Quantity1
    SONY - Price
    PANASONIC - Quantity2
    PANASONIC - Price
    PHILIPS - Quantity3
    PHILIPS - Price
    Now user1 (belongs to entity1) have access to all products and user2 (for entity2) have access to SONY & PANASONIC. I have implemented the relevant security in Dimensions and forms.
    With the user1 login, I can see the form OK, but when login with user2, the form is looking totally different like below----
    --------------------------Jan Feb Mar......
    Quantity1-SONY
    Quantity2-PANASONIC
    Quantity3-PHILIPS
    Price-SONY
    Price-PANASONIC
    Price-PHILIPS
    i.e. rows are interchanging their possitions and defeating the purpose of this form.
    I also found that when I give user2 the read-access for PHILIPS then it is showing properly. But in that case, user2 can see the PHILIPS data, which defeat the requirements.
    How to resolve this issue? Any idea/suggestion...
    Thanks & Regards.

    Hi Hung,
    This is not an issue.
    All BS accounts are stored as YTD. Whatever value you see in Mar will be seen in Q1, values in Jun will be same when you look for Q2.
    This is by design behaviour.
    P.S. - BS gives snapshot of company's financial position at a given point of time. Data from previous periods is never summed up unlike PL accounts.
    Regards,
    Ashish

  • Input Form in BPC

    Hi,
    Can anyone Please guide how to use input forms in BPC NW 10.0 when the requirement is to fetch the data by selecting the dimension member
    from input form and on the basis of that all the other dimension members gets select automatically and fetches the data?

    Hi Natasha,
    Please elaborate you requirement.
    The general rule is to move the dimension for which you want to select single value  to page axis, and other dimensions for which you want details should be moved to row or column axis.
    Regards,
    Kalyan.

  • Create Input Form

    I started to build a Fusion App with EJB-JPA business layer.
    I am working to create an Input Form but I can't follow exactly the paragraph 26.6 of Fusion Dev. Guide (create an Input Form) because I can't have a createInsert operation on my DataControl.
    How can I create an Input Form into application whit DacaCOntrol created from EJB-JPA business components ?

    I am very frustrating , it is ever more clear for me that it's impossible to build a nice Fusion App without to use the SDF BC .
    In this case I have a entity , Account .
    Simply I want to create a form to insert all fields of Account.
    Then I dragged the accountFindAll collection from data control and dropped it as ADF Form.
    After, I have created 1 methodAction to call the persistAccount (Account) method and one action to initially have an Account object as current row of accountFindAll iterator.
    Seem all ok , or not ?
    Instead I have a lot of problem :
    1) when using the page to insert Account and after return to other page listing all Account , I see 2 Account created with the same data, one is Account really inserted in DB and another is Account stored in current row of accountFindAll iterator
    2) when I reuse the insert page in the second time the account form is populated with data previously inserted
    please help me ... I want to make a form to create a Simple object but I have a EJB-JPA business layer ,not ADF BC , it's possible ???
    This is my page def :
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" version="11.1.2.60.17" id="createAccountPageDef"
    Package="admin">
    <parameters/>
    <executables>
    <variableIterator id="variables"/>
    <page path="templates.mainTemplatePageDef" id="ptb1" Refresh="ifNeeded"/>
    <iterator Binds="root" RangeSize="-1" DataControl="AdminServiceLocal" id="AdminServiceLocalIterator"/>
    <accessorIterator MasterBinding="AdminServiceLocalIterator" Binds="accountFindAll" RangeSize="-1"
    DataControl="AdminServiceLocal" BeanClass="org.savino.hb.model.entity.Account"
    id="accountFindAllIterator" Refresh="never"/>
    <invokeAction id="ia1" Binds="Create" Refresh="prepareModel"/>
    <accessorIterator id="userFindAllIterator" MasterBinding="AdminServiceLocalIterator" Binds="userFindAll"
    RangeSize="25" DataControl="AdminServiceLocal" BeanClass="org.savino.hb.model.entity.User"
    Refresh="prepareModel"/>
    <!--
    <accessorIterator MasterBinding="accountFindAllIterator" Binds="userList" RangeSize="25"
    DataControl="AdminServiceLocal" BeanClass="org.savino.hb.model.entity.User"
    id="userListIterator"/>
    -->
    </executables>
    <bindings>
    <attributeValues IterBinding="accountFindAllIterator" id="dataSaldo">
    <AttrNames>
    <Item Value="dataSaldo"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="accountFindAllIterator" id="descr">
    <AttrNames>
    <Item Value="descr"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="accountFindAllIterator" id="iban">
    <AttrNames>
    <Item Value="iban"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="accountFindAllIterator" id="saldo">
    <AttrNames>
    <Item Value="saldo"/>
    </AttrNames>
    </attributeValues>
    <action IterBinding="accountFindAllIterator" id="Create" RequiresUpdateModel="true" Action="createRow"/>
    <methodAction id="persistAccount" RequiresUpdateModel="true" Action="invokeMethod" MethodName="persistAccount"
    IsViewObjectMethod="false" DataControl="AdminServiceLocal"
    InstanceName="data.AdminServiceLocal.dataProvider"
    ReturnName="data.AdminServiceLocal.methodResults.persistAccount_AdminServiceLocal_dataProvider_persistAccount_result">
    <NamedData NDName="account" NDValue=""
    NDType="org.savino.hb.model.entity.Account"/>
    </methodAction>
    </bindings>
    </pageDefinition>
    Edited by: Kronos72it on Oct 6, 2011 6:14 PM
    any reply ?

  • Multiple reports in same sheet used as input form

    Hi,
    I am using the Excel EPM Add-In and I would like to use different reports in the same sheet, going with the same connection to the same Planning Book and Data View in APO DP. I would like to use them all as an input form (I already checked 'Use as Input Form in the sheet options). When I try to upload adapted data from the first report, this works well, but when I try this from the second report, I get the error 'There is no data to save'.
    Can anyone help me on this issue?
    Kind regards,
    Kristof

    Hello Hassan,
    I'm not sure if I completely understand your question, but I suppose you always have to do the following steps:
    - Log on to the system (your usual SAP user and pw)
    - Create a report:
    - Choose the characteristics you want to see and always take the Key Figures (Row Axis) and Time (Column Axis) into the report (in the example, I only took the Product characteristic)
    - Click on the dimensions you have chosen and select what you want to see in your report (I often take 'All members')
    - Press 'OK', normally you should now see the data you chose.
    Kind regards,
    Kristof

  • BW BPC 10 input form security

    Hi,
    i would like to ask you a question about BW BPC 10 input form security.
    I want to apply sequrity to input form for each BPC users.
    forexample i have 4 input form in BPC system, form A, form B, form C, form D.
    i want to give a access security to user1 only form A and form C  or  can i apply security to input form folder.
    is there any way  to do this issue.
    Thank you.

    Hi,
    Once you create teams in BPC security, assign some members to that team.
    Now, in your EPM addin, by default, the templates are usually stored in the COMPANY folder. While saving the templates, you will see the teams, on the left side, that you have created in BPC admin.
    Save the templates in one of these teams.
    Please note that you need to be part of the team in order to save the template.
    Hope this helps.

  • GP doubt in  Data Input form

    Hi Experts,
    I have a doubt in GP Input Data Form callable object.
    When i insert a callable object of type "Data Input Form" and test it.
    It should display Input box and a button only. But i'm getting "Edit/View Attributes Values" and below i'm getting the input box, button. (u can view in following link https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d027c966-b6de-2910-0681-cdb0be7e1b59 )
    My question is, How to avoid "Edit/View Attributes Values"?
    I was following the tutotial
    SAP Composite Application Framework - CAF Tutorial Center [original link is broken]
    Tutotial name: 33 Creating a Callable Object in Group - Data Forms (GP)
    Valuable answers will b rewarded.
    Thanks in Advance,
    Suba

    Hi,
    You are creating Data Input Form callable Object. The template for Data Input Form is provided by SAP. So you can not change the template. It is fixed.
    Which Service Pack are you using? The screen short within the link (https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1f589ed1-0c01-0010-9988-e3a67384acd9) are taken from SP7 or before that. But from SP8 onwards you will not get that type of Data Inout Form template. So I think you are using SP8 or nowards. Now staing on your current SP level If you want to hide the "Edit/View Attributes Values" then you need to create your own (custom) Form either using Web Dynpro Application or VC application.
    Please set your requirement which technique and which SP you will use.
    Thanks
    Chandan

  • Use of oledb database connection in input form of process

    I've created dynamic pdf form with data connection to mssql database and with script that automatically adds rows to table and fills fields.
    When I try to open this form as input form for my process in workspace it generates an error: Unable to create SOM expression. That means that sql database connection works not properly.
    How can I fix this? Is it possible to use data connection to oledb database in the input form?

    Hi,
    I have a form that includes db connection (OLDB ->Access). But in
    workspace I have an error while initiating it. The error is an Adobe Acrobat message;
    "Unable to create SOM expression $record.tablename.fieldname"
    I am using Acrobat 9 pro ext. and when I use reader then there is no problem.
    I removed enhanced security settings in preferences of Acrobat. What else i can do? Any suggestions?
    Thank in advance..

  • Unable to open templates from server input form folder and server root folder from some system while the same can be open from others system

    Hi,
    I am unable to open input scheduled from server root folder and also from input form folder on some system while they can be open from others system.
    Please advice.
    Thanks in advance

    Hi Hengye,
    While opening , it dont give any error. When I try to open it , it takes some time to load then nothing happen.However I can open it on other system but not on mine my collegue and user system.
    Please advice.
    Thanks.

  • How to combine data from different input forms outside a nested iView

    Hi,
    i try to combine data from different input forms in a single one.
    Because of space reasons in Flex compiling i already use nested iViews. Within these nested iViews its possible to use the 'combine' function to do this.
    But in the main iView I cant compose these function with other elements. I need to do this because of using these model in Guided Procedures with output parameters. These parameters I only get with a 'endPoint'. Unfortunatly its not possible to combine data from different input forms into the 'endPoint'.
    Is there any solution?
    Thanx
    Mathias

    Hi Scott,
    i tried this already and i also tried to map all parameters in the endpoint by drawing lines from the other forms and assign the 'empty parameters' by a formula.
    And when i create a collable object in GP and assign the VC iView, only the parameters of the parent-form (the form who trigger the event) are shown as output-parameters.
    Maybe any other ideas? I cant believe that such a simple thing is not possible?!?!
    In my opinion, thats a bug, that I'am not able to use the combine-operator in the main VC-iView. Whats your mind?
    greets
    mathias

Maybe you are looking for

  • Can I share purchased ibooks between family members?

    My daughter and I have ipads and I'd like to share ibooks...is this possible?

  • Read-only console ?

    In wls8.1 or in wls6.1/wls7.0 ..........is there any way out to make the console to be "READ-ONLY" ....any field or parameter that i need to set ? any workaround may be ??? -sabgita

  • Error 1327 Invalid Drive H:\

    I received the error mentioned in the subject line when attempting to install iTunes v. 7.02 I received the same message when attempting to install the stand alone version of QuickTime I was attempting to install both on my c drive. I don't even have

  • Problem using ddd with emacs

    Dear all, I am using emacs in conjunction with ddd to debug C codes on  my laptop I normally enter gdb commands on the tty in emacs, watch the position in the source code in emacs and look variable states in ddd. For some reason I can not enter gdb c

  • BDC not working in Background mode

    Hi All, I have created a BDC. It is working fine in forground mode but not woking in background mode. Please any one know what could be the problem. thanks, Shweta