How to find correct package import directive

Hello,
I would like to use the methods byteToHex02sString and hexStringToByteArray in the ToolkitUtility but now I have a really basic problem:
How can I find the correct package name for import directrive to make the class available. The documentation says dgs.tlkt.ToolkitUtility;
Regards, Rainer

Hello,
I think the classpath is found correctly, otherwise other import-files wouldn't be found as well. I checked the JRE lib folder and even unpacked all jar files, ther was no hint for my class ToolkitUtility.
Below the jar-files in my environment. Is it possible that I need to install some add ons or JRE 1.5?
Anyboddy out there who is able to resolve this class/package names.
Regards, Rainer
javaws\javaws-l10n.jar
javaws\javaws.jar
lib\applet\WMPNS.jar
lib\ext\dnsns.jar
lib\ext\ldapsec.jar
lib\ext\sunjce_provider.jar
lib\im\indicim.jar
lib\im\thaiim.jar
lib\jce.jar
lib\jsse.jar
lib\plugin.jar
lib\rt.jar
lib\security
lib\security\US_export_policy.jar
lib\security\local_policy.jar
lib\sunrsasign.jar

Similar Messages

  • How to find Correct IDoc Status in SAP

    Hi All,
    I need some help on IDoc scenario, I have custom program to create Idoc and as well it will send IDoc to XI. I want to know idoc staus in the program to update custom table whether idoc sent successfully or not but idoc giving status as 03 (Data passed to port OK) irrespective of idoc send or not, actually idoc not sent to xi when I check SM58 showing error.
    Please advice me how to find correct idoc status inside program itself.
    **-----Create IDoc
      CALL FUNCTION 'IDOC_OUTBOUND_WRITE_TO_DB'
        TABLES
          int_edidd      = i_edidd
        CHANGING
          int_edidc      = wa_int_edidc
        EXCEPTIONS
          idoc_not_saved = 1
          OTHERS         = 2.
      COMMIT WORK.
      i_edidc = wa_int_edidc.
      APPEND i_edidc.
      REFRESH i_edidd.
    **-----Send Idoc
      CLEAR i_edidd.
    **-------Send Idoc to XI
      CALL FUNCTION 'EDI_OUTPUT_NEW'
        EXPORTING
          onl_option = 'B'
          error_flag = ' '
        TABLES
          i_edidc    = i_edidc
          i_edidd    = i_edidd.
      COMMIT WORK.
      READ TABLE i_edidc INDEX 1.
    **-----Update Dispatch order status based on Idoc status.
      IF sy-subrc =  0 AND i_edidc-status ='03'.
        znxi01_update c_03 i_edidc-docnum.
        gw_success_record = gw_success_record + 1.
      ELSE.               " Error in Data Transfer
        znxi01_update c_02 i_edidc-docnum.
        gw_fail_record = gw_fail_record + 1.
      ENDIF.

    Hi Anil,
    for setting IDOC Status you can send back a IDOC of type <i>ALEAUD01</i>.
    The function IDOC_INPUT_ALEAUD takes automatically this IDOC and writes the status to the origin IDOC.
    Regards Mario

  • How to find out who imported last support packs

    Hello
    I wander who imported last support packs on the system ILS (SAPKB70014 and SAPKA70014). How to find that out. The transport directory is common for many systems

    One possibility is to check the SLOG*. They can be found in TRANSDIR/log. There will be an SLOGYYWW.SID, where YY is the year (example 09) and WW is the week number (example week 10 of the year). Check the date and time, when the package was imported and then look it up in the SLOG. You will get lines like these:
    START imp all              SID        20090204132535              USER     myhost 20090204132535
    And USER is the one you are looking for...
    Best regards, Michael

  • How to find where an import item will come from for auto execute query?

    I am trying to get a standalone stackLayout region to automatically execute the query on a VO when I run a test.
    I found this thread, Re: Table creation and Data Population and tried adding the suggested code into my <companyname>.oracle.apps.fnd.framework.toolbox.server.<companyname>WorklistAMImpl. java, without the "if" clause wrapper.
    if(pageContext.getParameter("Submit") != null)
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject vo = (OAViewObject)am.findViewObject("EmployeeVO1");
    OATableBean table = (OATableBean)webBean.findChildRecursive("ResultTable");
    table.queryData(pageContext, false);
    However, when I try to compile, I get errors that the variable webBean, variable pageContext, and class OATableBean are not found in my class <companyname>.oracle.apps.fnd.framework.toolbox.server.<companyname>WorklistAMImpl. I had a couple others missing classes, which I figured out where they were and included them as imports.
    My questions are:
    1. Did I put this code in the right place?
    2. How do I find out where the OATableBean exists (and generically, how do I find where a class exists, for future reference)?
    3. In the case of the referenced note, how should I define the webBean and pageContext variables?
    Thanks.
    - Pam

    I found where the OATableBean was defined, but I'd still like to know in general how to find classes. Is there a utility I can run that would list what's where?
    Also, I figured out for the webBean and pageContext that I needed to import OAwebBean and OApageContext and then define the parameters in stream, so onw I'm successfully compiling; however, I still get "No search conducted" on the test rather than actually seeing the results of the VO. So, I sitll wonder if I have the code in the right place, or am I missing another piece? For instance, since my VO is based on a multi-org view, do I need to do something similar to set_client_info? Even if I did have to do that, I would expect a no data found rather than a no search conducted message.
    The view code is as follows (note, I have commented out the bind variable for now and hard coded which distribution I want to find, so I expect it to get one row returned):
    SELECT ReqDistributionsEO.DISTRIBUTION_ID,
    ReqDistributionsEO.DISTRIBUTION_NUM,
    ReqDistributionsEO.REQ_LINE_QUANTITY,
    ReqDistributionsEO.REQ_LINE_AMOUNT,
    ReqDistributionsEO.EXPENDITURE_TYPE,
    ReqDistributionsEO.EXPENDITURE_ITEM_DATE
    ,prl.line_num
    ,pp.name project_name
    ,pt.task_number
         ,gcc.concatenated_segments
    FROM PO_REQ_DISTRIBUTIONS ReqDistributionsEO
    ,po_requisition_lines prl
         ,pa_projects pp
         ,pa_tasks_v pt
         ,gl_code_combinations_kfv gcc
    where ReqDistributionsEO.REQUISITION_LINE_ID = prl.REQUISITION_LINE_ID
    and prl.requisition_header_id = 14247-- :1
    and pp.project_id = ReqDistributionsEO.project_id
    and pt.task_id = ReqDistributionsEO.task_id
    and gcc.code_combination_id = ReqDistributionsEO.code_combination_id
    Please help.

  • JCA: how to find out that import parameter is structure?

    Hello,
    I'm using JCA to obtain import parameter of some function (com.sapportals.connector.metadata.functions.IParameter). Now, I'd like to switch program flow depend on kind of this import parameter (scalar, structure, table). Especially, I'm interested in finding out that import parameter is structure. In API I was only locate getStructure() method in IParameter. I tried to compare with null value, but it didn't solve my problem.
    Best Regards,
    Josef Motl

    I have come along this post so many times that now that I have solved it myself I will have to reply to it, even after 5 years.
    MappedRecord output = (MappedRecord) ix.execute(ixspec, input);
    //Now we want to read the output.
    //If we deal with a structure, we get an IRecord Object
    IRecord addressStructure = (IRecord) output.get("ADDRESS");
    //Otherwise we would get an IRecordSet Object (Field)
    I hope it will help all those searching as well.
    BR
    Sigi

  • How to find Which package used in Reports

    Hi,
    Is there any option to view all the package which used in all the all eul reports. My problem is One report is refreshing tables using package/function/ procedure ...........i which report is doing that ..........I'm having more than 1500 discoverer report and opening all report one by by is not fessible as each having tabs as well.........

    Hi,
    You should start from the table that is being updated...
    find its referenced objects, you can use :
    select a.owner, name, decode(a.type,'PACKAGE BODY','PACKAGE',a.type),do.status
    from all_dependencies a,
    dba_objects do
    where do.object_name=a.referenced_name
    and do.owner=a.referenced_owner
    and do.object_type=a.referenced_type
    and referenced_name = 'xxxxxxxxx'; -<<<<----- put here your table name
    This will give you the list of objects referencing the table, try to find the package / procedure / function.
    then login to the administrator and try to locate the package in the list of function (you need to go to the register functions screen)
    Tamir

  • How to find which package is corrupted?

    Hi,
    I'm connected to the net throught a broadband connection right for the next few days and I have the following issue: I'm trying to install libreoffice, and for this, I have about 90 Mb of packages to download. Now because the connection is not too stable, and not fast at all, I had a few tries until I got all the stuff downloaded ( 1. here I mean packman downloaded for me; 2.I set aria2 as transfer command to continue the downloads ), but now pacman says that a package is corrupted and can't install.
    The problem is that pacman does not say anything about which package is corrupted, the whole output is:
    Targets (18): graphite-1:1.0.3-1 hsqldb-java-1:1.8.0.10-2 hyphen-2.8.3-1 libidl2-0.8.14-2 libreoffice-common-3.5.1-1 libreoffice-en-US-3.5.1-1 libwpd-0.9.2-2 libwps-0.2.2-2 lpsolve-5.5.2.0-2
    neon-0.29.6-4 orbit2-2.14.19-2 libreoffice-base-3.5.1-1 libreoffice-calc-3.5.1-1 libreoffice-draw-3.5.1-1 libreoffice-gnome-3.5.1-1 libreoffice-impress-3.5.1-1
    libreoffice-math-3.5.1-1 libreoffice-writer-3.5.1-1
    Total Download Size: 0.00 MiB
    Proceed with download? [Y/n]
    (18/18) checking package integrity [##########################################################################] 100%
    error: failed to commit transaction (invalid or corrupted package)
    Errors occurred, no packages were upgraded.
    Is there a way to find which package is corrupted? Because I would not start over the whole download process if it is possible, I'd like to re-download only the corrupted ones.
    I'm using pacman 4.0.2, 32bit.
    Thank you!

    Gcool wrote:pacman --debug will tell you which package it is.
    Thanks for the tip, unfortunately did not helped me, the package, which was corrupted was not listed by the debug info. I started to manually test each package I downloaded and found the bad one that way. I kind of miss the old behavior, when pacman offered you to delete and re-download a package, if it did not passed the CRC verification.
    But thanks anyway!

  • How to find a package for SAPLUP:700

    Hello everyone,
    I am creating new sandbox, and i have Windows server 2003 and sql server 2005.
    I am doing it by system copy (import export)
    While exporting it asks for SAPLUP:700. which SL controller but i am unable to find SL controller as per mentioned requirement can someone help me.

    Hi Dharmendra,
    You need the SL CONTROLLER 700 and probably also SL CONTROLLER 721 packages for SWPM SP06, in addition to the 721 kernel.  You can obtain them from http://service.sap.com/swdc -> Installations and Upgrades -> Browse our Download Catalog -> SAP Technology Components -> SL TOOLSET -> SL TOOLSET 1.0 -> Kernel for installation/SWPM -> SAP KERNEL <version, e.g. 7.21 EXT 64-BIT UC> -> Installation -> Microsoft Windows.  Download both 51048285_5 (SL CONTROLLER 700 for SWPM SP06) and 51048285_6 (SL CONTROLLER 721 for SWPM SP06).  Note that the "Download Object" name (the 5104xxxx) may change, depending on which kernel version you are downloading, but the "Title" will remain the same.
    Regards,
    Matt

  • How to find embedded packages of a package?

    Hi,
    I want to find all the embedded packages in a package. Which table has these details?.

    Hi,
    Check the Table TDEVC and TDEVCT for all the package/dec class related stuff.
    Also check the Table TADIR for the related info.
    reward if useful
    regards,
    Anji

  • How to find upgradable packages in the system?

    After each `pacman -Sy' synchronization, is there a easy way to find out what packages in the system are upgradable?

    Doing a
    pacman -Syu
    will sync up with the repositories and then upgrade all the packages on your computer that need upgrading. It will display all the packages that need upgrading and ask you if you want to upgrade them, so you can exit without upgrading if you change your mind.
    Be sure to check out the pacman wiki and the wiki and forums if your unsure about programs in the future.
    Edit: wow, beat me to the punch

  • Jar -t doesn't work? .. and how to find a package?

    I've got JDK 1.4.1 installed on RedHat 8.0, and jar -t doesn't seem to work at all. Anyone else experienced this? (it just hangs).
    I'm using's Sun's jar - but I get the same result if I try the jar command that follows linux (jar (fastjar) 0.92-gcc)
    Also, when I get the message e.g. "package javax.servlet.http" does not exist - what's a fast way to figgure out which .jar from the XML Summer Pack I need to include?? I could start browsing the docs, but that's tedious work. I want to be able to say; "ah, that means that blabla.jar is missing" and include it .. that shouldn't be too much to ask ..
    So I wanted to create a shell script that recursively scanned through all the jars and found the jar with the named package .. however, my .sh skillz are not that elite.
    Feel free to answer with shell code =)

    I call this script 'findclass'
    #!/usr/bin/perl -w
    $pat = shift;
    foreach $jar (@ARGV) {
      open(JAR, "jar tvf $jar|");
      while(<JAR>) {
        print "$jar: $_" if /$pat/;
      close JAR;
    }Cheers, Neil

  • How to find the package  name  using  request number

    I want to check the   package name  using the request  no   ,
    Plz help me

    Hi
    You can use SE03  for the same. In that
    Object Directory Node --> Change Object Directory Entries of Objects in a Request.
    Dbclick on that and provide chield request and press F8 you will get the object with the package.
    Hope this will Help.
    Regards,
    Hiren Patel

  • How to find correct version of iTunes?

    I have osx 10.5.8. When I try to open iTunes I can't. The library file can't be read; it was created by a newer version of iTunes. Don't know how I got an old version. I can't download the newest -- needs newer OS. Help!

    Launch iTunes, and click on "iTunes" in the menu, and choose "About". Plug your iPhone into iTunes, and when it mounts, click on it and it will tell you what version of iPhone you have.

  • How to   find   a Packaging Instructions procedure

    I mean by what factor, Order type? delivery type?

    Hi
    There is no particular T-code for Packing Instructions
    Packing With Packing Instructions
    Packing with packing instructions enables you to automate the packing process.
    The system uses specific criteria to determine packing proposals, which the shipping clerk/warehouse personnel can use to pack the goods according to customer and shipping requirements and simultaneously reproduce the resulting handling unit in the system with ease.
    Packing with packing instructions is based on the condition technique, which the system uses to determine the appropriate packing instructions.
    In this step, you set packing instruction determination. You also define number ranges and inspection profiles for packing instructions.
    Regards
    Srinivas.

  • How to find (classes,interface,subpackage info) in some package

    Plz tell me if any one know how to find (classes,interface,subpackage) in some package
    e.g. in java.io
    "Above senerio in not concern with java doc
    but tell me if an other way i.e by help of programming
    i could find some package information"
    as we know we find out any "object" classType , methods and fields information with help of "java.lang.reflect" API's
    but how to find a package information as provided by jdk is in current use

    You can locate the .zip or .jar file where the stuff is, and say either
    unzip -l classes.zip
    or
    jar tvf classes.jar.
    So you see the list of the classes in the given package.
    Then you can say
    javap -classpath classes.zip MyPackage.MyClass
    to see the fields and methods of the given class.

Maybe you are looking for