About discover request

Hi,
I hava some questions as below:
1. I send the XML Discover call to request a list of catalog, there are 3 catalogs,
        but I found the "$INFOCUBE" is meaningfull,  what about others?
2. It losts dimension "Request Package" and dimension which own "Navigation Attribute", why?
3. Every dimension has a default hierarchy named as dimension name, how to create more hierarchies for dimension.
4. Every dimension has 2 default levels named level00 and level01, how to create more levels for dimension
Thanks,
Andy

Hello,
could you pls move this thread to the following topic:
SAP Community Network Forums » Business Objects » Universe Designer and Business Views Designer
I believe that there you will be advised.
Best regards,
Paula Csete

Similar Messages

  • Info about deleted request ( log )

    Hi experts,
    i deleted the request over cube. I received info about request-id and "request number" in log.
    Can i obtain more info about this request, which was deleted ( e.g. InfoSource, DataSource) in any SAP table ?
    Thanks in advance
    Martin

    Hi Martin,
    Use transaction :SLG1
    enter the Object * , sub obj -* and enter the From and to Date/Time -- execute
    you can get the complete details.
    Check the table :RSREQICODS_SAVE(Requests Deleted from Administration Stored Here)
    Regards
    KP
    Edited by: prashanthk on Dec 9, 2010 3:06 PM

  • About xml discover request

    Hi,
    I hava some questions as below:
    1. I send the XML Discover call to request a list of catalog, it can get info cube and ods cube,
    ods cube is used to select data?
    2. It losts dimension "Request Package" and dimension which own "Navigation Attribute", why?
    3. Every dimension has a default hierarchy named as dimension name, how to create more hierarchies for dimension.
    4. Every dimension has 2 default levels named level00 and level01, how to create more levels for dimension
    Thanks,
    Andy

    Hi Didier,
    Thanks,
    I send the request such as below:
    <Discover xmlns="urn:schemas-microsoft-com:xml-analysis">
    <RequestType>MDSCHEMA_DIMENSIONS</RequestType>
    <Restrictions>
    <RestrictionList>
    <CUBE_NAME>$COOL_SA</CUBE_NAME>
    <CATALOG_NAME>$INFOCUBE</CATALOG_NAME>
    </RestrictionList>
    </Restrictions>
    <Properties>
    <PropertyList>
    <Catalog>$INFOCUBE</Catalog>
    <Content>SchemaData</Content>
    <DataSourceInfo>Provider=SAP BW;DataSource=SAP Business Information Warehouse Release 7.01</DataSourceInfo>
    </PropertyList>
    </Properties>
    </Discover>
    I can get some dimension, but "Request ID" dimension and "navigation attribute" dimension I can't get,  is it system own?
    whether the dimension hava a default hierarchy and 2 levels?
    Thanks,
    Cool

  • Query about Concurrent Request

    Hi,
    R12
    My question is if i get a lots of concurent requests are in queue then what step need to perform?
    Thanks

    ---what i know about processes if i increase it from 10 to 12 it increase the FNDLIBR but what is the funtionality of it i do not know Can you please explain it Actually what it does?Please read the documentation and the MOS Doc referenced above as this is explained properly in those references.
    --If i create more CMs then how to assign concurent request with it?How To Make User Run Any Requests Using Standard Manager Except Specific Program Run By Custom Manager? [ID 1297419.1]
    How to Create and Custom Concurrent Manager [ID 250755.1]
    How to Create a Custom Concurrent Manager [ID 170524.1]
    what is cache size and what is the used of it that is mentioned on the form of concurent manager (navigattion path-Manager-->define)?Please see old threads, it should answer your question -- http://forums.oracle.com/forums/search.jspa?threadID=&q=Cache+AND+Size+AND+Concurrent&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • About bw request or request type

    Hi:
      What is the different usage of the reqeusts between BI and R3? in the bi system I created many requests and someone said that all obejcts updated can be in a request,how can I do?
    THANKS.

    Hi,
    I think you are talking about objects collection in a request?.
    Whenever you create/modify the objects in system, it will ask request, so collect the object in to the request and if you want to transport the objects that time you need to use this request to transport from Dev to Qty and Prod systems.
    In ECC also, for every change/new creation it will ask request.
    Request wise there is no difference in BW and ECC, request is used to collect the object for transports,
    Thanks
    reddy

  • Doubts about HTTPS requests and Java proxy

    Hello,
    I need help about SSL connections and Java.
    I'm developing a HTTP/S proxy with Java. To test my proxy, I use Firefox. I configure the proxy option in the browser. The proxy works good with HTTP requests, but with HTTPS requests doesn't work and I don't know why.
    I explain the steps that I do for a HTTPS request:
    * The browser sends a CONNECT message to the proxy.
    I check that the proxy receives the CONNECT request correctly.
    * The proxy establish a secure connection with the content server.
    I use an SSLSocket to connect with my content server, and the SSL handshake is succesful.
    * The proxy sends a 200 HTTP response to the client:
    I send
    HTTP/1.0 200 Connection established[CRLF]
    [CRLF]
    to the application client (Firefox)
    * The proxy sends/receive data to/from Firefox/content server
    I have a Socket between Firefox and my proxy, and a SSLSocket between my proxy and my content server. I use two threads to communicate the client and the server.
    Java code:
    //Thead server-->proxy-->application(Firefox)
    ThreadComm tpa = new ThreadComm(bis_serverSSL, bos_app);
    //Thread application(Firefox)-->proxy-->server
    ThreadComm tap = new ThreadComm(bis_app, bos_serverSSL);
    The "tpa" thread reads from the SSLSocket between the proxy and the server and sends data to the Socket between the proxy and Firefox.
    The "tap" thread reads from the Socket between the proxy and Firefox and sends data to the SSLSocket between the proxy and the server.
    This is the class ThreadComm:
    public class ThreadComm extends Thread{
        private BufferedInputStream bis = null;
        private BufferedOutputStream bos = null;
        public ThreadComm(BufferedInputStream bis, BufferedOutputStream bos) {
            this.bis = bis;
            this.bos = bos;
        @Override
        public void run() {
            int b = -1;
            FileOutputStream fos = null;
              do {
                   try {
                        b = bis.read();
                        System.out.print((char) b);
                        fos.write(b);
                        bos.write(b);
                        bos.flush();
                   } catch (Exception ex) {
                        Logger.getLogger(ThreadAplicacionProxy.class.getName()).log(Level.SEVERE, null, ex);
                        //b=-1;
              } while (b != -1);
        }But this doesn't work and I don't know why.      
    I have an Apache server with the mod_ssl enabled as content server, I can send requests (with Firefox) to the port 80(HTTP request) and 443(HTTPS request) without use my proxy and it works. If I use my proxy, HTTP request works but with HTTPS request doesn't work, I look the log of Apache and I see:
    [Tue Apr 27 17:32:03 2010] [info] Initial (No.1) HTTPS request received for child 62 (server localhost:443)
    [Tue Apr 27 17:32:03 2010] [error] [client 127.0.0.1] Invalid method in request \x80\x7f\x01\x03\x01
    [Tue Apr 27 17:32:03 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue Apr 27 17:32:03 2010] [info] [client 127.0.0.1] Connection closed to child 62 with standard shutdown (server localhost:443)
    Why it say? Invalid method in request \x80\x7f\x01\x03\x01 , my proxy sends the data that the Firefox sends.
    I think than I have follow the explanations of [1] but doesn't work, I have problems in implementation in Java but I don't know where.
    I appreciate any suggestions.
    Thanks for your time.
    [1] http://www.web-cache.com/Writings/Internet-Drafts/draft-luotonen-web-proxy-tunneling-01.txt

    ejp, I have checked the socket between the proxy and server and ... You are right! , I was using the port 80 instead of the 443 (incredible mistake!, I'm sorry). I was convinced that I was using the port 443... Well, is a little step, but I still have not won the war :)
    If I see the log files of Apache, We can see that something goes wrong.
    localhost-access.log
    >
    127.0.0.1 - - [04/May/2010:17:44:48 +0200] "\x 80\x 7f\x01\x03\x01" 501 219
    >
    localhost-error.log
    >
    [Tue May 04 17:44:48 2010] [info] Initial (No.1) HTTPS request received for child 63 (server localhost:443)
    [Tue May 04 17:44:48 2010] [error] [client 127.0.0.1] Invalid method in request \x80\x7f\x01\x03\x01
    [Tue May 04 17:44:48 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 17:44:48 2010] [info] [client 127.0.0.1] Connection closed to child 63 with standard shutdown (server localhost:443)
    >
    I think that this happens because Apache receives the data without decrypt, this is the reason because in the log we can see the "Invalid method in request \x80\x7f\x01\x03\x01". This supposition is true?
    ejp, you say that the "Termination is quite tricky." I have changed my code following yours suggestions (using the join and the shutdownOutput) but the threads don't die.
    I explain you what I do:
    (in time 1)
    I launch the thread (threadFirefoxToApache) that reads data from Firefox and sends to Apache.
    I launch the thread (threadApacheToFirefox) that reads data from Apache and sends to Firefox.
    (in time 2)
    threadFirefoxToApache sends the firts data to the server.
    threadApacheToFirefox is waiting that the server says something.
    (in time 3)
    threadFirefoxToApache is waiting that Firefox says something.
    threadApacheToFirefox sends data to Firefox.
    (in time 4)
    threadFirefoxToApache is waiting that Firefox says something.
    threadApacheToFirefox is waiting that Firefox says something.
    and they are waiting... and never finish.
    In time 2, these first data are encrypted. The server receives these data and It doesn't understand. In time 3, the server sends a HTTP response "501 Method Not Implemented", here there is a problem because this data must be encrypt. According to the documentation that I read, the proxy cannot "understand" this data but I can "understand" this data. What's happen?
    Firefox encrypt the data and send to the proxy. This It's correct.
    The proxy encrypt the data another time, because I use the SSLSocket to send the data to the server. Then the server receives the data encrypted two times, when decrypt the data gets the data encrypted one time. And this is the reason why the server doesn't understand the data that sends Firefox. It's correct? May be.
    Then If I want that the server receives the data encrypted one time I need to use the socketToServer, It's correct?
    I will supposed that yes. If I use the socketToServer, the proxy doesn't understand nothing, because the data received from the socketToServer are encrypted (I only see simbols), but the Apache log says that there is a problem with the version? (If I use the socketToServer the threads die)
    >
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 read finished A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 write change cipher spec A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 write finished A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 flush data
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1756): OpenSSL: Handshake: done
    [Tue May 04 19:55:42 2010] [info] Connection: Client IP: 127.0.0.1, Protocol: TLSv1, Cipher: RC4-MD5 (128/128 bits)
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1817): OpenSSL: read 5/5 bytes from BIO#29bd910 [mem: 29ea0a8] (BIO dump follows)
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1750): -------------------------------------------------------------------------
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1789): | 0000: 80 7f 01 03 .... |
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1793): | 0005 - <SPACES/NULS>
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1795): ------------------------------------------------------------------------
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 19:55:42 2010] [info] [client 127.0.0.1] SSL library error 1 reading data
    [Tue May 04 19:55:42 2010] [info] SSL Library Error: 336130315 error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 19:55:42 2010] [info] [client 127.0.0.1] Connection closed to child 63 with standard shutdown (server localhost:443)
    >
    What option is the correct? I need use the SSLSocketToServer or socketToServer to send/read the data to/from the server?. Use the SSLSocket has sense because the data travel in a secure socket, but use the Socket also has sense because the data are encrypted and they are protected by this encription. It's complicated...

  • Need in depth knowledge about Certficate request and install for Reverse proxy and CAS role

    Hi,
    I have few confusions about Exchange 2010/13 certificate request and install. As per my understanding best practise is to assign public CA certificate to Reverse proxy and Local CA certificate to CAS servers but need to know that what should be the format
    of certificate request? Do we need to order public certificate just for mail.domain.com and add SAN for other web services URLs and is it required to add CAS array and server names to this certificate ? In what case we will add server names and what will happen
    if we don't add in it ? How the outlook clients connecting from internet will be using this certificate? I have very limited knowledge in certificates and it always pisses me off. Please help me with explanations and articles. I tried to google and gone through
    many articles but didn't get a fair idea. Thanks in advacnce. :) 

    Hi,
    Here are my answers you can refer to:
    1. Use the New-ExchangeCertificate cmdlet to generate a new certificate request:
    New-Exchangecertificate -domainname mail.domain.com, autodiscover.domain.com -generaterequest:$true -keysize 1024 -path "c:\Certificates\xxxx.req” -privatekeyexportable:$true –subjectname "c=US o=domain.com, CN=server.domain.com"
    2. CAS array name doesn’t need to be added in the certificate:
    http://blogs.technet.com/b/exchange/archive/2012/03/23/demystifying-the-cas-array-object-part-1.aspx
    3. It depends on the situation that you configured to add the server name.
    4. Outlook clients use certificate for authentication.
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • About customizing request

    hi,
    what is difference between worbench request an customizing request? can give me sdetails of both?
    thanks in advance
    sudhakar

    Hi
    Check the below links.
    [http://help.sap.com/saphelp_nw2004s/helpdata/en/57/38e1824eb711d182bf0000e829fbfe/frameset.htm]
    [Re: difference between requests]
    [Re: customising and workbench request;
    Regards

  • About Tranport Request Odrer.

    Hi All,
    I need to transport my request to quality and production ,what order i have to follow..
    Here i have following objects:Cube update rule,data source cube,Function modules(User exit variables which is used in Multi Planning area),basic planing area's,Multi planning area,web interface.
    Like what order i have to follow which request i have to send first,second ,third.......
    Can you guide me..
    Thanks,
    Edited by: Eyda rose on Jun 23, 2008 3:42 PM

    Hi All,
    THanks Juergen for your quick reply.
    Here my data source is cube (export data source ).because i am sending the TR cube to Basic cube.For that on i have created separate request.
    Then cube and  update rules having separate request.
    Then Function modules(User exit variables which is used in Multi Planning area)having separate request.
    Basic planing area's having separate request.
    Multi planning area having separate request.
    Web interface (can be all in one) having separate request.
    Can you give a suggestion what order i have to follow.
    Thanks..

  • Question about discovering Cluster DB in EM 12c

    Hi dear experts,
    Please suggest me what do you use SCAN name or PUBLIC IP when want to
    discover Oracle DB/Listener/ASM using
    *"Add Non-Host Targets Using Guided Process (Also Adds Related Targets)"* option
    and your DB and ASM is clustered?
    P.S. I use SCAN name instead of hosts IP that found EM 12c.

    I changed from SCAN name to hostname and also changed the role
    from sysasm to sysdba and it able can connect.
    ./thanks

  • About transport requests

    how many types of transport requests are there,is it possible to customise the request,plz send me the answer..

    Hi
    You mainly have 2 types of requests:-
    1. Workbench Request.
    2. Customizing Request.
    Depending on the type of work these requests will be allocated, for example if you create an object in your abap development workbench(Se80), then it gets stored under workbench, if you save any customizing Changes(SPRO), those requests will be stored in customizing requests.
    Change Requests
    Change requests are managed by the Transport Organizer. Changes to Repository and Customizing objects are recorded in change requests.
    So that you can differentiate between global changes to the system and client-specific Customizing settings, the CTS records your changes in either a Workbench request or a Customizing request:
    Workbench Requests
    When you change a Repository object of the ABAP Workbench, a query window appears in which you need to specify a Workbench request. You can only save the changes if you have assigned the object to a change request.
    Workbench requests and the tasks assigned to them are normally used to record changes to Repository objects and Customizing for all clients. However, you can also include client-specific Customizing.
    Whether the changes to Repository objects are transported depends on whether a transport route is defined from the current SAP System for the package of these objects. From the system settings, the system automatically determines whether the change requests are transportable and to which target system they should be transported.
    Customizing requests
    Customizing requests record client-specific Customizing settings made in a single client (the source client of the request).
    Automatic recording of configuration activities in the Customizing work for a client can be activated or deactivated for each client with Client Control. If automatic recording is active, a query window appears when you change Customizing settings, asking you to specify a Customizing request.
    Whether Customizing requests are transported or not, does not depend on the objects entered, as is the case with Workbench change requests. The Customizing requests in an SAP System (or in a client if you use Extended Transport Control) are either all transportable or all local, depending on the system setting. The system uses the standard transport layer to determine automatically whether the change requests are transportable and to which target system they should be transported. However, you can change this manually.
    Request Types and Task Types
    When you transport an object in a request, the object’s transport attributes must match the transport attributes of the request (local or transportable).
    Different object types have different transport attributes:
    Repository objects and cross-client Customizing objects
    Each Repository object has an object directory entry. This object directory entry contains the package to which the object is assigned. In turn, the package is assigned to a transport layer.
    If a consolidation route leading from the current system is defined in the TMS for this transport layer, then the object is recorded in a task belonging to a transportable change request.
    If no consolidation route leading from the current system is defined in the TMS for this transport layer, then the object is recorded in a task belonging to a local change request.
    If the change request is transportable, the target of the request must be the same as the consolidation target of the object.
    If the current system is the original system of the object, the object will be assigned to a task of the type correction.
    If the current system is not the original system of the object, the object will be assigned to a task of the type repair.
    Client-specific Customizing objects
    Client-specific Customizing objects are recorded in tasks that belong to Customizing requests.
    If a consolidation route leading from the current system is defined in the TMS for the standard transport layer of the system or the current client, then the object is recorded in a task belonging to a transportable Customizing request.
    The system uses the consolidation route of the standard transport layer to determine the transport target of the Customizing request. However, you can change this target.
    If no consolidation route leading from the current system is defined in the TMS for the standard transport layer of the system or the current client, then the object is recorded in a task belonging to a Customizing request without transport target.
    SAP Help Link...
    http://help.sap.com/saphelp_nw2004s/helpdata/en/09/88f330db9911d2b41a00609419f767/frameset.htm

  • Info about Released request

    How can I figure out when did a request created? There is a request that has been already Released and I can't find action log to it, there is only a transport log but it doesn't show when did the request originally created. Is there any option to figure it out?

    Hello,
    In se10 go to Display(or press F5)-->enter the request no>Dbl click on the request no--->Select Property Tab
    This will show
    Target client
    Source Client
    Created by which User
    Last Changed Time.
    Or
    In se10 go to Display(or press F5)-->enter the request no-->Dbl click on the request no Select the request in the  Click GoTo -
    >Action log.
    Or
    look for the file in the operating system level at location
    \usr\sap\trans\actlog\<request no>.<sid>
    Hope this helps
    Pl dont forget to award suitably.
    Regards

  • About Transport Request

    Hi,
    I am working in 4.6C. I am unable to release Transport request. While releasing the task. It is giving "Create Document for the Task". How can we release the task ?
    please help me in this regard.
    kind regards,
    praveen.

    Hi!
    When you release the task, blank text editor screen opens and you get a message:
    Create documentation for task XXXXXXXXXXXXX
    This is not an error. You can type in some documentation for this task, otherwise just hit 'Save' button and task will be released. Hope this will help.
    Reward points are welcome.

  • Help needed about HTTP Request Headers

    HI All,
    Regarding HTTP RFC 1945 I have to use headers request-line and message is there any functionality in Servlets or JSP to access both them. I used &#8220;request.getHeaderNames()&#8221;, which return the headers &#8220;ACCEPT,ACCEPT-ENCODING ,ACCEPT-LANGUAGE ,CACHE-CONTROL ,CONNECTION ,CONTENT-LENGTH ,CONTENT-TYPE ,COOKIE ,HOST ,REFERER ,USER-AGENT&#8221; but not request-line and message.
    Kindly provide the help to access them.
    Regards,
    Kashif Bashir
    AdamSoft Intl
    Lahore, Pakistan

    I had a look at RFC 1945. It gives an example of what it calls a Request-Line:GET http://www.w3.org/pub/WWW/TheProject.html HTTP/1.0But as far as I can see it doesn't describe this anywhere as being a header. So it doesn't surprise me that getHeaderNames() doesn't return it.
    I'm also surprised you're even trying to access this low-level information with a high-level tool like a servlet. You could probably reconstruct it with various servlet methods, though. You know the method (e.g. "GET") and you can find out the URL from various methods of the HttpServletRequest.

  • It's about  transport request  generation

    How can I generate the transport request after the development of the report and releasing it to the QAS?
    Urgent

    Hi Rinku,
                Cinsider a report ZTEST which has been developed by you . Once you save the report ZTEST  you get a pop up window for creation of a Workbench Request . Just press on the Create button (2nd one) ,now you will get a new window where you need to enter a description for the transport (Which can be used later on for identification) . Press enter ,now your report is stored under a transport which you can see from SE10 transaction. Now  to move the transport to QAS the transport needs to be released whioch can be done from either SE10 or SE01 by using the F9 key.
    In case the transport containing the report ZTEST has already been released then to create a new transport request open the report ZTEST in change mode and as pointed by Clemens just change anything like giving a space etc and save the report and now a popup for creation of transport is given . Follow the above mentioned process and release the transport and move it across to QAS.
    Regards,
    Sowmya.

Maybe you are looking for

  • ITunes Library File Locked

    Hi, Have been using iTunes 10.5 on my WinXP machine - no problems.  During a movie download tonight, iTunes crashed.  Tried to reopen and got the infamous error "iTunes Library file locked or on a locked disk..."  Tried several remedies listed.  Veri

  • Cumulative Cash Flow report

    Hi,        Can anyone tell me how to generate the cumulative cashflow report? (ex: from april/10 to till date and for the perticular month) Thanks in advance

  • Cannot Display Window for ABAP Keyword Documentation

    Dear Rolf-Martin, Again, I have problem with my friend PC that run Windows OS. When he start transaction code ABAPDOCU, than he call The ABAP Keyword Documentation and type a keyword like "SELECT" than Enter. In the right of ABAP Keyword Documentatio

  • RWD Uperform and BW (Using BEX Analyzer)

    We are currently trying to record our BW/BI training materials with uPerform.  When we try to execute the actual query to produce the report while recording, our PCs lock up and no results are returned.  It actually takes closing out UPerform and BEX

  • XE11: Calculating shmall and shmmax for 64b linux

    Hello, installing XE11 on a 64b linux gives me  a message like 'unexpected nummer' or ' 'expect  a integer value' shmall and shmmax is set to kernel.shmall = 1152921504606846720 kernel.shmmax = 18446744073709551615 from the os. shmmax seems to big fo