Documents in BW - can't generate the document properties

Hi All,
I need to use documents in our productive system.
I checked the box "Characteristic is a Document Property" in infoobjects (the changes are written into transport request). Then I trasported this request into productive system, the transport was OK and according to help.sap.com I went to Documents through RSA1, where it asked me if the properties should be generated I chose OK, but then it said that the system is not modifiable (which I believe should be OK, cos it's productive) and status for generated properties for all characteristic is red (in document administration). (in dev and QA they are OK)
I also checked the BW_LO_TRAN and BW_PH_TRAN classes in productive system and they seems to be OK.
Any idea how to solve this?
Thanks a lot!
Pavel

My problem is that, following the sample
implementation in RFC2617, the genrated hash is never
like the expected one mentioned by the sample! And
I've been trying all possible combinations (as far as
I know) while running my tests! The essential parts of
the code I've written looks like:[snip]
test.update((username + ":" + realm + ":" + pwd).getBytes());
test.update((method + ":" + uri).getBytes());
test.update(( ":" + nonce + ":" + nonceCount + ":" +
+ cnonce + ":" + qop + ":").getBytes());
Any ideas why and where my calculation goes wrong?
Appreciating any help!getBytes() is NOT your friend. What format is the default on your machine? What format does the MD5 assume for the string? I would guess that if you changed all of your getBytes() calls to getBytes("ASCII") (or maybe getBytes("UTF8")), life would be happier. Give it a try and see what happens!
Grant

Similar Messages

  • How can we generate the reports in html or text file formats?

    Hi,
    Is there any package that can help in creating HTMLDB reports in .txt files or .html files? (Similar to TEXT_IO in Oracle Forms)
    How can we generate the reports in html or text file formats from HTMLDB?
    Thanks in Advance
    Renjith

    Hello all.
    Bi Publisher is great, but has a very high price tag. It's even more expensive than Forms & Reports Services. We are considering APEX to replace Forms & Reports on the web, but the reporting limitations are still a problem.
    I wonder if there is another option.
    Thanks

  • How can we generate the report of backup,tablesapcefrom OEM / RMAN

    How can we generate the report of backup status,tablesapce(usedf,free space) for all the databases from OEM / RMAN
    1.)we need generate the report of tablespace used,free, archive...
    2.)How can we generate the Backup status report also

    user13584223 wrote:
    How can we generate the report of backup status,tablesapce(usedf,free space) for all the databases from OEM / RMAN
    1.)we need generate the report of tablespace used,free, archive...There are DBA_* views that expose the necessary information. They are documented in the Reference Manual.
    2.)How can we generate the Backup status report alsoThere are rman commands that give that. They are documented in the Backup and Recovery User's Guide.
    =================================================
    Learning how to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
    Go to [url tahiti.oracle.com]tahiti.oracle.com.
    Locate the link for your Oracle product and version, and click on it.
    You are now at the entire documentation set for your selected Oracle product and version.
    <b><i><u>BOOKMARK THAT LOCATION</u></i></b>
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab (for 10.x) or the "Master Book List" link (for 11.x) you will find the complete documentation library.
    Spend a few minutes just getting familiar with what <b><i><u>kind</u></i></b> of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what <b><i><u>kind</u></i></b> of information is available there.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    You don't have to read the above in depth. They are <b><i><u>reference</b></i></u> manuals. Just get familiar with <b><i><u>what</b></i></u> is there to <b><i><u>be</b></i></u> referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
    Then set yourself a plan to dig deeper.
    - Read a chapter a day from the Concepts Manual.
    - Take a look in your alert log. One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them (listed in your alert log) in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - When you have finished reading the Concepts Manual, do it again.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.
    =================================

  • Can i view the custom properties created in Window Azure via signing in or without graph API

    Hi,
    I have a free window azure license and i am using Azure AD for authentication.
    Now i want a custom property say "XYZ" in azure AD, My Questions are :
    1. Can i create The Custom properties OOTB ?
    2. How Can i mange them? Can i mange them from Azure interface or azure is providing any interface to manage them?
    Thank You.

    Greetings Shekhar,
    If you create an extension attribute for an object using the Graph API, you can manage and view that attribute using the Graph API only.  The extension attributes are not exposed in any of the Azure portals. 
    The only way to modify the attribute in the Azure Active Directory would be by using the Graph API.  the Graph API samples provide information on both, creating an extension attribute and how to modify it. 
    Below is a link to the graph API samples on MSDN:
    Azure AD Samples
    Regards,
    MaxV( MSFT )

  • Can we generate the output of SQL Query in XML format ..

    Hi Team,
    Can we generate an XML doc for an SQL Query.
    I've seen in SQL Server 2000.It is generating the output of an SQL Query in xml format.
    select * from emp for xml auto
    The output looks like
    <emp EMPNO="7369" ENAME="SMITH" JOB="CLERK" MGR="7902" HIREDATE="1980-12-17T00:00:00" SAL="2800" DEPTNO="20"/><emp EMPNO="7370" ENAME="SMITH" JOB="CLERK" MGR="7902" HIREDATE="1980-12-17T00:00:00" SAL="2800" DEPTNO="10"/>

    Just a little bit of short hand.
    Get the XML out of your database, via HTTP
    Of course the easiest method is just to return an XMLType from a stored procedure and let the calling routine figure out what to do with it. Instead
    of that way though, I'll show you how to do it via HTTP. It's all completely built into 10g and is super easy to use.
    CREATE OR REPLACE VIEW emps_and_depts AS
    SELECT e.employee_id AS "EmployeeId",
    e.last_name AS "Name",
    e.job_id AS "Job",
    e.manager_id AS "Manager",
    e.hire_date AS "HireDate",
    e.salary AS "Salary",
    e.commission_pct AS "Commission",
    XMLFOREST (
    d.department_id AS "DeptNo",
    d.department_name AS "DeptName",
    d.location_id AS "Location"
    ) AS "Dept"
    FROM employees e, departments d
    WHERE e.department_id = d.department_id
    Some people hear web and immediately start salivating about security issues. Let me address that quickly. Just because you have the HTTP and/or
    FTP servers running in the database, that does not mean you have a security problem. For one, I would hope your databases are behind a firewall.
    Second, with the correct architecture (DMZ, app servers, etc) you can make this data available outside the firewall fairly transparently and third,
    just because it's on the web does not mean the data MUST be available on the internet. This is a good way to make your data available on your
    intranet. If you are worried about people INSIDE your firewall, that still doesn't preclude web based access. Follow Oracle security guidelines.
    Before I show you how to get to your data, let's talk about URLs and URIs. A URL is a Uniform Resource Locater and URI is a Uniform Resource
    Identifier. A URL is the way you would identify a document on the net, i.e. http://www.oracle.com is a URL. A URI is a more generic form of a URL.
    Oracle supports three types of URI: HTTPURIType - basically a URL (which would be like the URL above), XDURIType - a pointer to an XDB resource
    (usually an XML document but can be other objects), and DBURIType - a pointer to database objects.
    It's the DBURIType that we're going to concentrate on here. The DBURIType let's us reference database objects using a file/folder paradigm. The
    format for a DBURI is /oradb/<schema>/<table>. Oradb is shorthand for the database; it is not the database name or SID. My database is named XE
    but I still use oradb in the DBURI. For example, the view we created above is in my XE database, is owned by HR (at least in my case) and is called
    EMPS_AND_DEPTS. This can be referenced as /oradb/HR/EMPS_AND_DEPTS.
    If the view had many rows and you wanted only one of them, you can restrict it by including a predicate. The documentation for XDB has a great
    write up on Using DBURIs.In our case, we are going to write out the entire document. Now that you understand that the DBURI is a pointer to
    objects in our instance, we can use that to access the data as a URL.
    The format for the URL call is http://<machinename>:<port>/<DBURI>
    In my case, my XE database is running on a machine called mach1 and is listening on port 8080. So to see the view we created above, I open my
    browser and navigate to: http//mach1:8080/oradb/HR/EMPS_AND_DEPTS
    The created URL will be as http//mach1:8080/oradb/PUBLIC/EMPS_AND_DEPTS
    If your database is set up correctly and listening on port 8080 (the default), your browser should ask you to login. Login as the user who created the
    view (in my case HR). You should now get an XML document displayed in your browser.
    And that's it. It doesn't get much simpler than that. If you get rid of the descriptive text above, it basically comes down to:
    Create a table or view
    Open your web browser
    Enter a URL
    Enter a user ID and password
    View your XML
    If you notice, Oracle formatted the data as XML for us. Our view returns scalar columns and an XML fragment called Dept. Oracle formatted the
    return results into an XML format.
    And as a side note, if you look closely, you'll see that my URL has PUBLIC where I said to put HR. PUBLIC is a synonym for all objects that your
    logged in user can see. That way, if your user has been granted select access on many schemas, you can use PUBLIC and see any of them.

  • Can not generate the passcode for wiki

    hi All,
    I am using wc11.1.1.3, I try to config wiki according to wc document, when I want to generate the passcode for wiki, the document said:
    1.Start Fusion Middleware Control Console. For information, see Section 6.1, "Displaying Fusion Middleware Control Console."
    2.Right-click the domain in which Oracle WebCenter Wiki and Blog Server is deployed. Next, select Security and then click Credentials.
    While just at this step, I got the error msg like this:
    Can not search all credentials from credential store
    JPS-01049: ??????: javax.naming.directory.InvalidSearchFilterException: invalid attribute description; remaining name 'cn=oracle.wsm.security,cn=CredentialStore,cn=portalDomain,cn=JPSContext,cn=jpsroot_wc'
    I am using oid11g as credential store, I checked oid and confirm that 'cn=oracle.wsm.security,cn=CredentialStore,cn=portalDomain,cn=JPSContext,cn=jpsroot_wc' exists.
    Does anybody has suggestion on this?
    Best regards

    Read this and this.

  • Can 9401 generate the clock frequency of 20Mhz on 4 Channels in SCTL of 40MHz

    We need to use 9401 to generate the clock frequency of 20Mhz on 4 Channels
    But as per trhe data sheet 
    4 output channels........................10 MHz
    Does it means that we can get maximum frequency of 10MHz on each channel.
    Thanks

    Hello Johan!
    Bad news I am afraid….
    I assume you are using the Data Acquisition Toolbox from the Mathworks and when it comes to support on that interface I have to advice you to contact the Mathworks for assistance. We don't provide any support on their data acquisition interface since we have nothing to do with it.
    Sorry for the inconvenience this might cause you.
    Regards,
    Jimmie A.
    Applications Engineer, National Instruments
    Regards,
    Jimmie Adolph
    Systems Engineer Manager, National Instruments Northern Region
    Bring Me The Horizon - Sempiternal

  • Schematool createDB can't generate the ddl

    Hi,
    I am trying to run the schematool to generate the ddl to re-create the
    current DB - according to the doc, I should run :
    schematool -a createDB -f sql.txt
    However, when I run it (after put some CLASSPATH setting before the java
    execute), it gives me following exception (Note: the first line is the
    output of "echo $CLASSPATH"):
    [tyang@zetus UMA]$ ./schematool -a createDB -f tmp.ddl
    /usr/java/jsdk/ext/JMF-2.1.1e/lib/jmf.jar:/usr/java/jsdk/ext/JMF-2.1.1e/lib/sound.jar:.:lib/commons-beanutils.jar:lib/commons-collections.jar:lib/commons-dbcp.jar:lib/commons-digester.jar:lib/commons-lang.jar:lib/commons-logging.jar:lib/commons-pool.jar:lib/cwlicense.jar:lib/db2java.jar:lib/db2j.jar:lib/jakarta-regexp.jar:lib/jaxen-full.jar:lib/jca1.0.jar:lib/jcommon-0.8.8.jar:lib/jdo-1.0.1.jar:lib/jdom.jar:lib/jfreechart-0.9.13.jar:lib/jndi.jar:lib/jta-spec1_0_1.jar:lib/kodo-jdo.jar:lib/kodo-jdo-runtime.jar:lib/license.jar:lib/log4j-1.2.8.jar:lib/msbase.jar:lib/mssqlserver.jar:lib/msutil.jar:lib/ojdbc14.jar:lib/pg72jdbc2.jar:lib/saxpath.jar:lib/servlet.jar:lib/sqlline.jar:lib/tjdo.jar:lib/xalan.jar:lib/xercesImpl.jar:lib/xml-apis.jar:build/classes:build/jdometa-dtd
    Exception in thread "main" java.lang.NullPointerException
    at org.postgresql.jdbc2.ResultSet.getBytes(ResultSet.java:321)
    at
    org.postgresql.jdbc2.DatabaseMetaData.getIndexInfo(DatabaseMetaData.java:2942)
    at
    com.solarmetric.jdbc.DelegatingDatabaseMetaData.getIndexInfo(DelegatingDatabaseMetaData.java:253)
    at
    com.solarmetric.jdbc.LoggingConnectionDecorator$LoggingConnection$LoggingDatabaseMetaData.getIndexInfo(LoggingConnectionDecorator.java:321)
    at
    com.solarmetric.jdbc.DelegatingDatabaseMetaData.getIndexInfo(DelegatingDatabaseMetaData.java:253)
    at kodo.jdbc.sql.DBDictionary.getIndexInfo(DBDictionary.java:2921)
    at
    kodo.jdbc.schema.SchemaGenerator.generateIndexes(SchemaGenerator.java:568)
    at
    kodo.jdbc.schema.SchemaGenerator.generateIndexes(SchemaGenerator.java:577)
    at
    kodo.jdbc.schema.SchemaGenerator.generateIndexes(SchemaGenerator.java:357)
    at
    kodo.jdbc.schema.SchemaGenerator.generateSchemas(SchemaGenerator.java:188)
    at
    kodo.jdbc.schema.SchemaGenerator.generateSchemas(SchemaGenerator.java:168)
    at
    kodo.jdbc.schema.SchemaTool.getDBSchemaGroup(SchemaTool.java:1062)
    at kodo.jdbc.schema.SchemaTool.createDB(SchemaTool.java:293)
    at kodo.jdbc.schema.SchemaTool.run(SchemaTool.java:1383)
    at kodo.jdbc.schema.SchemaTool.run(SchemaTool.java:1317)
    at kodo.jdbc.schema.SchemaTool.main(SchemaTool.java:1267)
    Any clue ?
    Thanks,
    Tao

    It does appear to be a driver bug, and it looks like it is fixed in
    recent versions of the Postgres JDBC driver. See:
    http://archives.postgresql.org/pgsql-jdbc/2002-02/msg00179.php
    In article <brsrnl$4q0$[email protected]>, Abe White wrote:
    >
    Exception in thread "main" java.lang.NullPointerException
    at org.postgresql.jdbc2.ResultSet.getBytes(ResultSet.java:321)
    at
    org.postgresql.jdbc2.DatabaseMetaData.getIndexInfo(DatabaseMetaData.java:2942)
    As you can see, this is a postgres error, so it's difficult to know what
    is going on. Are you using Postgre's own 7.2 driver?--
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Can we generate the payslip by using EC 6.0 in development server  ?

    Hi Gurus,
    Pl. respond asap

    we have successfully run the pay roll,but we are not able to generate the payslip in SAP format.   If we can do it ?, can you pl explain the procedure ....
    Thanks in advance
    Regards,

  • Can we generate the same key with the same password???

    Hi everyone,
    Is it at all possible to generate the same key? I have a program that takes a user password, creates a key. And this is done in a loop for 5 times. I just wanted to see if the keys that are generated will be the same for the same password. But the keys that are generated are different.
    Does anyone have any idea why this would happen?
    My Environment
    jdk1.2.2
    jce1.2.1
    My class is very simple as is as follows
    import java.security.*;
    public class SecureStuff {
    static
    Security.addProvider(new com.sun.crypto.provider.SunJCE());
    public SecureStuff()
    try {
    Key secretKey = null;
    for (int i = 0; i < 6; i++){
    javax.crypto.spec.DESedeKeySpec spec = new javax.crypto.spec.DESedeKeySpec("PASSWORDPASSWORDPASSWORD".getBytes());
    javax.crypto.SecretKeyFactory desFactory = javax.crypto.SecretKeyFactory.getInstance("DESede");
    secretKey = desFactory.generateSecret(spec);
    System.out.println("key generated:"+secretKey.getEncoded());
    } catch (Exception e){
    e.printStackTrace();
    public static void main(String[] args) {
    SecureStuff securestuff = new SecureStuff();
    The Output
    C:\> java SecureStuff
    key generated:[B@eb7989c5
    key generated:[B@e96189c5
    key generated:[B@e99589c5
    key generated:[B@e8d989c5
    key generated:[B@ef4189c5
    key generated:[B@eff589c5
    Please can anyone help me..
    Thank you very very much.
    ...geetha

    Hi,
    I was wondering if you have found a solution to your question.. I justed started working with JCE and have to implement the same functionality. basically I am trying to Encrypt passwords stored in the DB and then when a user logs in, I encrypt his password and compare with the stored password in the DB. For me to do this I have to be sure I can get the same key generated for each encryption.
    Also, do you have any examples I can look at or any recommendation on books that explain this subject (JCE) well.
    Thanks
    Chi

  • Can I generate the first page in a PDF file To a image (jpg/png..) file without Adobe Acrobat Profes

    I was developing an desktop application with C#.NET2.0
    I would like to insert a PDF file to a repository and then generate the thumbnail of first page to a (jpg/png) file and store to the database for preview as the Icon in my application.(Like to Window Explorer)
    I have read around the boards and found that the machine must be installed with only the full of Acrobat Professional, right?
    If the appliction have to be run to a lot of client. Do I need to buy the lecense to all machines? Or Are there the other ways?

    If you want to use the Acrobat SDK, which is a tool for automating
    Acrobat, you need to buy and install Acrobat on each client.
    Adobe's PDF Library, which doesn't require Acrobat and has a different
    (negotiated) licensing model based on royalties might be a better fit.
    In either case, this would be written in C/C++.
    Aandi Inston

  • How can we set the security properties of adobe

    Hi all,
    I am developing an interactive form in Adobe lifecycle designer 8 .
    The Document properties -> security   "signing " is set as not allowed .
    Is there a way to change the properties when I am designing the form in ALD ?
    Thanks ,
    naval bhatt .

    Hi all ,
    we just need adobe pro you can change the settings in the menu .
    Advanced -> change usage rights in Adobe reader

  • Can't see the bookmark properties

    I can't open in Firefox the bookmark properties. The window disappears if clicked on 'Properties'.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Where can I change the System properties permanently

    Instead of
    System.setProperty("name","new-value");
    to change the system properties in run-time.
    How can I change it in a config file? Where is it?
    Thx.

    Hai,
    We can't directly set the system properties values using config/properties file. But, if you wish to use <b>Spring </b> framework, there is an option to load system properties through a config file.
    Regards,
    Loga

  • How can I open the "Pane Properties Dialog Box", without right-clicking on the scrollbar of the pane?

    To open the "Pane Properties Dialog Box" the LabVIEW Help suggest following:
    "Right-click in the scrollbar of a pane and select Properties from the shortcut menu to display this dialog box."
    The Problem is that I would like to switch off the scrollbars, which once done, means I can't right-click on the scrollbar anymore !
    There must be a different way to get to this Menu, too ?!

    Typically, you would hide the scrollbars only when running, and in this case there is no problem. I guess you should keep at least one of the scrollbars visible in edit mode.
    Once both scrollbars are hidden, you can restore them using the "VI properties...windows appearance...customize" dialog.
    LabVIEW Champion . Do more with less code and in less time .

  • Where can I find the wrapper.properties file?

    Does anyone know where I can find the wrapper.properties file?

    Yes I am talking about tomcat, except it is not in this directory. I even did a search my entire hard drive and could not find it. Why is this? and how do I change the class path for the server? I thought you do so in this file?

Maybe you are looking for