Dynamic profile is it possible

Hi All,
I need to create a profile depending on the first profile option.Is it possible?(Ex. if first profile has the value Gregorian then 2nd profile should have the value day,month if first one has the value 445 then 2nd one should have the value day,week).Its very urgent.
Thanks in advance,
Amrit

Hi amrit;
Please check below notes and their references and see its helpful:
How is 'Dynamic Hierarchy Id' profile attribute populated? [ID 490034.1]
How does the "Dynamic" calculation work with the profile option GMF_Cost_Alloc_Calc [ID 437188.1]
PERF - Using Dynamic Security Profile Causing Performance Issues in Self Service Application [ID 364457.1]
Personalization Rules [ID 528332.1]
Problems Using Dynamic Custom Security Within Security Profile. [ID 468364.1]
Regard
Helios

Similar Messages

  • Setting dynamic profile values in R3.0

    Hi
    Using the SDK can we set up profile values dynamically for use with Bursting. Currently it seems I have to define the profile values manually for each user and group or can use only the username, email or fullname for dynamic purposes.
    What i want to do is have a table, report or file which has a listing like
    user1   USA   blankets
    user2   USA   pillows
    user1   CAN   pillows
    user1   IND     shirts
    using this I want to setup a dynamic profile such that user1 = SELECT country FROM table WHERE uname = '%SI%TITLE%'
    or any similar mechanism....
    thanks for your help!
    Asim

    Profiles are fairly static things, so I don't think altering them via the SDK would be amenable to dynamically changing profile values or targets on-the-fly.
    Sincerely,
    Ted Ueda

  • Changing dynamic profile-parameters in batch

    Hello,
    want to change dynamic profile parameters (rdisp/btctime) in batch.
    I know that i can change this in Transaction RZ11 - but i must change it, depending on our
    batchstrategy in the night.
    best way for me - is to change it via batchprogram - with variant 'parameter' - 'value'.
    thank you for help
    best regards
    L.Misof
    R&S

    Hi,
    why don't you use the operation modes for increasing batch work processes in night ?
    Thanks
    Sunny

  • Dynamic profile parameters

    Hi
    I would like to get all the list of dynamic profile parameters at R/3 level.
    Could anyone please let me know if there is any OSS note availabe which lists out all the dynamic parameters? I tried but,couldn`t find the related ones.
    Is there any way to find out from R/3 level?
    regards,
    Vinodh.

    Dear Vinod,
    There is a table called TPFYPROPTY which lists you all the dynamically switchable parameters identified by dynamic indicator. you can view this table using transaction se16.
    you can also get into Rz11 and check the dynamically switchable check box value for that corresponding parameter.
    Reward points if useful.
    Sree

  • Dynamic profiling not working

    Hi, we've got installed AM+DS, and configured a subrealm with an external DS extended with AM schema, and dynamic profiling activated.
    The fact is when we manually create a user on the subrealm thru AM console, it is created on the AM DS and also on the external DS, perfectly synchronized, and allowing users to access to their full user profile correctly.
    But when the user is created only on the external DS, when a user logins it does not create automatically any user on the AM DS (it is supposed to be created, as dynamic profiling is activated). This causes users can login, but can't access their full user profile.
    We want the users access to their user profile after login. We want administrators create users on the external DS, and not thru AM.
    Any ideas?
    JM

    Unfortunately the implicit type conversion is going the other way.
    SQL> CREATE TABLE testtab (id VARCHAR2(10));
    Table created.
    SQL> INSERT ALL
      2  INTO testtab VALUES ('1')
      3  INTO testtab VALUES ('banana')
      4  SELECT * FROM dual;
    2 rows created.
    SQL> SELECT * FROM testtab WHERE id = '1';
    ID
    1
    1 row selected.
    SQL> SELECT * FROM testtab WHERE id = 1;
    ERROR:
    ORA-01722: invalid number
    no rows selected
    SQL> @xplan
    Plan hash value: 2692415588
    | Id  | Operation         | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |         |     1 |     7 |     3   (0)| 00:00:01 |
    |*  1 |  TABLE ACCESS FULL| TESTTAB |     1 |     7 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(TO_NUMBER("ID")=1)

  • Is a dynamic codebase without JnlpDownloadServlet possible?

    Is it possible to have a dynamic codebase without deploying a servlet?
    Seems reasonable to me. The cache should always know where the original source for the jnlp file ....
    <jnlp spec="1.0+" codebase="codebase of original source this file" >
    </jnlp>
    I am attempting to minimize server side code and was thinking this was possible because of this statement made here : https://jdk6.dev.java.net/testProperty.html
    "In 6u10-b13, we introduce new Java system properties to support the usage of version download and Pack200 without any server side requirements."
    It seems to me that without some mechanism for dynamic codebase the new properties jnlp.packEnabled and jnlp.versionEnabled are kind of pointless since server side code will still be required in most situations. Statically coding the codebase attribute for every deployment is not a viable solution for me.

    Thanks for responding Andy.
    I was thinking that if the run-options of javaws would support the -codebase option (as with the import option), and the browser were to launch with that flag, then it could override the codebase in the jnlp file. Maybe too many moving parts there? ........
    I've been working with the -import and -codebase options in attempt to minimize the server side servlet requirement.
    Basically my thought is :
    Have the jnlp file on server with no codebase attribute.
    Use a signed applet to bring the jnlp file down from the server and write it to local disk (somewhere temporary) adding the codebase attribute along the way. Then launch the javaws with -codebase and -import flags to install the application.
    So far it seems to be working but it's been a bit of a struggle. Viewing the cached jnlp file I see that it has the codebase attribute correct and the application does launch.
    I am wondering if I update the jnlp file on the server, will the codebase in the cached file still be used? or will I need to force another -import?

  • Oracle PL/SQL Web service - dynamic parameters... possible?

    Oracle 11.2.0.3 - newbie on web services!
    Currently we have a pl/sql web service taking in 2 static parameters and returning a varchar2 response.
    I was asked today if it's possible for a web service to take in a dynamic set of parameters and return a corresponding set of results. It's as if I need to pass the web service a table with two columns and return a table of one column.
    For example:
                        Input                          Output
              1 2                             3
              3 4                             7
              5 6                            11output being in XML of course. It is possible?
    p.s. I posted this in OC4J also - no response hence the re-post !

    Parameters relate to procedures. Web Services require XML messages.
    Where are the parameters coming from? You cannot pass a dynamic number of parameters into a procedure, but you can pass a structured type as a parameter which can contain multiple values, whether that is an array/collection type or an XML document itself.
    Just package up the values into the XML and pass it to the web service.
    If this doesn't answer your question, please post more information, with some example data and code. Read the FAQ: {message:id=9360002}

  • Multiple Action Box Conifgurations in one CIC Profile -  is it  possible ??

    Hy,
    We work with different action box configurations as they differ for each business unit. Still the configurations have a common base some general over all settings.
    If I make a change on one of the general settings I have to work through all the action box configurations and change it manually. I wonder if there is no other solution.
    I've tried to find a way to set up a general configuration with the general over all settings and a configuration only providing the specific need of each business unit but there seams to be no possibility to include two or more action box configurations into one CIC-Profile.
    Has anyone of you already dealt with this problem?
    Maybe I missed a hint in the documentation?
    Any ideas, suggestions, help?

    Hi
    check the linkbelwow to know in detail about action box configuration 
    http://help.sap.com/saphelp_crm40/helpdata/en/e9/d1cb58c5f111d2b8e6006008ec2322/frameset.htm
    http://help.sap.com/saphelp_crm40/helpdata/en/ff/7f5a9bb64711d2b8d6006008ec2322/content.htm
    http://help.sap.com/saphelp_crm40/helpdata/en/cd/a362f84f1a11d586cd00008658acb2/frameset.htm
    Reward points if helpful
    Dinaker vikas

  • Firefox problems, wants to load a profile, recording not possible

    When I want to record a test using Firefox, the first step is loading profiles, althoght there is only one single profile available.
    I confirm it but it is not possible to record the test.
    Why not?
    It is supposed to work with Firefox actually.
    Now I really just wonder if there is worse tool than this available......
    I guess not!

    Your contribution unfortunately does not provide any details about firefox version, plugins and extensions used, the OS you are running etc. So I am playing by the ear and because you mention "playing a web page game" I suggest you check your plugins. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • Building XML dynamically? Is it possible.

    How do I build an XML Document dynamically.?
    I am wrting MIDP Applications (applications for the Mobile
    device) and I am required to send requests to the server
    in XML Formats.I have multiple requests to be sent to the
    server in XML and then I receive XML responses from the server
    which i need to parse.
    Now,if I store all the required requests in a Class,that are needed to be sent to the server,I am taking a lot of space of the cell phone.
    How can I create an XML string dynamically that is sent to the
    server as and when required.
    Please can any one respond?
    AJAY
    ajay [email protected]

    Hi there,
    So is it possible for me to create an XM file on the fly.?
    For example: I need to send an xml file to the server
    For this I have a class called RequestHandler having a method called
    sendRequest1(),sendRequest2(),sendRequest3() etc etc
    public class Request{
    public void sendRequest()
    String req1 = "<xml.........>
    public void sendRequest2()
    req2 = "<xml......>";
    public void sendRequest3()
    req3 = "<xml...>";
    This way I have a lot of xml file format in each method.
    Please explain as to how I can create the XML file required
    to be sent for each request to the server on the fly.
    Storing this class with all the XML file formats takes up a lot
    of space on the MIDP device...
    Thanks for yr response.
    Ajay

  • AnyConnect SMC - Manual profile creation not possible?

    Hey all,
    is there any possiblity to create profiles manually (like in the old cisco vpn client)?
    Thanks in advance for your answers.
    Best regrads,
    Chris

    Hey Marcin,
    thank you very much for your answer.
    Unfortunately you're right: The profile editor tool seems outdated
    Best regards,
    Chris

  • H.264 High Profile 5.1 possible?

    Hi
    Do you think it will anytime be possible to play h.264 in high profile 5.1 on AppleTV?
    Dive

    .mov works...
    try this file... Dolby Digital 5.1 in a .mov container. VisualHub will supposedly be adding this ability to there outputs...
    http://uploaded.to/?id=yqshmu

  • Superscripting in dynamic text: is it possible?

    I'm hoping this is a quick fix! I need to dynamically load a
    string containing an expression with superscripted numbers. Can i
    do this?

    I guess I should have checked the knowledge base first. I
    will use static text as superscripting is not yet available in
    dynamic text.

  • Is Dynamic Class Loading(RMI) Possible in EJB?

    In Java RMI,it allows dynamic class loading,that is when the stub and interface class files are modified by the server,the client side can download the updated stub and inteface classes.
    As the remote interface of EJB extends Javax.ejb.EJBObject which in turn extends java.rmi.remote.Also the Home interface of EJB extends
    javax.ejb.EJBHome which also extends java.rmi.remote.
    Therefore I wonder if EJB also supports dynamic class
    loading as RMI does.If yes,how to do so?Is it the responsibility of the Application Servers and transparent
    to client? If No,then is this a defect in EJB??
    Thank you very much in advance!!
    John

    This would be done by the container and is transparent to the client. Most app servers support "hot deploy" where you can deploy beans while the server is running. This requires dynamic class loading.

  • Dynamic Profile Creation

    Is there a way to create a profile with a subset of the user's name?
    I have SecurID authenication module active in my Portal 6 environment. When a new user logs in (username format jdoe12345) an LDAP entry gets created as uid=jdoe12345,ou=People,o=isp
    I want a subset for the username to be created-- not the whole name.
    I want it to just be uid=12345,ou=People,o=isp
    Could this be done.

    Sounds interesting :-)
    I would try to create a custom auth module,
    which intercepts userid token from SecureID
    auth module and removes the prefix from uid.
    Cheers,
    Alex :-)

Maybe you are looking for

  • Adobe, please fix these bugs/features in Muse

    So, here are a couple of really annoying things/bugs that keep happening in Muse. (I've been working with the software for about three weeks, latest Muse CC update, on a MBP Retina, OS X 10.9.5, NVIDIA GeForce GT 650M 1024 MB + 16 GB 1600 MHz DDR3) 1

  • Do I need a wireless card to use a router with my iMac or does the built in

    I am having ComCast install a router at my home and they tell me I'll need a wireless card. I shouldn't need one with Airport Extreme installed should I?

  • Problem with downloading a Pages document to my devices

    I have a problem using a document stored in iCloud. I created a document with Pages on my iPad 2 and it was directly uploaded to icloud.com. I edited it a few times and the upload always worked with no problems. After editing another document, I went

  • Need help on adobe forms

    Hi, I wanted to learn Adobe forms. What is ADS?? How I can do the configuration for this or what are the necessary thing for this so that I can start the devlopment for adobe forms??

  • Use of swings- one class calling the gui class

    Hi, I have a class Manager and a class ManagerGUI. My ManagerGUI class looks somehting like this- public class ManagerGUI extends JFrame String name; JPanel namePanel; JTextField nameInput; JLabel nameLabel; Manager empAgent; ManagerGUI(Manager ea) s