SE61 Documentation API

Hello all,
Can anybody tell me how can I extend the existing documenation of a report program with another custom template(document id TX, general text) programatically. My requirement is like this,
I have a custom template document with name TEMPLATE_XY. Now I had created a report program with name Z_REPORT_1 and I also documented that from SE38 txn. Now I have my own screen and there is button over there and if I click that button contect of template document TEMPLATE_XY should be get appended to the existing documentation of the report Z_REPORT_1 and I should be able to additional info into that and save those changes. I want to achieve this programatically with a single button click. Can anyone help me please.
Thanks&Regards,
Prajesh

HI,
You can change it dynamically, for this one write a Small BDC program inside the program with N scren mode, so that you can change the Documentaion
Regards
Sudheer

Similar Messages

  • SE61 Documentation Maintenance Authorization

    Dear SAP,
    I am having problem when run Tcode F-28 Post Incoming Payment. System popup and error saying that no authorization. But i did check the user's authorization role and there's no problem with the role. It also saying that to check SE61 Documentation Maintenance Authorization. But i don't any idea on this Txn. Also give you the link below for details of the error after executed Txn SU53.
    http://www.upload2world.com/pic108/upload2world_4ed7c.jpg
    I will give points for those who help me out this problem. Thanking you in advance for your kind help.
    Regards,
    Nazrul

    Hello
    When you run the transaction and when the system says it's an authorisation, immediately type SU53 in the box and take a screen shot.
    This screen shot, send it to BASIS team for analysis.
    They would let you why there is an authorisation issue and would resolve accordinly
    Reg
    suresh

  • SE61 documentation

    Hi,
        I would like to create se61 documentation , from abap program dynamically. let me know the steps or sample code to do the same.
    Thanks,
    Jey

    HI,
    You can change it dynamically, for this one write a Small BDC program inside the program with N scren mode, so that you can change the Documentaion
    Regards
    Sudheer

  • Documentation/API details for Policy automation

    Where can we find more details about Oracle Policy automation software documentation, download and API's? Please advise.
    I reviewed the URL below but it primarily had product data sheets and some whitepapers.
    http://www.oracle.com/industries/government/policy-automation/index.html
    Thanks,
    Sudip

    This page has lots of very useful information: http://www.oracle.com/technology/products/applications/policy-automation/index.html
    Cheers,
    Jasmine

  • Generating Database Documentation API?

    Generating Database Documentation is a new feature in 1.5.1. It is explain here:http://www.oracle.com/technology/oramag/oracle/08-sep/o58sql.html
    I was wondering if they where an API version of this so i can call this straight from the database.

    Hi,
    When you select "Generate DB Doc" on a connection, SQL Developer runs a number of queries that aren't compatible with Oracle 9i.
    For example, "NOCYCLE" and "ALL_IND_STATISTICS" used by the following queries are compatible only starting with Oracle 10g.
    SELECT B.OBJECT_ID,
    b.owner,
    b.object_type,
    b.object_name,
    b.status,
    replace(b.object_type,' ','_') type_link,
    b.owner sdev_link_owner,
    b.object_name sdev_link_name,
    b.object_type sdev_link_type
    FROM sys.all_objects a,
    sys.all_objects b,
    (SELECT object_id, referenced_object_id
    FROM public_dependency
    START WITH object_id = :OBJECT_ID
    CONNECT BY <strong>NOCYCLE</strong> PRIOR referenced_object_id = object_id) c
    WHERE a.object_id = c.object_id
    AND b.object_id = c.referenced_object_id
    AND a.owner NOT IN ('SYS', 'SYSTEM')
    AND b.owner NOT IN ('SYS', 'SYSTEM')
    AND a.object_name 'DUAL'
    AND b.object_name 'DUAL';
    select * from sys.<strong>all_ind_statistics</strong> where owner = :OBJECT_OWNER and index_name = :OBJECT_NAME
    Best Regards

  • J2SDK Documentation-API

    Can somebody tell me how to make use of the SDK documentation and understand it so that I can apply them in my Java program?Thank you!:)

    The API is used as a quick reference so you can find out which classes do what, and what the method calls for each method are
    for instance
    If you were making a GUI take a look at the
    javax.swing package
    (in scrollable box in top left corner, click on 'javax.swing')
    in box below this
    and you can see that many GUI components are available for use
    such as
    JButton
    JPanel
    JCheckBox
    JMenu
    JList
    JTextArea
    JTextField
    If you dont know what one of these does then click on the link and you will be told
    many of these will have a link to an online tutorial on how to use them
    javadocs (Java version 1.4.1) are found here
    http://java.sun.com/j2se/1.4.1/docs/api/

  • Unable to download the Java 6 JDK API documentation

    Hi,
    now that all the stuff is on Oracle, I'm unable to download the Java 6 API documentation for offline use. NetBeans (an Oracle product after all) requires a local copy to show JavaDoc with code completion.
    Is anyone able to point me to the correct download location? I've browsed the new JDK download page many times and haven't found it.
    Thank you.

    What about [here?|http://www.oracle.com/technetwork/java/javaee/documentation/apis-139520.html]
    It wasn't that hard to find.
    Oops, the requirement wasn't for java ee.
    Edited by: Kayaman on 4.8.2010 10:43

  • How to use KeyChain API from client-side HTML scripting in Safari on iPad?

    I have a requirement where I need to add client-side scripting in an HTML page to be supported by Safari on iPad that creates a private / public key pair and that creates a CSR (Certificate Signing Request) in PKCS#10 or SPKAC format that can be sent to a certification authority server using form HTTP/POST that will then return the generated certificate.
    I initially thought that I could simply use the HTML 5 tag <keygen> which can do exactly what I need, but unfortunately this tag is not at all supported on mobile Apple devices like iPad or iPhone, so I have to look for another solution.
    I have noticed that the KeyChain tool should be available on iPad using the documented API, but I have no idea based on the documentation whether the API can be called from client-side HTML scripting on iPad.
    Question : is it technically possible using the functionalities and API's exposed on an iPad to implement what I just described in HTML client-side scripting? If so, do you have some links with useful information that can help me on my way?

    I have a requirement where I need to add client-side scripting in an HTML page to be supported by Safari on iPad that creates a private / public key pair and that creates a CSR (Certificate Signing Request) in PKCS#10 or SPKAC format that can be sent to a certification authority server using form HTTP/POST that will then return the generated certificate.
    I initially thought that I could simply use the HTML 5 tag <keygen> which can do exactly what I need, but unfortunately this tag is not at all supported on mobile Apple devices like iPad or iPhone, so I have to look for another solution.
    I have noticed that the KeyChain tool should be available on iPad using the documented API, but I have no idea based on the documentation whether the API can be called from client-side HTML scripting on iPad.
    Question : is it technically possible using the functionalities and API's exposed on an iPad to implement what I just described in HTML client-side scripting? If so, do you have some links with useful information that can help me on my way?

  • Communications Express Add Entries to Address Book API

    Environment: Communications Express 6.3
    Description: Looking to migrate an address book from an old system (exported to text) into the Communications Express 6.3 Address Book.
    Having browsed the LDAP entries I see they are not purely human readable. Is there an API or command line utility to import or add address book entries to a user account? Or does anyone have a document on the format of the address book entries?

    csyoub wrote:
    Description: Looking to migrate an address book from an old system (exported to text) into the Communications Express 6.3 Address Book.
    Having browsed the LDAP entries I see they are not purely human readable.Please provide an example of a "not purely human readable" entry.
    Is there an API or command line utility to import or add address book entries to a user account?The utilities provided by Sun are for the migration of data from the legacy (o=pab) format to the newer (o=piserverdb) format. There is no publicly documented API/command-line utility to import third-party address-book formats.
    Or does anyone have a document on the format of the address book entries?There is no publicly available documentation.
    Regards,
    Shane.

  • Acceleration API in Parallels with SLS guest (and Rosetta support)

    Hi,
    after reading a lot about Rosetta's support to get it to work on my brand new MacBook Pro, I bought Parallels 8 in a Bundle and a copy of Snow Leopard Server from Apple to install on it and finally get Rosetta working. Great !
    But...
    A lot of my PPC apps won't work. Paralles support explains : "There's no hardware acceleration for OS X guests. Apple doesn't open their API so Parallels can write the drivers.". OK, sorry not to have known that before ! I understand Apple wants to protect their soft.
    I also read that Apple sells different versions of Parallels.Maybe so there is a version that does support acceleration API?
    Thanks for your help

    Apple doesn't focus on keeping old software and old hardware going and never really has, so the usual recommended course is to migrate off of the PPC software and to more recent and native applications. 
    As an option, keep an older Mac around and screen-share with it pending retirement of the PPC software.
    Whether the PPC software failures are due to bugs in the virtual machine (fairly unlikely, but possible) or due to latent timing or other bugs in the application code, or due to bugs in the Rosetta image translation itself, would require research into the apps and the failures.
    As for the question, I see no reason to doubt what the Parallels support folks have stated; that there's no documented API for the hardware accelleration — though whichever particular hardware support for accelleration isn't clear.   Hardware accelleration for VM guests is usually a reference to the Intel chips and the associated VM assists present in recent versions of those chips, but the references to drivers implies this might possibly be a reference to graphics drivers or otherwise.
    I'd expect Parallels would know about other versions of Parallels, so I'm not sure where that's headed.  I'd expect the same limitations would also effect VMware, if they're also following the documented APIs, but it might still be worth a try, to see of the translated PPC applications work there; if this is a Parallels bug, or something else.
    Using undocumented APIs means the applications can break at random OS X patches and upgrades, too, and that's something most large-volume vendors want to deal with, too.
    Coding applications directly to the drivers or bypassing the operating system entirely and going directly to the hardware is how Microsoft and their third-party providers got into their current mess with compatibility with Windows software for older versions of Windows, FWIW.  Various vendors bypassed the Windows software stacks, an approach which has led to legions of compatibility and security issues for Windows users over the years. 
    If anything, OS X is headed the other direction here entirely with sandboxing and gatekeeper and trying to keep applications to specific and documented APIs, too.
    FWIW...

  • Ojdbc14.jar API and Oracle Database Version

    Hi
    Im using ojdbc14.jar for accessing an oracle 10G database.
    Im trying to troubleshoot an exception -
    java.sql.SQLException: Parameter Type Conflict
    that seems to get thrown by the method -
    OraclePreparedStatament.processCompletedBindRow
    I have a couple of questions:
    1. Is the documentation/source available for ojdbc14.jar in order that I can try and find out what this method is supposed to be doing?
    2. Also, can anyone confirm if the jar Im using is the correct version of drivers for accessing a 10G database?
    3. When I go to the JDBC support center at Oracle(http://www.oracle.com/technology/docs/tech/java/sqlj_jdbc/index.html) any support documentation/APIs refer only to the Oracle db version and dont mention Java versions. Im using ojdbc14.jar which I guess is for use with Java version 1.4 onwards - how does this relate to the Oracle database versions?
    Thnaks very much in advance to anyone who can give me any suggestions on the above. This issue has stumped me for days now. Ive checked and double checked my code, and the Oracle Java types I have generated from the database, and they all seem to be fine.
    Jon

    unzip it, and look at the MANIFEST.MF file in META-INF
    If you do not know the version, you can just download appropriate one from oracle site.
    http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html

  • APEX function documentation

    I'm new to APEX and finding that some functions aren't documented, such as wwv_flow_custom_auth_std.logout (used for the logout URL) and the JavaScript popUp2 function (just to name a couple that I've run across in my learning).
    Reading other forum posts has convinced me that the wwv_flow functions should not be used directly and that documented API functions should be used instead. So for example, APEX_CUSTOM_AUTH.LOGOUT should be used instead of wwv_flow_custom_auth_std.logout.
    APEX API - http://download.oracle.com/docs/cd/E14373_01/apirefs.32/e13369/toc.htm
    So my question is, why is the JavaScript popUp2 function not listed in the JavaScript API and how many other functions aren't documented? Do I need to spend time looking through source files such as apex_3_1.js?

    Thanks for the thorough explanation. So the APEX API and APEX JavaScript API really do contain all of the functions that developers like myself should be using (I wasn't missing anything). And even though I see undocumented functions referenced in the APEX generated code, APEX JavaScript files, APEX PL/SQL, APEX books, and this forum, I'm advised not to use these functions in my own code since these functions are internal to APEX and may not be supported in future releases of APEX.
    Thanks again.

  • API download

    Previously it was possible to download the API as a zip file. It is no longer possible to do this?
    I can easily find the following links:
    http://www.oracle.com/technetwork/java/api-141528.html
    http://www.oracle.com/technetwork/java/javase/documentation/api-jsp-136079.html
    http://download.oracle.com/javase/6/docs/api/
    But can I download the entire API in one file?

    nantucket wrote:
    I was actually jumping in and out of that page in fact. But I didn't scroll down far enough. I got discouraged and gave up before I should have. Feeling bogged down by too many issues. :o(
    Thanks for your extra eyes Dr. Clap.In stead of scrolling and reading, try the search function of your browser.

  • Synchronized API classes

    Hello.
    Does anybody know a reference to which parts of the Java 2 API are synchronized and which aren't ?
    I already know that
    1) Collection classes are not synchronized (but can be mapped to synchronized versions via Collections )
    2) Swing classes are not synchronized (but SwingUtilities provides syncdhonized methods)
    Anyone who can complete this list ?
    Thanks and regards,
    Stephan Gloor
    Switzerland

    I doubt there's a single document which says which
    classes, and which methods of classes, are
    synchronised, I agree. Synchronization is an implemenation issue, not part of the API. Though I expect you could write this yourself fairly easily using Doclets..? I've never used them myself, but from what I've read in the past, I think this is the sort of thing they could be useful for.
    but the API documentation for a given
    class will certainly say if the methods are
    synchronised. Not true. API documentation should not say whether methods are synchronized. Sun's JavaDoc tool used to generate text that did this, but is was classified as a bug and has been removed (not sure when it was, but I think it might have been removed with JDK 1.3).
    In fact, Sun's JavaDoc documentation states "It does not describe implementation details, such as whether the method is native or synchronized." I haven't been able to find the bug in the bug database, but I know there is one.
    I guess its a case of wading through the
    API documentation.API documentation should indicate the level of thread safety that a class conforms to, and may do so (as per Collections.synchronizedXxx) by telling you what objects to synchronize on where external synchronization is necessary. You should not usually need any further info.

  • Stable API's for GRC 2010 - simulation function needed

    Dear gurus,
    I have an ABAP application I want to integrate with GRC 2010 (on the ABAP stack). I understand this is ramp-up and not all API's are available yet, but need one which is pretty basic so was hoping it would exist with documentation and is released.
    My intention:
    1) The user with various authorizations already exists.
    2) My application wants to generate an additional role for the user because they are missing some auths during testing of the roles.
    3) Each authorization generated should call the GRC API to simulate whether this would cause an SOD for the user.
    4) I will generate and assign anyway, but export those authorizations for which SOD warning messages were raised.
    5) Messages are logged for rework / mitigation, but the role build and test can continue.
    Is there any documented API with a stable interface for a function which returns messages based information for SOD's which can be reacted to for an existing user and all their ABAP authorization object based auths AND a simulation of whether authorization data sent to it would produce an SOD.
    Plan B would be to generate the role and simulate the assignment and return messages of which auths in the role caused the SOD.
    I would expect that GRC is open minded enough to release such APIs to the ruleset , but if I am mistaken then "show stopper" answers are also appreciated as being a lesser evil...
    Cheers,
    Julius

    Thanks Supreet,
    I know that GRC can do an SOD check and also simulation of an SOD check "as if" the user had an additional role (which you want to assign but know in advance whether that will cause an SOD conflict). In it's previous life on the ABAP stack it was known as "Risk Rerminator". I am aware of the "old" /VIRSA/ function modules and the coding technique they used.... but have some doubts that GRC 2010 still uses those nor the same approach, which is why I am looking for a stable API.
    My application makes the assumption that GRC is already installed and wants to generate a role for a user based on a test case they are executing. In my UI where the trace data is being analyzed, I want to add some intuitive highlighting and warnings for SOD conflicts which would happen if the role were generated and assigned.
    At this ponit in time, the role does not actually exist yet so ideally I would want to send the API the authorization data and not just the role name. I could however for simplicity sake generate the role anyway but need at least the API to tell me which authorizations in the role are causing the SoD conflict with the user's already existing authorizations.
    I am very much hoping to find something like a BAPI_GRC_SIMULATE_SOD which is documented and stable and offers an import parameter with a structure something like this for the authorization data:
    OBJECT                         CHARACTER       10
    LFDNR                          NUMC            3
    FIELD                          CHARACTER       10
    LOW                            CHARACTER       40
    HIGH                           CHARACTER       40
    MODIFIER                       CHARACTER       12
    MODDATE                        DATE
    MODTIME                        TIME
    ... together with the user name of course, and then returns SOD warnings per OBJECT and LFDNR (which is just a sequencial number for the authorization instance).
    Of course it only works if GRC is installed....
    Cheers,
    Julius
    Edited by: Julius Bussche on Jan 27, 2011 7:56 AM

Maybe you are looking for

  • Using a radio button in cfmail / form.

    Hello; This is a silly question, but I can't remember how to program in radio buttons for a cfmailer. I have 3 radio buttons, basically, I just need to know what the users choice was when they checked it off. The following is my radio buttons and wha

  • Any free downloads are there XSLT mapping tool

    Hi all , any free down loads are there XSLT mapping  tool , i need to enchance the mapping which is already done in XSLT mapping there they have done look ups also using java codinh , i do have just XSLT file in import arichive , so please help me in

  • Webdynpro ABAP date navigator dynamic start up date

    Hi,    When i am using a date_navigator  for 3 months display the startup date for that i have given has 01.07.2009. So the calendar starts with July to Sep. But i want to get the first month to be the current month.it is throwing exception when i tr

  • Can not create a pdf file from print menue using mountain lion

    I can not seem print a page from Safari to desktop as a pdf.

  • Outlook problem after installing yosemite

    I have updated my mac to OS X Yosemite. I now find my outlook is behaving strange. I know I have emails but can only find them by going to search. New emails no longer come up in the conversation column. Is there a quick fix or do I need to go to an