Tables n Views - Web User ID n Pass.

Hi Experts,
Need to pull data for the following fields, pls recommend the views or tables to refer too.
Sales Org
Sales Div
Sales Rep #
Sales Rep Name
SAP #     
Customer Name     
Contact Name     
Contact Person Number     
Contact Email     
Web User ID     
Web Password     
Thanks in advance.
Thanks,
Chaudh

Hi Experts,
Need to pull data for the following fields, pls recommend the views or tables to refer too.
Sales Org
Sales Div
Sales Rep #
Sales Rep Name
SAP #     
Customer Name     
Contact Name     
Contact Person Number     
Contact Email     
Web User ID     
Web Password     
Thanks in advance.
Thanks,
Chaudh

Similar Messages

  • Remotely view web user's session

    Okay, we have web users doing stuff on a website we host & control. Sometimes web users have trouble using the web/site. So they call for support and help getting them through some process (like making a payment over the web).
    What the business wants (at an admin level) is the ability to see what the user sees. Not so much like Remote Desktop or whatever, but something non-obtrusive (no install to the client). The thought is currently that we could take the user's HttpSession object and expose it to an admin or support person, so that they can both go to the same page and see the same thing. This way, the admin can walk the user through the process quite smoothly.
    We are using WebSphere so we can share sessions accross WARs, but not sure about doing so accross EARs. So we can store the user's session in the database, but can we pull it out and use it?
    So how does this idea sound?
    Is there a better approach?
    Any major obvious gotchas?
    All ideas welcome!

    Here is some prototype code that I fixed up. It will store the last jsp or servlet that the user has viewed but not html pages. Still working on that:
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class MyServlet extends HttpServlet {
         public void init(ServletConfig config) throws ServletException {
              super.init(config);
          * Handles request posted by the client using "GET" method.
          * @param     request          Object containing HTTP request from the client.
          * @param     response     The response to be sent back to the client.
         public void doGet(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException {
              doPost(request, response);
          * Handles request posted by the client using "POST" method.
          * @param     request          Object containing HTTP request from the client.
          * @param     response     The response to be sent back to the client.
        public void doPost(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException {
            if (request.getParameter("fetchFile") != null) {
                if (request.getParameter("user") == null) {
                    response.getWriter().print("No USER ID Supplied for fetch");
                    return;
                System.out.println("Fetching file");
                File file = new File("c:/temp/" + request.getParameter("user"));
                FileReader fr = new FileReader(file);
                int EOF = 0;
                char[] cbuf = new char[1024];
                response.getWriter().print("THIS IS THE FETCHED FILE <BR>");
                while (fr.read(cbuf) != -1) {
                    response.getWriter().print(cbuf);
                response.getWriter().print("<br>END OF FETCHED FILE <BR>");
                return;
            ServletOutputStream sos = response.getOutputStream();
            sos.print("<html><head></head><body>");
            sos.print("<p>output printed to the servletoutput stream<P>");
            sos.print("</body></html>");
            sos.close();
    * MyFilter.java
    * Created on November 2, 2005, 11:13 AM
    package com.filter;
    import javax.servlet.http.*;
    import javax.servlet.*;
    import java.io.*;
    * @author  Tolmke
    public class MyFilter implements Filter {
        // The filter configuration object we are associated with.  If
        // this value is null, this filter instance is not currently
        // configured.
        private FilterConfig filterConfig = null;
        private static final boolean debug = false;
        private long start = 0;
        private long end = 0;
        public MyFilter() {
        private void doBeforeProcessing(ServletRequest request, ServletResponse response)
        throws IOException, ServletException {
            if (debug) log("MyFilter:DoBeforeProcessing");
            System.out.print("In Filter  ");
            this.start = System.currentTimeMillis();
            System.out.println((new java.util.Date()).toString() +
                               " start request ");
        private void doAfterProcessing(ServletRequest request, ServletResponse response)
        throws IOException, ServletException {
            if (debug) log("MyFilter:DoAfterProcessing");
            System.out.println("Completion Time = " + (System.currentTimeMillis() - start));
         * @param request The servlet request we are processing
         * @param result The servlet response we are creating
         * @param chain The filter chain we are processing
         * @exception IOException if an input/output error occurs
         * @exception ServletException if a servlet error occurs
        public void doFilter(ServletRequest request, ServletResponse response,
        FilterChain chain)
        throws IOException, ServletException {
            if (debug) log("MyFilter:doFilter()");
            doBeforeProcessing(request, response);
            Throwable problem = null;
            MyResponseWrapper wrapper = new MyResponseWrapper((HttpServletResponse)response);
            try {
                chain.doFilter(request, wrapper);
                if (wrapper.getMode() == 1) {
                    response.getOutputStream().println(wrapper.toString());
                    if (request.getParameter("user") != null) {
                        File file = new File("c:/temp/" + request.getParameter("user"));
                        BufferedWriter bw = new BufferedWriter(new FileWriter(file));
                        bw.write(wrapper.toString());
                        bw.close();
                } else if (wrapper.getMode() == 2) {
                    response.getOutputStream().write(wrapper.getData());
                    if (request.getParameter("user") != null) {               
                        File file = new File("c:/temp/" + request.getParameter("user"));
                        BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file));
                        bos.write(wrapper.getData());
                        bos.close();
                } else if (wrapper.getMode() == 0) {
                    System.out.println("DOING NOTHING");
            catch(Throwable t) {
                problem = t;
                t.printStackTrace();
            doAfterProcessing(request, response);
            // If there was a problem, we want to rethrow it if it is
            // a known type, otherwise log it.
            if (problem != null) {
                if (problem instanceof ServletException) throw (ServletException)problem;
                if (problem instanceof IOException) throw (IOException)problem;
                sendProcessingError(problem, response);
         * Return the filter configuration object for this filter.
        public FilterConfig getFilterConfig() {
            return (this.filterConfig);
         * Set the filter configuration object for this filter.
         * @param filterConfig The filter configuration object
        public void setFilterConfig(FilterConfig filterConfig) {
            this.filterConfig = filterConfig;
         * Destroy method for this filter
        public void destroy() {
         * Init method for this filter
        public void init(FilterConfig filterConfig) {
            this.filterConfig = filterConfig;
            if (filterConfig != null) {
                if (debug) {
                    log("MyFilter:Initializing filter");
         * Return a String representation of this object.
        public String toString() {
            if (filterConfig == null) return ("MyFilter()");
            StringBuffer sb = new StringBuffer("MyFilter(");
            sb.append(filterConfig);
            sb.append(")");
            return (sb.toString());
        private void sendProcessingError(Throwable t, ServletResponse response) {
            String stackTrace = getStackTrace(t);
            if(stackTrace != null && !stackTrace.equals("")) {
                try {
                    response.setContentType("text/html");
                    PrintStream ps = new PrintStream(response.getOutputStream());
                    PrintWriter pw = new PrintWriter(ps);
                    pw.print("<html>\n<head>\n</head>\n<body>\n"); //NOI18N
                    // PENDING! Localize this for next official release
                    pw.print("<h1>The resource did not process correctly</h1>\n<pre>\n");
                    pw.print(stackTrace);
                    pw.print("</pre></body>\n</html>"); //NOI18N
                    pw.close();
                    ps.close();
                    response.getOutputStream().close();;
                catch(Exception ex){ }
            else {
                try {
                    PrintStream ps = new PrintStream(response.getOutputStream());
                    t.printStackTrace(ps);
                    ps.close();
                    response.getOutputStream().close();;
                catch(Exception ex){ }
        public static String getStackTrace(Throwable t) {
            String stackTrace = null;
            try {
                StringWriter sw = new StringWriter();
                PrintWriter pw = new PrintWriter(sw);
                t.printStackTrace(pw);
                pw.close();
                sw.close();
                stackTrace = sw.getBuffer().toString();
            catch(Exception ex) {}
            return stackTrace;
        public void log(String msg) {
            filterConfig.getServletContext().log(msg);
    * CharResponseWrapper.java
    * Created on November 2, 2005, 11:09 AM
    package com.filter;
    import javax.servlet.http.*;
    import javax.servlet.*;
    import java.io.*;
    * @author  Tolmke
    public class MyResponseWrapper extends HttpServletResponseWrapper {
       private CharArrayWriter myOut = new CharArrayWriter();
       private FilterServletOutputStream fos = new FilterServletOutputStream();
       private int mode;
       private int contentLength;   
       private String contentType;  
       public String toString() {
          return myOut.toString();
       public MyResponseWrapper(HttpServletResponse response){
          super(response);
          this.myOut = new CharArrayWriter();
       public PrintWriter getWriter(){
           this.setMode(1);
           return new PrintWriter(this.myOut);
      public ServletOutputStream getOutputStream()
                                        throws java.io.IOException {
           this.setMode(2);                                       
           return this.fos;
       public byte[] getData() {
           return this.fos.getData();
        public void setContentType(String type) {       
            this.contentType = type;       
            super.setContentType(type);   
        public String getContentType() {       
            return this.contentType;   
        public int getContentLength() {       
            return contentLength;   
        public void setContentLength(int length) {       
            this.contentLength=length;       
            super.setContentLength(length);   
        public int getMode() {       
            return mode;   
        public void setMode(int mode) {       
            this.mode = mode;           
    * FilterServletOutputStream.java
    * Created on November 2, 2005, 11:34 AM
    package com.filter;
    import javax.servlet.*;
    import java.io.*;
    * @author  Tolmke
    public class FilterServletOutputStream extends ServletOutputStream {
        private ByteArrayOutputStream baos;
        public FilterServletOutputStream() {
            baos = new ByteArrayOutputStream();
        public byte[] getData() {
            return baos.toByteArray();
        public void write(int b) throws IOException { 
            baos.write(b);   
        public void write(byte[] b) throws IOException {       
            baos.write(b);   
        public void write(byte[] b, int off, int len) throws IOException {   
            baos.write(b, off, len);   
        public void print(String s)
            throws IOException
            if(s == null)
                s = "null";
            int len = s.length();
            for(int i = 0; i < len; i++)
                char c = s.charAt(i);
                if((c & 0xff00) != 0)
                    String errMsg = "err.not_iso8859_1";
                    Object errArgs[] = new Object[1];
                    errArgs[0] = new Character(c);
                    throw new CharConversionException(errMsg);
                this.write(c);
       

  • Web users/security

    Hi,
    We are implementing a JBoss application, using stateless session beans and a Swing client (used by employees from the intranet).
    Now we need to implement a web client to allow the customers themselves to place orders etc from the Internet.
    We'll probably use Struts.
    The problem is that, as opposed to the swing client, from the web client the user should only access his specific data; A web user may obviously not see or edit other info (customer info, orders etc) than the one "owned" by himself. Customer id is stored in the relation database, and I guess we'll create a table where the web user's user name and password are stored together with the customer id.
    On the EJB/EJB-remote-method-level we currently use admin, guest and internetuser roles. But the problem above is how to narrow the permissions within the internetuser role.
    I'd appreciate any suggestions (links to articles etc) to how this problem may be approached in the most effective way.
    Best regard,
    AC

    For what its worth...
    I have a similar app whereby Resources are avialable to a Person if they are acting in a Role that has a Permission on the Resource in question.
    However, I also added the concept of a Private Resource for things that would only ever belong to one Person.
    This meant that I didn't have to set up a Role and Permission for a Resource that would only ever be accessed by a single person.
    The private Resource is just a normal Resource with a null owner.

  • SharePoint 2010 List View Web Part not showing for read-only users?

    Hello all,
    I have List View Webparts on my Blank Web Part page, and it's not showing for Read-Only users.
    Is this intended by Microsoft or is it a bug?
    Thank you!

    Hi,
    According to your post, my understanding is that the read only user could not see the list view web part.
    Per my knowledge, the issue may be cause that the user do not have the proper permission for the list.
    1. Check whether the user can access the list.
    2. Check whether the user can view all the items instead of partial items in the list.
    3. Check whether there are some fields refer to other lists or terms, especially the lookup field or managed metadata filed.
         If that is the case, make sure the user can access the lookup list.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • List View Web Part anonymous users paging is broken

    Hi I checked that list view web part do not work for anonymous users with paging. wanted to check if its known bug or there is some intention to keep it like that.
    Rohit Pasrija

    Hi,
    According to your description, there is an issue that if the paging is configured for a list view web part, it will be broken for anonymous users.
    I tried to reproduce this issue with the steps below, however, all work without issue.
    1. Enable anonymous access in Web Application level;
    2. Enable anonymous access in site collection level;
    3. By default, the permission settings of a list inherit the permissions from its parents, that’s say, anonymous access also enabled in the current list, “Anonymous
    Users” can “View Items”;
    4. Set paging for the “AllItems” view, add this list as a web part into a page, the paging works as expected for anonymous users.
    I suggest you create a new Web Application and configure to enable anonymous access following the steps above to see if the issue still exists.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Table maintenance view -user exit

    Hello, as you all know, there is a program generated behind the table maintenance view. I want to add certain validation on the values entered in the table maintenance.
    I know that modifying the program is not the best practice.
    Is there any user exit which will permit me to do this?
    thx.

    Hi Antish,
        Try to go with the table events. For this goto the Table Maintenance Generator Screen --> Environment --> Modification --> Events. Here you can handle some events according to your requirement. Validations can be done only in this way.
    Regards,
    Swapna.

  • How can I list all users who have access to a particular TABLE or VIEW

    Hi,
    Can someone tell me how I can list all users who have access to a particular TABLE or VIEW.
    Abhishek

    Hi,
    Take a look on this link: http://www.petefinnigan.com/tools.htm
    Cheers

  • How to pass internal table between views

    Hello Experts,
      How to pass an internal table between views? I have followed some steps but its showing an error.
    i have created a table type of ZTTYPE_VBAP and line type  VBAP.
    I have declared in component controllers attribute  LT_VBAP of associated type ZTTYPE_VBAP .
    But when i am using this in my method in component controller its not taking.

    Venkata123# wrote:
    Hello Experts,
    >
    >   How to pass an internal table between views? I have followed some steps but its showing an error.
    >
    > i have created a table type of ZTTYPE_VBAP and line type  VBAP.
    > I have declared in component controllers attribute  LT_VBAP of associated type ZTTYPE_VBAP .
    > But when i am using this in my method in component controller its not taking.
    you will have to declare a node with the attributes in the context tab of component controller. by doing this you will make this node a global one in your entire application . now copy the value you have in the internal table of yours in this node.
    after doing so you can read this node anywhere in the program and you can retrieve the values.
    regards,
    sahai.s

  • RE: Table to View Analysis authorizations of all users in BI

    Hi,
    I want to pull a report in BI that shows all the users and their analysis authorizations. does anyone know how to view this report.
    Thanks in Advance,
    SS

    Hi,
    You can refer all the RSEC* tables. Below are the tables that stores analysis authorizations information:
    RSECHIE - Status of hierarchy authorizations
    RSECTXT - Authorization text
    RSECVAL - Authorization Value Status
    RSECBIAU - Changes to Authorization (Last Changed By]
    RSECUSERAUTH - BI Analysis authorization u2013 assignment to users
    Change log tables:
    RSECUSERAUTH_CL - Assignment of users
    RSECHIE_CL - Change log of hierarchy authorizations
    RSECTXT_CL - Authorization texts
    RSECVAL_CL - Authorization Value Status
    Hope this helps!!
    Rgds,
    Raghu

  • Adding Page View Web Part with dynamic URL based on visited mysite user

    Problem:
    I want to add an iframe (using Page View Web Part for example) on all mysite users front page (person.aspx) with following address:
    http://webservice/calendar?user=name
    The property "name" represents a dynamic value based on which person the user is visiting. Hence if i open "Tom Hanks" mysite profile, the iframe will show content from http://webservice/calendar?user=Tom%Hanks
    (This is a custom made calendar from Domino)
    Any suggestions welcome.
    -Terje

    Hi,
    The Page Viewer Web Part is basically an HTML IFRAME. We can use a Content Editor Web Part with an IFRAME and a little JavaScript to meet your requirement.
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/d9a06d93-93d2-4340-a491-c7d0d5d4fdf3/how-to-dynamically-change-link-in-page-viewer-web-part-sharepoint-2010?forum=sharepointgeneralprevious
    More information:
    http://stackoverflow.com/questions/20981226/sharepoint-2013-get-current-user-javascript
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to view all user tables in a particular user tablespace

    Hi friends,
    I want view user tables in a particular tablespace. I dont have dba privilages. Its production environment.
    Plz send me a query for the same.
    Thanks.

    I want view user tables in a particular tablespace. I dont have dba privilages.Do you want to list tables owned by 1 user?
    Do you want to see contents of tables owned by 1 user?
    Can you log into DB as the user in question?

  • Pass current url as report prarameter while using report viewer web part

    hello everybody
    is there a way to
    pass current url as report prarameter while using report viewer web part
    thanks in advance
    Sergey Vdovin

    Hi Evolex,
    Per my understanding that you want to get the current url and create an parameter to add this URL as its value, right?
    gernerally, we can use some code to get the current url but it almost impossible for us to get it automatically as value of the report parameter.
    In your senario, i suggest you to copy the url and specify values when creating parameters.
    Thanks for your understanding.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • How to list all user tables and views?

    like "select" command.
    Thanks.

    Hi,
    1)
    select table_name from user_tables union all select view_name from user_views;
    2)
    select distinct table_name from user_tab_columns;
    3)
    select object_name from user_objects where object_type in ('VIEW','TABLE');You should get very similar results with those queries.
    Query 2 will contains clusters.
    If you run query 3 against sys, you will get some very special objects, like the KOTAD$ table, which contains no user-visible column! You will also get the overflow segments of IOTs and nested table column's storage table.
    Kind regards
    Laurent

  • Attach User define tables and view table need add to database into my add-o

    Hi there,
    I want to deploy an addon, there are User define tables and view table need add to database.
    I need some advice on some issues..
    1. Can I attach User define tables and view table need add to database into my addon.
    2. I wonder which chance is properly to add them, if add these user define objects in time of install and I can't get the enough information that connect to SQL server
    Thanks for any help.

    Hi Weerachai,
    Here's an example of how to create a user-defined table in code. My suggestion would be to check if it exists when your add-on starts up and then if not, create the tables, fields and objects.
    'User Table
        Private Sub CreateTable(ByVal sTable As String, ByVal sDescription As String, ByVal oObjectType As SAPbobsCOM.BoUTBTableType)
            Dim oUserTablesMD As SAPbobsCOM.UserTablesMD
            Dim iResult As Long
            Dim sMsg As String
            oUserTablesMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
            If Not oUserTablesMD.GetByKey(sTable) Then
                oUserTablesMD.TableName = sTable
                oUserTablesMD.TableDescription = sDescription
                oUserTablesMD.TableType = oObjectType
                iResult = oUserTablesMD.Add()
                If iResult <> 0 Then
                    oCompany.GetLastError(iResult, sMsg)
                    MessageBox.Show("Error Creating Table: " & sTable & " Error: " & sMsg)
                End If
            End If
            System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
        End Sub
    'User Field
        Private Sub CreateField(ByVal sTable As String, ByVal sName As String, ByVal sDescription As String, _
                                ByVal iSize As Integer, ByVal aFieldType As SAPbobsCOM.BoFieldTypes, _
                                ByVal aSubType As SAPbobsCOM.BoFldSubTypes, ByVal sLink As String, _
                                ByVal bMandatory As SAPbobsCOM.BoYesNoEnum)
            Dim oUserFieldsMD As SAPbobsCOM.UserFieldsMD
            Dim oTable As SAPbobsCOM.UserTable
            Dim iResult As Long
            Dim sMsg As String
            Dim i As Integer
            Dim x As Integer
            Dim bFound As Boolean = False
            Dim oField As SAPbobsCOM.Field
            oTable = oCompany.UserTables.Item(sTable)
            For i = 0 To oTable.UserFields.Fields.Count - 1
                oField = oTable.UserFields.Fields.Item(i)
                'MessageBox.Show(oField.Name)
                If oField.Name = "U_" & sName Then
                    bFound = True
                End If
            Next
            System.Runtime.InteropServices.Marshal.ReleaseComObject(oTable)
            If Not bFound Then
                oUserFieldsMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserFields)
                oUserFieldsMD.TableName = "@" & sTable
                oUserFieldsMD.Name = sName
                oUserFieldsMD.Description = sDescription
                oUserFieldsMD.Type = aFieldType
                If aFieldType = SAPbobsCOM.BoFieldTypes.db_Alpha Or aFieldType = SAPbobsCOM.BoFieldTypes.db_Numeric Then
                    oUserFieldsMD.EditSize = iSize
                Else
                    oUserFieldsMD.SubType = aSubType
                    oUserFieldsMD.Mandatory = bMandatory
                End If
                oUserFieldsMD.LinkedTable = sLink
                iResult = oUserFieldsMD.Add()
                If iResult <> 0 Then
                    oCompany.GetLastError(iResult, sMsg)
                    MessageBox.Show("Error Creating Field: " & sTable & "." & sName & " Error: " & sMsg)
                End If
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserFieldsMD)
            End If
        End Sub
    If you want to create a View I think you would have to use the RecordSet object. This will ensure that you don't have to log in to the database again
    Hope it helps,
    Adele

  • Table or view does not exist with new user

    I am having trouble getting a new user to be able to access the tables in the database. I have created a user just like normal and given it all the privileges i would normally give it. It is the only user other than the original that created all the tables. Every time i go to select from a table i get the error table or view does not exist.
    Am i missing something? It is Oracle 10.1.0.2 and i have never had this problem with earlier versions.

    You will always need to qualify the table name with schema name if you are accessing a table of some other schema except in a case that you have created a public synonym (with the same name as table). Suppose there is table table1 in schema schema1 and you are accessing it from schema2.
    You will need to write schema1.table1 but if you create a public synonym
    create public synonym table1 for schema1.table1;then you can directly write
    select * from table1;Sidhu
    http://amardeepsidhu.blogspot.com

Maybe you are looking for

  • ERROR IN CREATING PO USING BAPI

    Hi friends,         My  requirement is to create po using BAPI but i am getting error message .i have entered all the fields but still i am getting This errors. E BAPI 001 No instance of object type Purchase Order has been created. External reference

  • Arrows  Disappearing In Web Browser

    I am creating slides with arrows. After inserting an arrow on my slide,I review the slide using the "Play this Slide" feature and the arrow appears; however, when I view the movie in my Web browser, the arrow is not appearing. I have checked the time

  • Cant Sync Mac Desktop Software with Mac Outlook 2011

    Hi, I cant Sync Mac Desktop Software with Mac Outlook 2011, Calendar and Contacts etc. The sync button is not highlighted on the BB Mac Desktop Software therefore it can't be clicked. I have turned on sync in Outlook in Preferences under Sync Service

  • TS3274 Restored but forgot my iPad backup password

    So I restored my iPad as I forgot my unlock code for the first time and then I restored the iPad. Now I'm being asked to give my backup password and of course I have no idea as it was some time ago. HELP!!!

  • Once I close firefox I can reopen

    This problem started 1 day ago. Once I open firefox everything works fine but after I close it and come back later it will not open. I have tried everything I can think of. I even uninstalled and reinstalled firefox. The only way I can get it to open