Python API files

Hi,
These (generated?) files are instrumental in library function names autocompletion or calltips or some such things. Some genius invented a killer name for them (pun intended). This API acronym virtually disables Google. I'd be most grateful for some relevant links. Expanded API acronym is welcome, too.
Last edited by Llama (2013-05-17 15:02:50)

Llama wrote:Editor settings of the Eric Python IDE comprise the API tab. There is a "Compile APIs Automatically" check box, a choice of programming languages (combo box), and an (empty) list of presumably 'compiled' APIs. There are also cryptic boxes like 'Add from Installed APIs' and 'Add from Plugin APIs'. That's all I have to go on. I've got an impression that it is a Python feature, not Eric's.
What is your question? Please use a question mark!

Similar Messages

  • Problems with environments and transactional mode in the Python API

    Hello everyone,
    I have been having problems with the Python API, and I wonder if anyone can comment? I am using DB XML version 2.2.13, with python 2.3 (RedHat linux WS 4.0) and python 2.4 (SuSE 10.1) with identical results. I started with a simple example:
    #!/usr/bin/python
    """XPath example from http://www.w3schools.com/xpath/default.asp
    ported to DbXML
    from bsddb3.db import *
    from dbxml import *
    books = """<?xml version="1.0" encoding="ISO-8859-1"?>
    <bookstore>
      [xml data omitted for brevity]
    </bookstore>"""
    if __name__ == "__main__":
        conFlags = DB_CREATE | DB_NOMMAP
        myMgr = XmlManager()
        myMgr.setDefaultContainerFlags(conFlags)
        myMgr.setDefaultContainerType( XmlContainer.NodeContainer)
        uc = myMgr.createUpdateContext()
        container = myMgr.createContainer("books.dbxml")
        container.putDocument("books.xml", books, uc)So far, so good - this works, and creates a container books.dbxml that I can open and query. Next, I try to instantiate the XmlManager using an environment:
    if __name__ == "__main__":
        envFlags = DB_CREATE | DB_PRIVATE
        conFlags = DB_CREATE | DB_EXCL | DB_NOMMAP
        myEnv = DBEnv()
        myEnv.open("/home/pkeller/dbxml_tests", envFlags, 0)
        myMgr = XmlManager(myEnv, DBXML_ADOPT_DBENV)
        myMgr.setDefaultContainerFlags(conFlags)
        myMgr.setDefaultContainerType( XmlContainer.NodeContainer)
        uc = myMgr.createUpdateContext()
        container = myMgr.createContainer("books.dbxml")
        container.putDocument("books.xml", books, uc)This fails with the following output:
    Traceback (most recent call last):
      File "w3school_xpath_c2.py", line 60, in ?
        container = myMgr.createContainer("books.dbxml")
      File "/scratch_bernoulli/pkeller/dbxml/install/lib/python2.3/site-packages/dbxml.py", line 125, in createContainer
        def createContainer(*args): return dbxml.XmlManagercreateContainer(*args)
    RuntimeError: Error: Invalid argument
    Segmentation faultA bit odd - I can't find anything in the docs about the required arguments to XmlManager.createContainer being different if an environment has been used explicitly.
    Anyway, I persevered (my aim being to use transactional mode in Python). Changing the environment and container flags like so:
        envFlags = DB_CREATE  | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | DB_INIT_TXN | DB_PRIVATE
        conFlags = DB_CREATE  | DB_EXCL | DBXML_TRANSACTIONAL | DB_NOMMAPThis change allowed the script to run, outputting the single classic line:
    Segmentation fault(the C++ API docs at http://www.sleepycat.com/xmldocs/gsg_xml/cxx/transaction.html#initializetransaction are incorrect by the way - there is no flag DB_TRANSACTIONAL).
    In spite of the segfault, the file "books.dbxml" was produced and could be queried by another application. A transaction log file "log.0000000001" was also written (10485760 bytes long).
    Running this last example again with "python -v" showed that the segfault was being produced during the python's cleanup phase:
    # clear __builtin__._
    # clear sys.path
    # clear sys.argv
    # clear sys.ps1
    # clear sys.ps2
    # clear sys.exitfunc
    # clear sys.exc_type
    # clear sys.exc_value
    # clear sys.exc_traceback
    # clear sys.last_type
    # clear sys.last_value
    # clear sys.last_traceback
    # clear sys.path_hooks
    # clear sys.path_importer_cache
    # clear sys.meta_path
    # restore sys.stdin
    # restore sys.stdout
    # restore sys.stderr
    # cleanup __main__
    Segmentation faultCan anyone clarify what is going on? I had been hoping to deploy DB XML as an alternative to something more admin-heavy, but with this behaviour that would be hard to justify. A dirty exit from Python means that no-one will consider trusting their data to this engine (or am I doing something wrong?).
    Regards,
    Peter.

    Peter,
    Your first failure -- invalid argument -- was due to an invalid combination of
    flags to DBEnv.open(). Along with DB_CREATE you need at least DB_INIT_MPOOL.
    As you can see, it worked once you added more flags.
    The second, cleanup problem (segmentation fault) is the result of out of order
    destruction of objects. This is fixed in the next release (later this year), but
    you can work around it by ensuring that your XmlContainer and XmlManager
    objects are deleted/cleaned up before the DBEnv object.
    Python will cleanup in reverse order of creation, unless you perform explicit
    deletions, which is also fine (e.g. del container, del myMgr).
    Explicit deletion is always safe.
    Regards,
    George

  • Bdb xml & python api

    I've been experiencing problems trying to build the python api library against python 2.5 on a PC running Redhat Entrprise Linux 4 using dbxml-2.3.10.
    If I run the following against python 2.3 I get no problems, and files _dbxml.so + dbxml.pyc are correctly created in /usr/lib/python2.3/site-packages. Output being as follows:
    [root@eld102 python]# /usr/bin/python2.3 /data/local/itjw/dbxml-2.3.10/dbxml/src/python/setup.py build
    running build
    running build_py
    running build_ext
    building '_dbxml' extension
    gcc -pthread -fno-strict-aliasing -DNDEBUG -O2 -g -pipe -m32 -march=i386
    -mtune=pentium4 -D_GNU_SOURCE -fPIC -fPIC -I../../include -
    I/usr/local/BerkeleyDB.4.5/include -I/usr/include/python2.3 -c
    dbxml_python_wrap.cpp -o build/temp.linux-i686-2.3/dbxml_python_wrap.o
    c++ -pthread -shared build/temp.linux-i686-2.3/dbxml_python_wrap.o -
    L../../build_unix/.libs -L/usr/local/BerkeleyDB.4.5/lib -
    L/usr/local/dbxml-2.3.10/lib -L/usr/local/dbxml-2.3.10/lib -Wl,-
    R../../build_unix/.libs -Wl,-R/usr/local/BerkeleyDB.4.5/lib -Wl,-
    R/usr/local/dbxml-2.3.10/lib -Wl,-R/usr/local/dbxml-2.3.10/lib -ldbxml-2
    -ldb_cxx-4 -lxqilla -lxerces-c -o build/lib.linux-i686-2.3/_dbxml.so
    Initially when I ran again python 2.5 I got the following:
    [root@eld102 python]# /usr/local/python2.5/bin/python /data/local/itjw/dbxml-2.3.10/dbxml/src/python/setup.py build
    running build
    running build_py
    running build_ext
    building '_dbxml' extension
    gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall -Wstrict-
    prototypes -fPIC -I../../include -I/usr/local/BerkeleyDB.4.5/include -
    I/usr/local/python2.5/include/python2.5 -c dbxml_python_wrap.cpp -o
    build/temp.linux-i686-2.5/dbxml_python_wrap.o
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for
    Ada/C/ObjC but not for C++
    dbxml_python_wrap.cpp: In function `int SWIG_Python_ConvertFunctionPtr
    (PyObject*, void**, swig_type_info*)':
    dbxml_python_wrap.cpp:2058: error: invalid conversion from `const char*'
    to `char*'
    dbxml_python_wrap.cpp: In function `void SWIG_Python_FixMethods
    (PyMethodDef*, swig_const_info*, swig_type_info**, swig_type_info**)':
    dbxml_python_wrap.cpp:36695: error: invalid conversion from `const
    char*' to `char*'
    error: command 'gcc' failed with exit status 1
    However, I have seen
    Python API build problem and have gotten around this error, but now when I rerun the command, it gets nowhere and doesn't give any errors.
    [root@eld102 python]# /usr/local/python2.5/bin/python /data/local/itjw/dbxml-2.3.10/dbxml/src/python/setup.py build
    running build
    running build_py
    running build_ext
    I have tried using the keyword --withBerkeleydb=/usr/local/BerkeleyDB.4.5 but this makes not difference as this is already picked up I believe.
    Where am I going wrong here such that files _dbxml.so + dbxml.pyc are not created for python 2.5?
    I'm not familiar with python or dbxml so a reply in layman's terms would be appreciated.

    Thanks for your help, George. It's easy when you know how.
    Output from both builds is now very similar:
    from Python 2.3:
    [root@eld102 python]# /usr/bin/python2.3 /data/local/itjw/dbxml-2.3.10/dbxml/src/python/setup.py build
    running build
    running build_py
    creating build/lib.linux-i686-2.3
    copying dbxml.py -> build/lib.linux-i686-2.3
    running build_ext
    building '_dbxml' extension
    creating build/temp.linux-i686-2.3
    gcc -pthread -fno-strict-aliasing -DNDEBUG -O2 -g -pipe -m32 -march=i386 -mtune=pentium4 -D_GNU_SOURCE -fPIC -fPIC -I../../include -I/usr/local/BerkeleyDB.4.5/include -I/usr/include/python2.3 -c dbxml_python_wrap.cpp -o build/temp.linux-i686-2.3/dbxml_python_wrap.o
    c++ -pthread -shared build/temp.linux-i686-2.3/dbxml_python_wrap.o -L../../build_unix/.libs -L/usr/local/BerkeleyDB.4.5/lib -L/usr/local/dbxml-2.3.10/lib -L/usr/local/dbxml-2.3.10/lib -Wl,-R../../build_unix/.libs -Wl,-R/usr/local/BerkeleyDB.4.5/lib -Wl,-R/usr/local/dbxml-2.3.10/lib -Wl,-R/usr/local/dbxml-2.3.10/lib -ldbxml-2 -ldb_cxx-4 -lxqilla -lxerces-c -o build/lib.linux-i686-2.3/_dbxml.so
    from Python 2.5:
    [root@eld102 python]# /usr/local/python2.5/bin/python /data/local/itjw/dbxml-2.3.10/dbxml/src/python/setup.py build
    running build
    running build_py
    creating build
    creating build/lib.linux-i686-2.5
    copying dbxml.py -> build/lib.linux-i686-2.5
    running build_ext
    building '_dbxml' extension
    creating build/temp.linux-i686-2.5
    gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -fPIC -I../../include -I/usr/local/BerkeleyDB.4.5/include -I/usr/local/python2.5/include/python2.5 -c dbxml_python_wrap.cpp -o build/temp.linux-i686-2.5/dbxml_python_wrap.o
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    g++ -pthread -shared build/temp.linux-i686-2.5/dbxml_python_wrap.o -L../../build_unix/.libs -L/usr/local/BerkeleyDB.4.5/lib -L/usr/local/dbxml-2.3.10/lib -L/usr/local/dbxml-2.3.10/lib -Wl,-R../../build_unix/.libs -Wl,-R/usr/local/BerkeleyDB.4.5/lib -Wl,-R/usr/local/dbxml-2.3.10/lib -Wl,-R/usr/local/dbxml-2.3.10/lib -ldbxml-2 -ldb_cxx-4 -lxqilla -lxerces-c -o build/lib.linux-i686-2.5/_dbxml.so
    The contents of the build subdirectory of /data/local/itjw/dbxml-2.3.10/dbxml/src/python contains:
    lib.linux-i686-2.3:
    total 2320
    -rwxr-xr-x 1 root root 2322571 Jul 13 09:54 _dbxml.so
    -rw-r--r-- 1 root root 42998 Nov 17 2006 dbxml.py
    lib.linux-i686-2.5:
    total 3536
    -rwxr-xr-x 1 root root 3568227 Jul 13 09:41 _dbxml.so
    -rw-r--r-- 1 root root 42998 Nov 17 2006 dbxml.py
    temp.linux-i686-2.3:
    total 3672
    -rw-r--r-- 1 root root 3755480 Jul 13 09:54 dbxml_python_wrap.o
    temp.linux-i686-2.5:
    total 5680
    -rw-r--r-- 1 root root 5802548 Jul 13 09:41 dbxml_python_wrap.o
    I think the bit about creation of _dbxml.so + dbxml.pyc at 2.3 and not 2.5 was probably a red herring; when I deleted these files and re-ran the 2.3 build they were not recreated in /usr/lib/python2.3.
    However, can you confirm that the build has done what it should, and if so, are files from the build directory copied ( do they need to be copied elsewhere) in order for the python api library to work correctly? Perhaps I have missed a keyword in the build?
    Jonathan

  • Where to find 'com.sap.tc.webdynpro.repository.api' file in EP server

    Hi All,
    I am getting below exception while deploying a custom component in sand-box server.
    Failed to deploy application freescale.com/c_uwl for deployment state listener com.sap.tc.webdynpro.serverimpl.wdc.repository.RepositoryContainerHook.
    [EXCEPTION]
    com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Failed to deploy the file '/usr/sap/RIA/JC30/j2ee/cluster/server0/./temp/webdynpro/public/freescale.com/c_uwl/webdynpro/ComponentInterfaces/com.sap.netweaver.bc.uwl.ui.UWLCustomDetail/UWLCustomDetail.xml' into the database. Reason: Development Object 'sap.com/tckmcbc.uwl.ui~wd_ui' contains already same repository content. Hint: fully qualified name of the repository VMO must be globally unique.
            at com.sap.tc.webdynpro.repository.deploy.RepositoryUpdateManager.checkVMOsExistInOtherDC(RepositoryUpdateManager.java:504)
            at com.sap.tc.webdynpro.repository.deploy.RepositoryUpdateManager.deployRepositoryContent(RepositoryUpdateManager.java:98)
            at com.sap.tc.webdynpro.serverimpl.wdc.repository.RepositoryContainerHook.onDeploy(RepositoryContainerHook.java:232)
    It seems it is using checkVMOsExistInOtherDC method from RepositoryUpdateManager.java file.
    I want to remove this method from that java file.
    Can any one please tell me at which location in server i can find that RepositoryUpdateManager.java file.
    Or from where i can find 'com.sap.tc.webdynpro.repository.api'  file, so that i can trace that jave file.
    Regards,
    Sambaran Chakraborty

    Jiandong,
    Add the required jar webdynprobasesvrc.jar file from follwoing path and check if the imports are added correctly.
    C:\Program Files\SAP\IDE\CE\eclipse\plugins\com.sap.tc_.wd_.basesrvc_1.0.0.071030103936\lib
    Chintan

  • How to determine host status in a task via python api

    Hello all,
    using the python api I am having some issues trying to determine the status of a host within a task. For example I have a job, with one task and 10 hosts associated with that task. Eight hosts finish the task, 2 fail. However via the api I can only seem to determine the status of the job and the task. What I want is to be able to generate a report that basically matches what you see via the gui (ie 8 hosts ok, 2 hosts failed). The data structure OnStageTaskData gives me a status and a list of hosts, but not a status for each host. (Note I am not using any of the depricated functions/data structures). Currently my code looks like (minus the api init, etc)...
    # list all the jobs for last week
    joblist = api.GetJobs()
    for job in joblist:
    # if the job occured in the last week
    if job.c_time > reportstarttime:
    print "\nJob name %s Time %s " %(job.name, time.ctime(job.c_time))
    try:
    jobdetails = api.GetOnStageJob(job.id)
    except COsApiJobNotFoundException:
    print "Can't find job %s details" %job.name
    continue
    for tasks in jobdetails.job_data.tasks:
    for hostid in tasks.task_data.target:
    try:
    hostinfo = api.GetHostGroup(hostid)
    except OsApiHostNotFoundException:
    print "Can't find host details %s" %tasks.task_data.name
    print "Hostname %s Status %s" %(hostinfo.name, tasks.status)
    which generates output like...
    Job name chg233146-sol9 Time Sun Jan 13 10:31:42 2008
    Hostname tacnomsrv02 Status Failed
    Hostname tacpthsrv01 Status Failed
    anyone have another way to doing this or suggestions? Or is this kind of info not available via the api? Thank you.

    Hi ConnectSolutions,
    As you correctly pointed out, there is some bug in our code
    that keeps the room active and you dont receive any events or
    notification if you are entering as guest and waiting and the host
    arrives. Also, since you havent entered yet i.e your role is still
    5 i.e. UserRoles.LOBBY , you can't access any of the UserManager's
    collections and will get a length of 0 always. We will be fixing
    this with priority .
    But you can get around the problem as of now, by having a
    small shared model of yours ( any collectionNode or sharedModel
    will do) where you create a node and publish a message on it from
    the Owner's side whenever the owner/host enters to notify everyone
    that he has entered. Just remember to set the accessmodel of
    NodeConfiguration of node on which you are publishing to LOBBY ie.
    role = 5 , and make the publishModel = 100 so that only owners can
    publish on this node. In this way , any users waiting will be
    receiving this message and will know the host has arrived. If you
    can't get this sharedModel concept to work, let me know. I will try
    to run on my side.
    And as of our side regarding actual fix, we will fix this use
    case and put in the next drop of SDK and also update in forum about
    it.
    On the host side though, he is always notified when he enters
    if there are pending users knocking to enter. See the KnockingQueue
    example in case you want to explore that.
    Thanks
    Hironmay Basu

  • Reappearing outdated api files

    We use Autonomy Interwoven FileSite 8.5 and are having an issue with an outdated api file reappearing. Whenever we update/repair Acrobat, an old (dated 11/30/2007) api file shows up in C:\Program Files (x86)\adobe\Acrobat 9.0\Acrobat\plug_ins. The correct (06/15/2012) api file remains in the plug_ins\Interwoven folder but the outdated imanacrobat.api file also shows up. Having this outdated api file is causing us issues with saving PDF documents. If we manually delete the 2007 api file everything works well until the next Acrobat update, then it comes back again.
    I have opened a support case with Autonomy and they are convinced that their software is not the problem. I have tested a repair when the computer is disconnected from the domain environment by disabling the network adapter so that I could make sure it wasn't getting the file from our network somewhere. The imanacrobat.api file keeps coming back. Using Procmon while repairing and watching the file recreate produced no pointers as to where this file is coming from. Searching the local registry does not find anything related to the api except for the pointer to the good one.       Anyone have any ideas as to why api files keep reappearing or how I can get rid of the problem?

    The Interwoven API file is not part of Adobe Acrobat.  So the Acrobat installer should not have an effect upon a third party plug-in which uses a different installer.  It sounds like you or your IT department may have packaged the Interwoven API file with Acrobat.  Now normally when Acrobat repairs or updates it follows the Windows Installer Technology specification and references the MST file as part of the process and uses that to keep all of the customizations that you originally made to the MST and the MSI file as a package.  The question here is "How did you modify the Acrobat installer?"  Was it with the Adobe Customization Wizard?  Was it with a third party installer utility??

  • Using Azure Python API to create VM without exception, but the VM is not launched....

    This is the scenarios:
    I have created a custom Linux VM image and I have successfully launch a VM using the Python API on region US-WESt.  
    My goal is to create a custom Linux VM on a VNET.
    This is what I have done:
    1. Knowing that using Python API to create Virtual Network (VNET) is not supported yet, I manually created a VNET using Console.
    2. Using Python API to create hosted service (cloud service) on the same location as the VNET I created.
    3. Using Python API to launch the VM on the VNET.
    4. without any exception nor error, the VM is just not created...
    The Python APIs I used:
    #create a VM
    name = 'myCloudN'
    location = 'West US'
    sms.create_hosted_service(service_name=name,
        label=name,
        location=location)
    image_name = 'cloudN-Azure-20150205-os-2015-02-05'
    media_link = 'https://xxxxxxxxxxxxxxxxxxxxxx.windows.net/vhds/cloudN-Azure-20150205-os-2015-02-05.vhd'
    linux_config = LinuxConfigurationSet('cloudN-1', 'ubuntu', 'ubuntu1!', True)
    os_hd = OSVirtualHardDisk(image_name, media_link)
    vnet_name = 'test1'
    sms.create_virtual_machine_deployment(
        service_name=name,
        deployment_name=name,
        deployment_slot='production',
        label=name,
        role_name=name,
        system_config=linux_config,
        os_virtual_hard_disk=os_hd,
        virtual_network_name=vnet_name,
        role_size='Small')
    <azure.servicemanagement.AsynchronousOperationResult object at 0x90669ec>   <=====I got this
    try:
       props = sms.get_deployment_by_name(name, name)
       print vars(props)
    except Exception as pe:
       print "Error on get_deployment: %s" %str(pe)
    Error on get_deployment: Not found (Not Found)  <======== Cannot find my VM
    Did I miss anything or the Python API is not ready for this yet....
    Please help.
    Big thanks in advance...

    I did create the cloud service.   In my original post, the first thing I do is to create the cloud service.
    The API I used to create cloud service was "create_hosted_service".
    #create a VM
    name = 'myCloudN'
    location = 'West US'
    sms.create_hosted_service(service_name=name,
        label=name,
        location=location)
    Please help.

  • Where can I download the ReadOutLoud.api file for Adobe X, 10.1.10, running on 64bit Windows 7?

    Where can I download the ReadOutLoud.api file for Adobe X, 10.1.10, running on 64bit Windows 7?
    Any help will be very much appreciated.
    thank you, and best regards...   ...jkashn

    Hi Bernd,
    Thanks very much for your reply.  Based upon your assertion that "ReadOutLoud.api" is part of the "typical" Adobe Reader installation, I searched for and found how to activate and use it (from the "View" menu).  It couldn't be more simple - most operations like this are "really very easy" the *second and subsequent times* that you perform them. :-)))
    thanks again, and best regards...   ...jkashn
    PS:  I'm glad that you got the 10 points for your perfectly "Correct Answer"!!!

  • Python API: Version and dbapi ?

    Hi,
    I am a Python afficionado. I was very pleased to know that there is a Python API for MaxDB. After having installed the latest MaxDB for Windows, I saw the sdb package containing the modules sql, dbm and loader. I just copied the sdb directory into my Python 2.5 site-packages. It didn't work because the .pyd where made for Python 2.3.
    So installed Python 2.3.5 and it worked fine.
    - Do you support higher Python version ?
    - I see in the docs that there is also a dbapi module. Where can I find it ?
    Thank you,
    Regards,
    Francis Girard

    I din't know why it was marked "answered" when no replies existed

  • Does Azure Python API create_virtual_machine_deployment allow passing user data/script to a Linux VM?

    Does Azure Python API create_virtual_machine_deployment allow passing user data/script to a Linux VM?
    AWS EC2 python API allows me to pass user proprietary data or script when I try to create a EC2 linux based VM, e.g.
       ec2_conn.run_instances(image_id, key_name=vpc_name, instance_type=vpc_size, subnet_id=subnet_id, security_group_ids=[sec_group.id], private_ip_address=from_private_ip, disable_api_termination=True, user_data=my_user_data)
    For Azure python API create_virtual_machine_deployment, does it have the similar thing?
    I noticed that there is --custom-data in the CLI, but is there such an option using Python API? 
    If yes, could someone provide an example code?
    Thanks in advance...

    Hi,
    In Azure, this feature is called
    custom data. Currently, you can inject custom data into an Azure VM by using the
    Windows Azure command-line tools (--custom-data). 
    I assume that it is not supported in Python API. You can use “custom_data=xxx”
    within “create_virtual_machine_deployment” to check if it works.
    If it is not yet available, please submit your requirement in Azure feedback below:
    http://feedback.azure.com/forums/34192--general-feedback
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Ineed on add-on for php api files

    to view and open php api files

    I'm not familiar with API as a type of file. Can you give an example URL?

  • Sample API files uploaded

    Hi All,
    While going through the user guide i came across the API and the location where i could find the samples for those
    For the following files, go to
    Oracle_Home/ip/samples/TPSelfService
    This directory is not present at all in my installation.
    1. Could any one tell me as to why is this dir not present in my installation
    2. Can some one point me to a location where i can donwload these samples.
    3. Some pdf which is created to deal with B2B-API issues and details
    Thanks
    Ravi

    Hi Ravi,
    You may be interested in below link -
    http://www.b2bgurus.com/2007/09/creating-b2b-metadata-using-self.html
    Below thread provide more deatails on these API's -
    Using the B2B Self-service Java APIs
    Regards,
    Anuj

  • API Files for Visual Basic Program?

     

    is there any software I need to install to get the EB32.BAS file?I am able to see API under server information.thanks ALL

  • MBP Retina 8GB vs 16GB for data analysis - R, Python large files?

    I increasingly find myself working with graph data (Neo4J, Gephi) and document databases (Mongo, CouchDB) as well as using R for clustering and analysis and Python to munge fairly large files of 1GB or larger.
    8GB would probably serve me well and coming from a machine with 4GB will feel like plenty, but I suspect that I am the kind of use who would get his money worth out of 16GB.
    In addition to this I will be running a Windows VM for Office Excel/VBA work and to stats packages for university very frequently.
    Is getting the upgraded model worth it? Or will I not notice any difference.
    Thanks,
    David

    I would say you will want the 16GB for a few reasons. You are working with memory-intensive datasets, and also you are running a virtual machine. VMs tend to use up a lot of RAM since it means you are running two complete OSs at the same time, on top of any other apps you might be running.
    The third reason is that the Retina models cannot be upgraded after purchase. You would not want to have an 8GB forever if you discovered that your future work needed a bit more memory. You've already demonstrated doing some tasks that can be RAM-intensive, just max out the RAM and never worry about it again.
    If you still have doubts, learn how to analyze RAM usage and particularly swap file behavior in Activity Monitor. If your Mac is already paging to swap files frequently, you already need the RAM. If you do work for several days and swap paging activity is low, you don't need the RAM.

  • Help! Distiller 9 API File Naming Question

    Not well versed in options for distiller first off.
    I would like to create a module that when a user is saving a pdf file :
    1). user is prompted to scan the file name from a barcode
    2). a suffix is added to the barcode scan, "-" + either including the users %username% + date/timestamp or from a serial increment file
    basically <barcodescan + "- " + suffix>.pdf for filenaming convention
    is this possible?
    Any help on this is greatly appreciated.
    Thanks
    skrohn

    Trying to automate pdf file creation?  using distiller joboption with vbs..or am I going down the wrong route/
    I was thinking along the lines of::  But... not sure how to incorporate that with the distiller for savng a file.  What we are doing is scanning in documents to create a pdf.  We want the file naming to be :  user scans with a scangun a order# from a barcode and then the a suffix to make it unique to the system is added to the file name.  the pdf file that was just created is then saved with that file name
    Sub GetFileName()
    Dim GetWorkOrder As String
    Dim SaveFile As String
    dtmThisDay = Day(Date)
    dtmThisMonth = Month(Date)
    dtmThisYear = Year(Date)
    dtmThisTime =(Time)
    strSuffixName = "-" & dtmThisYear & dtmThisMonth & dtmThisDay & dtmThisTime
    GetWorkOrder = InputBox("Scan Work Order")
    SaveFile = GetWorkOrder & StrSuffixName
    End Sub

Maybe you are looking for

  • How to download structure fields using  (Not querying DD03L)

    Hi Gurus, The function module 'DB_GET_TABLE_FIELDS' is used to download table fields but if I want to download structure fields, how do I do it ? I don't want to query DD03L because it then gives fields in alphabetical order but the actual structure

  • Loading of 'SEOCOMPODF' import package is interrupted with R3load error.

    Dear SAP Colleagues, Please advice with the following, we try to install SAP ERP  6.0 support release 3 on windows 2008 server with oracle database 10g 10.2.0.4.0, The error is occurred in Import ABAP phase as follow, ERROR 2010-10-14 12:10:00.729 CJ

  • Why is my iMac running so slowly?

    EtreCheck version: 1.9.12 (48) Report generated June 17, 2014 at 7:50:21 AM EDT Hardware Information:           iMac (27-inch, Late 2013) (Verified)           iMac - model: iMac14,2           1 3.5 GHz Intel Core i7 CPU: 4 cores           16 GB RAM V

  • No disc recognition

    I have a Pavillion a1710n.  When I place a disc from my Sony Handycam into the DVD drive, J, my computer does not recognize that there is a disc in the tray.  My video camera does not have any ports for me to hook up an USB cable to download the vide

  • Project professional 2013 can not connect to Project Online behind proxy

    Hi, I had problem when running application ms project professional 2013 connect to project online behind proxy, but we can access url PWA site in browser. but when we connect to pass through internet  we can connect project professional 2013 to proje