Can PID (Parameter ID) be set as a default by TCODE or Role Level

Hi, Any one has any idea if PID (Parameter ID) and its value can be set as a default at TCODE or at Role Level?
Thanks in advance.
Syd.
Addendum:
Re: Can PID (Parameter ID) be set as a default by TCODE or Role Level
Posted: Oct 17, 2006 9:38 AM        Reply      E-mail this post 
Thanks for the reply, you have mentioned try creating a Transaction variant or a Transaction parameter.
Here is my question?
1. Can we set a default Parameter ID at TCODE level so, if any user execute a transaction who has access to execute it, he will have Parameter id and its value as a default?
2. Can PID be set as a default for SAP TCODE or Custom TCODE, or can be done for both, if it can be done then, How?
3. Can PID be set as a default for a particular Role or profile?
Message was edited by: Syed Alam
Message was edited by: Syed Alam

Hi JC,
Yes, I agree.
A small disclaimer however is that we dont know which transaction is being refered to.
Creating a transaction variant with the parameter set for it could enable the use to navigate further and back again and in doing so "shed" the screen which the transaction (initially with variant parameter and skip screen) originally gave them.
Using a user-exit to set the parameter can in some cases be closer to the functionality (irrespective of how the user gets there) and be more reliable. But in this case an adventurous user will be likely to trick it anyway if they want to.
If the decision is made to use PIDs in the coding, then it is a decision that the user can influence the value (in my view). If coding makes insecure use of PIDs, then it is a design error in the coding.
Cheers,
Julius

Similar Messages

  • ORA-02069: global_names parameter must be set to TRUE for this operation

    I have 10g database and a schema 'TMAPP'
    And I have two table in TMAPP as
    create table user_menu_privs
    company_code           varchar2(5),
    bu_code      varchar2(12),
    user_group      varchar2(30),
    user_group_type      varchar2(1),
    menu_option_code number(5),
    enabled varchar2(1),
    query_only varchar2(1),
    default_lang varchar2(3),
    created_by      varchar2(10),
    created_on      date,
    updated_by      varchar2(10),
    updated_on      date,
    constraint pk_user_menu_privs primary key (company_code,bu_code,user_group,user_group_type,menu_option_code),
    constraint fk_user_menu_privs foreign key (company_code,bu_code,user_group,user_group_type)
    references user_group(company_code,bu_code,user_group,user_group_type)
    create table user_dst
    company_code           varchar2(5),
    bu_code      varchar2(12),
    userid varchar2(10),
    user_group      varchar2(30) ,
    user_group_type      varchar2(1) ,
    font_size      number(2) ,
    font_name      varchar2(100) ,
    address_id number(10),
    created_by      varchar2(10),
    created_on      date,
    updated_by      varchar2(10),
    updated_on      date,
    constraint pk_user_dst primary key (company_code,bu_code,userid,user_group,user_group_type),
    constraint fk_user_dst foreign key (company_code,bu_code,user_group,user_group_type)
    references user_group(company_code,bu_code,user_group,user_group_type)
    I have another database 11g with a schema TMAPP.
    Here I have created a database link 'to_dev' is connecting to the 10g db
    using this I can connect and see the data from 10g TMAPP
    I have created two views
    create or replace view user_menu_privs as
    select *
    from user_menu_privs@to_dev
    where user_group in
    (select user_group from user_dst
    where user_group_type='F');
    create or replace view user_dst as
    select * from user_dst@to_dev;
    and I executed
    delete from user_menu_privs
    where menu_option_code=108;
    I am getting the error
    ORA-02069: global_names parameter must be set to TRUE for this operation
    after that I set the global_names in 11g as TRUE
    then I am getting another error as
    ORA-02085: database link TO_DEV connects to DEV.REGRESS.RDBMS.DEV.US.ORACLE.COM -- that means link is not wokring
    Please help
    Dennis
    Edited by: DJ on Mar 13, 2012 5:49 AM
    Edited by: DJ on Mar 13, 2012 5:51 AM
    Edited by: DJ on Mar 13, 2012 5:53 AM
    Edited by: DJ on Mar 13, 2012 5:55 AM
    Edited by: DJ on Mar 13, 2012 5:56 AM

    OP wrote
    >
    But you said
    create a database link in 11g database with 11g database global name and put 11g database global_name=true.
    and put 10g database golba_name=false;
    >
    That isn't what I said at all. Reread my first reply. The first part is a copy of what you had stated.
    >
    ORA-02069: global_names parameter must be set to TRUE for this operation
    after that I set the global_names in 11g as TRUE
    >
    And then I said
    >
    That is because when global_names is TRUE, the database link name MUST be same as the global db name of the database to which the link connects to.
    You need to drop the database link and recreate it using the global name of the database it connects to.
    'link name MUST be same as the global db name of the database to which the link connects to.' - I didn't say 11g.
    And I didn't say 'put 11g database global_name=true' because you had already done that! 'after that I set the global_names in 11g as TRUE.
    1. 11g - global_names MUST be TRUE
    2. 11g - database link name MUST be the same as the global db name of the database to which the link connects to - 10g global db name
    3. 10g - gloibal_names setting is irrelevant

  • Parameter not being set in before parameter form trigger

    I am running 10g reports over the web and have a problem with some parameters. I have a User parameter which I set in the BEFORE-PARAMETER-FORM trigger. This parameter is not displayed on the parameter form because it shouldn't ever be changed by a user. It is supposed to be displayed on the report output to show who ran the report, but it is appearing blank.
    I've found that if I physically display the parameter on the parameter form it works, but this isn't a realistic option. It looks like it gets cleared out if it isnt displayed on the parameter form. Can anyone explain why and offer any help?

    Assign value to the parameter in the After Parameter Form Trigger, not Before.

  • How to use shared parameter on request set

    Hi
    I have a request set with two stages
    First stage contains From Date and To date where i have named the shared parameter as StartSP and EndSP
    i have to use these shared parameter in one of the query in next stage where my Type is SQL Statment and i have these two date fields From date and To date in next stage as well where i am able to retirve the values from previous stage
    based on these values i need to get the name in next parameter where my Type is SQL Statment
    select name from tablename where '02-MAR-09' > =start_Date and '29-MAR-09' <=end_Date
    I have written SQL as
    select name from tablename where StartSP > =start_Date and EndSP <=end_Date but it throws an error.
    I need the values of 02-Mar-09 and 29-Mar-09 from StartSP and EndSP
    Appreciate if any one has idea about this.

    hi user;
    please check:
    http://download-west.oracle.com/docs/cd/A60725_05/html/comnls/us/fnd/repset04.htm
    http://download-east.oracle.com/docs/cd/A60725_05/html/comnls/us/fnd/10gch609.htm
    Also you can check this search:http://www.google.com.tr/search?hl=tr&source=hp&q=How+to+use+shared+parameter+on+request+set+&meta=&aq=f&oq=
    Hope it helps
    Regard
    Helios

  • FNDLOAD fail update parameter's value set in concurrent program

    I am try to update 1 parameter's value set from one enviorment to other using the following script but that parameter is still using old value set:
    FNDLOAD apps1/xxx 0 Y DOWNLOAD $FND_TOP/patch/115/import/xx_afcpprog.lct XXPN_PTLAIO.ldt PROGRAM APPLICATION_SHORT_NAME="XXPN" CONCURRENT_PROGRAM_NAME="XXPN_PTLAIO"
    FNDLOAD apps2/xxx 0 Y UPLOAD $FND_TOP/patch/115/import/xx_afcpprog.lct XXPN_PTOLAO.ldt
    Is there a situation parameter cannot be updated?
    Or should i use afffload.lct to load?
    My machine version:
    RDBMS : 11.1.0.7.0
    Oracle Applications : 12.1.3
    Edited by: 901005 on Apr 19, 2012 3:37 AM
    Edited by: 901005 on Apr 19, 2012 3:43 AM

    compare date and author of paramaters and value sets
    if date of parameter (or valueset) in ldt earlier than date of parameter (or valueset) in system than no update
    you can try to use CUSTOM_MODE=FORCE

  • 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.

  • Loading PID Parameter and Reading Back

    Hello,
    Currently,  I'm developing NI-Motion Driver for 7358 motion control card. My environment is QNX 6.5 realtime OS.
    According to NI Motion Driver Developer's Kit document basically i'm sending packages to board to set values, to start motion etc.
    Now, i'm can drive brushed motor with given velocity and acceleration parameters. I want to ask you that is it possible to read back
    values that written to board.
    For example,
    To load PID parameters i'm using command 32 as given in DDK with axis information, pid parameters and input vector (0xFF). It should
    work same like flex_load_pid_parameters function given in FlexMotion Software Reference Manual.
    I want to check that PID values has been set correctly with my own function. But i could not find any way to do this. There is no command
    as i see to read back these values from board. The thing i learnt from DDK is if command package is wrong board gives package error in
    csr. If something goes wrong during run time, board gives modal error. So, i want to check if there is direct way to read parameters i set?
    Best regards.

    Hey Erhan,
    There isn't a way you can check the values corresponding to the PID effect because this is done in FPGA and cannot be accessed. 
    Regards,
    A. Zaatari
    National Instruments
    Applications Engineer

  • IPhoto '09 can't "locate" a recent set of imported images

    ISSUE
    NOTE: This is for a MANAGED iPhoto library NOT a Referenced one, and the original image files DO exist and are located in both the source location and the iPhoto Library.
    Late last friday (11/6) suddenly started getting the following error messages on a specific set of images imported into iPhoto from an external Hard Drive:
    • The photo “classes.nib” could not be opened, because the original item cannot be found.
    The quoted filename varies, but are all like the above, NOT the actual image filename.
    I've had the message before, (rarely and not for years) but normally the filename in quotes is the name of the selected image i.e. "IMG_2251.jpg, etc. and has always been due to the actual file no longer existing for one reason or another (usually some thing I did)
    The error message only appears during Preview of the image set in the Library >"Photos" index section.
    I am currently ignoring the warning, since:
    • the images DO appear to exist (in iPhoto Library> Originals > [the year] > [the date]
    • are obviously being managed by iPhoto,
    • can be edited by iPhoto (see more info below)
    But this obviously makes me nervous about the integrity of my photo library (i do have time machine and some disc media backups of many (not all, yet) albums, but still ...
    CONFOUNDING FACTORS
    1. Despite the error message:
    • the image preview appears (not an "!" or "?") before and after dismissal of the message
    • I can continue on to edit the image from the preview step.
    • I can right click on the preview, select "Show Original File" and iPhoto locates the original image in the iPhoto Library Package file.
    2. It does not appear if:
    • I ignore the message and continue on to to edit the image
    • I preview the image in the "Library > Events" index section.
    • I preview the image in the "Recent > Last Import" index section.
    3. Trashing, and emptying trash (from any index view) then re-importing them hasn't helped.
    4. All offending photos can be opened, viewed and edited in various image viewers, editors (Preview.app, the Finder Quickview, Photoshop CS 3, Graphic Converter
    5. Subsequent imports don't appear to have the problem.
    SUGGESTS:
    • A database problem?
    RESOLUTION STEPS:
    Attempted with no corrective results.
    1. Trashed problem photos and emptied iPhoto Trash, reimported images from Ext. HD via drag-n-drop to library index
    2. Above, re-imported via File > Import to Library ...
    3. Above 1 and 2 import steps with files copied to Local HD
    4. Step 3 above with duplicated files (via File > Duplicate)
    5. Opened a photo file in Preview, did save as ..., imported into iPhoto
    6. Step 5 above with Photoshop CS3, slightly cropped image, saved as, imported into iphoto.
    7. Ran "Disk Utility > Verify and Repair Disk" from Snow Leopard Install Disc (there were file and folder count mismatch issues)
    8. Re-ran Verify afterwards with clean bill of health.
    RECREATION STEPS:
    Unknown on how to initially trigger but the last and only iPhoto Console logs appear to be from around the time the issue began:
    11/6/09 9:07:39 AM [0x0-0x1e51e5].com.apple.iPhoto[3976] Fri Nov 6 09:07:39 Trebor-4.local iPhoto[3976] <Error>: kCGErrorIllegalArgument: CGSShapeWindow
    11/6/09 9:07:39 AM [0x0-0x1e51e5].com.apple.iPhoto[3976] Fri Nov 6 09:07:39 Trebor-4.local iPhoto[3976] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    11/6/09 3:05:24 PM ScreenSaverEngine[6784] ILLogger ILMediaBrowserPathWatcher: ** Error in ILMediaBrowserPathWatcher startFSEventStream failed to start for paths: (
    "/Users/Lyle/Pictures/iPhoto Library"
    11/6/09 10:18:36 PM [0x0-0x2d62d6].com.apple.iPhoto[6959] Fri Nov 6 22:18:36 Trebor-4.local iPhoto[6959] <Error>: CGImageDestinationAddImageFromSource image 0 of source is nil
    11/6/09 10:18:36 PM [0x0-0x2d62d6].com.apple.iPhoto[6959] Fri Nov 6 22:18:36 Trebor-4.local iPhoto[6959] <Error>: CGImageDestinationFinalize image destination does not have enough images
    11/6/09 10:25:50 PM iPhoto[345] ILLogger ILMediaBrowserPathWatcher: ** Error in ILMediaBrowserPathWatcher startFSEventStream failed to start for paths: (
    "/Users/Lyle/Library/Preferences"
    Any thoughts or insights would be appreciated.
    Thx
    Message edited for typos and format errors by Lyle Turner

    RESOLVED (if not altogether answered)
    Performed the iPhoto database rebuild cha-cha again - this time selecting ALL checkboxes (previously only selected "Rebuild from backup)
    After rebuild, some photos appeared to be fixed, but photos that still showed the the error were all within specific Photo Rolls and DID NOT allow me to "show original file" on right click.
    On inspection within the iPhoto Library package, the remaining problem photo files were all ALIASES, not actual image files.
    Although the error dialog allowed me to to try and find the missing original, browsing for it didn't work. All image files listed in the browser were grayed out and not selectable.
    SO, not sure if this was kosher, but the following seemed to clear things up:
    * found real images for the aliased files on archived media
    * copied the real files over the aliases of the same file name
    * accepted finders warning that I was replacing files of the same name
    * returned to the iPhoto rolls and previewed the previously error prone images
    NOTE: I DID NOT close iPhoto while I was doing this. Not sure how dangerous that was.
    iPhoto seemed none the wiser, and the error message was gone. (oddly, initially the first photo in each affected roll still threw up the error, but when I moved on the the next one and came back, all seemed well and the message was gone)
    Did not appear to be a rhyme or reason to which rolls contained aliases and which didn't - photo/file date stamps weren't contiguous (so it wasn't a problem of a series of event imports from the camera/card.)
    Best I can figure is somehow some sets were imported as referenced files although my iPhoto is set to use a managed library.
    I'm in the process of consolidating some older manually managed image archives, so I don't know when this happened, or if it's the result of some accidental duplication, aborted import or what. I DO know that I had not encountered this error before, and I know I reviewed the affected rolls some time in the past, long after I had imported them.
    Well, all seems to be on the mend. So life is good.
    Except for those crufty leftovers. May still want to do something about that.
    Thanks to Terence for leading me to look in the right places.
    Message was edited by: Lyle Turner

  • I have an iPhone 4 and my lock button is jammed and I also can not touch anything on the left side of my screen well as any pop ups from the phone itself, so i can not get past the set up stage in reset process...how can i fix it/can it be fixed?

    I have an iPhone 4 and my lock button is jammed and I also can not touch anything on the left side of my screen well as any pop ups from the phone itself, so i can not get past the set up stage in reset process...how can i fix it/can it be fixed?

    Make an appointment at the genius bar and get the phone replaced.

  • Trying to set up a joomla test website - can't get beyond database set up.

    Hi. I am new to Mac OSX server, and I purchased a mini with 10.6.3 server so that I could build and test some websites locally.
    I am trying to install Joomla, and i can not get past the database configuration page.
    I am new to Apache / MySQL / PHP / Unix etc... I used Navicat to "create" (I am also new to navicat) a database named Joomla. I also created a user in Navicat called testuser, and gave the user a password. I also THINK I gave that user all privledges. But when I select Next, the page does not give any warnings, it doesn't even seem to refresh, but I can't get anywhere beyond this. I am not even sure what logs to check for errors, or how to get beyond this point. Any advice? Did I not set something up that needs to be set up?

    HI franklyhollywood:
    Joomla is easy to set up (install) once Mysql and PHP is properly set up. CMS (Content Management
    System) websites are the way to go. I am migrating all my sites to CMS, either full CMS or Partial
    CMS. The Server Guys (and Girls) can help you get it set up properly. If you don't want the hassle
    of configuring MySql and PHP on your Mac, use the preconfigured MAMP setup:
    http://www.mamp.info/en/index.html
    I am only interested in the final product (the website), so I chose MAMP to handle the database and
    scripting language (PHP) chores. MAMP can be Installed, configured and up and running in minutes,
    leaving me free to develop and make ready my sites for uploading to their eventual home on my
    hosting provider's server.
    Kj ♘

  • My mail app on I phone 4s crashes every time when i try to open, and i can see it thru the setting general. also phone is overheating and spending battery fast. does any one has some answer on this or same issue? what to do didi any has same issue?

    my mail app on I phone 4s crashes every time when i try to open, and i can see it thru the setting>general. also phone is overheating and spending battery fast. does any one has some answer on this or same issue? what to do did any has same issue? if i do an complete phone restore what will hapend ?

    You can call Verizon to replace it or go to an applestore to replace it since it won't even power on with multiple chargers.

  • How can we assign one attribute set to multiple business partners at a time ?

    How can we assign one attribute set to multiple business partners at a time ? Is it possible ? Can anyone explain me ?

    Hello,
    please refer to the following thread:
    How can we assign one Attribute Set to multiple Business Partners at a time? Is it possible?
    best regards,
    Johannes

  • Can separate apple ids be set up for individual family members that use different devices?  Several iPads are tied to one Apple ID (email address). Thank you.

    Can separate apple ids be set up for individual family members that use different devices (iPads & iPhones)?  Several family members are tied to one apple id (email address).  Thanks.

    How to use multiple iPods, iPads, or iPhones with one computer
    http://support.apple.com/kb/HT1495
    How to Share a Family iPad
    http://www.macworld.com/article/1163347/how_to_share_a_family_ipad.html
    Using iPhone, iPad, or iPod with multiple computers
    http://support.apple.com/kb/ht1202
    iOS & iCloud Tips: Sharing an Apple ID With Your Family
    http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/
    How To Best Use and Share Apple IDs across iPhones, iPads and iPods
    http://www.nerdsonsite.com/blog/2012/06/07/help-im-appleid-confused/
     Cheers, Tom

  • How can I set up a default (pre-recorded) voicemail greeting on iphone 4s?

    How can I set up a default (pre-recorded) voicemail greeting on iphone 4s?i dont want a custom one with my voice i want the pre-recorded where a lady says my number . how do i get that?

    Voicemail is a cell phone carrier function.  Contact your carrier to see if they have this option.  If not, i'm sure you can download a sound file from the internet with a greeting and add your name.  Then play it back on you PC while holding your iPhone near the speaker when recording the greeting to voicemail.

  • How can I change a song setting that is protected

    How can I change a song setting that is protected

    Dj-Rod wrote:
    How can I change a song setting that is protected
    If the song is indicating a "Kind" of "Protected AAC," that is not a setting.  It is an indication that the file contains Digital Rights Management (DRM).  DRM cannot be removed through normal conversion processes.

Maybe you are looking for

  • Error While Installing Itunes (Please help)

    Alright, just went on apple.com, installed the newest itunes, and downloaded the setup, started the installation, and it stops at one part that says stopping services. Now i have no clue what that means or what its doing, but after about 10 minutes i

  • Tracking Undelivered E-Mail using UTL_SMTP

    I am sending e-mail using UTL_SMTP. If there is any error in the e-mail delivery for e.g. say if the E-Mail bounced etc. then can i capture those events in my code? E-Mail can bounce back for any reason. for e.g. e-mail address is not valid. What all

  • Zen micro stuck in recovery mode

    Hi zen micro frozen in recovery mode and i downloaded new firmware on to my pc but it wont even open im at a loss at what to do any help much appriceated

  • Attribute QUEUE_NAME is initial Error

    Hallo, when I´m calling an BAPI over RFC and with QoS=EOIO then the following error occure: Result: <SAP:Error> <SAP:Category>XIServer</SAP:Category> <SAP:Code>INTERNAL.ATTRIBUTE_INITIAL</SAP:Code> <SAP:P1>QUEUE_NAME</SAP:P1> <SAP:Stack>Attribute QUE

  • Mac os X - ssh command

    I am trying to build a little applications and want to be able to use the unix shell to run ssh so i can run the ssh command and read and write to the connection. I tried to use the Runtime with the exec command but i get an error saying ssh is unkno