Any other alternative to image storage???

Hi
In a simple scenario without xi, EP, ... we are thinking about what are the best way of storing the MIME objects of the catalog (CCMv2) (images and pdf in a characteristic of type /CCM/Hyperlink).
1.- I think the best way it's use the MIME repository, because the images will be in the database and the user can import the images from the system.
2.- Other way could be activate a directory for the http access, but i think, that way require share the directory or use a program with SAP FTP, it would also need to take account that directory in the backup policy.
do you know any other way, any other advantage or inconvenient?
thanks a lot.
Regards
Jorge

Hi Pradnya
The Enterprise Portal SSO mechanism is available in two variants depending on security requirements and the supported external applications:
1. SSO with SAP logon tickets
2. SSO with user ID and password
Whereas SSO with SAP logon tickets is based on a secure ticketing mechanism, SSO with user ID and password forwards the user’s logon data (user ID and password) to the systems that a user wants to call.
For further details on SSO please refer to the following link.
http://help.sap.com/saphelp_nw04/helpdata/en/59/12f73b7803b009e10000000a114084/frameset.htm
Hope that was helpful.
Warm Regards
Priya

Similar Messages

  • I've tried everything but can't access iTunes store from my ipad. Apple ID is fine and logged in to iTunes on pc. Still no luck. Anyone any other alternatives? Thx.

    I've tried everything but can't access iTunes store from my ipad. Apple ID is fine and logged in to iTunes on pc. Still no luck. Anyone any other alternatives? Thx.

    You may think you are connected to the internet, but maybe not. Click on Safari and see if it connects.
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • Any other alternative for console??

    Just wanted to ask if there is any other alternative instead of using console in this program.....
    Console c = System.console();
            if (c == null) {
                System.err.println("No console.");
                System.exit(1);
            String enter = c.readLine("Enter your username: ");
            char [] oldPassword = c.readPassword("Enter your old password: ");
    ......................can i use any other function that is available and has almost the same as console...?

    Why? What is wrong with upgrading to 1.6 (which the code is written for and which you were told here: http://forum.java.sun.com/thread.jspa?threadID=5226598)? But, the "Console" stuff added to Java 1.6 come form an earlier third party library (if I remember right). I don't remember which one, but you should be able to Google Java Console API and find it rather it easily.

  • Are there any other alternatives to Adobe software? I don't want to buy your products anymore because I don't like Creative Cloud.

    I've purchased many versions of legitimate packaged and registerable Adobe software in the past. But I'm afraid that I've come to the end of the road with Adobe because it no longer sells boxed software amd jas fprced a;; pf ots isers tp [ircjase Creatove Cpid/
    Do any other users feel the same way?
    Would you like to express your displeasure with this policy?
    If so, type your comments here.
    Also, if others can mention alternatives to Adobe's software, it'd be greatly appreciated, as I'm looking for them.
    Thanks.

    I have had nothing but issues with creative cloud.  The programs will not run properly, Its been two months and neither Adobe or I can figure out what is going on.  About the only option I have left is to format my hard drive and try on a fresh Windows install.  Talk about a waste of money.

  • StreamTokenizer or any other alternative?

    I am looking for a way to read a file that contains words and decimals separated by ;
    The file looks something like this:
    String ; Decimal
    String ; Decimal
    String ; Decimal
    I think that StreamTokenizer could be a way to do it, but can't find any info on it.
    Any ideas on where to find the info or other alternative to play around with?
    Thanks!!!

    I thought StringTokenizers were hard, but that's not the case. I think it would be best to use a StringTokenizer in this case, so here's how I would do it...import java.util.*;
    class Token
        public Token ()
            String str = new String ("String ; Decimal");
            // A regualr string with things we want to "filter" out.
            StringTokenizer st = new StringTokenizer (str, "; ");
            // The delimeters are ';' and ' ' (a space). So when
            // the string is printed, you get just the words, nothing
            // else. This can easily be adapted and re-arranged, so play around
            // with it and try different things.
            while (st.hasMoreTokens ())
                System.out.println (st.nextToken ());
            // The part above has to iterate over the sentence and collect tokens
            // to print. While it does have more to print, it prints each one.
        public static void main (String [] args)
            new Token ();
    }And try this link: http://java.sun.com/j2se/1.4/docs/api/index.html it has info about the different classes in Java, the StringTokenizer is in java.util.StringTokenizer; or java.util in short.
    Check it out!

  • Is there any other alternative instead of using of WAIT UP TO X SECONDS?

    Hello
    I am developing a inteface function module that gets iits input data from another system (HR system), in that I am using WAIT UP TO 5 SECONDS statement, but my lead is not OK for using it, pls. let me know can I achieve the same by using any other way? Bcz my lead said, it depends on the environement DEV / ACC / PRD, hence lead is not OK for that
    Pls. let me know alternatives
    Thank you

    Please note the language of this site is professional English. Therefore please spell words out in full - because not bcz. Not everyone here's first language is English and abbreviations like this, besides being unprofessional, make your question harder to understand for them.
    On to your question.
    Why not ask your lead for an explanation and a solution? I.e. ask your lead for some leadership - it's his/her job!
    Why are you needing to wait? What are you waiting for?
    What I do is something like.
    DO 20 TIMES. "or thirty or some configurable number of times
      check for a condition being met - perhaps a lock being released.
      if condition is met.
         set a flag
         exit loop.
      endif.
      wait 1 second
    enddo.
    if flag not set
      issue error condition - resource not available or suchlike.
    endif.
    In this way, it doesn't matter what your environment is; as soon as the resource is available you're away. I agree with your lead that an arbitary wait is a bad thing. Even if you adjust the length for dev/q/prod, it can lead to difficulties - e.g. if your program ends up being called in a loop, that 5 seconds over a thousand iterations is a long delay.

  • Converting a image file (JPG or BMP or any other) to an Image object

    Hello, does anyone have an idea of how I could convert a image file (JPG, BMP, GIF or any other) or even a Corel Draw (.CDR) file to a java Image object?
    Thanks in advance
    Wilson

    Demo:
    import java.awt.image.*;
    import java.io.*;
    import java.net.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class ImageResized {
        public static void main(String[] args) throws IOException {
            URL url = new URL("http://today.java.net/jag/bio/JagHeadshot.jpg");
            BufferedImage image = ImageIO.read(url);
            Icon icon = new ImageIcon(image);
            JLabel label = new JLabel(icon);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(label);
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • Progress monitor!Any other alternative?.

    hello sir,
    i need an dialog window when scanning is going on and the window automatically closed when my scan completed.
    I try to implement threadstopped () method etc. But, its not give the solution.If any other methods avilable.

    Why? What is wrong with upgrading to 1.6 (which the code is written for and which you were told here: http://forum.java.sun.com/thread.jspa?threadID=5226598)? But, the "Console" stuff added to Java 1.6 come form an earlier third party library (if I remember right). I don't remember which one, but you should be able to Google Java Console API and find it rather it easily.

  • Any other alternative to SSO Cookies?

    Hi All,
    I am searching for option to SSO cookies. Domain restricts the cookies as SSO cookies are resident cookies, considering the security factor.
    To implement SSO , excluding User ID and Password, is there any other solution to go for SSO?
    Thanks in advance.
    _Pradnya

    Hi Pradnya
    The Enterprise Portal SSO mechanism is available in two variants depending on security requirements and the supported external applications:
    1. SSO with SAP logon tickets
    2. SSO with user ID and password
    Whereas SSO with SAP logon tickets is based on a secure ticketing mechanism, SSO with user ID and password forwards the user’s logon data (user ID and password) to the systems that a user wants to call.
    For further details on SSO please refer to the following link.
    http://help.sap.com/saphelp_nw04/helpdata/en/59/12f73b7803b009e10000000a114084/frameset.htm
    Hope that was helpful.
    Warm Regards
    Priya

  • Click track - any other alternatives than logic?

    Hi.
    I and others that i record with (in particular drummers) want more timing features witha click for example 4/8 or more tones etc. I find that logics click doesnt have this feature and is limited in some areas. Can anyone suggest any other click tracks that can replace logics own?
    Any advice?
    Thanks, Ben

    You can get Logic's metronome to trigger midi gear too. So if the sound isn't right you could use an old (or a new!) drum machine, sound module etc.
    I'm not sure but I suspect there is way of playing with the metronome in the environment too. perhaps you can trigger an exs sample or two that way.
    All these methods mean you can use the standard key commands to switch off the click of course.
    I'm not sure about any plugin is available. I can't really imagine what it would do that you can't already do with a bit of tweaking in Logic. A plugin would still need an audio track to "live in".
    What sort of timing features are you after? Logic's will do bar + beat + division. If you need some sort of swing to the click I suspect you'll need to look at sample loops or your to own drum programming.
    I can't say I've ever had issues with the click in logic.
    Just to go off topic a bit regarding drumming and clicks. As a drum teacher I used to teach "playing to a click". From experience and study I found the automatic assumption made by both drummers and "those providing the click" to have the click loud with all beats + divisions wasn't the best way to get a good drum performance. I would encourage my students to play to a very sparse click - just the bar clicks and at a low volume too. At least for practise purposes, the level would be such that the drummer would only hear the click if he was out of time.
    This way encourages the drummer to relax and "feel" the tempo leading to a much better performance. I believe loud clicks can improve confidence but can have an adverse affect on other aspects of playing (apart from the annoying headphone spill when recording).
    For any drummers out there who haven't tried this approach, I strongly suggest you give this a go. It can feel disconcerting at first but its worth the effort I think.

  • I am trying to make a menu but I don't have IDVD what will be any other alternatives?

    I would like to know what will be an alternative for replacing IDVD or something that is similar to it that can do the same thing so I can make a main menu and burn my movie?

    IDVD is easy to obtain.
    Make a couple of phone calls.
    iDVD is a “Must Have".   (Yes, it should be included.)
    Call Apple they will sent out iDVD at no charge.
    800-692-7753
    800-275-2273
    Most people report that by asking here:   http://www.apple.com/feedback/idvd.html
    or here:   http://www.apple.com/contact/
    they got a free copy of iDVD.
    if that doesn't work, go to Amazon or eBay and purchase iLife 11 on disk (don't delay, the price keeps going up).

  • TS1884 What if the Safe Boot progress bar stops (around the 25%-30% mark)? Any other alternatives I have to get my MAcBook Pro to boot without running into an error?

    Hi,
    after starting my MacBook Pro I was faced with a grey screen stating that "an error has occurred, you need to restart your computer". I did that multiple times but the same message appeared each time. So I started the Safe Boot. Now the progress bar is stuck at the 25-30% progress mark since 30 min. Any advise on what to do from here?
    Any help and advise is much appreciated!

    I doubt that shutting it off will do any harm but don't do it too often.
    Here is the best advice I can find for you:
    http://reviews.cnet.com/8301-13727_7-57573680-263/what-to-do-when-a-mac-wont-boo t-to-safe-mode/

  • Suggest pattern or any other alternative solution

    Hi,
    We would like to build on java application using API which client suppose to provide. But Client asked to used existing jdk API indirectly I mean use one wrapper in between. So going ahead if client provides his own API that time without much change we should be able to use those. So please suggest how we can design inteface which will give us the flexibility...thnx

    From what I understand of your description, it sounds like Adapter is a fit. But could you clarify who is providing what?
    "client provides API" and "Client asked to [] use one wrapper in between" are not clear to me...

  • Last work on unsaved Word doc. was 30 days ago. No record in Spotlight. Any other recovery alternative?

    Last work on an unsaved Word document was 30 days ago. No  record of the last work done on Spotlight. Are there are any other alternatives to recover the unsaved work?

    Unlikely as it would probably have been overwritten by now.

  • Can we writeoff/any other solution for difference amount in group currency?

    Hi All,
    One of the G/L account are getting difference between Local Currency (Co. Code Currency - CAD) and Group Currency (USD) as follows. Our Client wants to clear this amount in Group Currency (USD). Can any one help me out on this?
    Problem description: at month end of february 2008 the Cumulative balance needs to be zero (blank) and it is zero in the local currency (CAD)
    whereas it is showing an odd amount of USD 528 for the same, which we want to get rid of somehow,  to make it show as blank. in USD also for the month end february 2008.
    Hence please suggest any method to write off that balance/ reverse / any other alternative. so that both in USD and CAD it would be blank for month end february 2008
    To view: FS10N  with currency USD and with currency CAD

    Hi Prasad,
    In Logistics Invoice Verification, when you enter an invoice in foreign
    currency, the system automatically translates the foreign currency
    amounts to local currency. The system calculates the exchange rate using
    the following rule:
    1.If the buyer entered a fixed exchange rate in the purchase order, the
    system uses this rate to translate the amounts to local currency.
    2.If an exchange rate was entered in Invoice Verification, the system
    uses this rate to translate the amounts to local currency.
    3.If an exchange rate was entered neither in the purchase order nor in
    Invoice Verification, the system uses the exchange rate pre-defined in
    Customizing for Financial Accounting valid for the posting date.
    Exchange Rate Differences
    If a purchase order is entered in foreign currency,the amounts are
    translated from foreign currency into local currency at goods receipt.
    If you enter the invoice for the purchase order in the foreign currency,
    this can lead to currency translation differences between the goods
    receipt and the invoice receipt.
    How these differences are posted depends on how your system is
    configured in Customizing for Invoice Verification
    Exchange Rate Rounding Differences
    When an invoice is posted in a foreign currency, the amounts are translated into local currency.Since the system rounds off the amounts in each posting line, this can lead to rounding differences due to the currency translation.
    These differences are posted to an expense or income account.
    Addition in transaction OB22 for the second local currency, it should be defined 'Translation taking transaction currency as a basis' is defined.
    Pls. also  refer to note:335608  Trnsln of 2nd and 3rd lcl crcy fm 1st lcl/trns crcy.
    I hope the above information helps you out......
    Best Regards,
    Gladys Xing

Maybe you are looking for