Which dc and sc should add in build time form sld when integration uwl

hi
i have to create a webdynpro to show info from uwl, like follow
IUWLService uwlService=(IUWLService)PortalRuntime.getRuntimeResources().getService(IUWLService.ALIAS_KEY);
but i don't know which dc and sc i should add in build time form sld and use it.
i try add UWLJWF from sld, and ?
i develop with nwce ehp1
thank you

1) tc/je/security/api
2) tc/je/usermanagement/api
from ENGFACADE.
3) tc/kmc/bc.uwl/api
from UWLJWF

Similar Messages

  • HT1386 I am re-building my iTunes library, but still have all the content on my iPod Classic.  I have just downloaded some songs from the store and want to add them to the iPod, BUT when i attempt this the message asks if I want to delete all content on t

    I am rebuilding my iTunes library, but still have all the old content on my iPod Classic.  I have just download some songs from the iStore and want to add them to the iPod, BUT when I try to sync it asks if I want to delete all content from the iPod and add only the material that I have just downloaded from the Store.  I do not want to lose my old content, because it is very extensive.

    You are trying to sync to other than the one iTunes library you can sync to. You can copy music from multiple library/computer if you use the manual method of syncing. That method is described here
    iTunes: Syncing media content to iOS devices and iPod
    If you want to make this computer/iTunes library your syncing computer/library you have to restore the iPod on this computer/library. Restoring erases the iPod.
    You can redownload most iTunes purchases by:
    iTunes: Syncing media content to iOS devices and iPod
    To copy other music to the computer see:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities
    BTW this is the iPod touch forum

  • How to add new row and update existing rows at a time form the upload file

    hi
    How to add new row and update existing rows at a time form the upload file
    example:ztable(existing table)
    bcent                      smh            nsmh         valid date
    0001112465      7.4                       26.06.2007
    0001112466      7.5                       26.06.2007
    000111801                      7.6                       26.06.2007
    1982                      7.8                       26.06.2007
    Flat file structure
    bcent                       nsmh         valid date
    0001112465     7.8     26.06.2007  ( update into above table in nsmh)
    0001112466     7.9     26.06.2007  ( update into above table in nsmh) 
    000111801                     7.6      26.06.2007 ( update into above table in nsmh
    1985                      11              26.06.2007   new row it should insert in table
    thanks,
    Sivagopal R

    Hi,
    First upload the file into an internal table. If you are using a file that is on application server. Use open dataset and close dataset.
    Then :
    Loop at it.
    *insert or modify as per your requirement.
    Endloop.
    Regards,
    Srilatha.

  • I recently had to disable and enable all add-ons on Firefox. Now when I google something, when I hover over the website preview and click 'cached' it won't highlight the key terms anymore. How can I fix this?

    I recently had to disable and enable all add-ons on Firefox. Now when I google something, when I hover over the website preview and click 'cached' it won't highlight the key terms anymore. How can I fix this?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • What is the use and how to use project builder in forms 6i

    Hi,
    I would like to know the usage of project builder in forms 6i, could anybody explain it.........
    thanks
    Bcj

    Here the link from Grant,
    http://download-east.oracle.com/docs/cd/A97336_01/buslog.102/a73073/prjmgmt.htm#997046
    It is realy helpful, but not yet tested, so still making sure that can i create a setup.exe including forms ' fmx' formats , or i need to add the ' fmx ' files manually while running the setup.
    Thanks for your help
    Bcj

  • I have a laptop, we recently changed to ATT MIFI and now it gives me a time out error when I try to open firefox. How do I solve this problem. I really like firefox.

    We just changed to ATT MIFi and every time I try to go into firefox it give me "The connection has timed out". My husband's laptop doesn't give him that error. I had previously been on satellite (hughes.net). I had problems with explorer but that has been fixed. I really like firefox and would like to get it fixed.

    iphoto its pictures are still on your computer under the pictures folder.. it will be one file that says iphoto library. Its a separate file from the actual program.
    If you still have the disks that came with your unit they have the ilife applications on them. put the disk in your drive that says mac os x applications dvd. it will auto mount and there should be a folder called bundled software open this and there should be a .pkg file to reinstall the ilife suite which includes imovie iphoto iweb idvd and garageband .  After installing don't forget before runnig the program run software updates to download the any fixes
    if you r unit has disks labeled disk one and disk 2.. you need to boot off of disk one and choose install bundled software.
    I believe there is a KB article through apple.com/support

  • Which design patten i should use while building API to convert from Word to PDF

    Hi all,
    I would like to build one API which will convert document to PDF which design patten in c#  I should use so that it will be scalable and secure.
    Abhijit Desai

    Hello,
    In .NET no direct support for Word Document to PDF Document Conversion. However, as far as I know, the office seems to provide api/add-in which could do this, you could check this sample:
    Word Document to PDF Conversion.
    Or checking the Document.SaveAs Method:
    https://msdn.microsoft.com/en-US/library/microsoft.office.tools.word.document.saveas(v=VS.80).aspx
    If you are using office 2007, you could use this add-in below:
    2007 Microsoft Office Add-in: Microsoft Save as PDF or XPS
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Which object in hierarchy should add event listener?

    Hello all,
    I'm quite new to the whole OOP thing, and one of the things I keep wondering about is this:
    Which class should listen for events if the choice is between a contained class or a containing class?
    For example:
    An instance of Game holds an instance of Board which holds an array of instances of fields.
    This might be a scenario for a simple board game, I guess (In my case I am working on Reversi).
    A player should click a field to place a piece on it. I could let the Field class listen for the click event,
    but when a player places a piece, other pieces might have to flip, so an object at a higher level should handle this (board / game / maybe another object).
    So in order to make sure this happens, I could let the field object listen for the event and than tell the higher-level-object to do his thing, or I could
    let the higher-level-object add an event listener on the field object, and than both flip the nescesary pieces as well as tell the field to add a piece on itself.
    Could anyone explain which and why either solution (or maybe a third on) is better?
    Thanks for your time!

    qdudu wrote:
    Hello all,
    I'm quite new to the whole OOP thing, and one of the things I keep wondering about is this:
    Which class should listen for events if the choice is between a contained class or a containing class?The class that can respond to the events should implement the Listener.
    For example:
    An instance of Game holds an instance of Board which holds an array of instances of fields.
    This might be a scenario for a simple board game, I guess (In my case I am working on Reversi).
    A player should click a field to place a piece on it. I could let the Field class listen for the click event,
    but when a player places a piece, other pieces might have to flip, so an object at a higher level should handle this (board / game / maybe another object).Sounds like Board would be a good choice, then.
    So in order to make sure this happens, I could let the field object listen for the event and than tell the higher-level-object to do his thing, or I could
    let the higher-level-object add an event listener on the field object, and than both flip the nescesary pieces as well as tell the field to add a piece on itself.Sounds like the field object can't do much except forward the event to the real handler. In that case I'd vote for the higher-level-object as the listener.
    Could anyone explain which and why either solution (or maybe a third on) is better?In this case it could be either one. Try both and see. But based on the little you've posted here I'd vote for the higher-level-object, the Board.
    %

  • Which font and how to add a chinese font into font book that can be used in CS6 programs

    I am wondering which chinese fonts are useable for Mac OS X. Which to buy and how to use. Should I use Font Pack or other programs to get the font to be used. Any advice is useful. Thank you

    Are you planning on using the Chinese language in Illustrator?  Or, do you just want a Chinese looking font, but using the English language?  I use Font Agent Pro for font management.  It allows you to install the font, view it and print a sample.  You can look for Chinese looking fonts online ( i.e., myfonts.com ).  As far as Chinese fonts themselves, I have no clue.

  • Which OS and software should I buy to  merge photos

    I read several discussions regarding to the merge/combine iPhoto library but still not sure the right step to do because my computer and software is quite outdated  I have
    1.  IMAC Processor  3.06 GHz Intel Core 2 Duo OS X Lion 10.7.5 iPhoto 7.1.5 with  20,000+ photos and 2000 + movies. and
    2. Macbook air  1.3 GHz Intel Corei5 OS X 10.9.5  iphoto 9.4.3with 7,000+photos
    i would like to merge the photos from Macbookair to IMAC and update iphoto in IMAC to the version that can play vdo (currently i have to see vdo from i movie). some pictures are the same in both computers,
    please help recommend
    1 do I have to update my operating system first which OS do you recommend
    2. what software should I buy i.e. aperture, iphoto library manager( i saw this name from one of the discussion).
    it would be nice if you could advise a step by step to me as Im not good at computer
    Thank you very much in advance

    If you have Aperture 3.3 or later and iPhoto 9.3 or later you can merge libraries with Aperture.
    Otherwise the only way to merge Libraries is with the paid ($30) version of iPhoto Library Manager
    As a: Aperture is more expensive and b: it's no longer developed, Library Manager is a better buy for your usage.
    I would ask on the iMac forum about the best OS for that machine. Once you know that you'll be able to choose a version of iPhoto appropriate.

  • If I want to paste from clipboard on a Flex web app, which element and class should I use?

    I want to have this function: copy image from somewhere, and paste in an area in  Flex app, can I realize that?
    which element to support? canvas?
    which class can implement this?
    thanks!

    With System.setClipboard("Text this in clipBoard"); this we can use for Text, but I am not sure for setting Images in ClipBoard or no.
    You can refer this
    http://www.flexets.com/show-image-from-clipboard

  • I have just bought an ipad mini and want to add it to my itunes account. when I connect it its asking if i want to restore from my iphone or set up as new. which one do i choose please

    please can some tell me how to add a ipad to an existing itunes account without it wiping my iphone

    Hi shuvs,
    Based on your description, you would most likely want to set it up as new, then simply add your iTunes account info during setup. There are also several other ways to add your existing content to your new iPad. You may find the following page helpful:
    Apple Support: iPad Essentials
    http://www.apple.com/support/ipad/essentials/
    Regards,
    - Brenden

  • Which Code and ZIP code do I need to type in when creating my Account?

    I am creating my account in app store and it asks information as VISA and adress...
    I am typing NONE to VISA and when I am typing code it says "incorrect"! Which code do i need to type?
    I am in russia, does it mean that this code has to be the code of the city where I am?

    You can only purchase from the itunes store of the country of your residence and you must physically be in that country to purchase.
    From the itunes store terms of service:
    "The Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the Service from outside these locations. Apple may use technologies to verify your compliance."
    http://www.apple.com/legal/itunes/us/terms.html#SERVICE

  • Search and Replace vi adds new text behind initial input when search critera is a empty string.

    Can anyone tell me what I am doing wrong?
    Want output to show N/A when nothing is entered in input string and to show the input string if something exists...
    The output of the attached VI is expected it to be Larron, but instead is outputting LarronN/A.
    Is there a way to make this VI do this without having to make a VI with an and/or component added to it?
    Attachments:
    SNR EX.vi ‏7 KB

    Right-Click the S&R function and select 'Regular Expression'
    Search for ^$, replace with 'N/A'

  • HT1937 Dear Sirs, i have a sugestion to the Apple that: in IOS7 you should add a funtion time limited for a call. For example after talking 10 minutes the phone will hang up. Thank you very much.  Truly, Nguyen Tuan Thinh

    Dear Sirs,
    I have used an Iphone 5 for some months ago. But I cannot find the way to hang up automatically. So I suggest to the Apple that in IOS7, you should ad that function. For example, after talking 8 or 10 ... Minutes, the phone can hang up automatically. Because, there are many services provider promost 10 minutes free.
    Thank you very much.
    Tuan Thinh

    We are not Apple, we are users just like you. To communicate with Apple go to http://www.apple.com/feedback/iphone.html

Maybe you are looking for

  • I converted a PDF document to word and it came out all jumbled. How do I correct spelling and typo?

    I converted my pdf document to word and the words come out all jumbled. I thought the document would would come out like the original. what can I do with this document which will take forever to fix?

  • Is it impossible to transfer purchased tv shows onto a blank dvd

    Yea I know you probley can't since its probley protected somehow but when you buy a a tv show can you burn it to a blank dvd&watch it on a regular dvd player

  • Password keeper

    i just tried the utility from msi called password keeper and im not having any luck with it.i put all the info for a site with user name and password along with url.has anyone used this program and had any luck with it?it also seems to lock up alot.

  • Special unicode character

    I have been trying to get a line over the lower case o so it looks like this, ō, or the macron as it is known. I am using InDesign CS2 and want to have this character in Helvetica condensed. I can't get it to work using the Unicode key combination. T

  • Can I get iMessages from two separate phone numbers

    I have two iPhones with two separate phone numbers and two separate Apple ID's.  I would like to get the messages being sent to my computer to come in from both phone numbers.  Is this possible?