External Jars in Classpath are removed by DC build. Please Help

Hi All,
I have a problem with my classpath. Everytime I try to build a DC some parts of my classpath are emptied. Most notably the external JAR: com.sap.security.api.jar.
It makes it  it impossible to do a DC build and use the components in other DCs.
I already tried to add it as a variable like this:
Name: SAP_SECURITY_LIB_HOME
Path: C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.security/lib/com.sap.security.api.jar
It didn't help either.
This problem makes it impossible for me to work with DCs. What am I doing wrong?
Thanks in advance,
Jeschael

Hi Jeschael,
Instead of adding the "com.sap.security.api.jar" by going to the properties,  add the same as Used DC.
1) Go to DC Meta Data
2) Right Click on the Used DCs
3) Select Add Used Dcs
4) Go to the SAP-JEE compartment under Local Development
5) Select the DC "com.sap.security.api.sda"->Finish.
If you add library in this way your problem will be resolved.
Regards,
Jhansi

Similar Messages

  • After upgradataion ,In testing phase- after search ,in result view we are getting some unwanted data ' +++++" should be added in Name .how to remove it.can you please help.

    Hi Team,
    After upgradataion ,In testing phase- after search ,in result view we are getting some unwanted data ' +++++" should be added in Name .how to remove it.can you please help.
    I want to remove ++++ in that column.

    Hi Kalpana,
    Please provide additional information for community users to relate this issue. Info like versions (old & new), the object which has this problem or component/view name will be useful to get the answers.
    Regards,
    Shobhit

  • I accidentally removed iphoto from dock, please help?

    I accidentally removed iphoto from dock, please help?
    iPhoto isn't in my applications to I can't drag it to dock.  All images and movies are still on Mac (heart did stop as I thought I'd lost everything and nearly cried) but I don't know how to get iPhoto back.  I'm worried about trying different things as don't want to lose anything on Mac.  Noticed that I haven't been using Time Machine and bought a couple of years ago so not sure what operating with.  I have our 2 CDs from when we bought the Mac - 13-inch Macbook Pro (Mac OS X Install DVD) and 13 inch MacBook Pro (Applications Install DVD).  My photos are not backed up so not sure if I need to do this first - can I back up to iCLoud or do I need newer software?
    Any help would be greatly appreciated - need lots of step by step instructions though!

    All images and movies are still on Mac
    Of course they are.  Deleting an app doesn't delete the files that's in it.

  • Pages for iPad removes MS Equations. Please help!

    I have a Macbook and an iPad and am trying to work between the two. I need a frictionless read & write collaboration between the MS Word for Mac and Pages on iPad. This breaks down badly as Pages app, even after the installation of MathType, reports "Equations authored with Microsoft Word have been removed". Could you please help me with it? Need a MS Office for Mac - iPad Word Editor full compatibility! Thanks a lot in advance!

    Minor thing, but...
    Porting all those functions to a new platform would take years and result in a huge program.  And an iPad doesn't have very much memory to squeeze the results into.
    Word for for Mac is already running with Apple api's.  Would have to adjust the user interface but I do not suspect it would be a major major port. 
    The thing is all a MS business case.  MS is trying to win market share via not doing a Word on the iPad.  Tactis like this have been MS strategy since MS became a business.  MS has been much better at business strategy than technology.
    Remember Word run on the 68k machines with 32meg of memory. This was Word 98 which produced the same .doc format as all the other Word implementations until Word .docx came about.
    Of course, this is countered by the fact the Microsoft provides a stripped down Word for Surface RT.  You need the more expensive Surface to run to run Word.
    There are other word like apps to investiage.
    DocsToGo
    • VIEW/EDIT/CREATE Word & Excel files(Office 2007/2008/2010)
    • VIEW PowerPoint, PDF, iWork, Text, .RTF, and more!
    • Send & receive attached supported documents using the built-in Mail app
    • FREE desktop application with your purchase! Compatible on Win & Mac allows you 2-way file sync with a WIFI connection.
    • Open & Edit files within DocsToGo from any 3rd party app that supports the “Open In” feature
    • Supports iTunes File Sharing via USB cable for manually moving files
    https://itunes.apple.com/us/app/documents-to-go-office-suite/id317117961?mt=8
    Office² HD
    "Office² HD, the most intuitive and straightforward office document editor available on the iPad, makes it easy to open, view, create and edit Word (DOC & DOCX), Excel (XLS & XLSX), and PowerPoint (PPT & PPTX) files right from your iPad!"
    https://itunes.apple.com/us/app/office2-hd/id364361728?mt=8
    Quickoffice Pro HD
    Create and edit ALL Microsoft® Office -- document, spreadsheet, and presentation formats, as well as view PDF files, on the go. Our advanced file manager lets you manage local files, access Google Drive or other cloud accounts, and works with your iPad email attachments so you can work anywhere, anytime - online and offline.
    https://itunes.apple.com/us/app/quickoffice-pro-hd-edit-office/id376212724?mt=8

  • I need to pass a query in form of string to DBMS_XMLQUERY.GETXML package...the parameters to the query are date and varchar ..please help me..

    I need to pass a query in form of string to DBMS_XMLQUERY.GETXML package...the parameters to the query are date and varchar ..please help me build the string .Below is the query and the out put. ( the string is building fine except the parameters are with out quotes)
    here is the procedure
    create or replace
    procedure temp(
        P_MTR_ID VARCHAR2,
        P_FROM_DATE    IN DATE ,
        P_THROUGH_DATE IN DATE ) AS
        L_XML CLOB;
        l_query VARCHAR2(2000);
    BEGIN
    l_query:=  'SELECT
        a.s_datetime DATETIME,
        a.downdate Ending_date,
        a.downtime Ending_time,
        TO_CHAR(ROUND(a.downusage,3),''9999999.000'') kWh_Usage,
        TO_CHAR(ROUND(a.downcost,2),''$9,999,999.00'') kWh_cost,
        TO_CHAR(ROUND(B.DOWNUSAGE,3),''9999999.000'') KVARH
      FROM
        (SELECT s_datetime + .000011574 s_datetime,
          TO_CHAR(S_DATETIME ,''mm/dd/yyyy'') DOWNDATE,
          DECODE(TO_CHAR(s_datetime+.000011574 ,''hh24:'
          ||'mi''), ''00:'
          ||'00'',''24:'
          ||'00'', TO_CHAR(s_datetime+.000011574,''hh24:'
          ||'mi'')) downtime,
          s_usage downusage,
          s_cost downcost
        FROM summary_qtrhour
        WHERE s_mtrid = '
        ||P_MTR_ID||
       ' AND s_mtrch   = ''1''
        AND s_datetime BETWEEN TO_DATE('
        ||P_FROM_DATE||
        ',''DD-MON-YY'') AND (TO_DATE('
        ||P_THROUGH_DATE||
        ',''DD-MON-YY'') + 1)
        ) a,
        (SELECT s_datetime + .000011574 s_datetime,
          s_usage downusage
        FROM summary_qtrhour
        WHERE s_mtrid = '
        ||P_MTR_ID||
        ' AND s_mtrch   = ''2''
        AND s_datetime BETWEEN TO_DATE('
        ||P_FROM_DATE||
        ',''DD-MON-YY'') AND (TO_DATE('
        ||P_THROUGH_DATE||
        ','' DD-MON-YY'') + 1)
        ) B
      where a.S_DATETIME = B.S_DATETIME(+)';
    SELECT DBMS_XMLQUERY.GETXML('L_QUERY') INTO L_XML   FROM DUAL;
    INSERT INTO NK VALUES (L_XML);
    DBMS_OUTPUT.PUT_LINE('L_QUERY IS :'||L_QUERY);
    END;
    OUTPUT parameters are in bold (the issue is they are coming without single quotes otherwise th equery is fine
    L_QUERY IS :SELECT
        a.s_datetime DATETIME,
        a.downdate Ending_date,
        a.downtime Ending_time,
        TO_CHAR(ROUND(a.downusage,3),'9999999.000') kWh_Usage,
        TO_CHAR(ROUND(a.downcost,2),'$9,999,999.00') kWh_cost,
        TO_CHAR(ROUND(B.DOWNUSAGE,3),'9999999.000') KVARH
      FROM
        (SELECT s_datetime + .000011574 s_datetime,
          TO_CHAR(S_DATETIME ,'mm/dd/yyyy') DOWNDATE,
          DECODE(TO_CHAR(s_datetime+.000011574 ,'hh24:mi'), '00:00','24:00', TO_CHAR(s_datetime+.000011574,'hh24:mi')) downtime,
          s_usage downusage,
          s_cost downcost
        FROM summary_qtrhour
        WHERE s_mtrid = N3165 AND s_mtrch   = '1'
        AND s_datetime BETWEEN TO_DATE(01-JAN-13,'DD-MON-YY') AND (TO_DATE(31-JAN-13,'DD-MON-YY') + 1)
        ) a,
        (SELECT s_datetime + .000011574 s_datetime,
          s_usage downusage
        FROM summary_qtrhour
        WHERE s_mtrid = N3165 AND s_mtrch   = '2'
        AND s_datetime BETWEEN TO_DATE(01-JAN-13,'DD-MON-YY') AND (TO_DATE(31-JAN-13,' DD-MON-YY') + 1)
        ) B
      where a.S_DATETIME = B.S_DATETIME(+)

    The correct way to handle this is to use bind variables.
    And use DBMS_XMLGEN instead of DBMS_XMLQUERY :
    create or replace procedure temp (
      p_mtr_id       in varchar2
    , p_from_date    in date
    , p_through_date in date
    is
      l_xml   CLOB;
      l_query VARCHAR2(2000);
      l_ctx   dbms_xmlgen.ctxHandle;
    begin
      l_query:=  'SELECT
        a.s_datetime DATETIME,
        a.downdate Ending_date,
        a.downtime Ending_time,
        TO_CHAR(ROUND(a.downusage,3),''9999999.000'') kWh_Usage,
        TO_CHAR(ROUND(a.downcost,2),''$9,999,999.00'') kWh_cost,
        TO_CHAR(ROUND(B.DOWNUSAGE,3),''9999999.000'') KVARH
      FROM
        (SELECT s_datetime + .000011574 s_datetime,
          TO_CHAR(S_DATETIME ,''mm/dd/yyyy'') DOWNDATE,
          DECODE(TO_CHAR(s_datetime+.000011574 ,''hh24:'
          ||'mi''), ''00:'
          ||'00'',''24:'
          ||'00'', TO_CHAR(s_datetime+.000011574,''hh24:'
          ||'mi'')) downtime,
          s_usage downusage,
          s_cost downcost
        FROM summary_qtrhour
        WHERE s_mtrid = :P_MTR_ID
        AND s_mtrch   = ''1''
        AND s_datetime BETWEEN TO_DATE(:P_FROM_DATE,''DD-MON-YY'')
                           AND (TO_DATE(:P_THROUGH_DATE,''DD-MON-YY'') + 1)
        ) a,
        (SELECT s_datetime + .000011574 s_datetime,
          s_usage downusage
        FROM summary_qtrhour
        WHERE s_mtrid = :P_MTR_ID
        AND s_mtrch   = ''2''
        AND s_datetime BETWEEN TO_DATE(:P_FROM_DATE,''DD-MON-YY'')
                           AND (TO_DATE(:P_THROUGH_DATE,'' DD-MON-YY'') + 1)
        ) B
      where a.S_DATETIME = B.S_DATETIME(+)';
      l_ctx := dbms_xmlgen.newContext(l_query);
      dbms_xmlgen.setBindValue(l_ctx, 'P_MTR_ID', p_mtr_id);
      dbms_xmlgen.setBindValue(l_ctx, 'P_FROM_DATE', to_char(p_from_date, 'DD-MON-YY'));
      dbms_xmlgen.setBindValue(l_ctx, 'P_THROUGH_DATE', to_char(p_through_date, 'DD-MON-YY'));
      l_xml := dbms_xmlgen.getXML(l_ctx);
      dbms_xmlgen.closeContext(l_ctx);
      insert into nk values (l_xml);
    end;

  • I need to select and upload a image and corresponding url from an external website using file upload control in MVC4. Please help

    I need to select and upload a image and corresponding  url from an external website using file upload control in MVC4.
    Please help
    Latheesh K Contact No:+91-9747369936

    This forum supports .NET Framework setup.
    As your issue appears to have nothing to do with .NET Framework setup, please ask in the MVC forums for best support.
    http://forums.asp.net/1146.aspx/1?MVC

  • Is my iPhone 4 greyed out wifi and non working bluetooth software or hardware... seems that the forums are full of this issue with no consistent or official answer. is it all coincidence that so many are having the problem? Please help...

    Is my iPhone 4 greyed out wifi and non working bluetooth software or hardware... seems that the forums are full of this issue with no consistent or official answer. is it all coincidence that so many are having the problem? Please help... I have scoured the net trying everything the last few days.

    Please correct your porfile: iPhone 4 do not have IOS 6.1.4.
    The usual troubleshooting steps are, also remember to test it after every step:
    1. Restart
    2. Reset
    3. Restore from backup
    4. Restore as new.
    If no joy, make an Appointment with the Apple genius and have them evaluate

  • Hi, i play on yahoo games and i down low and update today and now i can not play in yahoo games, it say there are some missing plug-ins. please help

    hi, i play on yahoo games and i down low and update today to my mac air and now i can not play in yahoo games, it say there are some missing plug-in. please help. thanks

    Hey Davidl678,
    Thanks for the question. It sounds like you are unable to download the purchases from your purchase history, because iTunes believes the songs to be in your library. It may be necessary to delete the items from your library, then re-download from your purchase history. Before doing so, you may want to take note of which song are available for re-download:
    iTunes 11 for Windows: Delete songs, playlists, or other items
    http://support.apple.com/kb/PH12359
    iTunes 11 for Windows: Download previous purchases from the iTunes Store
    http://support.apple.com/kb/PH12491
    Thanks,
    Matt M.

  • How do i change my iPad language because I went to general and international and changed the language to English, but most things are still in Spanish. Please help me set everything to English

    How do i change my iPad language because I went to general and international and changed the language to English, but most things are still in Spanish. Please help me set everything to English

    To clarify Settings > General > International > Language is set to English?
    and Settings > General > International > Keyboard > includes the English keyboard?
    When you are on your Home screen is Settings called 'Settings' in english?
    what are the things that are still in Spanish?

  • HT4864 Can anyone tell me why my emails arrive in the top righ hand corner of screen but when I tap on the mail icon they often just vanish and are nowhere to be seen - please help!e

    Can anyone tell me why my emails arrive in the top righ hand corner of screen but when I tap on the mail icon they often just vanish and are nowhere to be seen - please help!

    Can anyone tell me why my emails arrive in the top righ hand corner of screen but when I tap on the mail icon they often just vanish and are nowhere to be seen - please help!

  • Why are my photos and videos syncing sideways in my computer? When I email or sync photos they are sideways.  I've called apple and they are no help.  I can fix the pictures, but the videos are a different story.  Please help.  I have an HP comp Win 7

    My pictures and videos are shown correctly in my phone and when I play videos in itunes they are upright, but the location they are saved on my computer they are side ways.  There has got to be a setting somewhere to fix this.  Please help.

    Generally I would not use Facebook for sharing any photos, it compresses the photos substantially, and when you have shadows and dark colours you get visible "bands" where there should be subtle gradients, ie at sunsets and sunrises.
    It sounds like you are using two methods to upload to Facebook:
    1. Sharing from within Aperture, which basically syncs Facebook with your Aperture album, so any changes made at either end gets synced, hence the deletions from Albums, although the original file should still be in your library, just removed rom the album. It is like a playlist in iTunes.
    2. Exporting pics and uploading to Facebook from the browser.
    I am not sure how method 1 gets compressed, but I know that uploading hi-res jpegs to Facebook using method 2 results in poor quality images.
    I wouldn't even bother comparing option 1 or 2, and they will both be poor images once you view them on Facebook, as opposed to viewing uploaded images on proper image sharing / hosting sites.
    Your problem is not with Aperture, it is using Facebook for showing your work.
    If you export pics form Aperture at high res jpegs or TIFFs your images will be fine.
    If you insist to use Facebook as your way to share your work, then your workflow should be this:
    1. Right click images you want to share.
    2. Select Export version.
    3. Export as 100% size and ensure the export settings are set at 100% quality.
    4. Upload this pic into Facebook.
    This will get you the best image size and resolution on Facebook.
    See how you go.

  • Can not remove standby log file, please help

    Hi,
    My v$logfile
    GROUP# STATUS TYPE MEMBER
    IS_RECOVERY_DEST_FILE
    3 ONLINE /u01/app/oracle/oradata/orcl/redo03.log
    NO
    2 ONLINE /u01/app/oracle/oradata/orcl/redo02.log
    NO
    1 ONLINE /u01/app/oracle/oradata/orcl/redo01.log
    NO
    GROUP# STATUS TYPE MEMBER
    IS_RECOVERY_DEST_FILE
    4 STANDBY /u01/app/oracle/oradata/orcl/stdlog01.log
    NO
    5 STANDBY /u01/app/oracle/oradata/orcl/stdlog02.log
    NO
    And when i clear standby log 5
    SQL> alter database clear logfile group 5;
    alter database clear logfile group 5
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [2130], [0], [8], [2], [], [], [],[]
    Please help me :(

    I hoping you can provide more information. v$log should not return information on standby, V$STANDBY_LOG will.
    Are you preforming the query on the primary or standby side?
    What version of Oracle are you using?
    Why do you need to remove the standby log?
    You should only have to clear a logfile if it has become corrupt, what make you think this is the case?
    If you can provide more details if would be very helpful.
    Best Regards
    mseberg
    Since you have posted the exact same question in the GENERAL DATABASE section and refuse to supply version information there you really have provide more details before anybody will help you.
    Remove standby redo log, get ORA-00600
    Edited by: mseberg on Apr 9, 2011 5:35 AM

  • External hard drive with music files crashed...please help!!!!

    Is there a way for me to transfer the music files that are in my i tunes music library on to a new external hard drive or my pc hard drive(c drive).
    Lukily, I transfered all 13,000 songs to my itunes library from my lap top when i got my video ipod, now my external hard drive for my lap top died on me and I was hoping, I may be able to transfer the songs in my itunes library on to a new one. PLEASE PLEASE HELP!!!!!!!!!!!!!!!!!

    Have a look at these links one of them should help you out:
    Moving your iTunes Music Folder
    New PC & moving iTunes library
    iTunes: Copying music between authorised computers with iTunes for Windows
    How to use your iPod to move your music to a new computer

  • External drives won't mount. not even virtual! PLEASE HELP!

    I'm fairly tech savvy but I'm completely lost on this one.
    I have a G4 867 running OS 10.4.8 Sometime after updating and running smoothly for sometime my computer stopped recognizing external hard drives.
    I have two different firewire drives and a USB jump drive and an iPod and none of them are recognized anymore. They do not mount and do not show up in disk utility. However one of my firewire drives is an older system drive and if I have it on before start up I can boot off of it and it works fine. I'm not sure but because of this it really seems like a software issue.
    Does anyone have any suggestions? I really want to update my iPod (it will charge but not mount) as well as use my other drives. As far as I can tell it is not directly related to 10.4.8 because it worked fine in 10.4.8 for weeks and there is nothing else I can think of that I added to the system that might affect it. Please help me..
    Thanks,
    Dustin
    G4   Mac OS X (10.4.8)   1 GB RAM

    I fixed it. I found another post that seemed similar and this worked:
    Yang
    Posts: 862
    From: London, UK
    Registered: Feb 28, 2003
    Re: warning message-DISK IMAGES FAILED TO MOUNT
    Posted: May 15, 2006 1:12 AM in response to: perrppc
    It might have something to do with your kextcache. Try moving the following three items to your desktop and perform a shutdown (not a restart)..
    /System/Library/Extension.kextcache
    /System/Library/Extensions.mkext
    /System/Library/Caches/com.apple.kernalcaches/
    Be careful when wandering into the System folder and folders therein.
    Yang
    12" iBook G3 800MHz Mac OS X (10.4.6)
    the only thing that was a little different is that it wants to only copy those files to the desktop so I had to delete the originals, but it works 100% now.
    here is the full thread: http://discussions.apple.com/thread.jspa?messageID=2095270

  • ALV Report: How to pass the variable in Work area to the FM ? Please help !

    I want to pass the field in the work area which contains the floating point numbers to FM 'FLTP_CHAR_CONVERSION_FROM_SI'. This the correct FM, I have tested.
    If I specify the field with Tab name in FM , It says its not an internal table with header line.
    Please help me, How should can I proceed further and pass the field to FM and get it back in work area.
    And an other issue is I want to sum the particular field in the output.
    Is there a way to do using 'PF-STATUS', if so how ? or what is the alternative for this ?
    Please help me with my issues.
    I'm new to ALV reports.
    Thanks in Advance !

    Hi,
    For your FM issue, i think you are trying to pass the field in the FM as ITAB-field, while you should be taking the data in the work area first and then pass this work area in the FM as WA_ITAB-field.
    I hope this will resolve your prob.
    I mean loop at the table and take the values into work area, update the internal table with changed value. This way by the end of loop you will have all your fields converted.
    Please explain a little more about your second doubt, it is unclear(to me atleast).
    Edited by: DeepakNagar on Jul 28, 2011 6:08 PM

Maybe you are looking for

  • Help on GOA screen control at line item for only material

    Hello All scenario:- 1. create a GOA for a material with has alternative UOM ( CAR - ORDER UNIT ; 1 CAR - 34 ea) . So i created GOA FOR MATERILA LINE ITEM. FOR CAR . 2. I released GOA and distributed GOA for CAR as Oeder Unit UOM. 3. now my buyer  go

  • How to get the initial boot log [solved]

    Hi, I would like to retrieve the initial log from the kernel when it startups , it seems that sometimes something fails but it happens to fast , and I can't see it correctly. Any idea ? Thanks. Last edited by aclemente (2012-12-12 22:17:50)

  • Problem to debug applet, please help...

    i use windows. there are 3 files under "c:\current" directory, they are file 1. mem_appletviewer.bat - with content: "e:\install\java\jdk1.3.1_05\bin\appletviewer" -J-Xdebug -J-Xrunjdwp:transport=dt_shmem,address=conn001122,server=y,suspend=y test.ht

  • SLD import error in XI 3.0 SP 11

    Hi , When I try to import software components versions in IR from SLD I am getting the following error. Error: Unable to read software component versions from System Landscape Directory Details: Unable to read software component versions from system

  • Iweb messed up on google?

    So I have finally suceeded in getting google to post some of my sites on there search engine. I had a very hard time verifying and making a sitemap and webcrawler. Finally got it to work and now look at my ads on google? The decribtions are all nonse