Where sessions will be stored?

where sessions will be stored?
regards,
phani.

Hi!
sessions will be stored in APQI table along with their queue id.
Reward points if it helps.
Regards,
Neha Bansal.

Similar Messages

  • Chose DB where content will be stored?

    Is it possible to instruct portal where to store the content and metadata that is added to a content area. Ideally, I would like to put it in a separate database. This is because we will have 2 separate portal instances and I would like to have both accessing the same content.
    We have considered database replciation but identifying the tables to replicate and the sequences to amend has proved to be difficult.
    If you can think of any other way of doing this, please let me know.
    Thanks,
    Roger

    Hi!
    sessions will be stored in APQI table along with their queue id.
    Reward points if it helps.
    Regards,
    Neha Bansal.

  • FEIN where it will be stored?

    Hi,
    For GRE/Legal entity is this should be user_defined using DFF for Federal/state tax rules in organization window.
    I am looking for Federal Identification Number, is it having any other name while creating organization.
    someone help me!!!!

    FEIN is your Federal Employer Identification Number and would be stored in the Employer Identification Number field in a GRE/Legal Entity.
    Navigate: Work Structures > Organization > Description > Select Org with GRE Classification > Others button > Employer Identification > Employer Identification Number

  • Where the create or replace packagebody will  be stored?

    Friends,
    can anybody clear this doubt pls?...
    writing create or replace packagebody in the sql*plus will be stored in the database.
    but if i write the same create or replace packagebody in the forms where it will be stored?
    will it store in the database or in temp memory?
    thanks

    Like Francois said...
    When you create a program unit in forms, it will be stored in the form module.
    It's not available on the database.
    When you call a package in forms, it will first look in the form.
    If the package doesn't exist, it will check the libraries attached to the form.
    If the package doesn't exist in a library, it will check the database.
    I hope this helps...

  • Where istore images(JPEG) will be stored

    Hi VIKKI,
    When we upload imapges(JPEG) to customer website through iStore Admin side.
    May I know where those images will be stored in Oracle Application.
    I tried in OA_MEDIA Directory , but I coudnt find it.
    and also I tried in JTF_AMV_ATTACHMENTS table. but no use.
    Can any body help me to get names of images which we used in istore customer website.
    thanks
    HTH

    Not quite sure if this is a custom code on your end, but here is how the file can be found, go to FND_LOBS table and look for file_id 284234 that is where your file is stored, in other words your file (image) is stored as a binary object in your database. The call to jtfdload retrieves this binary object and converts it to image and displays on the run time in the browser.
    Hope that is helpful. I would also suggest to change the approach to a direct mapping on the file system so that you can enable object cache which would improve the performance down the lane.
    VKKY
    Edited by: VKKY on Apr 20, 2009 9:38 AM

  • Where i will give the date and time of the session background process

    Hi.
    I created a program on XD01 by using Session Method.
    It is executed properly and process in forground also fine.
    What my problem is i want execute process of session in Back ground on that time i want give the Date and Time. I do not know where i will provide date and Time.
    I want Process the BDC Session after 2 days. How it is possbile. Where i will give the date and Time?
    With in these 2 days i want know the status of the Session Process. How i will check the status?
    Any body will explain these things with full flow of sequence.
    I do not want use the BDC Session by using RSBDCSUB. In that program there is no options for giving the Date and Time.
    Thank You.
    B. Krishna.

    Hi,
    While creating session through BDC_OPEN_GROUP function, populate HOLDDATE field to set lock on the created session till that date, say 31.12.2008 and you would like to execute your session on 1.1.2009 at 2:00 AM.
    Once session is created, create a batch job for program RSBDCSUB and schedule it on 1.1.2009 at 2:00 AM (server time).
    I am confident that it solves your problem.
    Regards,
    Prasanth

  • Where the session id is stored in server/JVM in java

    hi all,
    please tell me where the session id is stored in server or JVM in java.
    regards
    Mohan kumar

    Which session ID are your taking about?
    Are you doing J2EE development?
    -Alexis

  • Where Client ID and Client Secret of SharePoint .app file will be stored

    Where Client ID and Client Secret of SharePoint .app file will be stored, i had published my app in the production, and now i need to enhanced the app, and i want to publish my app again, so where can i get my previous Client ID and Client Secret

    If it's provider hosted app, then you can find ClientId in a AppManifest.xml, and in a web.config of your web project.
    [custom.development]

  • Where DTP requests will be stored

    Hi ,
    I know Infopackge requests stored in table RSLDTDONE .
    But I want the table where DTP  Reqeusts will be stored .
    Please anybody can help

    Check these tables:
    RSBKDATAPAKSEL - DTP: Data Package Selections
    RSBKSELECT - Selections for DTP Request (Summary)
    RSBKREQUEST - DTP Request
    RSBKREQUEST_V  - View of DTP Request
    Hope it helps..

  • Table where data of a Variant saved will be stored.

    Hi All,
            In normal Custom reports we will be saving some variants so that we can put the same variant after some time for executing the report. Variant will be having a unique name which will be stored in some table and the data(selection screen entries) which we are saving also will be saved some where in SAP tables. If any one of you has knowledge of those tables please help me out.
    Thanks in advance,
    Shyam.

    Hi
    VARIT--> Variant texts
    VARID--> Variant directory
    Using values from Table TVARVC is especially useful in background processing. You do not have to create a new variant for each minor change of values or repeatedly change an existing variant, since you only have to change the values stored in TVARVC.
    However, note that every change of a value in Table TVARVC affects all variants using this particular variable.
    Reward all helpfull answers
    Regards
    Pavan

  • Using ALTER SESSION inside a stored procedure.... not a good idea?

    Hi,
    I have two stored procedures, both of which are used to query a database to find a particular book, based on ISBN. One sproc searches our main product catalogue and the other searches our suppliers feed catalogues. The stored procedures are called from a C# application via a search tool and the user is able to search on either our catalogue or our suppliers. The appropriate procedure is called based on the users choices.
    However, the following behaviour is observed
    I search for an ISBN (is a varchar2 field, as isbn's may contain an X if the checksum digit equates to 10) on a feed, so uses the FEED SPROC. The book is found and returned to the app in about 0.5 seconds. I can repeat this as often as i like on different books etc. always works fine.
    I then do the same search but against our own catalogue, so uses our CATALOGUE SPROC. Again the book is found quickly, and the search can be repeated with the same results.
    If i then go back and run our FEED SPROC then the search time increases to about 3 minutes !
    Both the feed and our catalogue is in the same database, although different schema's the connections will be pooled through our app server.
    I can repliacte this every single time. I think i have narrowed doen the cause of this behaviour to a few lines of code in our CATALOGUE SPROC:
    -- store values
    select value into v_vch_NLS_COMP from nls_session_parameters nsp where nsp.parameter = 'NLS_COMP';
    select value into v_vch_NLS_SORT from nls_session_parameters nsp where nsp.parameter = 'NLS_SORT';
    -- Ensure case insensitivity throughout
    EXECUTE IMMEDIATE 'ALTER SESSION SET NLS_COMP = LINGUISTIC';
    EXECUTE IMMEDIATE 'ALTER SESSION SET NLS_SORT = BINARY_CI';
    do other stuff
    -- restore session variables
    EXECUTE IMMEDIATE 'ALTER SESSION SET NLS_COMP = ' || v_vch_NLS_COMP;
    EXECUTE IMMEDIATE 'ALTER SESSION SET NLS_SORT = ' || v_vch_NLS_SORT;
    If i remove this code then all is well, so i am assuming that using ALTER SESSION inside a stored procedure is the cause of the problem as it would be changing the execution plan of the FEEDS SPROC in some manner? Any ideas? I know i can just rewrite the sproc to avoid using this coding, but wanted to understand if i am doing something wrong by using ALTER SESSION in this manner?
    Any pointers would be appreciated.
    John Thompson
    Software Architect,
    play.com
    Edited by: user7186902 on 27-May-2009 03:51

    Hello (and welcome),
    It may be a case of having to create a linguistic index to facilitate the queries once you set these session level parameters, i.e..,
    CREATE INDEX idx_01 ON tab ((NLSSORT(col1, 'NLS_SORT=BINARY_CI'))It would appear that the setting of those parameters is invalidating index searching on the current indexes.

  • Where are printer drivers stored in OS 10.8?

    I am trying to set up a Epson Stylus Photo R3000 as a new printer on OS 10.8. The printer setup locates the printer and automatically selects Epson Stylus R3000 with the notation "The selected printer software is available from Apple. Click Add to download and add this printer." However, clicking on Add leads eventually to an error message: "Can't install the software for the EPSON Epson Stylus Photo R3000 because it is not currently available fromthe Software Update server." This result blocks me from setting up the printer.
    I know the driver is part of the Epson driver software package that is installed with OS 10.8. I would like to select it manually. My question is where are printer drivers stored? How do I select a driver?
    Thanks in advance!

    While a bit of a stretch, you can download the entire Epson printer package from Apple and install it. This will include all drivers for all Epson devices as opposed to the one just for your system. The package is 1GB in size, but will include everything supported.
    The package can be downloaded here: http://support.apple.com/kb/DL1398
    This following knowledgebase article says your printer is definitely supported, so the driver should be in that package: http://support.apple.com/kb/HT3669#epson

  • ICal Problem with Mobile Account/Home and where are the calendars stored

    I am using MacMinis in an office with my MacPro SnowLeopard Server running LDAP with NetworkHome accounts. Almost everything works except this ical is driving me nuts.
    The problem is iCals don't sync with the NetworkHome. When I look in usr/library/calendars a new calendar appears there but it won't sync on to a different machine.
    What is even more frusterating, if I disconnect the server so I am just logging in locally, I can delete all the calanders in usr/library/calendars, but when I log back in the calendars just re-appear. So where else is ical storing calendar information?
    thanks
    jake

    where else is ical storing calendar information?
    in a folder in usr/library/syncservices/local. You will have to look in the clientname.txt file in each of the folders to find which one is for iCal.
    AK

  • Where the table is stored.,temp tablespace is not freed .

    I have created one table in oracle 8.1.7 containing 500 mega records .
    my question is
    1. where the table is stored as the size of users.dbf is just 20 mb and is used upto only 2 MB.
    so it must not be there.
    2. the size of tools.dbf in tools tablespce is somewhere around 13GB. is it there?
    if yes then why?
    3. also the size of temp01.dbf+temp02.dbf + temp03.dbf in temp table space is somewhere around 14 gb and it is going on increasing. say when i give command to create index it after running for some 8 hrs gives error that disk space is full . when i again run he command after adding more file and space the command runs but the space earlier utilised in temp is not released .
    i have tried restrating the oracle service . but it does not release the space utilised by temp.Also the table space is temp not permanent.
    IMP.
    4. can i manually delete the data files in temp.
    will it affect my database????
    thanksin adv.

    I have created one table in oracle 8.1.7 containing 500 mega records .
    my question is
    1. where the table is stored as the size of users.dbf is just 20 mb and is used upto only 2 MB.
    so it must not be there.
    2. the size of tools.dbf in tools tablespce is somewhere around 13GB. is it there?
    if yes then why?
    3. also the size of temp01.dbf+temp02.dbf + temp03.dbf in temp table space is somewhere around 14 gb and it is going on increasing. say when i give command to create index it after running for some 8 hrs gives error that disk space is full . when i again run he command after adding more file and space the command runs but the space earlier utilised in temp is not released .
    i have tried restrating the oracle service . but it does not release the space utilised by temp.Also the table space is temp not permanent.
    IMP.
    4. can i manually delete the data files in temp.
    will it affect my database????
    thanksin adv. Query user_segments as the table owner. This will tell you which tablespace (also the size of you table allocation).
    Query dba_data_files, may need to be a DBA account (e.g. system). This will relate files to tablespaces.
    The files in dba_data_files and in v$logfile and the control files listed in init<sid>.ora comprise your database.
    Hope this helps
    Ken

  • Execute listcube in background - where is the file stored on app server

    Hi,
    I want to execute listcube in background.
    to execute in background, the only output option available is Store in file (appl server).
    My question is where is this file stored.
    there is no information in the job log nor is there any spool.
    Also, can I determine myself where is this output file written.

    I have a couple of questions that could lead to an answer to your question...
    Does your BW environment have one or more application servers, in addition to the Database Central Instance (DBCI)? If so, do you use logon groups for SAP Logon so that the logon loads are balanced?
    I'm asking these questions because if you have a multiple application server environment and logon balancing, you may not be logging onto the same server every time that you're executing LISTCUBE and it will save to the directory path of the server you're logged onto.

Maybe you are looking for