Determining the current viewId

Hi, I need to determine the current view id, therefore I am using the following code:
/* adf-settings.xml */
<adf-settings xmlns="http://xmlns.oracle.com/adf/settings">
  <adfc-controller-config xmlns="http://xmlns.oracle.com/adf/controller/config">
    <lifecycle>
      <phase-listener>
        <listener-id>myPagePhaseListener</listener-id>
        <class>obasi.common.domain.myPagePhaseListener</class>
      </phase-listener>
    </lifecycle>
  </adfc-controller-config>
</adf-settings>
/* myPagePhaseListener */
    public void beforePhase(PagePhaseEvent pagePhaseEvent) {           
        try {           
            if (pagePhaseEvent.getPhaseId() == Lifecycle.PREPARE_MODEL_ID) {
                for (Object child:FacesContext.getCurrentInstance().getViewRoot().getChildren())
                    if (child instanceof RichDocument)
                        System.out.println(FacesContext.getCurrentInstance().getViewRoot().getViewId());
        } catch (Exception ex)
            // ignore
    }But this doesn't seem to work accurately. Some viewId's are only "detected" after leaving a page...
I noticed that this happens when the URL inside my browser also remains pointing to the previous page.
Is there a way to solve this?
Thanks in advance,
Charles.

Hi,
Thanks for helping me out, Simon.
I am not sure about what changes should be made to my web.xml in order to not have the resources as view id's.
So here goes my web.xml - in the hope that you would be so kind to point me out where the problem lies.
<?xml version = '1.0' encoding = 'windows-1252'?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
    <description>Empty web.xml file for Web Application</description>
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
    </context-param>
    <context-param>
        <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
        <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
        <param-value>false</param-value>
    </context-param>
    <context-param>
        <param-name>RedirectToLogin</param-name>
        <param-value>login</param-value>
    </context-param>
    <context-param>
        <description>Whether the 'Generated by...' comment at the bottom of ADF Faces HTML pages should contain version number information.</description>
        <param-name>oracle.adf.view.rich.versionString.HIDDEN</param-name>
        <param-value>false</param-value>
    </context-param>
    <filter>
        <filter-name>JpsFilter</filter-name>
        <filter-class>oracle.security.jps.ee.http.JpsFilter</filter-class>
    </filter>
    <filter>
        <filter-name>trinidad</filter-name>
        <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
    </filter>
    <filter>
        <filter-name>adfBindings</filter-name>
<!--
        <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
-->
        <filter-class>obasi.instel.customlogin.DynamicJDBCBindingFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>JpsFilter</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>INCLUDE</dispatcher>
    </filter-mapping>
    <filter-mapping>
        <filter-name>trinidad</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <filter-mapping>
        <filter-name>adfBindings</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
        <servlet-name>resources</servlet-name>
        <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/afr/*</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
        <extension>html</extension>
        <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>txt</extension>
        <mime-type>text/plain</mime-type>
    </mime-mapping>
</web-app>Please note that I am using Steve Muench's DynamicJDBCCredentials (http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html #129)

Similar Messages

  • How to determine the current update level of the system

    How can we determine the current update level of the system. uname -a shows the release but how to obtain the update level through a program?
    I have this sample program to display the version
    #include <iostream>
    #include <sys/utsname.h>
    #include <dirent.h>
    using namespace std;
    int main()
      struct utsname osinfo;
      // Call uname to get system info, then extract strings.
      uname(&osinfo);
      if (osinfo.machine)  {
        cout<<" Machine : "<<  osinfo.machine;
      if (osinfo.sysname)  {
        cout << "\nOS Name : " << osinfo.sysname;
    if (osinfo.release[0] != '\0')  {
        cout<<"\nRelease : " << osinfo.release;
    }My aim is to check if the Solaris box is 5.10 update 4 or not.
    Edited by: nidhish9 on Nov 27, 2007 5:11 AM

    nidhish9 wrote:
    How can we determine the current update level of the system. uname -a shows the release but how to obtain the update level through a program?
    I have this sample program to display the version
    #include <iostream>
    #include <sys/utsname.h>
    #include <dirent.h>
    using namespace std;
    int main()
    struct utsname osinfo;
    // Call uname to get system info, then extract strings.
    uname(&osinfo);
    if (osinfo.machine)  {
    cout<<" Machine : "<<  osinfo.machine;
    if (osinfo.sysname)  {
    cout << "\nOS Name : " << osinfo.sysname;
    if (osinfo.release[0] != '\0')  {
    cout<<"\nRelease : " << osinfo.release;
    }My aim is to check if the Solaris box is 5.10 update 4 or not.
    Edited by: nidhish9 on Nov 27, 2007 5:11 AMIt's in /etc/release...
    essapd020-u004$ cat /etc/release
                           Solaris 10 8/07 s10s_u4wos_12b SPARC
               Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                                Assembled 16 August 2007
    essapd020-u004$ It can be processed with some simple commands:
    essapd020-u004$ cat /etc/release | head -1
                           Solaris 10 8/07 s10s_u4wos_12b SPARC
    essapd020-u004$ cat /etc/release | head -1 | cut -f2 -d_ | cut -c1,2
    u4
    essapd020-u004$ Best,

  • IWork Numbers -- how to determine the current selected column/row?

    I am trying to write a script that grabs some text from a Numbers spreadsheet based on the selected field. I just can't figure how to actually get the column and row in a way I can use. Here's my start:
    tell application "Numbers"
    tell document 1
    -- DETERMINE THE CURRENT SHEET
    set currentsheetindex to 0
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of (tables whose selection range is not missing value)
    end tell
    if x is not 0 then
    set the currentsheetindex to i
    exit repeat
    end if
    end repeat
    if the currentsheetindex is 0 then error "No sheet has a selected table."
    -- GET THE VALUES OF THE SELECTED CELLS
    tell sheet currentsheetindex
    set the current_table to the first table whose selection range is not missing value
    tell the current_table
    set the range_values to the value of every cell of the selection range
    set therange to every cell of the selection range
    set thecol to column of first item of therange
    set therow to row of first item of therange
    end tell
    end tell
    end tell
    end tell
    It gives me a result like
    row "30" of table "table" of sheet "sheet 1" of document "Scheduler.numbers" of application "Numbers"
    but what I need is just "30" so I can use it for my scripts. I can't figure how to convert this to a string or some other useful format.
    Can anyone help? I like Numbers but I always run into little problems like this, something I can't figure how to do, compared with other scriptable programs.

    Search forGetSelParams or better for get_SelParams in the existing threads.
    I posted this handler more than 30 times !
    Yvan KOENIG (VALLAURIS, France) vendredi 18 mars 2011 17:03:05

  • Where do I determine the current Firmware version that's installed?

    Where do I determine the current Firmware version that's installed?
    Thanks,
    Kristin.

    Firmware updates necessary (for OS X operation) for older Macs are available at Mac OS X: Available firmware updates
    http://docs.info.apple.com/article.html?artnum=86117
     Cheers, Tom

  • How to determine the Current Domain name from inside an Mbean / Java Prog

    We have registered an Application Defined MBean. The mbean has several APIs. Now we want to determine the currrent domain using some java api inside this Mbean. Similarly we have deployed a Webapp/Service in the Weblogic domain. And inside this app we need to know the current Domain. Is there any java api that will give this runtime information.
    Note: We are the MBean providers not clients who can connect to the WLS (using user/passwd) and get the domain MBean and determine the domain.
    Fusion Applcore

    Not sure if this will address exactly what you are looking to do, but I use this technique all the time to access runtime JMX information from within a Weblogic deployed application without having to pass authentication credentials. You are limited, however, to what you can access via the RuntimeServiceMBean. The example class below shows how to retrieve the domain name and managed server name from within a Weblogic deployed application (System.out calls only included for simplicity in this example):
    package com.yourcompany.jmx;
    import javax.management.MBeanServer;
    import javax.management.ObjectName;
    import javax.naming.InitialContext;
    public class JMXWrapper {
        private static JMXWrapper instance = new JMXWrapper();
        private String domainName;
        private String managedServerName;
        private JMXWrapper() {
        public static JMXWrapper getInstance() {
            return instance;
        public String getDomainName() {
            if (domainName == null) {
                try {
                    MBeanServer server = getMBeanServer();
                    ObjectName domainMBean = (ObjectName) server.getAttribute(getRuntimeService(), "DomainConfiguration");
                    domainName = (String) server.getAttribute(domainMBean, "Name");
                } catch (Exception ex) {
                    System.out.println("Caught Exception: " + ex);
                    ex.printStackTrace();
            return domainName;
        public String getManagedServerName() {
            if (managedServerName == null) {
                try {
                    managedServerName = (String) getMBeanServer().getAttribute(getRuntimeService(), "ServerName");
                } catch (Exception ex) {
                    System.out.println("Caught Exception: " + ex);
                    ex.printStackTrace();
            return managedServerName;
        private MBeanServer getMBeanServer() {
            MBeanServer retval = null;
            InitialContext ctx = null;
            try {
                //fetch the RuntimeServerMBean using the
                //MBeanServer interface
                ctx = new InitialContext();
                retval = (MBeanServer) ctx.lookup("java:comp/env/jmx/runtime");
            } catch (Exception ex) {
                System.out.println("Caught Exception: " + ex);
                ex.printStackTrace();
            } finally {
                if (ctx != null) {
                    try {
                        ctx.close();
                    } catch (Exception dontCare) {
            return retval;
        private ObjectName getRuntimeService() {
            ObjectName retval = null;
            try {
                retval = new ObjectName("com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean");
            } catch (Exception ex) {
                System.out.println("Caught Exception: " + ex);
                ex.printStackTrace();
            return retval;
    }I then created a simply test JSP to call the JMXWrapper singleton and display retrieved values:
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page import="com.yourcompany.jmx.JMXWrapper"%>
    <%
       JMXWrapper jmx = JMXWrapper.getInstance();
       String domainName = jmx.getDomainName();
       String managedServerName = jmx.getManagedServerName();
    %>
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>JMX Wrapper Test</title>
        </head>
        <body>
            <h2>Domain Name: <%= domainName %></h2>
            <h2>Managed Server Name: <%= managedServerName %></h2>
        </body>
    </html>

  • Determining the Current Tab

    I am currently on a project dealing with tabs as defined by the 3.0.9 portal.
    It is an absolute showstopper if we cannot determine which tab page a portlet is on, that is if we cannot know the identity/state of the currently rendered tab in a page.
    Either we need to know how to hook to a tab so that when it is clicked we can get some info, or we must have the state of the currently visible tab page.
    There is no apparent API for this.
    We have tried to construct a tab page monitor, but cannot attach aportlet to the page which we can guarantee will be rendered first, and therefor use that to guarantee the rest of the portlets on the page will be rendered properly.
    Once again, this is a showstopper for the client. There must be a reliable workaround for this, but we have not found it.
    Help!

    I'm concerned...
    It has been suggested that I could essentiall parse the "_pageid" variable from the current page URL to get the information about which tab is visible, by matching what I know to be the page, and tab numbers for the tabs on the page. I certainly can do that.
    Even a brute force approach such as this requires that I have access to the current Page URL.
    Perhaps I have missed something, but is there a method in PL.SQL for me to get the URL for the current page, rather than for the current portlet?
    I cannot guarantee which sequence portlets will be rendered on the page, only that they will all start and finish ( or time out ) before the page is displayed to me.
    So, Is there a method to get the Page URL( with query string attached ) between the time when it is sent (completed) to the server to be rendered, and time when the page is displayed in my browser.
    This is the time when the portlets on the page need the information to do their jobs.
    Or, is there a way to hook into the tab, and when it is pressed, set some state variable that will serve the purpose as well.
    We are using only the standard components and PL/SQL as required to promote maintenance and eventual reuse.
    null

  • Determine the current max shared memory size

    Hello,
    How do I determine the max shared memory value in effect on the box I have. I dont wish to trust /etc/system as that value may not be the effective value unless the system has been rebooted after that setting.
    Any pointers would be appreciated.
    Thanks
    Mahesh

    You can get the current values using adb:
    # adb -k
    physmem 3e113
    shminfo$<shminfo
    shminfo:
    shminfo: shmmax shmmin shmmni
    10000000 c8 c8
    shminfo+0x14: shmseg
    c8
    The shminfo structure holds the values being used and the shminfo
    macro will print out the values in hex.
    Alan
    Sun Developer Technical Support
    http://www.sun.com/developers/support

  • A better way to determine the current state of the FLVPlayback component?

    Below is the AS3 code I have used to display images (MCs) over an instance of the FLVPlayback component.  These images (one for loading, one for the title) are to appear – or disappear – according to the current state of the FLVPlayback component. 
    It “works,” but when testing, I have noticed that it can be rather finicky.  The most common issue that arises is that many times the loadPoster movieclip will still be visible even though the video has entered the playing state.
    Also, I wanted a title placeholder image to appear whenever the user stops the video or if the video completes.  However, I had to add the conditional statement to the “stoppedStateEntered” case to make everything appear when expected.  When the video is first viewed (and has completed buffering), it seems that the FLVPlayback component enters the stopped state before entering the playing state.  Thus, the titlePoster would flash on the screen right before it and the loadPoster “should” disappear when the video begins playing.
    Even in my limited testing, these issues were very easily re-created.  I am definitely looking for a more reliable solution.  Is there a better (or more correct) way to go about all this?  If possible, I would like to stick with the FLVPlayback component, just for the simple fact of not having to code my own.
    Where am I going wrong?
    function updateMoviePoster(event:VideoEvent):void
                    switch (event.type)
                                    case "playingStateEntered":
                                                    loadPoster.visible = false;
                                                    titlePoster.visible = false;
                                    break;
                                    case "stoppedStateEntered":
                                                    if (loadPoster.visible == false)
                                                                    titlePoster.visible = true;
                                    break;
                                    case "complete":
                                                    titlePoster.visible = true;
                                    break;
    myFLVPlayback.addEventListener(VideoEvent.PLAYING_STATE_ENTERED, updateMoviePoster);
    myFLVPlayback.addEventListener(VideoEvent.STOPPED_STATE_ENTERED, updateMoviePoster);
    myFLVPlayback.addEventListener(VideoEvent.COMPLETE, updateMoviePoster);

    Any suggestions?  I would truly appreciate the help.

  • Determining the current frame/time of video

    I'm using AS2 and would like to create a function to monitor
    the current
    time of an FLV file in a swf. I'm using the swf in Director
    and using the
    format sprite (1).flvCode.flvPlay () where sprite (1) is the
    location of the
    swf, my AS2 code is in a movieClip with an instance name of
    flvCode and I
    have a function (just or illustration purposes) of flvPlay ()
    I'v looked in the AS2 reference but it's strangely absent of
    code that would
    provide the current flv time or even the duration of the flv.
    Craig

    Thanks. I'm too much of a novice to even realize that I was
    asking the same
    question.
    "Rothrock" <[email protected]> wrote in
    message
    news:g4dqhr$58e$[email protected]..
    > Like David told you in your other thread you need to
    look under the
    > class(es)
    > that you are using. Are you using the FLV playback
    component? In that case
    > you
    > need to look in the Components Language Reference.
    >
    > From there scroll down to FLBPlayback Component.
    >
    > In there the FLVPlayback Class will have a listing of
    everything that is
    > available.
    >
    > I'm thinking that FLVPlayback.playheadTime and
    FLVPlayback.totalTime are
    > probably what you want.
    >
    > If you aren't using the playback component then you most
    likely need to
    > look
    > at the ActionScript 2.0 language reference under the
    NetStream Class. In
    > that
    > case you will need the onMetaData event to capture the
    total time for the
    > FLV
    > when it loads and the time property to check the current
    position.
    >
    > So I don't know where you were looking, but there is
    plenty of code to
    > help
    > you along.
    >

  • Can you determine the current phase running?

    Is there any API which you can invoke to tell you what phase the JSF lifecycle is currently in?
    For example, suppose I have a backend bean, receiving JSF invocations. I would like to be able to tell what phase the JSF is in? for example restore views or render response?
    Any help appreciated?
    Thanks.

    A google of your question reveals your question as result number 1 and the following as result number 2:
    "JSF <= 1.2 does not provide access to the current JSF phase through the public API. Seam, however, maintains the current PhaseId in a ThreadLocal variable on the class org.jboss.seam.contexts.FacesLifecycle and exposes it through the following static method call: PhaseId currentPhaseId = FacesLifecycle.getPhaseId();"
    "In JSF 2.0, the current PhaseId will be accessible from the getCurrentPhaesId() instance method on the FacesContext. "

  • Determine the current page of pdf

    In my VI I load a pdf into an activeX container.
    I would like to be able to progammatically determine which page is currently being viewed.  I have looked throught the various property classes and method classes for the adobe pdf reader and can't find anything that will tell me what page is active.
    Does anyone have any ideas?
    Thanks,
    Torry

    Hi Torry
    looks like some of the best have been looking at this a few years ago and found it too much of and issue to deal with - suggestion would be to stop wasting time on it:
    http://forums.ni.com/t5/LabVIEW/OLE-Automation-Methods-for-Acrobat-Reader-in-ActiveX-Control/td-p/95...
    Or, if you want - here is where I have got in 5 mins following my nose (see attachment)
    Just need to get rid of navigation pane and you are sorted!!
    James
    Attachments:
    Quick PDF demo.vi ‏17 KB

  • How to determine the current user id!

    I have a table. And when the user insert record, I should insert the information about user who create this record in this table.
    Kostya!

    Here is an example of a trigger I use to populate a primary key and fetch the user
    created the record:
    CREATE OR REPLACE TRIGGER bi_my_table
       BEFORE INSERT
       ON my_table
       REFERENCING NEW AS NEW OLD AS OLD
       FOR EACH ROW
    DECLARE
       c1   NUMBER;
    BEGIN
       FOR c1 IN (SELECT my_table_seq.NEXTVAL next_val
                    FROM DUAL)
       LOOP
          :NEW.primkey := c1.next_val;
          :NEW.user_created := NVL (htmldb_application.g_user, USER);
       END LOOP;
    END;Denes Kubicek

  • Unable to determine the current appliation config directory usning WL Server 6.0

    We have an application which try to read application-wise settings in
    Startup class. In previous version of WL Server, we use
    ConfigServicesDef to find weblogic system home. It was removed from WL
    Server 6.0. I try to add T3 File into the domain config. But I encounter
    Java internal error when the code calling getFileSystem() from the
    Startup class. I also try the io example come with the WL Server
    installation. It's fine to call the method from client class. Anyone has
    some idea about this? Or do you have any suggestion to get around it?
    Thanks for your input. - Yang

    Hi,
    I tried starting the server from the console as well as from command prompt. Here I am giving the command below.
    nohup ./startManagedWebLogic.sh bi_server1 t3://machineIP:portNo > bis1_startup.log &
    But each time I got the same exception.
    Korandla

  • How to determine the database mirroring role via Powershell?

    Is there a way to determine the current mirroring role of a database via Powershell without the use of t-sql?
    With the Microsoft.SqlServer.Management.Smo namespace and database class I can determine the status, witness and partner of the mirrored database, but I can't determine the mirroring role of the current database. I basically want to get the same result
    as the following t-sql query in powershell without using t-sql:
    SELECT m.mirroring_role_desc 
    FROM   sys.database_mirroring m JOIN sys.databases d
    ON     m.database_id = d.database_id
    WHERE  d.name = 'databasename'
    I find it very strange that there is no class property to check for this, while it is an important property of the database. Of course I can use the output of this query in my powershell script for further processing, but I still hope that there is a property
    where I can get this information.
    TheSultan8

    Just to let you know, I've already found it. Here is a part of the code that I use for checking each mirrored database what mirroring role it has:
    $sqlconnection="MYLAPTOP\SQL2008R2"
    $smo = New-Object ('Microsoft.SqlServer.Management.Smo.Server') $sqlconnection
    $mirroreddbs=$smo.Databases | where {$_.IsMirroringEnabled -eq "True"}
    $sqlversionmajor=$smo.VersionMajor
    foreach ($database in $mirroreddbs)
    # Versions lower than SQL 2008 can't query a database in recovery mode
    if ($sqlversionmajor -ge 10) 
    $dbrolevalue=$database.DatabaseOptions.Properties | where {$_.Name -eq "MirroringRole"}
    $dbrole=$dbrolevalue.Value
    One catch though, this only works on SQL 2008 and higher version.
    TheSultan8

  • Get the current line no.(similar to sy-linno in report) in  Sapscript form

    Hi everyone,
    In ABAP reporting, you can use sy-linno to determine the current line no.
    But if in sapscript form,
    does any system field to get the currect line no. or y-origin. ?
    Just say the program is now runing and have written several lines in a window of the form.
    AS         This is the first line
    AS         This is the second line
    AS         This is the third line
    how to get the current line = 3 or  yorigin '+3'  LN?
    Thanks for reply in advance.

    Hi,
    you can also chk the sy-linno directly in your script.
    Regards
    Subramanian

Maybe you are looking for

  • Setting Logical Level in LTS

    Hi all, Usually we set the Logical Level (Content Tab) for the LTS in the Fact table. Is there any best practice to set it for the LTS in Dimension tables too? If yes, why do we do that? Please clarify on this. This is very urgent. Regards.

  • "Best practice" for components calling components on different panels.

    I'm very new to Swing. I have been learning from tutorials, but these are always relatively simple interfaces , in which every component and container is initialised and added in the constructor of a main JFrame (extension) object. I would assume tha

  • How do I design this in data warehouse?

    I am working on building a data warehouse for insurance quote data. Each quote will have an applicant and can have an optional co-applicant. Each applicant and co-applicant will have prior auto insurance history, prior home insurance history, current

  • CREATION OF AN AUTOMATIC LINK R3:BW

    Hello Experts, I HAVE CREATED IN R3 A SET (TRANSACTION GS01) OF "ACCOUNTING NATURES" . CE- DRILL1, AND I WOULD LIKE TO FIND THIS HIERARCHY IN BW AUTOMATICALLY. CECS(table) KSTAR(feild name) for CE-DRILL1 Please suggest some procedure to make it avila

  • Issues with iPhone 5

    Hello all. I had an iPhone 5 running 7.0.1 if I am not mistaken, and right before I had it replaced it gave me an issue where when I would do a soft restart with holding the power and home button until the Apple logo appeared, it would shut down and