Dialog in VIWE data to Portal

Can anybody help me to move setup data (Table and text edit boxes) from a dialog box in VIEW to the data Portal (Group/Channel)
Thanks
David
Solved!
Go to Solution.

Hi David,
Do you want to write the information to group/channel properties or to channel values?  Are you unclear about reading the values from the SUDialog controls or about writing the values to the Data Portal?
Brad Turpin
DIAdem Product Support Engineer
National Instruments

Similar Messages

  • Get date from portal in a web dynpro?

    hi all,
    how get date from portal in a web dynpro???
    thanks.

    new Date(System.getTimeInMillis());
    Good luck, Roelof

  • Need Sample code to retrieve Data from Portal DB(Oracle)

    Would anyone provide me steps to create application with a sample code to retrieve data from portal DB which is oracle and see the output in table format.

    Hi Bris ,
    The sample code , you didnt specified from where do u want to access the oracle thorough java code or through webdynpro .
    Sample code to access through Java
    import java.sql.*;
    class Customer
    public static void main(String args[]) throws SQLException
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    System.out.println("Connecting to the database...");
    try
    Connection cn=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","scott","t");
    Statement st=cn.createStatement();
    ResultSet rs=st.executeQuery("select 'Connected' from dual");
    rs.next();
    String s=rs.getString(1);
    System.out.println(s);
    st.close();
    cn.close();
    catch(Exception ex)
    System.out.println("The exception raised is:" + ex);
    [code]
    If accessing through JDBC datasorce.
    https://www.sdn.sap.com/irj/sdn/thread?threadID=328550
    https://www.sdn.sap.com/irj/sdn/thread?threadID=309386
    [code]
    package com.dhl.employeemodel;
    import java.sql.Connection;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.sql.DataSource;
    public class DBConnectionManager {
         Connection connection;
          * @return
         public Connection getConnection() {
              try
                   Context jndiContext = new InitialContext();
                   DataSource ds = (DataSource)jndiContext.lookup("jdbc/MyAlias");
                   connection = ds.getConnection();
             catch(Exception connectionErrEx)
                   //connectionErrEx.printStackTrace();
                   return null;
              return connection;
    Thanx
    Pankaj

  • How to don't display dialog after send data on BPC for Excel?

    Dear experts,
    I don't want to display dialog after send data on BPC for Excel, how can I do that?
    OS: MS XP SP2
    OFFICE : 2003
    BPC : 7.5 NW

    Hi,
    You need to change the macro assigned to the standard button. There are few macros available. You can try them and see which one suits you the best.
    MNU_eSUBMIT_REFSCHEDULE_BOOK_CLEARANDREFRESH: Sends workbook and clears data and refreshes workbook.
    MNU_eSUBMIT_REFSCHEDULE_BOOK_NOACTION: Sends data without clearing or refreshing the worksheet.
    MNU_eSUBMIT_REFSCHEDULE_BOOK_NOACTION_SHOWRESULT: Sends data without clearing or refreshing the worksheet, and shows the result in a window upon successful send.
    MNU_eSUBMIT_REFSCHEDULE_BOOK_NODIALOG_SHOWRESULT: Sends active book without any dialog and show result box.
    MNU_eSUBMIT_REFSCHEDULE_BOOK_REFRESH: Sends workbook and refreshes data.
    MNU_eSUBMIT_REFSCHEDULE_SHEET_CLEARANDREFRESH: Sends data and clears and refreshes the worksheet.
    MNU_eSUBMIT_REFSCHEDULE_SHEET_NOACTION: Sends data without clearing or refreshing.
    MNU_eSUBMIT_REFSCHEDULE_SHEET_REFRESH
    Hope it helps.

  • How to don't display dialog after send data?

    Dear experts,
      I don't want to display dialog after send data on BPC for Excel, how can I do that?
    OS: MS XP SP2
    OFFICE : 2003
    BPC : 7.5 NW

    I have moved this thread to the BPC NW forum.  Notice the sticky [note|Please do not post BPC, SSM or FI/CO questions here!; at the top of the FPM - General (PCM, FC, Other) Forum whereby we announced new dedicated forums for BPC which are the proper place to post your questions regarding BPC in the future.
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP Labs, LLC
    BusinessObjects Division
    Americas Applications Regional Implementation Group (RIG)

  • Problems in using using a calendar to pick up a date in portal form

    Hello:
    I met some problems in using using a calendar to pick up a date in portal form.
    I created a form using "custom layout"
    Using Scott/Tiger, emp table HIREDATE put the following anchor next to it in the body text field
    <<img src="/images/calendar.gif" width=24 height=22 border=0>
    Then, I put the source tag in the header section
    <script language="JavaScript1.1" src="/images/date-picker.js"></script> in the Header Text of the Form Text part.
    However, for some reasons, after I pciked the date in the calendar,the field in the form could not be updated.
    Your help would be highly appreciated.
    Wei

    I just fixed the bug. The data pickup calendar is working now.
    The reason is that:
    when oracle portal generates a portal form based on a table, the element in the generated form is defined by: [Form Name].[element name].[index#].
    e.g.
    <INPUT TYPE="BUTTON" NAME="FORM_AREA.DEFAULT.QUERY_TOP.01" VALUE="Query" onClick=" do_event(this.form,this.name,1,'ON_CLICK','');">
    The "FORM_AREA.DEFAULT.QUERY_TOP.01" means: A input text box "QUERY_TOP" with index "01" in the form "FORM_AREA" which is located in the "DEFAULT" block.
    The problem of my previous codes is that: Javascript could not access the elements on the parent widnow by name for those elements whose names have more than 1 "." sign e.g. "FORM_AREA.DEFAULT.QUERY_TOP.01". So, I accessed them by their locations in the DOM hierarchy. It works now.
    e.g.
    <a href="javascript:show_calendar('forms[0.elements[23');" onmouseover="window.status='Click to open an Wei's calendar'; return true;" onmouseout="window.status='';return true;">
    <img src="/images/calendar.gif" width=24 height=22 border=0>
    </a>
    Wei Ye

  • Uploading data using portals

    Hello Gurus,
         in my program i am using 'KCD_EXCEL_OLE_TO_INT_CONVERT' as a function module to upload the file and it is working very good when i am uploading the data through GUI  and now i am trying to upload the data using portal it is not working at all. can anybody give me the solution how to upload the data using portal or which function module i have to use. i will appreciate it  
    thanks

    HI Sulleman,
    please chk these link. i hope they will help you.
    Pls use BW07 & BW10 Tcodes for generating the Hierarchy Data Source in R/3.
    If its a set of hierarchy you can use tcode BW07 to generate datasoucre, and for standard hierachies you must be having datasources already created.
    Now just replicate datasoucre in BW side, and in infopckage selection you can get newly created hierarchy. Select and schedule it, it will be loaded into BW.
    For External Hierarchy in BW , download to Flatfild and then upload.
    The useful link:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0403a990-0201-0010-38b3-e1fc442848cb
    material hierarchy data source
    and:
    How to create a hierarchy datasource in R/3
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0403a990-0201-0010-38b3-e1fc442848cb
    http://help.sap.com/saphelp_nw04/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    /thread/107051 [original link is broken]
    how to upload bsp application on existing portal
    thanks
    shankar
    reward me if usefull

  • Publishing BEx Analyzer data in Portal

    Hi,
    Does anyone have experience with publishing BEx Analyzer data in Portal?
    I need an overview of practical steps to achieve the same.
    Best Regards,
    Kumar

    Hi Deepu,
    All the parameters in the SAP_BW system is correct and i have tested the ITS, WebAS and Connector tests also and everything is green. In the BI diagnostic tool everything was green however in the RSPOR_SETUP the Maintain User Assignment was getting failed, so i removed the UME Master System (Reference system) from the Portal as i'm using the SAP Logon Tickets both ways. So there is no need for the reference system. After that RSPOR_SETUP is okay and in the BI Diagnostic tool one is red (UME Master system).
    One thing i have noticed in the RSPOR_SETUP now that it tells me in the second step:-
    com.sap.ip.bi Java classes with different versions.
    Different ABAP and Java Support packages
    ABAP support package 12
    Java Support package   11
    Vaib
    Any clue??
    Vaib

  • Portal Database -- What it is? Can we store data in Portal itself?

    Hi Experts,
    Can you please let me know what is portal database?
    Can I store some information like Emp No and Tel No in Portal itself?
    Regards,
    Gaurav

    Hi Gaurav,
    1.Portal Database holds the portal related data like iviews,worksets,pages, roles etc.
    Refer to [How the Portal Works|http://help.sap.com/saphelp_nw04s/helpdata/en/42/BFA145731B1D64E10000000A1553F6/content.htm]
    2. Emp No and Tel No are generally for the users, so it depends on how you configure your UME.
    http://help.sap.com/saphelp_nw04/helpdata/en/da/9cd53f779c4e21e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/7e/a2d475e5384335a2b1b2d80e1a3a20/frameset.htm
    Also refer to SAP Note 780679
                         SAP Note 718383
    Good Luck!
    Sandeep Tudumu

  • No data in Portal Database tables for Activity Report

    Hi experts,
    I've developed an Activity Report application in SAP Portal 7.0, which went live but the report shows no data.
    We are pulling data from 2 portal database tables: WCR_WEBCONTENTSTAT and WCR_USERPAGEUSAGE
    In non production environment there is data in the report but there is no data in the production environment.
    The Activity Report service is already activated/started and set to true.
    What could have caused this? And what should we check now?
    What other configurations/setup should be done?
    Regards,
    Greg

    Hi Greg,
    Those are the aggregated tables. If they are not filled with data although the Portal Activity Report is activated, you should check whether the aggregation finished successfully.
    In the older SPs there were some problems that were fixed in later SPs of 7.0.
    In order to have the latest version of Portal Activity report, you can check SAP note 1084379 - Portal Activity Report - Latest Version (SDA file).
    You can compare the SP via the MANIFAST file, as it contains the version and SP number.
    In order to troubleshoot problems in Activity Report, you can follow SAP note: 1690023 - Portal Activity Report - Component-specific Note
    Some basic checks that you can do:
    Run query on the raw data tables to check since when there is data in those tables:
    select min(timestamphour) from SAP<SystemID>DB.WCR_WEBCNODESTAT;
    If there is too much data from long time ago, then you should delete the old data, and leave only the new data (there is anyways retention time for the data to be kept).
    If there is no data, then it means that the Portal Activity Report does not collect data, and not really activated (usually this is not the case).
    The aggregation runs every top of the hour, so you can check in the default traces for an error during that time.
    In most of the cases something went wrong while aggregating the data.
    As a result the aggregation is not finished, so the transaction is not being committed, and the aggregated tables stay empty.
    If there is a DuplicateKeyException in the trace, you can follow SAP note 1054145 - Duplicate Key Exception.
    If you have any more questions, please don't hesitate to ask.
    I hope this information helps,
    Thanks & regards,
    Michal Zilcha-Lang

  • No data in Portal Report but have data in Bex Analyzer

    Hi experts,
    I have problem regarding portal reports. When you view the report using the bex analyzer, there is data. But when you view the report in the portal from iview, there is no data.
    Please help experts.
    Thanks

    Hi Emmanuel (that's weird, I am an Emmanuel too! and we both have Filo origins),
    There can be heaps of reasons for this.
    1) Please try to run the query in transaction RSRT by entering the query name and clicking "Java Web". See if that gives you results. If that gives your results, then the iView that was saved in the portal might need some reconfiguration. Check it out.
    2) Check the logic of your user exit variables. The sequence of the I_STEP calls is a bit different if you run a query in the Portal. For example, if you don't have a mandatory variable in your query, then the olap engine will call I_STEP=1 to 3 before it shows the variable screen. This behaviour is not documented in help.sap.com. However, it does work that way.
    3) Try to check the caching settings for your iView. It might be caching the result. You can change this in Content Administration in the portal.
    Try the above and see if it helps. Otherwise, post another message.
    Cheers.

  • How To Change Default Expiration Date for Portal User in Linux and Windows?

    Hello,
    I have a couple of environments I recently installed:
    1. Oracle Application Server 10 Release 2 (10.1.2) SEOne on Windows
    2. Oracle Application Server 10g Release 2 (10.1.2) Enterprise Edition on Linux
    I heard the portal and orcladmin user passwords will expire in about 60 days. I want to prevent this from happening. How can I set the expiration date to never expire for both these users? Or at least give me some warning?
    I heard that you can do this through the Oracle Directory Manager. However, I am unsure as which server to enter on the field. I've used the following:
    <servername>.hostname.com/389
    <DBname>.hostname.com/389
    They say 389 is the default port. Since I did not really
    Does anyone have any ideas?

    You have the answer in yours hands:
    Search for "60 days" in the forum
    How can I enfore Password Expiry Without Lockout?
    for instance.
    For the servername, it's the name of your server and the port is depending of your platform (have a look to $ORACLE_HOME_INFRA/install/portlist.ini) and
    chech the value for: Oracle Internet Directory port
    Patrick.

  • Critical error while opening the personal data in portal

    Dear friends
    In the portal after  clicking on the  personal data tab i am getting the following error .
    A critical error has occured processing of the service has to be terminated .Unsaved data has been lost.
    Please contact your system administrator .
    Screen output without connection to user., error key :RFC_ERROR_SYSTEM_FAILURE.
    Here please note that when i am accessing the same personal data tab in the development it is working fine but this problem is with production only.
    Can anybody please let me know the solution for this error.
    Best Regards.

    Dear krishna,
    Hope you are doing good.
    As suggested, there is a backend dump generated; you need to heck it and fix in the backend. /nst22 , /nstad and /n sm21 will give you more info.
    Also do double check all the JCo's for ESS.
    Thank you and have a nice day :).
    Kind Regards,
    Hemanth
    SAP AGS

  • Adding calander to a date in Portal

    Hello,
    We would like to implement date picker (calander) attached to a date field in Portal 9is ver 1
    Can you please point us to the right direction.
    Thanks.

    Oracle Portal has a Calendar component (a wizard to build a calendar portlet) under Providers Tab -> Portal DB Providers.

  • How to handle unsaved data in portal through webdynpro ABAP ?

    Hi Experts ,
         I  need to handle unsaved data in SAP Enterprise Portal through webdynpro for ABAP . I got a sdn link which explained some code for this..
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/b76f4169e25858e10000000a1550b0/frameset.htm
    I tired to implement this in EXIT method of the view. but im not able to get this . Can any one help me in this ? .
    Regards ,
    Kalpana .

    Hi ,
    Yes i have checked the code . But the example itself not working when i linked the same with portal . If EXIT is not the right method , Can you help in placing the code in right method ? The code i pasted in EXIT method is 
    data L_COMPONENTCONTROLLER type ref to IG_COMPONENTCONTROLLER .
    data L_API_COMPONENTCONTROLLER type ref to IF_WD_COMPONENT.
    data L_PORTAL_MANAGER type ref to IF_WD_PORTAL_INTEGRATION.
    L_COMPONENTCONTROLLER =   WD_THIS->GET_COMPONENTCONTROLLER_CTR( ).
    L_API_COMPONENTCONTROLLER = L_COMPONENTCONTROLLER->WD_GET_API( ).
    L_PORTAL_MANAGER = L_API_COMPONENTCONTROLLER->GET_PORTAL_MANAGER( ).
    call method L_PORTAL_MANAGER->SET_APPLICATION_DIRTY_FLAG
      exporting
        DIRTY_FLAG = ABAP_TRUE .

Maybe you are looking for

  • User EXIT/BADI for new creating commitment in transaction TRIP

    Hi, We have a requirement where we do not want to create commitment at the time of creation of expense statement by employee (we are creating expense statement using tcode TRIP), it should post to actual budget at the time of posting of expenses to F

  • What MacBook Pro with Retina Display is recommended for college students?

    I'm trying to decide which MacBook Pro with Retina Display to buy before I go off to college. I want to get the 2.6 GHz, 16 GB of RAM, and just the 512 GB of Flash. But I don't know which one is better for a business major. The 2.6 GHz Pro with Retin

  • Different ways to do a presentation?

    Hello, i'm no presentation expert, thus I often turn to Microsoft Powerpoint for my presentation purposes. However, I've worked with some people who present off of PDFs, which they prefer as it makes it very easy for them to give the presentation to

  • Mid2010 imac running Mavericks, reoccuring kernal panic

    Can someone help me look into the problem? It's been troubling me for a while. Thanks a lot! The kernal panic issue had been with my imac since before I updated to Mavericks. Things I tried: 1. Safe mode. Seems okay. Didn't manage to replicate kernal

  • Summarize posting for same GL

    Hello Summarization of document at flow type just summarizes the customer/ vendor line item but it does not summarize the revenue/ expense line item having same GL. Is there anyway to handle this requirement: Current Scenario: Debit      Customer