Parameter setting

In Query Generator How can set parameter in user defined fields in reports?

Hi
    In user created table ,if alphanumeric fields available ,we cann't create parameter report for that fields.
eg.
     select * from [@sub_cc_head] where u_itemid = [%0]
this qry is select the fields in itemwise , but it will not working.
becuase that itemid filed is alphanumeric field. but numeric field is working.
if any one know the solution plz share with me.
regards
anvar

Similar Messages

  • Do you have the recommend Parameter Sets Controlling IPC Resources on Solaris 8 (64-bits)

    Do you have the recommend value of "Parameter Sets Controlling IPC Resources"
    for Tuxedo8(32-bits) on Sun Solaris8.0 (64-bits) ?

    Hi Asgorath,
    Unfortunately I do not have an answer for you but I
    am experiencing the identical problem on a HP
    Proliant BL25p Blade Server. Here is my hardware
    config:
    CPU - Dual Opteron 2.6 Single Core
    Memory - 16gb
    Controller - HP Smart Array 6i
    Logical drives - 1 (2x72gb RAID1+0)
    I have tried the same things as you and I still get
    intermittant boots. Power on and off does not always
    work as the system still hangs. It's totally hit or
    miss. Once it soes boot it seems to work fine. I have
    also installed the latest Solaris 10 for x86 Patch
    Cluster in hopes that some of the kernal patches
    would fix the problem. So far no luck as the system
    continues to hang...HARD!! HP was out to my site
    today and the Eng. is going back to the group that
    qualified Solaris10 on the HP Blades and see if they
    have any input. If I receive anything back I will
    post it here. I know this post is late and if you
    have resolved please post your fix.Hi doc42755,
    I have not come up with a solution as of yet, if I do come up with a solution i will most certainly post it here.
    However, if you find the solution could you let us know in this thread aswell.
    Thanks
    Asgaroth

  • MI - Configuration Parameter Sets

    When trying to access the "Configuration Parameter Sets" option under the Mobile Administrator page I am getting an error:
    Connection is already closed and no longer associated with a managed connection
    When I try to create a new parameter set I get a java.lang.NullPointerException  exception. Please help.
    Thanks,
    Mahwish

    Hi,
       If you click on any link under the mobile Administrator you will get similar error like "Connection is already closed and no longer associated with a managed connection"
         For this above issue please check the following points.
    1. Visual Admin>Services>Connection Container.. here Check the number of connections values?? 
    2. Check all the authorization are assigned to access the RFCs to user which is mentioned in SAPJRAFactory_EN.
       If we resolve the above problem you would not get any null pointerException during creation of the parameter sets.
    Regards,
    Anil Kumar.

  • SAP language parameter setting

    Dears:
    The parameter zcsa/installed_languages which is in RZ10, control the sap language parameter setting, but i am not very understand how to set the value, i find some set the value to 123EM, i don't know that the 123 meaning here. And some just set it to DE2, D is for Germany, and E is for English, so what is 2 for? Do you know the standard value setting for this parameter?

    The language environment that comes with the standard SAP installation includes German and English. To use SAP with other languages, you must perform a language import or supplement (use transaction SMLT). Changes in the language environment usually require changes in the codepage setup, which requires changes in some database tables and in the profile files.
    Most language administration can be done with transactions SMLT and SP12, and reports RSCP0001, RSCP0004, RSCP0017, and RSCP0020.
    The codepage environment is summarized in the report RSCP0001. Running the report will generate a screen with codepage parameters drawn from different places. A proper codepage setup usually requires that all codepage parameters are the same. This table show the output of the RSCP0001 report, and where its data is drawn from:  Report output Source 
    1.  Table TCPDB   
    Code page for transparent data in the database  Entry in TCPDB table 
    Code page for non-transparent data in the
    database (for example, pools and clusters)  Entry in TCP0C table (can change from online report above) 
    2.  System profile parameters   
    Code page for transparent data in the database  install/codepage/db/transp = 8300 
    Code page for non-transparent data in the
    database (for example, pools and clusters)  install/codepage/db/non_transp = 8300 
    Code pages used by this application server  install/codepage/appl_server = 8300 
    Code pages used by SAPTEMU  saptemu/Codepage = 8300 
    For example, changes in the instance profile, for Traditional Chinese, might look like:
    Change Installed languages to include M (Traditional Chinese)
    zcsa/installed_languages = DEM
    Change to desired language for logon screen
    zcsa/system_language = E
    Add the following parameters for Chinese Character Set
    install/codepage/appl_server = 8300
    install/codepage/db/transp = 8300
    install/codepage/db/non_transp = 8300
    saptemu/Codepage = 8300
    abap/locale_ctype = Chinese(Taiwan)_Taiwan.950
    install/collate/active = 0
    abap/locale_all/needed = 0
    rscp/TCP0B = TCP0D
    abap/set_text_env_at_new_mode =1
    abap/import_char_conversion = 0

  • SSRS Cascading Parameter Setting Default Value of Parameter by Expression

    Hi All,
    I need some help on an issue I am running into in SQL server 2008 report parameters. I have the following Report Parameters defined:
    1) @PredefinedDateSelection - Boolean (User Selectable True/False, Default Value - 'False')
    2) @StartDate - Text (User input text box)
    If @PredefinedDateSelection = TRUE, then I would like to provide a particular default value to the StartDate textbox (i.e. @StartDate Default Value), If @PredefinedDateSelection = FALSE, then I would like to provide a different default value.
    I have the following code for the Expression for the Default value of @StartDate: =code.GetStartDate(Parameters!PreDefinedTimeSelection.Value)
    where GetStartDate is a very simple VB function defined as :
    Public Function GetStartDate(x as boolean ) As String
    Dim a as string
    Dim b as string
    a = "Report Uses Predefined Values"
    b = "Please Input Value"
    If (x) then
    Return a
    else
    Return b
    end if
    end function.
    Now the default value of @StartDate stays set as "Please Input Value", and does not change when I toggle @PredefinedDateSelection from False to True and vice versa. I was expecting to see the Default value to change between the two messages depending on my selection in the report preview.
    Another parameter which is a dropdown and uses a dataset to display two different set of selectable items depending on the value of @PredefinedDateSelection is working just fine. I am not sure if I am missing something or I am doing something wrong.
    Instead of using the VB code I also tried : =iif(Parameters!PreDefinedTimeSelection.Value = True,"Report Uses Predefined Values","Please Input Value")
    I also tried changing the default value using a dataset with SQL query and the available value set to NONE, so that the user could input. But the Default value does not refresh or change values.
     I hope I have explained my question clearly. I would really appreciate any thoughts and comments.
    Thanks,
    Arunesh

    Thank you much for your response.
    I tried that and it did work. But my requirement is to have a user input the date. The basic idea is if the user decides on a predefined time range like Day Shift Today or Yesterday and so on... then the report would automatically calculate the values based on predefined date time values. On the other hand, if the intent is to run the report for an arbitrary period then the user supplies the date and time limits.
    What I am trying to achieve is have the same parameter available for user input , but when the User decides he wants Predefined then the "textbox" populates with date and time as per his choice of predefind range.
    I understand that by this the user can still overwrite the date and time on the text box, but the report will run the predefined values as long as he has the @PredefinedDateSelection Set to true.
    Is there a way I can impement this?
    Once again I thank you and appreciate  your input.

  • Multiple Users on one PC sharing Java Runtime Parameter setting

    Is there a way to have mutiple logins share the -Smx512m setting in Java Runtime Parameters. It seems that when each person logs into the PC to use the application we have to enter the same Java Runtime Parametes again. Is there a way to add it once and every login uses it?
    Thanks,
    DLS

    I have read the Deployment Configuration file and Properties and do not see how the -Xmx51m should be added to the deployment.properties.
    Also it would seem you would need to use the deployment.system.config file so it would be used by all users on the PC.
    Again I can not see an example of how to put in the "Java Runtime Parameters" in the deployment.system.properties file.
    Has anyone done this before and could lead me in the correct directions?
    Thanks,
    DLS

  • Parameter Setting for Windows 64-Bit Windows (Zero Administration)

    Hi All,
              I would like to know the advantages behind setting up parameters based on SNOTE 88416 & 1518419.
              I will explain our current environment to make understand first. Kindly help us to provide the solution for each parameter to set in Default or Instance Profile accordingly.
              We are using Windows 2008 R2 64-Bit with MS SQL Server 2008 in Cluster Mode.
              We having 1 CI , 1 DB node, & 2 Dialog Nodes. In this dialog node we have created additionally 1 more dialog node also.
              1. Central Instances        -1 Server          128 GB RAM      Kernel 7.21_EXT_REL 401 Version
              2. Database Instance      -1 Server          128 GB RAM      Kernel 7.21_EXT_REL 401 Version
              3. Dialog Instances          -1 Server          128 GB RAM      Kernel 7.21_EXT_REL 401 Version
              4. 2 Dialog Instances.      -1 Server          128 GB RAM      Kernel 7.21_EXT_REL 401 Version
    Concerns:
        1. Whether we need to do fine tuning for parameters in 2 dialog node server, where we included additionally one more dialog node in that server recently.
              ( For Eg : em/initial_size_MB has been set 131008 value in 1 dialog node & 2 dialog node its has been set 61440 value )
              Kindly suggest us whether we need to divide all parameters values for these 2 dialog nodes ?
        2.  As per SNOTE 88416 - Phys_Memsize scenario, kindly explain the same how to set in  default profile or instance profile. I have attached my calculation, please suggest the same.
              It would be great if someone help us.
    Regards,
    Gopinath M.L

    Hi Sriram,
              Thanks for your reply.
    1. Each DI physical server level you have to define the memory parameters.
    Yes, we have copied the entire parameters values as same as DI 1 & kept in DI 2.
    My question is here, whether we need to share/divide all the parameters set accordingly in instance profile or not ??? If you require i can attach all parameters which has been set in DI 1 & DI 2.
    2. You have to define in the instance profile parameters and as per the SAP Note 88416 base reference of the initial memory and buffer parameters, in a month you have to review the memory parameters,
    Please check the below link Memory parameters for SAP on 64 Bit Windows screenshot, which describes to add phys_memsize, need to understand how to add that parameter & calculation whether it should be in Default or Instance profile, where other parameters values will be calculated automatically.
    http://wiki.scn.sap.com/wiki/display/Basis/Memory+parameters+for+SAP+on++64+bit+Windows
    Regards,
    Gopinath M.L

  • Oracle 9.2.0.7 vs Oracle 10.2.3 with COMPATIBLE parameter set to 9.2.0.7

    Hi,
    First off, I am NOT an oracle DBA (or even a DBA!), so please excuse my ignorance or errors contained within this post.
    My client is currently planning to upgrade their 9.2.0.7 database server to 10.2.3. Reading through the oracle upgrade documentation, I came accross the compatible parameter, and further more you can set it to 9.2.0.7. I realise that by setting this, many new features introduced in Oracle 10g will not be available - however getting of the unsupported 9.2.0.7 platform is priority.
    Can someone please advise what are the differences between a real 9.2.0.7 database server versus a 10.2.3 (with 9.2.0.7 compatible) server. By setting this will it guarantee sql scripts and external applications continue to work after the upgrade? I.e the list of compatibility issues detailed in the oracle database upgrade guide, will these issues be made irrelevant by this setting?
    Your expert knowledge is appreciated.
    Regards,
    Shan

    When upgrading from 9i to 10g the compatible parameter should be set to 9.2.0. All of the new feature will only be available when the parameter is set to 10.0.0 or higher and the instance restarted.
    Once an instance has been restarted with a compaticble value of 10.0.0 it can never be set back to 9.x.
    Why do you think the upgrade is required if you still want to use the features of 9.2.0.7?

  • Use of parameter sets with prepared INSERTS via Oracle's ODBC driver 8.1.6.4

    Oracles ODBC driver, version 8.1.6.4, allows for driver configuration of three different batch auto commit modes. If I select COMMIT ALL SUCCESSFUL STATEMENTS and cause my app to execute a prepared and parameterized INSERT statement that makes use of parameter value sets, all records up to the first record that causes an error are committed. What is happening? The driver returns only one diagnostic record, with SQLGetDiagField returning the index of the bad record through the [SQL_DIAG_ROW_COUNT] field. Regardless of whether SQLExecute executed successfully or not, the [SQL_ATTR_PARAM_OPERATION_PTR]/ [SQL_ATTR_PARAM_STATUS_PTR] buffers are not initialized by the driver. Even more so, the drive returns SQL_PARC_NO_BATCH for SQLGetInfo when [SQL_PARAM_ARRAY_ROW_COUNTS] is passed. Does anyone know if the driver fully or partially or does not support use of parameter value sets. If it is only partial implementation, ignoring the parameter operation and status buffers, in my opinion, greatly diminishes any real use of parameter value sets. Does anyone known if the above problems disappear with use of Oracles ODBC driver, version 8.1.7.3.0?
    All help is greatly appreciated,
    Chris Simms
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Justin Cave ([email protected]):
    What version of the database do you have on the back end?
    Justin<HR></BLOCKQUOTE>
    Oracle8i version 8.1.6. Looking at the specs that come with the ODBC driver upgrades, version 8.1.7.3.0 [which requires Oracle*i version 8.1.7] and 8.1.6.4, it seems that similar enhancements/fixes were made to both. I honestly do not know if what I am attempting is possible with either of the ODBC drivers. I really would prefer not to have to drop down to programming using OCI.
    Chris
    null

  • Is there any detailed documentation available on the server parameter setti

    It would be great to have examples and more information on what the consequences are if parameters are set too high or too low.
    It would be great to have some real life examples that tell you what to consider when setting the lower memory threshold for the webi processing server, for example - or the maximum documents in cache.
    I have found the handbook and the sizing guide but nothing in particular for the parameter settings of the servers.
    Edited by: Nadine Stevens on Jul 22, 2009 10:48 AM

    Hello Nadine,
    you find it in the Admin Guide for your BO Version. Chapter "Server Command Lines".
    Regards
    -Seb.

  • Print Parameter Setting

    Hi,
       Iam trying to print an ALV report. Each time when i go into the report in print section i change the ALV selections parameter under cover sheet to "NO" and copy the settings. But when i logout of the client or close the report it is set to YES again. Can anyone please tell me from where it is defaulting the value to yes and how to configure it permanently. I even tried in SPAD i don;t see any way to configure ALV selection parameter.
    Thanks
    Krithika

    Hi,
    Pls check for this field if there is any Parameter Id set. If yes, then in the program set the parameter id for that and chage the value.
    Regards
    Lekha

  • How to redirect "-verbose" Java Runtime Parameter setting to text file

    Simple question: I am adding a "-verbose" Java Runtime Parameter in the Java Applet Runtime Settings of the Java Control Panel. When I run my applet, a Windows console opens which outputs all the method calls, classes, and jar file information. How can I redirect this output to a text file?
    I noticed Xloggc:+filename+ but there does not seem to be an equivalent for redirecting the '-verbose' output to a file.
    Thanks!
    Edited by: zillius on Dec 14, 2007 1:47 PM

    Thank you both for the reply, but unfortunately that is not quite what I am looking for. The console Window I am talking about is a DOS console screen, not the Java Console
    What I am really after here is the ability to redirect a thread dump of a running applet to a text file. When the applet is active, and the "-verbose" parameter is set in the Java Runtime Parameters", I can see all the classes, methods etc. being loaded in the DOS window. Hitting Ctrl-Break at that point will produce a thread dump in the DOS console screen. I would like to be able to redirect THAT output to a text file. It is not in the Java Console. To me it looks like tracing and logging are only for the Java Console, no?
    Thanks again for your help.
    Edited by: zillius on Dec 19, 2007 7:17 AM

  • DAC parameter setting.

    Hi All,
    Can anyone explain how DAC sets informatica parameter file(internally).
    Lets say for ex, if ETL was run for 2 tables on separate days, then the $$LAST_EXTRACT_DATE will be different for these 2 tables.
    Where does DAC store this information? and how does it pass it to informatica.
    Is there any document on internal architecture of DAC.
    And information on DAC repository tables?
    (the way i have worded my post here might seem naive to many of you. Kindly excuse since im new to DAC)
    Thanks in advance

    start with this document
    Oracle® Business Intelligence
    Data Warehouse Administration Console User’s Guide
    Version 10.1.3.4
    E12652-01

  • Database Initialization Parameter Setting - extrapolation on Load Testing

    We have a new application going live, hence a new database instance need to be set. The oracle version is 10.2.0.5 (exisiting env. constraint)
    The load testing is conducted for approx. 2000 user load. As per the test results, during the peak load, number of database sessions opened are 450. The expected user load is 5500 in production, hence we are expecting approx 1100 database sessions at that time.
    Due to constraints in load testing environment, we cannot test for 6000 users in production. Hence, we have to extrapolate the database parameter settings and put in production.
    The SGA sizing & some other parameters in Load Testing is as below (with the following setting in load, the performance is acceptable)
    sga_max_size 7.5 GB
    sga_target 6 GB
    db_cache_size 3 GB
    shared_pool_size 1.5 GB
    shared_pool_reserved_size 150 MB
    java_pool_size 0.2 GB
    large_pool_size 0.5 GB
    sort_area_size 0.5 MB
    streams_pool_size 48 MB
    pga_aggregate_target 4 GB
    processes 1200
    db_block_size 8K
    db_file_multiblock_read_count 16
    db_keep_cache_size 134217728
    fast_start_mttr_target 600
    open_links 25
    Please let me know how to set the database size for production on extrapolation. Apart from processes and sessions, which are parameters I should be giving more focus.

    user8211187 wrote:
    We have a new application going live, hence a new database instance need to be set. The oracle version is 10.2.0.5 (exisiting env. constraint)
    The load testing is conducted for approx. 2000 user load. As per the test results, during the peak load, number of database sessions opened are 450. The expected user load is 5500 in production, hence we are expecting approx 1100 database sessions at that time.
    Due to constraints in load testing environment, we cannot test for 6000 users in production. Hence, we have to extrapolate the database parameter settings and put in production.
    The SGA sizing & some other parameters in Load Testing is as below (with the following setting in load, the performance is acceptable)
    sga_max_size 7.5 GB Upon which metrics was 7.5GB derived?

  • Compatible parameter set too specifically will it affect my database?

    Hello,
    I performed an upgrade from 9 to 10.2, when setting the compatible parameter I set that to 10.2.0.5 instead of 10.2.0.
    I know that according to note 830576 and the guide, that parameter should be 10.2.0 but since I can't change it, I want to know if there would be any problems with the database or the SAP system
    Thanks in advance

    Hello Maria,
    at first you should understand what happens when you set this parameter. Please check the official documentation for a detailed explanation: http://docs.oracle.com/cd/E11882_01/server.112/e25494/create005.htm#ADMIN11112
    I want to know if there would be any problems with the database or the SAP system
    Running your Oracle database with a 4 digit compatible parameter is not a "problem", but maybe you are not able to perform a rollback of the 10.2.0.5 patchset without a restore anymore. That's the reason why SAP (and other vendors) recommend to set only 2-3 digits of the oracle version.
    Only Oracle knows, If the current patchset 10.2.0.5 (already) changed some stuff that is incompatible with an older 10g R2 patchset.
    - A new feature stores any data on disk (including data dictionary changes) that cannot be processed with your previous release.
    - An existing feature behaves differently in the new environment as compared to the old environment. This type of incompatibility is classified as a language incompatibility.
    You can try to lower it and restart your DB - if your database is already incompatible you will get an ORA error.
    Regards
    Stefan

Maybe you are looking for

  • Reading an SMB Share Without Mounting

    I'm sure hte answer to this must be incredibly simple, but when I Google, almost every link is about mounting SMB shares. I want to be able to read an SMB share on another system from the command line WITHOUT mounting the share. For example, in Windo

  • Does iPad Air 2 open PDF files in Safari?

    Does iPad Air 2 open PDF files in Safari? Having trouble doing so.

  • Orange light on wireless icon

    On my home hub the wireless icon is on orange but I am still able to connect to the Internet wireless I have the black hub and it has been fine since installed a couple of years ago I have tried resetting it and bt broadband desktop help cannot find

  • Triggering email send via workflow when task created.

    Hi all. In my scenario I want to trigger e-mail send to a fixed address when task of certain type created in CRM Web UI. How can i configure such process? Regards to all.

  • Haven't used my A1136 iPod in some time. Can't remember how to shut it off?  Where

    I have a 7 year old iPod A1136.  Haven't used it in a few years. Decided to buy some tunes at iTunes last night.  No problem there.  My problem is that I'm having a hard time turning the iPod o  OFF.  Where/what exactly to I push on the front circle