How the profile id has been created for anonymous user

hi all,
when i print the ShoppingCurrent.current the below line is displaying
Order[type:default; id:o1030002; state:INCOMPLETE; transient:true; profileId:1310002; ]
in that how the profile id has been created.
thanks in advance
shya

User profile is created when a request is processed by the ProfileRequestServlet in the ATG servlet pipeline and is made available as session scoped Profile object for each user. Profile object has a dataSource property which points to the underlying RepositoryItem. For anonymous user, the underlying RepositoryItem created through ProfileRequestServlet remains transient by default. Therefore you won't find the item in the repository or database with that transient repository item's id. You can change this default behavior if you want by changing the persistentAnonymousProfiles property of the ProfileRequestServlet component to true which will create a new profile in the database for each anonymous visitor.

Similar Messages

  • How to know weather Vendor ID  has been created for a Particular employee

    HI Experts,
    We have got ticket from  emploee pertaining to  his Vendor Id.
    How we can check weather the vendor Id has been created for him.
    What is the transaction code we use to check this.
    Thanks in advance.
    Sairam.

    Hi,
    For this you need to go for coustom only..
    Before the following should be identify.
    1. Personnel number should be assign in vendor master single field only because in vendor master there are five fields can mapp with personnel number.
    2. For vendor creation of employee should have different vendor group in Vedor master
    3. vender nuber range must be same as Employee number range.
    Based on above conditions you can create coustom report.

  • I have written an ebook that has been created for kindle. How can I export the book into iBooks author?

    I have written an ebook that has been created for kindle. How can I export the book into iBooks Author?
    I have tried converting the book to different files like, mobi, epub, pdf. By using an app on my iphone.
    I still cannot add it to iBooks Author.
    I'm stuck, Please help me!

    Either use copy/paste and then format/style as desired, or take it to Pages or WORD and insert chapters - which may still require resettling.
    If you're looking for a 1:1 port, with all styles and layout intact, you may be dissapointed, tho.

  • How to find these many credit memo has been created for particular day

    Hi Frinds,
    I am facing an issue where i need to search for partcular date in which i have to fetch how many credit memos have been created for that particular day.I donno what is the way to find credit memo for that particular day...
    All your help will be valuable for me
    Thanks in advance
    kishore

    Hi,
    If i am not clear with my requirement let me put you all in much better way like this..
    Through FBO3 tcode i am able to get the document for particular date..But that datas which gets fetched has Debit memo, Credit memo and few other datas also.
    I want to fetch the credit memo document which should have only this flow
    order no, credit memo request no,credit memo number and Accounting document to be fetched via
    Condition. I think i am clear now
    Plz help me on this
    Thanks
    kishore

  • Can anyone tell me how i get to speak to someone in customer service? they are retiring Forms Cental and i really need to speak to someone about the renewl of my subscription. THe live chat has been unavailable for two weeks and there is no other option t

    Can anyone tell me how i get to speak to someone in customer service? they are retiring Forms Cental and i really need to speak to someone about the renewl of my subscription. THe live chat has been unavailable for two weeks and there is no other option to get in touch with these people. Any ideas anyone?

    Hi SwarovskiUK,
    I'm sorry to hear that you've been having trouble contacting Customer Care. Live Chat is certainly available--are you not seeing the chat option on the Contact Customer Care page? Or are just not able to get through?
    In any case, I should be able to help you myself. What can I do for you?
    Best,
    Sara

  • The latest update has been running for 16 hours. Is that normal.

    The small window has been showing for 16 hours. It says downloading the update, and connecting to the server and it has the bar running across. How don I know when it is complete.

    Not normal. You probably got a bad connection, but the update is not what you want. You are so far behind at Firefox 3.6.10 that even if the update worked you would still probably have to do more updates. With Mac OS X 10.4 you cannot go to Firefox 4.0, but you will want to go to the latest 3.6 version which is 3.6.17
    Start at http://www.mozilla.com/firefox/all-older.html ''(those with current systems can upgrade to 4.0.1 at http://www.mozilla.com for 4.0.1)''. At the completion of the download don't let the setup start Firefox for you, when the setup ends, start Firefox in your normal manner this way you will be less likely to create a new profile.
    The extra startup pages are temporary -- read them. The next time Firefox comes up you should be back to starting with your normal home page.
    Note: Firefox must be down once the install starts.
    Close Firefox with File>Exit. Then make sure Firefox is not running --
    On Windows: check the "Processes" tab in the Windows Task Manager.
    On Mac: Firefox > Quit then Command+option+Esc, if Firefox running use Force quit
    Permission errors on Mac:
    If you were getting permission errors on a Mac, download the latest
    Firefox version (for your system), then uninstall and reinstall Firefox. Do not remove your profile directories and files as they contain your settings,
    bookmarks, history, extensions, passwords, and cookies.

  • Why i'm getting exception InvalidOperationException: Invoke or BeginInvoke cannot be called on a control until the window handle has been created ?

    I have a backgroundworker1 dowork event and inside:
    private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
    BackgroundWorker bgw = (BackgroundWorker)sender;
    if (bgw.CancellationPending == true)
    return;
    else
    this.BeginInvoke(new MethodInvoker(delegate
    timer1.Stop();
    Button1Code();
    timer1.Start();
    trackBar2.Enabled = false;
    trackBar1.Enabled = false;
    while (true)
    bitmaps = ImagesComparison.get_images_with_clouds(b1);
    for (int i = 0; i < bitmaps.Length; i++)
    ConvertTo1or8Bit.BitmapToGIF(bitmaps[i], @"c:\convertedgifs\" + i.ToString("D6") + ".gif");
    break;
    The exception is on the BeginInvoke part.
    In the last few days i was running the program many times and i didn't have this exception even once.
    And now every times i'm running it i'm getting the exception.
    System.InvalidOperationException was unhandled by user code
    HResult=-2146233079
    Message=Invoke or BeginInvoke cannot be called on a control until the window handle has been created.
    Source=System.Windows.Forms
    StackTrace:
    at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
    at System.Windows.Forms.Control.BeginInvoke(Delegate method, Object[] args)
    at System.Windows.Forms.Control.BeginInvoke(Delegate method)
    at mws.ScanningClouds.backgroundWorker1_DoWork(Object sender, DoWorkEventArgs e) in d:\C-Sharp\Download File\Downloading-File-Project-Version-012\Downloading File\ScanningClouds.cs:line 715
    at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
    at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    InnerException:
    Line 715 is: this.BeginInvoke(new MethodInvoker(delegate

    Where are you starting the background worker from?  Possibly the constructor of the form?
    It would be greatly appreciated if you would mark any helpful entries as helpful and if the entry answers your question, please mark it with the Answer link.

  • How the sContainerLocation parameter has been set and used?

    Hi,
    I'm confused with the following 2 methods in IContainerProvider Interface (Java EDK5.0):(1) public IContainer attachToContainer(String sContainerLocation, ChildRequestHint oHint, String Locale);(2).public ChildContainer[] getChildContainers();
    I'm not sure how the sContainerLocation parameter has been set correctly for the top lever container and the sub level (child containers). What i intended to do is crawl all documents (all have a unique ID) into Plumtree portal. I plan to set the parent folder ObjectID as a datasource parameter. Can anyone please tell me how to use the "parent folder ObjectID" in those 2 methods.
    Thanks in advance,

    Mihir,
    For the top-level container, set parent folder Object ID equal to CrawlerConstants.TAG_PATH. I've only configured this via a custom SCI page in the Crawler admin object, so I'm not sure if it will work as a setting in the Data Source as you wish to do. You can try it in the data source and if it doesn't work, then try it in the Crawler. When set correctly, the portal will automatically call attachToContainer with sContainerLocation equal to whatever value you have for TAG_PATH.
    For child containers, just set the sLocation in the ChildContainer equal to the folder ObjectID and the portal will use that as the value for sContainerLocation on its subsequent attachToContainer calls.
    -Dave
    I've set this in the crawler UI, and I'm not sure if it will work in the data source.

  • HT1349 My ipad will not start up, it has the swirl in the center of the screen and has been there for 30hrs now.

    My ipad will not start up, it has the swirl in the center of the screen and has been there for 30hrs now, what can I do?

    First thing to try is a reboot of your iPad. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appears. Let go of the buttons and let the iPad restart. See if that fixes your problem.

  • Alert: The following statement has been running for 999999 seconds

    Dear all.
    Periodically we get this alerts:
    The following statement has been running for 96327 seconds: Transaction ID: 104, client PID: 14080
    it means that something wrong...
    Is there any parameter in HANA which limit maximum lifetime for transaction?
    We're on SPS7 now.

    Answer from sap - There is no parameters in HANA and there is no plans to add them.

  • The rainbow circle has been spinning for about 4 hours now and I can't do anything on my MacBook? How can i get it to stop?

    The rainbow loading circle has been loading for about 4 hours now on my log in page for MacBooks when you first turn it on.

    Jessie_1091 wrote:
    It won't shut down, otherwise I could just restart it. that's the problem! It's only a year old. I guess I'll have to wait until it dies
    If you are still under warranty and/or have AppleCare, call them.  Let them deal w/it.

  • No message output has been created for contract

    Hi,
    For one contract, I have changed the item quantity from 2000 EA to 1920 EA.  But no message output has been created.
    please assist..
    Rgds
    Mohan

    Hi,
    If you want system to generate the new message output automatically when any changes made to contract then check following configuration is in place or  not?
    SPRO > MM > Purchasing > Messages > Output Control > Define Message Types for Outline Agreement > Fine-Tuned Control: Outline Purchase Agreement > Here maintain your message type of contract (for e.g. NEU) with operation "2" (i.e. Change)
    And then make changes in Contract and check the message will get generated automatically.

  • How to see partition has been created ?

    Hello ,
    I have made a query for the partitioning of the table as per the accounting year , as 08-09,09-10. I have done only 2 partitioning. Now as i want to set the partitioning for 10-11 year, i am doing that from a front-end(Developer 2000) forms. I want to be sure that, the third partition is created or not in the database, how can i get the information that the third partition is created on that table .... ? Any data dictionary views or some other technique to judge this ..... ?????
    oracle 10g R2
    windows Server 2005
    Thanks ..!!
    Edited by: DBA4 on Mar 23, 2010 10:43 AM

    Thanks for the answers .... but i have one more issue. Actually i have created the partition for accounting year uptill 07-08 but when i try to create the new account year partition from front end forms it shows the process has been done successfully. And even allows the data to be inserted in that .....
    If i want to see when i insert data in a table of partition , in which partition it's actually inserting what can i do to get this info ???? can i just know where my data is going, in which partition ???
    I have created the accounting year uptill 07-08, but from front end i am also inserting data of 08-09. So when i observed the create table script, i cant see a partition for 08-09...so where is the data going then ? how should i know about this ?? any ideas please suggest as possible .....
    Thanks !!!!

  • Working out how long a program has been run for

    i hav a server and on the stats report it makes i wanna show how long its been running for since it started
    i have a start date and time
    and a ill grab the current date and time when i run this method
    but what code would compair them and work out how long the server has actually been running for
    can i do it using these 2 days or do i need another counter thread just counting up in seconds then min then hours then days n so on ?
    Message was edited by:
    russdx

         private final static int SECOND = 1000;
         private final static int MINUTE = SECOND * 60;
         private final static int HOUR = MINUTE * 60;
         private final static int DAY = HOUR * 24;
         public static void main (String[] args)
              long time = System.currentTimeMillis();
              long days = time / DAY;
              time -= days * DAY;
              long hours = time / HOUR;
              time -= hours * HOUR;
              long minutes = time / MINUTE;
              time -= minutes * MINUTE;
              long seconds = time / SECOND;
              System.out.println (days + " days, " + hours + " hours, " + minutes + " minutes, " + seconds + " seconds");
         }Ted.

  • My iPhone 3GS has been reset but the apple with the black background has been on for about 6 hours please help !

    My apple iPhone 3GS has been reset , it had been on the black background with he white apple for a long time , please can someone tell me how I can speed this up ?

    See this:
    iOS: Unable to update or restore

Maybe you are looking for