Error using WebServicesAssembler to create webservice for PL/SQL-Example

Hello all,
I tried to create a webservice based upon the pl/sql package emptax (Oracle Example: Boolean). The package just contains:
PACKAGE EMPTAX as
FUNCTION getTax(employeeid number, ismarried boolean) RETURN number ;
END Emptax;
JAVA_HOME, ORACLE_HOME and CLASSPATH are all set according to the manual. Now I start the WebServiceAssembler.jar with:
java      -jar C:\oracle11\product\11.1.0\db_1\oc4j\webservices\lib\WebServicesAssembler.jar
     -config C:\Daten\tmp\webservice_boolean\Boolean\config\config.xml
The config.xml looks like this:
<web-service>
     <destination-path>./EmpTax.ear</destination-path>
     <temporary-directory>./tmp</temporary-directory>
     <context>/webservices</context>
     <stateless-stored-procedure-java-service>
          <uri>/EmpTax</uri>
          <jar-generation>
               <schema>scott/tiger</schema>
               <db-url>jdbc:oracle:thin:@10.10.10.10:1521:prod11</db-url>
               <db-pkg-name>EmpTax</db-pkg-name>
               <prefix>EmpTax</prefix>
          </jar-generation>
          <database-JNDI-name>jdbc/prod11</database-JNDI-name>
     </stateless-stored-procedure-java-service>
</web-service>
The EmpTax.jar is created, containing:
- EmpTax.java
- EmpTaxBase.java
- EmpTaxBase.sqlj
- EmpTaxUser.java
- EmpTaxUser.sqlj
At the end, there appears the error:
     java.lang.Win32Process.create
     java.lang.Runtime.execInternal
     java.lang.Runtime.exec
     oracle.j2ee.ws.tools.WsAssemblerConfig
     => NullPointerException: class EmpTax.EmpTaxUser not found
The EmpTax.ear-File is not generated. I'm really stuck now. Does anybody has a hint?
Thanks in advance
Christoph

Ignore the last one. I did the example here over lunch and it works fine.
http://www.oracle.com/technology/sample_code/tech/java/jsp/samples/boolean/boolean.html
Try the -debug and see what happens.
When I run these tests, I always make sure that my PATH, and CLASSPATH are the absolute minimum. That is:
SET PATH=C:\j2sdk1.4.2_10\bin
SET CLASSPATH=.\
SET OC4J_HOME=C:\OC4J_101202
SET J2EE_HOME=%oracle_home%\j2ee\home
It may just be that the classpath that you see when you run it in debug mode is missing some of the required jars for the jpub/sqlj stuff. Verify that they are all ok.
Eric

Similar Messages

  • Creating webservice for pl/sql API without using BPEL

    Hi All,
    Using BPEL, We have created partner links using DB Adapter for accessing our pl/sql API's.
    Is there any way to create a web service for a pl/sql API having complex datatype parameters like (Record, table of records etc) using DB Adapter or any other tool without using BPEL?
    Thanks,
    Uma.

    We introduced the use of JPublisher to automate the generation of wrappers for PL/SQL procedures that use types such as boolean, record and table. The wizard will invoke JPub and generate artifacts that the partnerlink will use to invoke the wrapper instead of the original API. Boolean is replaced by INT, record is replaced by an object type and table is replaced by a nested table. The wrapper will invoke the original API. JPub also takes care of converting between the different types (i.e. record <-> object).

  • How to create  webservice  for  abap  RFC

    how to create  webservice  for  abap  RFC.......................
    plz any could tel me

    I'll answer my own question...
    In SE80 you create the Function Group and something called a Virtual End Point.  These are the only items that transport forward to you QA and eventually your production system.  Everything else has to be created in SOAMANAGER on the target systems. 
    In Development in SE80, when you create the Virtual End Point, this creates a corresponding entry visible in transaction SICF.  When you are done in SOAMANAGER, it creates three more entries in SICF.  The process of transporting the Virtual End Point does NOT create any entries in SICF in QA.  Don't let this be confusing.  In QA, SOAMANAGER will create all four SICF entries.
    Also, if you try to secure the web services using the S_SERVICE object, you must actually test the web service before you can add it to any roles.  This is because the USOBHASH table is not populated for the web service until you actually run the web service for the first time.

  • How to generate WebServices for PL/SQL Packages

    I have the following issue trying to generate WS for a selected set of operations within a PL/SQL package
    If I use the option -sql PKG_TEST then I am getting all operations within a package.
    I just want to expose a certain number of procedures ( e.g. PROC1 and PROC2 )
    It works only if I specify
    -sql PKG_TEST(PROC1)
    when I use -sql PKG_TEST(PROC1, PROC2) it gives me errors.
    I have Oracle JDeveloper (10.1.3.2) (Build 4066) .
    I used wsa with an plsqlAssemble option
    java -jar wsa.jar -plsqlAssemble
    -appName myApp
    -packageName myPckg
    -sql PKG_TEST(PROC1)
    -dataSource jdbc/ds
    -dbConnection jdbc:oracle:thin:@zzzz:1521:mydb -dbUser user/passw
    -style rpc
    -use literal
    Thanks,
    Michael Hitrik

    Eric,
    Thanks a lot for your help.
    I was able to follow all of your recommendations
    I was able to produce the single ear file for multiple PL/SQL packages .
    Now I have the last step ( I hope :-) - WS-SECURITY
    What is your recomendation for Security - specifically for WebServices for PL/SQL Packages ?
    I would like to do the following:
    CLIENT CODE:
    * Create a XML element with user name, password, &
    * datasource as child elements.
    * Element will look like this:
    * <credetials>
    * <username>scott</username>
    * <password>tiger</password>
    * <datasource>jdbc/OracleCoreDS</datasource>
    * </credentials>
    Document doc = new XMLDocument();
    Element elAdd = doc.createElement( "credentials");
    Element elA = doc.createElement( "username");
    Element elB = doc.createElement("password");
    Element elC = doc.createElement("datasource");
    elA.appendChild(doc.createTextNode("scott"));
    elB.appendChild(doc.createTextNode("tiger"));
    elC.appendChild(doc.createTextNode("jdbc/OracleCoreDS"));;
    elAdd.appendChild(elA);
    elAdd.appendChild(elB);
    elAdd.appendChild(elC);
    doc.appendChild(elAdd);
    Element e = doc.getDocumentElement();
    // Create an intance of the proxy
    EmployeeProxy proxy = new EmployeeProxy();
    // Create a Header objecy
    Vector v = new Vector();
    v.add (e);
    Header hdr = new Header();
    hdr.setHeaderEntries(v);
    // Set the Header
    proxy._setSOAPRequestHeaders(hdr);
    SERVER CODE:
    public void processHeaders(Header header)
    throws java.io.IOException,
    oracle.xml.parser.v2.XSLException
    // Get all the Elements
    Vector entries = header.getHeaderEntries();
    Element e = (Element) entries.firstElement();
    System.out.println("Element received from SOAP header is: " );
    ((XMLElement)e).print(System.out);
    // Get independent nodes and retrieve node values.
    Node userNode;
    userNode = ((XMLNode)e).selectSingleNode("username");
    userName = ((XMLElement)userNode).getText();
    Node passwordNode;
    passwordNode = ((XMLNode)e).selectSingleNode("password");
    password = ((XMLElement)passwordNode).getText();
    Node dsNode;
    dsNode = ((XMLNode)e).selectSingleNode("datasource");
    datasourceName = ((XMLElement)dsNode).getText();
    System.out.println("User name is: " + userName);
    System.out.println("Password is: " + password);
    System.out.println("Datasource is: " + datasourceName);
    How can this be done with the generated code using wsa tool ?
    Any other suggestions ?
    Thanks,
    Michael

  • [svn:osmf:] 13603: Use actual streaming audio file for streaming audio example.

    Revision: 13603
    Revision: 13603
    Author:   [email protected]
    Date:     2010-01-18 17:09:10 -0800 (Mon, 18 Jan 2010)
    Log Message:
    Use actual streaming audio file for streaming audio example.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as

    It seems that you do not understand the problem at hand. I can listen on a m3u list using iTunes, VLC and other players, but I wish to listen on m3u lists as streaming music when I am on sites such as eMusic. For instance, I cannot listen on sample music at eMusic, but must download it first. Thus, it is not possible to listen on streaming music with Firefox. On the other hand, Opera and Safari handle m3u streaming music very well.
    Can you listen streaming music or samples at eMusic using Firefox without downloading m3u-list on your local disk?

  • Error while creating WebService for BAPI

    Hi,
    I am trying to create a webservice for BAPI, i created Virtual interface and Webserice and activated.
    In transaction code WSCONFIG i checked webservice has been released. When i test webservice i am getting following error in browser.
    - <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    - <soap-env:Body>
    - <soap-env:Fault>
      <faultcode>soap-env:Server</faultcode>
      <faultstring xml:lang="en">SOAP processing failure, error id = 112</faultstring>
      </soap-env:Fault>
      </soap-env:Body>
      </soap-env:Envelope>
    Could u please tell me whats wrong on this?
    thanks for ur time.
    Murali.

    Does tht mean i need to add the following code
    Line item number.
    item-itm_number = '000010'.
    itemx-itm_number = 'X'.
    Material
    item-material = p_matnr.
    itemx-material = 'X'.
    Plant
    item-plant    = p_plant.
    itemx-plant   = 'X'.
    Quantity
    item-target_qty = p_menge.
    itemx-target_qty = 'X'.
    APPEND item.
    APPEND itemx.
    For second item.
    Line item number.
    item-itm_number = '000020'.
    itemx-itm_number = 'X'.
    Material
    item-material = '600020001'.
    itemx-material = 'X'.
    Plant
    item-plant    = p_plant.
    itemx-plant   = 'X'.
    Quantity
    item-target_qty = p_menge.
    itemx-target_qty = 'X'.
    APPEND item.
    APPEND itemx.
      Fill schedule lines
    lt_schedules_in-itm_number = '000010'.
    lt_schedules_in-sched_line = '0001'.
    lt_schedules_in-req_qty    = p_menge.
    APPEND lt_schedules_in.
      Fill schedule lines
    lt_schedules_in-itm_number = '000020'.
    lt_schedules_in-sched_line = '0002'.
    lt_schedules_in-req_qty    = p_menge.
    APPEND lt_schedules_in.
      Fill schedule line flags
    lt_schedules_inx-itm_number  = '000010'.
    lt_schedules_inx-sched_line  = '0001'.
    lt_schedules_inx-updateflag  = 'X'.
    lt_schedules_inx-req_qty     = 'X'.
    APPEND lt_schedules_inx.
      Fill schedule line flags
    lt_schedules_inx-itm_number  = '000020'.
    lt_schedules_inx-sched_line  = '0002'.
    lt_schedules_inx-updateflag  = 'X'.
    lt_schedules_inx-req_qty     = 'X'.
    APPEND lt_schedules_inx.
    But i guess it is overwritting my frst material..
    Also i m gettin a error 
    For object rv_beleg, number  range interval doesnot exist
    Pls suggest

  • Error Using OEM to create export files

    Hi
    I get the following error whenever I try to use OEM to create export files (login to OS as oracle user -> http://localhost:1158/em -> login as SYSTEM -> Maintenance -> Export to Export Files (with oracle user as host credentials)
    >>>
    Validation Error
    Examine and correct the following errors, then retry the operation:
    Error - ERROR: NMO not setuid-root (Unix-only)
    >>>
    From what I've read in this forum and in others is that the problem is often related to the owner/group permissions associated with the bin/nmo and bin/nmb files. However I've tried the posted solutions by changing the owner/permissions as suggested, but this does not help. I get the same error regardless if the files are owned by oracle or by root.
    Here is some more info
    >>>
    [root@rhlinux bin]# id oracle
    uid=501(oracle) gid=502(dba) groups=502(dba)
    [root@rhlinux bin]# ls -ld /app/
    drwxr-xr-x 4 root root 4096 Jul 6 13:36 /app/
    [root@rhlinux bin]# ls -ld /app/oracle/
    drwxrwxr-x 5 oracle dba 4096 Jul 10 10:13 /app/oracle/
    [root@rhlinux bin]# ls -ld /app/oracle/product/
    drwxrwx--- 3 oracle dba 4096 Jul 6 16:04 /app/oracle/product/
    [root@rhlinux bin]# ls -ld /app/oracle/product/v10.2.0/
    drwxr-x--- 58 oracle dba 4096 Jul 11 15:31 /app/oracle/product/v10.2.0/
    [root@rhlinux bin]# ls -ld /app/oracle/product/v10.2.0/bin/
    drwxr-xr-x 2 oracle dba 8192 Jul 20 11:19 /app/oracle/product/v10.2.0/bin/
    [root@rhlinux bin]# ll nm?
    -rwxr-x--- 1 root dba 18462 Jul 6 16:16 nmb
    -rwxr-x--- 1 root dba 19624 Jul 6 16:16 nmo
    >>>
    >>>
    [oracle@rhlinux bin]$ uname -a
    Linux rhlinux 2.6.9-34.0.2.EL #1 Fri Jun 30 10:23:19 EDT 2006 i686 i686 i386 GNU/Linux
    >>>
    >>>
    [oracle@rhlinux bin]$ sqlplus system@dware
    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jul 20 16:34:16 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    >>>
    >>>
    [oracle@rhlinux bin]$ emctl status agent
    TZ set to Canada/Saskatchewan
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.1
    OMS Version : 10.1.0.4.0
    Protocol Version : 10.1.0.2.0
    Agent Home : /app/oracle/product/v10.2.0/rhlinux.swlocal_DWARE
    Agent binaries : /app/oracle/product/v10.2.0
    Agent Process ID : 32098
    Parent Process ID : 30792
    Agent URL : http://rhlinux.swlocal:3938/emd/main
    Started at : 2006-07-20 12:00:05
    Started by user : oracle
    Last Reload : 2006-07-20 12:00:05
    Last successful upload : 2006-07-20 16:27:29
    Total Megabytes of XML files uploaded so far : 1.54
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 47.83%
    Agent is Running and Ready
    >>>
    >>>
    [oracle@rhlinux bin]$ emctl status dbconsole
    TZ set to Canada/Saskatchewan
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://rhlinux.swlocal:1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is running.
    Logs are generated in directory /app/oracle/product/v10.2.0/rhlinux.swlocal_DWARE/sysman/log
    >>>
    Any other ideas what might be causing this problem?
    Thanks and take care,
    Shayne

    From what I've read in this forum and in others is
    that the problem is often related to the owner/group
    permissions associated with the bin/nmo and bin/nmb
    files. However I've tried the posted solutions by
    changing the owner/permissions as suggested, but this
    does not help. I get the same error regardless if the
    files are owned by oracle or by root.
    I am not sure which "posted solutions" you had, but this is related to not running root.sh which must be run against the Agent Home.
    1. Stop the Agent (emctl stop agent) while connected to the OS as Oracle user (normally oracle) that installed Grid Control
    2. Connect to the OS as root and run root.sh from Agent ORACLE_HOME (if you do not have root access, your System Admin can do it)
    3. Start the Agent (emctl start agent) while connected to the OS as Oracle user

  • Have you used Drawscript to create code for Edge Animate?

    Drawscript is an Illustrator extension, http://drawscri.pt/
    Code can be generated into many formats: Obj-C iOS, JavaScript Canvas, CreateJS Tiny, ActionScript 3, Processing, JSON, Bezier Points Array, Archor Points Array, C++ OpenFrameworks Simple and C++OpenFrameworks Shape.
    Made note of this program some time ago and finally getting back to it.
    Looking for anyone using Drawscript to create shapes with code to add to Edge Animate.
    Do you have a working example of Drawscript to Edge Animate or tutorial?
    Thanks for any info.
    Cindy J-H

    I have replied to your previous thread.
    Thanks,
    Sanjit

  • Cannot create datasource for MS SQL Server

    Hi,
    I'm trying to create a datasource for MS SQL server and I get this error
    Connection test failed.
    Login failed for user 'gdahan'. The user is not associated with a trusted SQL Server connection.
    com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Lcom.microsoft.sqlserver.jdbc.SQLServerConnection;Ljava.lang.Object;Ljava.lang.String;Lcom.microsoft.sqlserver.jdbc.StreamError;Z)V(Unknown Source)
    com.microsoft.sqlserver.jdbc.TDSTokenHandler.onEOF(Lcom.microsoft.sqlserver.jdbc.TDSReader;)V(Unknown Source)
    com.microsoft.sqlserver.jdbc.TDSParser.parse(Lcom.microsoft.sqlserver.jdbc.TDSReader;Lcom.microsoft.sqlserver.jdbc.TDSTokenHandler;)V(Unknown Source)
    com.microsoft.sqlserver.jdbc.SQLServerConnection.sendLogon
    The database is in "Windows authentication" mode (not "SQL authentication") and I can connect to it through "Toad for MS SQL Server". In this case I don't need to specify any username or password because I'm already logged in as gdahan on my computer. But when I try to create the datasource I need a username and password. Is there any way to specify to the datasource that I want to connect via Authentication windows ?
    I tried with BEA MS SQL server driver and Microsoft SQL Server 2005 JDBC Driver 1.2[                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Guillaume Dahan wrote:
    Hi,
    I'm trying to create a datasource for MS SQL server and I get this error
    Connection test failed.
    Login failed for user 'gdahan'. The user is not associated with a trusted SQL Server connection.
    com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Lcom.microsoft.sqlserver.jdbc.SQLServerConnection;Ljava.lang.Object;Ljava.lang.String;Lcom.microsoft.sqlserver.jdbc.StreamError;Z)V(Unknown Source)
    com.microsoft.sqlserver.jdbc.TDSTokenHandler.onEOF(Lcom.microsoft.sqlserver.jdbc.TDSReader;)V(Unknown Source)
    com.microsoft.sqlserver.jdbc.TDSParser.parse(Lcom.microsoft.sqlserver.jdbc.TDSReader;Lcom.microsoft.sqlserver.jdbc.TDSTokenHandler;)V(Unknown Source)
    com.microsoft.sqlserver.jdbc.SQLServerConnection.sendLogon
    The database is in "Windows authentication" mode (not "SQL authentication") and I can connect to it through "Toad for MS SQL Server". In this case I don't need to specify any username or password because I'm already logged in as gdahan on my computer. But when I try to create the datasource I need a username and password. Is there any way to specify to the datasource that I want to connect via Authentication windows ?
    I tried with BEA MS SQL server driver and Microsoft SQL Server 2005 JDBC Driver 1.2[See the complete documentation for MS's JDBC driver
    for how/whether it can do Windows Authentication.
    This is completely at the driver level, not WebLogic,
    except that (of course) WebLogic would have to be
    running on Windows.
    Joe

  • Error using Excel as a DataSource for Report Builder 3.0 - ODBC connection

    Hi,
    I'm getting this error message below while trying to use excel as a datasource within Report Builder 3.0.  I can see the columns and rows but unable to display/run the report.  Using Excel 32 bit and have the driver and user dsn created under c:/windows/syswow64/odbcad32.
    ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

    Hi Cherise,
    Vishal's link looks good.
    I have commercial experience in migrating Crystal Reports to SSRS. When performing any type of migration it is always wise for the business requirements to be revisited. It is likely that the business requirements may have changed since the Crystal reports
    were initially developed, etc.
    I've done some research for you and the following link looks quiet impressive and offers a cheap trial, in terms of a direct migration. Please tell me how you get on; - 
    http://www.sqlcircuit.com/2013/08/ssrs-how-to-create-report-using-excel.html
    I emphasis again I have commercial experience of lots of migration projects and it would be very unwise to not revisit the business requirements as part of the migration process.
    Kind Regards,
    Kieran.
    Kieran Patrick Wood http://www.innovativebusinessintelligence.com http://uk.linkedin.com/in/kieranpatrickwood http://kieranwood.wordpress.com/

  • Error using "LDF Database Open.vi" for LDF 2.1 file

    Hi there,
    I use the USB-LIN for a simulation for LIN bus. We had the LDF file of version 2.0 before but now we get a new LDF file which is in version 2.1.
    We used 
    LDF Starter Kit for LIN 1.0.1
    to read the LDF file but it seems that the kit doesn't work any more with the LDF version 2.1.
    It there a workaround for the LDF file with version 2.1.
    Thx,
    Wilbur

    Hi,
    The NI USB-LIN was created to work with the version 1.3 network standard. However, version 2.0 and 2.1 are backwards compatible, so the NI USB-LIN will work with these networks as well.
    there is currently not a plan to update it for LIN 2.1.
    Note: The new features introduced in version 2.0 and 2.1 network standards will not be natively supported with the NI USB-LIN.
    LIN Version 1.3, 2.0, and 2.1 Comparison
    Feature
    Supported by NI USB-LIN
     LIN 1.3
     Yes
     LIN 2.0
     Yes* 
     Enhanced checksum
     Yes
     Off the shelf slave node concept
     Yes*
     NCF format
     Yes*
     Diagnostics and slave node configuration
     Yes*
     Byte arrays
     Yes
    LIN 2.1
     Yes*
    New slave node configuration services
     Yes*
    Slave diagnostics class I-III
     Yes*
    Functional addressing
     Yes*
    Resolution table
     Yes*

  • Error while trying to create Contact for Bank in Cash Management

    Hi,
    I have a Bank created in Cash Management. I am trying to create a Contact for the bank but when I click on the Create Contact button, the page appears with the following error on top
    "No field listener is registered to resolve field CUST.CUSTOMER_NUMBER referenced by the flexfield with application short name AR and name RA_PHONES_HZ. Please contact your system administrator. "
    I can enter the desired values in the contact details fields like name , job code etc but then nothing happens when I click on the Apply button.
    I found the following notes on metalink for similar errors but none of them explains how to resolve the issue.
    1087754.1,
    889794.1
    791190.1
    Could someone please help me resolve the issue? I am a newbie to Oracle Apps.
    Thanks
    Susovan

    Please see the solution in (The Descriptive Flexfield With Application Name Receivables (AR) and Name Party Site Information (HZ_PARTY_SITES) Is Not Frozen [ID 743262.1]).
    Thanks,
    Hussein

  • Error using BAPI_PO_CREATE1 to create po with ref to PR

    Hi all,
         I am using FM BAPI_PO_CREATE1 to create a PO wrt PR. but while executing getting an error.
    No instance of object type PurchaseOrder has been created. External reference:
    Purchase order still contains faulty items
    Purchase requisition 10002040, item 00010, does not exist
    Purchase requisition 10002040, item 00010, does not exist.
    Any suggestions to solve this problem.
    Thanks in advance,
    Neela

    Hi ,
    i got the error message that 'Please maintain services sor limits'  message se 029.I'm using bapi (BAPI_PO_CREATE1) and pass preq_no and preq_item in poitem structure.can u help me in this issue?

  • Using iphoto to create portfolios for students

    I want to use my Mac to create digital art portfolios for my students. I have 450+ students and have previously used an HP and made all the folders and renamed the photos and manually dragged and dropped the files. Wouldn't it be easier to name the files and drop into folders using the keywords or what would you suggest. I want to organize the folders by grade. Should I make a file for each grade level and then make folders for each student under the grade. Would I need to create a keyword for each student? Wouldn't that make way too many keywords? Any advice? I'm very new to MACs
    thanks in advance for any help- not sure I can even make my way back to this discussion!

    Jerylh
    Welcome to the Apple Discussions.
    You can check your OS by going to the apple logo top left and choose 'About This Mac'. Unless you upgraded the system, or bought your Mac since Friday, it's likely to be 10.4.
    Do you want to use iPhoto for these portfolios? Then remember you do EVERYTHING in the iPhoto Window.
    Then one way to do it is as follows:
    File -> New Folder: You can create a folder for each grade.
    Finle -> New Album: Make one for each student, drag the album to the grade folder.
    You can also keyword the Albums and make SMart Albums.
    Regards
    TD

  • Creating webservices for CRM transactions

    Hi ,
    I have a requirement wherein certain CRM functionalities have to be done from outside the SAP system and as a result need to expose certain functionalities as web services.
    For e.g. i have a requirement to
    1) view activity details ,
    2) update date and time of activities ,
    3) status of activities ,
    4) create activities etc .
    Kindly let me know how to proceed to achieve the same.
    Regards,
    Madhu.

    Hi,
    If you want to create a web service definition then below are the steps,
    1. Create a RFC enabled function module with your functionality
    2. Then in menu bar go to Utilities->More Utilities->Create Web Service->From the Function module.
    3. This will open a wizard, Just follow the wizard. This will create your web service.
    4. You can see the web service in SE80. Enter the package in which the webservice was created. Then select Enterprise Services and select your web service.
    5. To test the web service, go to transaction SOAMANAGER
    6. In the web interface select Application and Secario communication tab, then select Service Administration
    7. In the web service administration page you can search for your web service and test it.
    You can refer this Wiki,
    http://wiki.sdn.sap.com/wiki/display/CRM/CreatingWebServiceinSAP+CRM
    Also, search whether there are any standard web services available for your requirement. Go to tcode SOAMANAGER, follow the steps i have mentioned and in the web service adminstration page enter your search pattern and search.
    Regards,
    Arun Kumar

Maybe you are looking for

  • Reg: Adding spaces between texts in ALV list header

    Hi All, I was implementing a client requirement for ALV. The list header should contain something of this format. Pgm Id:               ZZZ01 After this list header it is ALV display. I did this using the concatenate statement. ex: Concatenate 'PgmID

  • Javascript in Acrobat X

    There is no such thing as a stupid question, right? So here goes--Does Javascript automatically come with Acrobat or is it something I have to download or buy to use? And if so, what exactly (name, version) do I need to download or buy for use in Acr

  • GMail sent messages do not appear on BB

    I use a Google Apps account and a GMail account - both registered with my local BIS account server. I use Outlook 2010 on my desktop configured via IMAP. On 1st Nov 2010, my BB 9700 stopped receiving copies of items sent either through Outlook or Goo

  • How to Identify an whether an Sales order is created through EDI Idoc

    Hi all, By seeing an Sales Order, How to identify whether the sales order is created through EDI Idoc or by other source. Thanks in advance Regards Chakri

  • Requirement collection

    Hi All, We are going for the implementation project for the first time... and i have to collect the requirements from the client from SD point of view.  Can anybody please send me any documentation or questionaire on how to collect the requirements o