Difference between open loop and closed loop mode when finding the index on a stepper motor axis.

I have a test system which uses a PXI-7352 motion controller with a MID-7602 stepper motor drive to position a 200 step/revolution stepper motor with an attached 1000 line encoder.  The MID-7602 is configured for 64 microsteps per step, giving 12,800 microsteps and 4000 encoder counts per revolution.  The system is controlled using LabView 7.1 and NI-Motion 6.13.  To home the motor, I've defined a sequence in MAX which first finds the reverse limit switch and then moves forward to the encoder index pulse.
When finding its reference in open loop mode, the system its reference at the same microstep each time.  When findings its reference in closed loop mode, the system finds its reference somewhere within about a 20 microstep wide range.
I hope somebody out there with more experience with this controller can describe the difference between finding the encoder index in open loop mode and finding the encoder index in closed loop mode. 
Thanks,
Mark Moss

Hello Mark,
I suspect that the behavior you are experiencing has today
with the resolution difference between your encoder and your
microstepping.  Let me illustrate with an
example:
Example Setup
Stepper
Motor
NI
Motion Controller
10
steps per encoder pulse (Every 10 steps the controller gets an encoder
pulse, therefore positions 0-9 all appear to be 0 to the controller)
The
system has a maximum of 3 pull in moves set
Open Loop Scenario
The
system is commanded to go to position 9.
The
controller sends out 9 pulses.
The
motor moves to position 9.
Closed Loop Scenario
The
system is commanded to go to position 9.
The
controller sends out 9 pulses.
The
motor moves to position 9.
The
controller checks its position and sees that it is still at position 0
because it has not received an encoder pulse.
Because
the controller thinks it is still at position 0, it sends another 9 pulses
as its first pull in move.
The
motor moves to position 18.
The
controller checks its position and sees that it is at position 10 because
it has only received one encoder pulse.
Because
the controller thinks it is still at position 10, it sends1 reverse pulse
as its second pull in move.
The
motor moves to position 17.
The
controller checks its position and sees that it is at position 10 because
it has only received one encoder pulse.
Because
the controller thinks it is still at position 10, it sends and additional
single reverse pulse as its third pull in move.
The
motor moves to its final position of 16.
I believe something similar is happening with your
application as it looks for the index pulse. 
Because the controller does not compensate for what it perceives as
position error in open loop mode, the motor always goes to the same commanded
position.  In closed loop mode, the motor
is bouncing around inside the single index encoder pulse trying to find a
certain position.
There are several recommendations I can make towards
correcting this behavior.  These
recommendations are in order of effectiveness:
Setup
your system so that there are more encoder counts per revolution than
steps per revolution.
Turn
off pull-in moves by setting them to 0 in MAX.
Use an
open loop configuration.
Play
around with the pull in window in MAX.
Regards,
Luke H

Similar Messages

  • Difference between open quantity and delivery quantity

    Hi all,
    Please anybody explain me the difference between open quantity and delivery quantity My question is both are same in the value or different I need to report these 2 fields based on date.
    open quantity is available in table vbbe
    delivery quantity available in table lips.
    for open quantity i have one select statement.
    for delivery quantity i have another select statement.
    i want to club these 2 fields into a single report.
    please clarify my doubt.
    regards
    chandu

    Hi,
    Open quantity is nothing but the quantity which we have at the DAY starts.
    Delivered quantity means which was delivered on that DAY.
    So Opening qty - Delivered qty = Closing qty for a DAY.
    Again this Closing qty will be the Opening qty for next DAY.
    I think based on POSNR u need to club both the quantity in single report.
    select vbeln posnr matnr omeng mbdat into itab from VBBE where....
    select vbeln posnr matnr lfimg mbdat into itab1 from lips where....
    loop at itab.
    read table itab1 with key....
    move:....to itab2.
    endloop.
    Thanks.
    I hope this will help you.
    Message was edited by: Deepak333 k
    Message was edited by: Deepak333 k

  • Difference between DB time OLAP time frontend time when execute the query

    hi all,
    can you any one explain the difference between DB time, OLAP time, frontend time when execute the query

    Each BEx quey form a SQL query which is called query execution plan.
    So,
    DB Time is the time taken to read the record from data base by the SQL statement.
    OLAP time is the time taken to process the calculations/formula involved.
    Frontend Time is the time taken to present the output. For ex: while displaying the data in Bex analyser if your query involves a hierarchy, then the presentation time will be more. It also includes the time user taken to enter the query selection input.

  • Mismatching between opening balance and closing balance in F.08

    Dear Experts,
    i have one issue regardig the dismatching between the closing balance of 2010 and the opening balances of 2011.
    Actually we have the retention account for customer which showing a correct figure in 2010 but unfortnatly it showing another figure in the opening of 2011.
    Note: i have done the carryforward succefully but i am getting the same result as well.
    please would you advice me ?
    Regards,
    Bilal

    Hi,
    Run report RFINDEX_NACC (in SE38, older versions of SAP have RFINDEX as the program) for the GL account.  Please read the documentation of the program; as the program is resource intensive; limit your selection to this specific account.  Select the "more detailed" radio button.  should help you identify the reason.
    Also do check that the 2010 period is not open and being posted into.
    Cheers..
    Edited by: Neeraj Kukreti on Jul 6, 2011 2:29 PM

  • Difference between emergency state and single user mode ?

    Hi,
    I want to know the difference between emergency state which we normally use in suspect mode database and single user mode.
    Navakanth

    Emergency/suspect mode is tells you the state of the database and database is not available for user action but where as single user mode tells the user action preference. Database is active and available for the user action.
    You can refer 
    http://msdn.microsoft.com/en-us/library/bb522682.aspx
    EMERGENCY
    The database is marked READ_ONLY, logging is disabled, and access is limited to members of the sysadmin fixed server role. EMERGENCY is primarily used for troubleshooting purposes. For example, a database marked as suspect due to a corrupted log file can be
    set to the EMERGENCY state. This could enable the system administrator read-only access to the database. Only members of the sysadmin fixed server role can set a database to the EMERGENCY state.
    SINGLE_USER
    Specifies that only one user at a time can access the database. If SINGLE_USER is specified and there are other users connected to the database the ALTER DATABASE statement will be blocked until all users disconnect from the specified database. To override
    this behavior, see the WITH <termination> clause.
    The database remains in SINGLE_USER mode even if the user that set the option logs off. At that point, a different user, but only one, can connect to the database.
    Before you set the database to SINGLE_USER, verify the AUTO_UPDATE_STATISTICS_ASYNC option is set to OFF. When set to ON, the background thread used to update statistics takes a connection against the database, and you will be unable to access the database
    in single-user mode. To view the status of this option, query the is_auto_update_stats_async_on column in the sys.databases catalog view.
    If the option is set to ON, perform the following tasks:
    Set AUTO_UPDATE_STATISTICS_ASYNC to OFF.
    Check for active asynchronous statistics jobs by querying the sys.dm_exec_background_job_queue dynamic management view.
    If there are active jobs, either allow the jobs to complete or manually terminate them by using KILL STATS JOB.
    --Prashanth

  • What is the difference between Open-Script and Oracle functional testing

    Hi All,
    Please help me in spotting out the difference between the Openscript and Oracle Functional Testing for Web Application.
    Does Oracle Functional Testing for Web Application have any special features when compared with Open-Script.
    Please help me out.
    Thanks in Advance,
    Nishanth Soundararajan.

    Nishanth
    OFT is the old version of OpenScript, which will no longer be part of ATS as per the next major realize 9.20.
    I would recommend to to spend any time looking at it.
    Regards
    Alex

  • What is difference between Startup upgrade and startup migration.

    what is difference between Startup upgrade and startup migration.

    I am having the metalink note.
    STARTUP MIGRATE was introduced in 9.2 as a mechanism to be sure that most everything that needs to be done to run an upgrade script or a patch script is done automatically. In the past, customers were expected to adjust certain initialization parameters prior to beginning an upgrade or applying a a patch,
    but most of this is now done automatically by STARTUP MIGRATE.
    When a customer starts a database in MIGRATE mode, the following ALTER SYSTEM
    commands will be set automatically:
    But i am not sure what exactly the meaning by startup upgrade.
    and exactly the startup upgrade and startup migrate

  • Difference between Disk:0 and Sup-bootflash

    Hello,
    Can anyone tell me the difference between Disk:0 and Sup-bootflash. Where does the IOS boot from by default Disk:0 or Sup-bootflash. Can you configure 6509 Switch to boot the IOS from whaterver flash you want Disk:0 or Sup-bootflash?
    Any Suggestions.
    Thanks,

    Disclaimer
    The  Author of this posting offers the information contained within this  posting without consideration and with the reader's understanding that  there's no implied or expressed suitability or fitness for any purpose.  Information provided is for informational purposes only and should not  be construed as rendering professional advice of any kind. Usage of this  posting's information is solely at reader's own risk.
    Liability Disclaimer
    In  no event shall Author be liable for any damages whatsoever (including,  without limitation, damages for loss of use, data or profit) arising out  of the use or inability to use the posting's information even if Author  has been advised of the possibility of such damage.
    Posting
    Disk:0 (and Disk:1, on the sups that support it) is an accessible CF slot.  Sup-bootflash is an internal flash for the SP.  With native mode, it's not used.  Bootflash is an internal flash used by the RP.
    Default booting, usually uses the internal flash, on many of the later native IOSs, this can be overridden by IOS boot statements.
    Older sup720s internal bootflash isn't large enough for the later IOS images so you're forced to boot from the external flash.  (I work with quite a few of these.  Often we keep an older IOS image on the internal bootflash so if someone pulls the CF, we have something to bring a sup720 on, although it may not recognize later line cards.)
    Later sup720s have had their internal flash upgraded (to use an CF).  The larger internal flash has been renamed to bootflash.  BTW, there's also an upgrade kit to replace the older internal RP bootflash with a CF.
    Besides the boot commands in an IOS image, the config-register also controls booting.  If a sup720 just boots into ROMMOM, you can select different media/IOS images to boot from.  Also BTW, there's different versions of the ROMMOM, which have some impact on how a sup720 can boot its IOS.

  • Difference between 4.7 and ECC6

    Hi
    Could any one explain me the difference between 4.7 and ECC6
    Regards
    Uday

    Hi,
    Please visit the following links:
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional prespective)
    http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    After opening the site, please select the Source Release Version which is 4.6 b Then Select the Target Release Version which is "mySAP ERP 2005" or ECC 6.0
    Select the Solution Area like Financials, Human Capital Management, Sales....
    Select module like MM, PP, SD, QM.....
    Click on Search
    Then it displays the Release Version and the Delta Functionality. which can be downloaded to a word document if required.
    and also check the release notes of ECC 6.0 in service.sap.com.
    Hope this helps you.
    Regards,
    Rakesh

  • Difference between sy-uline and uline

    Hi All,
    Any one of you please update me what is the difference between sy-uline and uline. Also when i give sy-uline in top-of-page event it gives error.
    Thanks
    sankar

    with ULINE u can specify the position from where the ULINE should start
    corresponds to WRITE AT 3(10) SY-ULINE.
    ULINE AT 3(10) NO-GAP will supress the spacess after the under line
    ex :  1
    uline at 4(10).
    write : / 'My Program'.
    uline at 4(10).
    ex : 2
    write : 'My Program' , sy-uline.

  • Re: what is difference between sap locking and database locking

    hi,
        what is difference between sap locking and database locking. Iam locked the table mara by using lock objects.
    But iam unable to unlock the mara table. I give u the coding. Please check it.
    REPORT zlock .
    CALL FUNCTION 'ENQUEUE_EZTEST3'
    EXPORTING
       MODE_MARA            = 'S'
       MANDT                = SY-MANDT
       MATNR                = 'SOU-1'.
    call transaction 'MM02'.
    CALL FUNCTION 'DEQUEUE_EZTEST3'
         EXPORTING
              mode_mara = 'E'
              mandt     = sy-mandt
              matnr     = 'SOU-1'.
    IF sy-subrc = 0.
      WRITE: 'IT IS unlocked'.
    ENDIF.

    Hi Paluri
    Here is the difference between SAP locks and Database locks, i will try to find the solution to your code.
    Regards
    Ashish
    Database Locks: The database system automatically sets database locks when it receives change statements (INSERT, UPDATE, MODIFY, DELETE) from a program. Database locks are physical locks on the database entries affected by these statements. You can only set a lock for an existing database entry, since the lock mechanism uses a lock flag in the entry. These flags are automatically deleted in each database commit. This means that database locks can never be set for longer than a single database LUW; in other words, a single dialog step in an R/3 application program.
    Physical locks in the database system are therefore insufficient for the requirements of an R/3 transaction. Locks in the R/3 System must remain set for the duration of a whole SAP LUW, that is, over several dialog steps. They must also be capable of being handled by different work processes and even different application servers. Consequently, each lock must apply on all servers in that R/3 System.
    SAP Locks:
    To complement the SAP LUW concept, in which bundled database changes are made in a single database LUW, the R/3 System also contains a lock mechanism, fully independent of database locks, that allows you to set a lock that spans several dialog steps. These locks are known as SAP locks.
    The SAP lock concept is based on lock objects. Lock objects allow you to set an SAP lock for an entire application object. An application object consists of one or more entries in a database table, or entries from more than one database table that are linked using foreign key relationships.
    Before you can set an SAP lock in an ABAP program, you must first create a lock object in the ABAP Dictionary.

  • Difference between a Search and a Retrieve web service?

    Anyone has any idea what's the difference between a Search and Retrieve web-services generated by the 7.1 WS Generator? It seems like you can use both to retrieve any kind of result definition and search by any field.
    I don't mind really, just curious if I'm missing something.
    Alon

    Googling led me to this:
    Authentication:
    Portal: You log-in to the site. Provides you with information based on who you are.
    e.g. mail.yahoo.com
    Website: No log-in.
    e.g. www.yahoo.com
    Personalization:     
    Portal: Limited, focused content. Eliminates the need to visit many different sites.
    e.g. you type in your user name and password and see your yahoo mail only.
    Website: Extensive, unfocused content written to accommodate anonymous users needs.
    Customization :
    Portal: You will select and organize the materials you want to access. Organized with the materials you want to access.
    Website: Searchable, but not customizable. All content is there for every visitor.
    e.g. you can navigate to yahoo mail, yahoo shopping, geo cities, yahoo group. If you wish to use any of these services you will either have to authenticate yourself and see things personalized to you or you can simply visit sections that are for everyone like yahoo news were if you are not signed in then the default sign in is guest.

  • Difference between line type and internal table?

    Hi..
    I wanted to know, what is the difference between Line type and Internal Table?

    Hi,
        Before the 4.7 release in SAP if we want to define an internal table we have to write the defination using the occurs statement and we need to define all the fields using INCLUDE STRUCTURE or indidually all the fields ine by one.
    From 4.7 release of R/3 SAP introduced the Line type concept and it's part of the ABAP OOPS concept. for internal table defination we don't need to use the occur statements. Instead INCLUDE structure  we need to create a Line type for that structure in Se11 and then we can define the internal table like :
    DATA : ITAB TYPE TABLE OF <LINE_TYPE>.
    Only thing is this table will be  a table without header. So for internal table processing we need to define a work area structure of type line of line type  . EX:
    DATA: WA_ITAB TYPE LINE OF <LINE_TYPE>.
    Hope this helps.
    Thanks,
    Greetson

  • Any basic differences between AT&T and Verizon, & other questions

    I am thinking of buying an iPad mini with retina display (32gb). This would most likely be the only iPad I would ever own. I would use it mostly at the house with wifi, but would like to have one with cellular for when we travel in the US and Canada, and for when the electricity goes out. We currently live in a location where both AT&T and Verizon are viable options, but sometime in the next year we hope to move. The state is rural and mountainous, so as we drive around, my spouse's iPhone (with an AT&T plan) often loses service, but so does my Jitterbug phone, which is not tied to any one carrier (as far as I know). A phone can get a signal in one locaton, but then lose it a few feet down the road. So, there is no way I can choose between AT&T or Verizon based on coverage because both are options right now and there is no way to predict which one(s), if any, might provide service to wherever we end up moving to. Therefore, I'm wondering if there are any basic differences between AT&T and Verizon (or any other of the possible carriers) in what they offer or how they work or what they charge and so on that can help me decide which one to choose since it is my understanding that once I pick one of them for an iPad, that decision can never be changed without purchasing a new device. (e.g., I had read somewhere that Verizon does not allow for voice and data at the same time, but since an iPad is not a phone, is that even an issue?) Also, will the iPad work if there is only regular 4G or 3G service? And will a cellular iPad work without signing up for a data plan since I expect to start with only wifi and then add a data plan later? Thank you.

    Alfred DeRose, Thank you for answering the second and third questions. Judging by what you wrote, I am assuming there are no differences between what AT&T and Verizon offer that affects iPads, other than looking at coverage area and the cost of "pay as you go" plans. And, as noted, coverage is not something I can base a decision on at this time. So, I either flip a coin to choose between AT&T and Verizon and hope the result is the right one after we move to wherever we end up finding a place to live, or I continue to wait for another year or more until we actually find a new house before I buy an iPad (or maybe a Kindle Fire HDX 8.9"to save money, but I think I've probably settled on an iPad mini retina 7.9" despite its smaller screen). That does not move me along the decision-making process at all, but it is what it is.
    Greatcall has not answered my question about what carrier(s) the Jitterbug Plus phone uses. If, in fact, it uses just the Verizon network, I will try to pay better attention to any possible differences in service areas between that phone and my spouse's iPhone as we travel around the state to see if that helps at all. But coverage is so location specific here that I don't think it will.

  • Difference between inner join and outer join

    1.Difference between inner join and outer join
    2.wht is the difference in using hide and get crusor value in interactive.
    3. Using join is better or views in writting program . Which is better.

    Table 1                      Table 2
    A
    B
    C
    D
    D
    E
    F
    G
    H
    a1
    b1
    c1
    1
    1
    e1
    f1
    g1
    h1
    a2
    b2
    c2
    1
    3
    e2
    f2
    g2
    h2
    a3
    b3
    c3
    2
    4
    e3
    f3
    g3
    h3
    a4
    b4
    c4
    3
    |--|||--|
        Inner Join
        |--||||||||--|
        | A  | B  | C  | D  | D  | E  | F  | G  | H  |
        |--||||||||--|
        | a1 | b1 | c1 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a2 | b2 | c2 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a4 | b4 | c4 | 3  | 3  | e2 | f2 | g2 | h2 |
        |--||||||||--|
    Example
    Output a list of all flights from Frankfurt to New York between September 10th and 20th, 2001 that are not sold out:
    DATA: DATE   LIKE SFLIGHT-FLDATE,
          CARRID LIKE SFLIGHT-CARRID,
          CONNID LIKE SFLIGHT-CONNID.
    SELECT FCARRID FCONNID F~FLDATE
        INTO (CARRID, CONNID, DATE)
        FROM SFLIGHT AS F INNER JOIN SPFLI AS P
               ON FCARRID = PCARRID AND
                  FCONNID = PCONNID
        WHERE P~CITYFROM = 'FRANKFURT'
          AND P~CITYTO   = 'NEW YORK'
          AND F~FLDATE BETWEEN '20010910' AND '20010920'
          AND FSEATSOCC < FSEATSMAX.
      WRITE: / DATE, CARRID, CONNID.
    ENDSELECT.
    If there are columns with the same name in both tables, you must distinguish between them by prefixing the field descriptor with the table name or a table alias.
    Note
    In order to determine the result of a SELECT command where the FROM clause contains a join, the database system first creates a temporary table containing the lines that meet the ON condition. The WHERE condition is then applied to the temporary table. It does not matter in an inner join whether the condition is in the ON or WHEREclause. The following example returns the same solution as the previous one.
    Example
    Output of a list of all flights from Frankfurt to New York between September 10th and 20th, 2001 that are not sold out:
    DATA: DATE   LIKE SFLIGHT-FLDATE,
          CARRID LIKE SFLIGHT-CARRID,
          CONNID LIKE SFLIGHT-CONNID.
    SELECT FCARRID FCONNID F~FLDATE
        INTO (CARRID, CONNID, DATE)
        FROM SFLIGHT AS F INNER JOIN SPFLI AS P
               ON FCARRID = PCARRID
        WHERE FCONNID = PCONNID
          AND P~CITYFROM = 'FRANKFURT'
          AND P~CITYTO   = 'NEW YORK'
          AND F~FLDATE BETWEEN '20010910' AND '20010920'
          AND FSEATSOCC < FSEATSMAX.
      WRITE: / DATE, CARRID, CONNID.
    ENDSELECT.
    Note
    Since not all of the database systems supported by SAP use the standard syntax for ON conditions, the syntax has been restricted. It only allows those joins that produce the same results on all of the supported database systems:
    Only a table or view may appear to the right of the JOIN operator, not another join expression.
    Only AND is possible in the ON condition as a logical operator.
    Each comparison in the ON condition must contain a field from the right-hand table.
    If an outer join occurs in the FROM clause, all the ON conditions must contain at least one "real" JOIN condition (a condition that contains a field from tabref1 amd a field from tabref2.
    Note
    In some cases, '*' may be specified in the SELECT clause, and an internal table or work area is entered into the INTO clause (instead of a list of fields). If so, the fields are written to the target area from left to right in the order in which the tables appear in the FROM clause, according to the structure of each table work area. There can then be gaps between table work areas if you use an Alignment Request. For this reason, you should define the target work area with reference to the types of the database tables, not simply by counting the total number of fields. For an example, see below:
    Variant 3
    ... FROM tabref1 LEFT [OUTER] JOIN tabref2 ON cond
    Effect
    Selects the data from the transparent database tables and/or views specified in tabref1 and tabref2. tabref1 und tabref2 both have either the same form as in variant 1 or are themselves join expressions. The keyword OUTER can be omitted. The database tables or views specified in tabref1 and tabref2 must be recognized by the ABAP-Dictionary.
    In order to determine the result of a SELECT command where the FROM clause contains a left outer join, the database system creates a temporary table containing the lines that meet the ON condition. The remaining fields from the left-hand table (tabref1) are then added to this table, and their corresponding fields from the right-hand table are filled with ZERO values. The system then applies the WHERE condition to the table.
    Left outer join between table 1 and table 2 where column D in both tables set the join condition:
    Table 1                      Table 2
    A
    B
    C
    D
    D
    E
    F
    G
    H
    a1
    b1
    c1
    1
    1
    e1
    f1
    g1
    h1
    a2
    b2
    c2
    1
    3
    e2
    f2
    g2
    h2
    a3
    b3
    c3
    2
    4
    e3
    f3
    g3
    h3
    a4
    b4
    c4
    3
    |--|||--|
        Left Outer Join
        |--||||||||--|
        | A  | B  | C  | D  | D  | E  | F  | G  | H  |
        |--||||||||--|
        | a1 | b1 | c1 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a2 | b2 | c2 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a3 | b3 | c3 | 2  |NULL|NULL|NULL|NULL|NULL|
        | a4 | b4 | c4 | 3  | 3  | e2 | f2 | g2 | h2 |
        |--||||||||--|
    Regards
    Prabhu

Maybe you are looking for

  • Error in Java script "undefined is not an object"

    Dear All, Im using InDesign CS4. Im trying to remove the anchor frames containing some text. but i got the error msg "undefined is not an object". Here is my part code. app.findGrepPreferences.findWhat = "AQ\\d+"; myFoundItems=app.findGrep(); var myL

  • JS CS3 Page Item Dimensions

    Hi there I'd like to change the width & height of a rectangle by certain increment. This can be easily done by manipulating geometricBounds. However when the rotationAngle is other than zero everything goes off the rails. I tried experimenting with h

  • SICF and WWW_HTML_FROM_LISTOBJECT

      WWW_HTML_FROM_LISTOBJECT is not populating HTML table correctly, However, it is not displaying data in HTML from ECC system which has been upgrade with Unicode. Is there some else one needs to do with FM   WWW_HTML_FROM_LISTOBJECT to see the data n

  • Is the BI Content release correct?

    Do you think we installed the correct BI Content release? Here is what we have: SAP EHP 1 for SAP NetWeaver 7.0 SAP_ABA 701 0005 SAPKA70105 Cross-Application Component SAP_BASIS 701 0005 SAPKB70105 SAP Basis Component PI_BASIS 701 0005 SAPK-70105INPI

  • Access web service

    Hi All, I'm trying to access a web service over a simple eclipse-plugin. The web service is the "helloservice" example of jwsdp 1.3 . When I compile and run the example as java-project in eclipse, it works! But when I try to make a plugin, I get the