Configuration Application Programming Interface

Does Cisco have any API / libraries that will help us create a custom tool which does minimal work of Configurations Manager ?
Can anybody throw come light on ConAPI
Thanks & Regards
Venkatesh.V

Hi Pablo,
welcome to SDN.
You can't directly access the SAP Database as I think you want through any ODBC Driver. You should only access it via defined interfaces called RFC Enabled Function Modules. A special set of this RFC FM's are BAPI's which are mostly well documented and keep a consistent interface during releases.
From a Windows Environment I think the .NET Connector is the best and also supported way to access SAP. Have a look at the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/developerareas/dotnet">.NET Interoperability</a> Pages here on SDN.
Regards
Gregor
P.S.: You can award points to answers which helped you by clicking on the Radio Buttons in front of the answer.

Similar Messages

  • SLD Application Programming Interface for ABAP-Based Systems

    Hi Experts,
    Could you help me to configure the connection between SLD ABAP API and the SLD manually?
    Why we use SLD Application Programming Interface for ABAP-based systems (SLD ABAP API)?
    please help.
    Sushama

    You have to use transaction SLDAPICUST in the business system to define the SLD access data. This data consists of the host and port of the SLD as well as a user and password (PIAPPLUSER, for example). You can use the entries that you maintained on your Integration Server.
    The RFC destinations LCRSAPRFC and SAPSLDAPI are used for the SLD connection. They use the SLD access data maintained with transaction SLDAPICUST. The RFC destination LCRSAPRFC is used to read the exchange profile; SAPSLDAPI is used by the ABAP API.
    The RFC destinations are also used to retrieve the information about where to retrieve the information about where to find the Integration Builder required for the proxy generation. This information is located in the exchange profile.
    You have to create both RFC destinations in your business system. They use the same registered server program, which is defined as part of the RFC engine settings of the J2EE Engine on the Integration Server host. This means that all business systems can use the same server program for their RFC destinations LCRSAPRFC and SAPSLDAPI. This program ID is:
    &#9679;      SAPSLDAPI_UNICODE for Unicode business systems
    &#9679;      SAPSLDAPI_NONUNICODE
    This should help

  • Application Programming Interface

    Hello everyone,
    I'm new in this forum and to SAP, and I appreciate the opportunity to reach you. Here's my question:
    I need to go into a SAP database and directly retrieve table information. All this from MS Access.
    1. Does SAP provide an application programming interface to do all this?
    2. How can I get to the API library?
    3. What language is it written in?
    Thanks!
    Cordially,
    Pablo Diaz.

    Hi Pablo,
    welcome to SDN.
    You can't directly access the SAP Database as I think you want through any ODBC Driver. You should only access it via defined interfaces called RFC Enabled Function Modules. A special set of this RFC FM's are BAPI's which are mostly well documented and keep a consistent interface during releases.
    From a Windows Environment I think the .NET Connector is the best and also supported way to access SAP. Have a look at the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/developerareas/dotnet">.NET Interoperability</a> Pages here on SDN.
    Regards
    Gregor
    P.S.: You can award points to answers which helped you by clicking on the Radio Buttons in front of the answer.

  • BAPI (Business Application Programming Interface)

    BAPI (Business Application Programming Interface) to upload attendances, absences from legacy system to SAP system
    can sumbody suggest me the process

    If you want to use BAPI´s for this process you should use HR PDC Interphase.
    Check SAP Note 647145 for your reference.
    If you need additional information let us know.

  • Short Dump while creating Configuration (Application or Component)

    Hi All,
    I m facing a short dump, while creating a Component or Applcation Configuration
    in the standard FPM_GAF_COMPONENT.
    Short dump states the Runtine error as MESSAGE_TYPE_UNKNOWN
    Short text
        Message type " " is unknown.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_WDR_MESSAGE_MANAGER========CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    Information on where terminated
        Termination occurred in the ABAP program "CL_WDR_MESSAGE_MANAGER========CP" -
         in "IF_WD_MESSAGE_MANAGER~REPORT_T100_MESSAGE".
        The main program was "SAPMHTTP ".
        In the source code you have the termination point in line 16
        of the (Include) program "CL_WDR_MESSAGE_MANAGER========CM00R".
      12        exporting
      13           textid = cx_wdr_rt_exception=>invalid_
      14   endif.
      15
    >>>>   message id msgid type msgty number msgno
      17           with p1 p2 p3 p4
      18           into msg.
      19
      20   if p1 is not initial.

    Hello Srikanth,
    I have no issues in trying to help someone as polite as you! It is very nice to have questions answered in an intelligible manner - not unfortunately always the case.
    Without being able to debug on your system it is quite difficult to say what might be causing this error - especially as you say this was working in a different system.
    I'm sure you've already tried eliminating differences in your authorisations between the two systems? Are you registered as a developer in the new system?
    Sorry I'm now just guessing as I've not come across the error myself - hopefully now that we have clearly documented the issue, someone else might be able to shed some light on what might cause it!
    Chris

  • How To create a Buffer Application Program in LabVIEW?

    Dear all:
    Can someone advise me on how to implement a buffer application for LabVIEW.
    Basically I have 2 application programs than run continously in paralell.
    1) LabVIEW Data Logging & Plotting Program. It takes 90 ms to excute its code
    2) C++ Data Acquisition Program. It Samples the data from a Reflective Memory Card (on the PCI bus of my PC)
    at 1ms and creates a Buffer where it store one sample per channel every 1 ms.
    I know LabVIEW have the Code Interface Node to call a C program but since both (The LabVIEW and the C) are runing (one slower than the other) in Parallel I need to somehow interrupt the C program from LabVIEW and get from it the data that it as collected so far.
    Any suggestio
    n will be highly appreciated. I attach txt file with a little more description of the problem.
    Thank You very much.
    Felix Beltran
    ALSTOM Power Conversion.
    U.K
    Attachments:
    NI_SW_Buffer_Question1.txt ‏2 KB

    Hi Felix,
    The best architecture for this application would be to have the C++ program divided into two threads. One thread is continuously acquiring data and placing it in a queue. The other "handling" thread will read data from the queue and serve it up to your LabVIEW application.
    Much better than using the Code Interface Node, build the C++ application into a DLL. You can then call a function from your LabVIEW program to start the acquisition, and then calls to the handling thread function will return data to LabVIEW.
    I hope this helps.
    Regards,
    Phil R
    Applications Engineer
    National Instruments
    http://www.ni.com/support

  • Having issues after installing Essbase V9.3.1,configuring the SQL interface

    I am having issues after installing Essbase V9.3.1 and configuring the SQL interface. we are using UNIX/AIX box for our Essbase server and UDB DB2 9.1 SP6 as our SQL Interface.
    When tried to run an ESSCMD script to perform BUILDDIM operation on Essbase application using the load rule (with the SQL interface), got the error as recorded in the application log file and is attached at the bottom and the .odbc.ini file on the server looks as follows.
    Can somebody tell me whether .odbc.ini needs any correction or what else should I do to correct the issue and able to work thru using SQL interface? Appreciate any help provided in this regard. Thanks,
    .odbc.ini
    [ODBC Data Sources]
    DOLU003=IBM DB2 ODBC DRIVER
    [DOLU003]
    Driver=/home/db2inst1/sqllib/lib/libdb2.a
    Database=DOLU003
    [ODBC]
    Trace=0
    TraceFile=odbctrace.out
    InstallDir=/home/db2inst1/sqllib/odbclib
    [Mon Apr 20 15:16:29 2009]Local/New_Bud/Budget/Olapadm/Info(1021020)
    Cannot read SQL driver name for [] from [home/hyperion/.odbc.ini]
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1013091)
    Received Command [SQLRetrieve] from user [Olapadm]
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1021020)
    Cannot read SQL driver name for [] from [home/hyperion/.odbc.ini]
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1021004)
    Connection String is generated
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1021041)
    Connection String is [DSN=DOLU003;UID=...;PWD=...]
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1021006)
    SELECT Statement [SELECT * FROM DB2OLADM.BD_DIMENSION_DEF_PC WHERE DIMENSION_ID
    = 12 ORDER BY TREE_NODE_NUM, PARENT_NODE, CHILD_NODE] is generated
    [Mon Apr 20 15:16:44 2009]Local/New_Bud/Budget/Olapadm/Info(1021013)
    ODBC Layer Error: [7] ==> [[DataDirect][ODBC 20101 driver]6013]
    [Mon Apr 20 15:16:44 2009]Local/New_Bud/Budget/Olapadm/Info(1021014)
    ODBC Layer Error: Native Error code [0]
    [Mon Apr 20 15:16:44 2009]Local/New_Bud/Budget/Olapadm/Error(1021001)
    Failed to Establish Connection With SQL Database Server. See log for more information
    --------------------------------------------------------------------------------------------------------------------------------------------

    I had similar errors when first setting up the SQL interface. Are you on a 64 bit operating system on the essbase server? If so Essbase needs to use the 32 bit odbc driver, not the default 64 bit driver.
    The 32 bit driver is still available here SysWOW64\odbcad32.exe <-----This is the 32 bit (Use)
    The Administrative tools by default uses system32\odbcad32.exe <----This is the 64 bit (Don't Use)
    Once I opened the 32 bit driver interface directly and set it up the errors went away.

  • How to use Labview 7.0 to make program interface?

    Hellow!
    Will Labview 7.0 be able to make the program interface? just like some application software made by VC++,VB?
    The program interface should have the menu,button,...
    Thanks!

    You can use LV to create a fully working program with an interface of your design, just like you would in any other compiler. LV actually serves as a compiler for a graphical language called G, which is based on dataflow instead of text based execution (the data "flows" through wires from one function to the next, controlling execution order and filling the role of variables).
    Since LV is multiplatform (and not MS), its default controls are not identical to those in VC and VB, but those can be accessed to. Actually, in many ways, it's much easier to build an interface in LV, because building the interface actually defines your "variables" and your interaction with the code.
    An interface would be no good without a program, so you will have to know how to use LV. It's much faster to learn than other languages, but you will still need some experience to write good programs.
    To learn more, I suggest you start by reading the LabVIEW user manual. Also, try searching this site and google for LabVIEW tutorials. Here and here are a couple you can start with. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide.
    If your question was only about MS buttons, like in VB and VC, you can find them in the Dialog Controls palette, or you can use ActiveX to embed them into your program.
    Try to take over the world!

  • Easy Install Android SDK via Dreamweaver CS5.5 Configure Application Framework

    I have been trying to download Android SDK using Configure Application Framework from Site >> Mobile Applications but get the following error message everytime I try:
    After clicking on "Easy Install..." button:
    According to several tutorials available in Adobe's development network, this should be as easy as clicking on the button. I wonder what could be the issue on my end. Could you help please?
    Thank you,

    I have followed all the instructions for the test application that adobe supplied and i cant get it to run the emulator below is my log file what is wrong and why wont it run.
    <DW>
    set ANT_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\Users\android-sdk
    set JAVA_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\Users\ANDROI~1\PLATFO~2
    C:\Users\android-sdk\platform-tools\adb.exe devices
    </DW>
    * daemon not running. starting it now on port 5037 *
    * daemon started successfully *
    List of devices attached
    Launching the Android emulator
    <DW>
    set ANT_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\Users\android-sdk
    set JAVA_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\Users\ANDROI~1\tools
    C:\windows\system32\cmd.exe /u /c "C:\Users\android-sdk\tools\emulator.exe -partition-size 1024 -cpu-delay 0 -no-boot-anim -avd DW_AVD"
    </DW>
    Cloning seed app for Android
    <DW>
    set ANT_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\Users\android-sdk
    set JAVA_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER
    C:\windows\system32\cmd.exe /u /c C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\DWPHON~1\android\scripts\droidGap.bat "C:\Program Files\Adobe\Adobe Dreamweaver CS5.5\Configuration\NativeAppFramework\DWPhoneGap\android\PhoneGapApp" "Meridien" com.adobe.meridien 1.0 "C:\Users\android-sdk" 8
    </DW>
    CaCreated project directory: C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien
    Created directory C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\src\com\adobe\meridien
    Added file C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\src\com\adobe\meridien\Default Activity.java
    Created directory C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\res
    Created directory C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\bin
    Created directory C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\libs
    Created directory C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\res\values
    Added file C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\res\values\strings.xml
    Created directory C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\res\layout
    Added file C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\res\layout\main.xml
    Created directory C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\res\drawable-hdpi
    Created directory C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\res\drawable-mdpi
    Created directory C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\res\drawable-ldpi
    Added file C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\AndroidManifest.xml
    Added file C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\build.xml
    Added file C:\Users\Craig\KC Media Clients\Apps\com.adobe.meridien_Android\com.adobe.meridien\proguard.cfg
    CLONE SUCCESSFUL
    <DW>
    set ANT_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\Users\android-sdk
    set JAVA_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER
    C:\windows\system32\cmd.exe /u /c C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1\bin\ant.bat debug
    </DW>
    Buildfile: C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\build.xml
        [setup] Android SDK Tools Revision 12
        [setup] Project Target: Google APIs
        [setup] Vendor: Google Inc.
        [setup] Platform Version: 2.2
        [setup] API level: 8
        [setup]
        [setup] ------------------
        [setup] Resolving library dependencies:
        [setup] No library dependencies.
        [setup]
        [setup] ------------------
        [setup]
        [setup] WARNING: Attribute minSdkVersion in AndroidManifest.xml (2) is lower than the project target API level (8)
        [setup]
        [setup] Importing rules file: tools\ant\main_rules.xml
    -debug-obfuscation-check:
    -set-debug-mode:
    -compile-tested-if-test:
    -pre-build:
    -dirs:
         [echo] Creating output directories if needed...
        [mkdir] Created dir: C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\gen
        [mkdir] Created dir: C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\bin\classes
    -aidl:
         [echo] Compiling aidl files into Java classes...
    -renderscript:
         [echo] Compiling RenderScript files into Java classes and RenderScript bytecode...
    -resource-src:
         [echo] Generating R.java / Manifest.java from the resources...
    -pre-compile:
    compile:
        [javac] C:\Users\android-sdk\tools\ant\main_rules.xml:384: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
        [javac] Compiling 2 source files to C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\bin\classes
    -post-compile:
    -obfuscate:
    -dex:
         [echo] Converting compiled files and external libraries into C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\bin\classes.dex...
    -package-resources:
         [echo] Packaging resources
         [aapt] Creating full resource package...
    [aapt.exe]     (skipping index file 'C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\assets\www\img\Thumbs.db')
    [aapt.exe] libpng error: Not a PNG file
    [aapt.exe] ERROR: Failure processing PNG image C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\res\drawable-hdpi\splash.png
    [aapt.exe] libpng error: Not a PNG file
    [aapt.exe] ERROR: Failure processing PNG image C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\res\drawable-ldpi\splash.png
    [aapt.exe] libpng error: Not a PNG file
    [aapt.exe] ERROR: Failure processing PNG image C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\res\drawable-mdpi\splash.png
    BUILD FAILED
    C:\Users\android-sdk\tools\ant\main_rules.xml:510: null returned: 1
    Total time: 12 seconds
    OPERATION CANCELED
    <DW>
    set ANT_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\Users\android-sdk
    set JAVA_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\Users\ANDROI~1\PLATFO~2
    C:\Users\android-sdk\platform-tools\adb.exe kill-server
    </DW>
    <DW>
    set ANT_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\Users\android-sdk
    set JAVA_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\Users\ANDROI~1\PLATFO~2
    C:\Users\android-sdk\platform-tools\adb.exe devices
    </DW>
    * daemon not running. starting it now on port 5037 *
    * daemon started successfully *
    List of devices attached
    Launching the Android emulator
    <DW>
    set ANT_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\Users\android-sdk
    set JAVA_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\Users\ANDROI~1\tools
    C:\windows\system32\cmd.exe /u /c "C:\Users\android-sdk\tools\emulator.exe -partition-size 1024 -cpu-delay 0 -no-boot-anim -avd DW_AVD"
    </DW>
    <DW>
    set ANT_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\Users\android-sdk
    set JAVA_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER
    C:\windows\system32\cmd.exe /u /c C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1\bin\ant.bat debug
    </DW>
    Buildfile: C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\build.xml
        [setup] Android SDK Tools Revision 12
    BUILD FAILED
    C:\Users\Craig\KCMEDI~1\Apps\COMADO~1.MER\build.xml:77: Unable to resolve target 'Google Inc.:Google APIs:8'
    Total time: 0 seconds
    OPERATION CANCELED
    <DW>
    set ANT_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\Users\android-sdk
    set JAVA_HOME=C:\PROGRA~1\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\Users\ANDROI~1\PLATFO~2
    C:\Users\android-sdk\platform-tools\adb.exe kill-server
    </DW>

  • LabView Application program crashses randomly

    Hi,
    I have developed an application for a monochromator system using LabView 2012 (32-bit version) as my programming language.
    My application performs calibrated scan using the Calibrated Photodiode from 300 nm to 1100 nm and then perform Device Under Test (DUT) scan from 300nm to 1100nm at an interval for 5nm.
    My application crashses randomly when inside a for loop that goes from 300 to 1100nm at an interval of 5nm, whether it is performing a Cal Scan or DUT scan.
    The one thing that is consistent is that it crashes whenever LabView executes my supplier’s .NET DLL/ function call. Once the application program goes into the monochromator function call, it does not give LabView the control back. The application is stuck inside the function call.
    On Good days I am able to scan up to 30 parts with no crashing, while some days it can barely scan 5 parts. It is very inconsistent.
    I am not sure if anybody have seen any problems using dll to interface with Labview 2012.
    I have attached an image of problem I am encountering, where the LabView application is stuck in the DLL and it does not give control back to LabView.
    I would appreciate any assistance on this subject.
    Thank you,
    Nirav
    Attachments:
    Cal Scan LabView Stuck.jpg ‏390 KB

    About the only thing I can determine from that jpeg is that you could benefit greatly from this and especially this.  Please upload the actual code, if possible, so we can help you decipher it.
    thanks!
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • How to find the corresponding application program of an application doc. ?

    hi,
      can anybody give me some good idea on how the creation of an application document invokes a message control? i am working on interface right now. also, i am interested in knowing the corresponding application program of an application document. kindly somebody help me getting these two informations.
    waiting eagerly to award some good points to good helps.
    thanks,
    max

    sse the FUnction module ..MASTER_IDOC_DISTRIBUTE..if it is used zreport or program
    that means the message type used in the program are manually triggered.
    Prabhudas

  • I bought Adobe CS6 Design Standard, however on my new laptop (3840x2160 pixel screen) the program interface is way too small and i cannot size it larger. Anyone an idea?

    I bought Adobe CS6 Design Standard, however on my new laptop (3840x2160 pixel screen) the program interface is way too small and i cannot size it larger. Anyone an idea?

    Hi,
    Is there any particular application's interface that is coming up small or is it happening with all the products?
    Cheers,
    Kartikay Sharma

  • Disabling oracle application server interface

    Hi
    I have an oracle application server installed along with oracle forms
    When I type: http://hostname/
    I see "welcome to oracle Application Server" interface.
    How can I disable this interface ?

    Hi All,
    For all those concerned, I managed to download and install Oracle Database Server Version 10.1.0.4 Patch 4 for Windows server 2003 SP1 from Metalink. Please refer to document IDs. 161549.1 and 161546.1 for details on Patch 4488360.
    The supplied documentation states that this patch contains all prevois patches hence it should contain the patch 2, i.e. 10.1.0.4.2 patches.
    I have not checked the availability of this patch for other platforms.
    Feedback:
    I have installed successfully the patch on my Oracle 10g EE instance 10.1.0.4. Please read documentation for the requirements! (hint: in my case the DLL's used by Oracle services in the BIN folder were still in use even after the services were stopped!, I had to re-boot the server to free them).
    Then installed the OAS repository using the repca wizard (hint: run the prereq. scripts before installation to detect any configuration requirements)
    After I installed OAS infrastructure with Internet directory.
    Then installed Portal & Wireless successfully.
    Best regards,
    Jesmond

  • Problems access to a web application (Web Interface or Web report)

    Hi,
    We found problems with the access to web application. Some users have problems with direct links to the web applications(Web Interface or Web reporting), when they click on the link an error message appears, the message displays the following text:
    "Cannot open file Bex?sap-language=ENbsplanguge=ENcmd=idoc_TE.."
    Clicking in details the message is "No Access to specified file"
    For this users the access to excel reporting is correct, the message appears when they click on the direct web links through the browser or directly in BW system, but if they type the URL they can access. Other users can use the direct web link without problems.
    I highly appreciate any help or idea about how to solve this issue.
    Thanks in advance.

    HI,
    please ask to your basis that check the language of every single user on su01 tx.
    This is the problem i think.
    Natalia.

  • ILife 08 installer asking for application program

    Hi everyone, I have a pretty simple question, I hope. When I go to install iLife 08 on my new MacBook, I double click the installer icon and it asks me for what application program I want to open it with.
    The installer icon comes up on my iMac (you know the little yellow "package" icon) but when the disc is put in the Macbook, it is a plain "file" icon. Very strange!
    Anyone have any ideas?

    Are you installing from the iLife 08 disk? Those installer packages should be opened by "Installer.app" which is located in the HD/System/Library/CoreServices folder. If you have another installer package on your HD select it and type Command+i. In the Info window that comes up select Installer.app from the menu for Open with. Then click on the Apply to All... button. Then the iLife installer package should open automatically with the right application.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

Maybe you are looking for