How to get started on Developer Server

Hi
Could you show me how to get started with developer server 6? How can I deploy an existing form to the web? Where can I read more information on this topic? Thank you.

hi,
It is avialble in the below URL:
http://technet.oracle.com/docs/products/developer/doc_index.htm
read it and try it
null

Similar Messages

  • How to get start to develop Oracle database applications with NetBeans?

    Dear Ladies and gentlemen,
    I am new to NetBeans. And I know nothing about Oracle. I have installed the
    NetBeans 6.8, and I want to learn Oracle database application development
    with NetBeans. I don't know how to get start. Give me some suggestions,
    please. Thank you very much.
    Best Regards
    Ma Xiaoguang

    Download Oracle Express Edition for educational purposes and start from there.
    Download at:
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    Documentation at:
    http://www.oracle.com/pls/xe102/homepage

  • Getting started in Developing extensions for Dreamweaver CC

    Hi,
    i'm looking for info on how to get started developing extensions for DW CC. Specifically:
    1. guides, tutorials
    2. API reference
    What i'm looking to be able to do is, among others:
    1. add elements for inserting into the "insert" panel/menu
    2. add panels.
    3. be able to drag elements from that panel into the design
    4. be able to identify tags in the web page as special tags. like how jquery UI tags are identified and have this little hovering label
    5. be able to develop specialized property views for special tags. like how jquery ui tags have special properties, once i pressed that little hovering label thing.
    One question that answering can really help - can say the guides for CS5 be a good starting point, and from there figure out what to do via the extendscript toolkit?
    of are there later guides that i can use?
    Regards,
    Gal.

    Hi Gal,
    I quote from an very old note in my library:
    True, the Adobe documentation on extensions creation is very slim, especially if you are looking at the latest releases. What I think you should do is to look back to the origins. First of all the SDK offers great examples (from 2003):
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1009962
    Also there are two great books: Dreamweaver MX Extensions by Laura Gutman and Building Dreamweaver 4 & UltraDev 4 Extensions by Tom Muck and Ray West. I believe you may read free chapters online in places such Safari library or Google books.
    The books are old, you have to understand and adapt for the new versions, but in essence everything stays the same.
    ... and here another Adobe link:
    http://help.adobe.com/en_US/dreamweaver/cs/extend/dreamweaver_cs5_extending.pdf (see page 2 "Creating an extension")
    On the other hand I'm sure you could ask well known, long-established developers. Some of them roam through our forum.
    Hans-Günter

  • Adobe Illustrator Help: tips for how to get started?

    I am new to adobe products. Does anyone have any tips for someone new who is just starting out
    with adobe illustrator? I have not used it before. Any beginner tips on how to get started with adobe
    illustrator would be appreciated. Thanks

    start by reading the documentation and follow the samples shown, get familiar with the user interface, get to know where the tools are and what they do...and the most important thing practice, practice, practice.
    other than that, there are plenty of resources online, depending on your learning style, buy a book, follow tutorials, watch videos, take a class.

  • How to export tables from development server to production server

    HI,
    Any body plz let me know how to export tables from development server to production server. what are the user names and password i need to ask my manager to do that. what are the requirements i need to ask him.
    Plz reply me ASAP.
    Thanks in advance.

    hi buddy
    first of all you should let us know the environment of production and development servers
    database versions
    and you need to have userid which has privilege to export tables of other schema. userid(owner) of the tables you want to export.
    Traditional way
    export tables in development server and then ftp to production and then import
    in the above case you should have similar database structure(tablespace etc) to avoid errors...
    if there are few tables only , you can use dblink instead of export and import...

  • Cloud and Pro features of Behance, how to get started?

    Hi,
    I want to find out more about http://www.adobe.com/products/creativecloud/behance-community.html
    How do I actually set this up, I can't find how to get started. I currently have a Muse website on BC.
    ~ Anita

    Anita1390,
    You will get Behance integration with the new CC which is not yet launched. This article will give you an idea about the steps you need to follow to get stated with Behance.
    http://helpx.adobe.com/creative-cloud/kb/publish-behance.html

  • How to get started on JavaCard 3.0 development?

    Hi,
    I wasn't able to attend JavaOne, but from what I understand, some lucky developers were able to write JavaCard 3.0 apps to compete in the contest that was held at JavaOne. So, how can I get started in JavaCard 3.0 app development? I can't find anywhere where I can download an SDK or buy compatible cards.
    Thanks,
    Bruce

    daddyhop wrote:
    I but I want to use the new features that in 3.0 that developers had access at JavaOne in order to participate in the contest. Where's the link for the stuff that folks had to play with at JavaOne?http://java.sun.com/javacard/contest/index.jsp
    http://java.sun.com/javacard/contest/download.jsp
    http://developer.gemalto.com/home/java-card-3/developer-contest/jc3bot-installation-instructions.html
    http://developer.gemalto.com/home/java-card-3/developer-contest/jc3bot-development-guide.html
    http://developer.gemalto.com/nc/forums.html
    http://javacard.vetilles.com/2008/05/08/writing-a-java-card-3-program/
    http://blogs.sun.com/javacard/entry/not_an_architecture_diagram

  • How to get started on java applet client/server game?

    Hi,
    I've googled, but didn't find any useful information about creating java applet client/server game. I've followed the example of Client/Server Tic-Tac-Toe Using a Multithreaded Server in Java How to Program from Deitel, but I when I tried on Applet, my cliet doesn't communicate with the server at all. Any help to get started with Applet would be great. Thanks!

    well, i decided to put in portion of my codes to see if anyone can help me out. the problem I have here is the function excute() never gets called. here is my coding, see if you can help. Notice, I'm running this on Applet thru html page. This shouldn't be much different than running JFrame in term of coding right?
    Server.java
        public void init()
            runGame = Executors.newFixedThreadPool(2);
            gameLock = new ReentrantLock();
            otherPlayerConnected = gameLock.newCondition();
            otherPlayerTurn = gameLock.newCondition();
            players = new Player[2];
            currentPlayer = Player1;
            try
                server = new ServerSocket(12345, 2);
            catch (IOException ie)
                stop();
            message = "Server awaiting connections";
        public void execute()
           JOptionPane.showMessageDialog(null, "I'm about to execute!", "Testing", JOptionPane.PLAIN_MESSAGE);
            for(int i = 0; i < players.length; i++)
                try
                    players[i] = new Player(server.accept(), i);
                    runGame.execute(players);
    catch (IOException ie)
    stop();
    gameLock.lock();
    try
    players[Player1].setSuspended(false);
    otherPlayerConnected.signal();
    finally
    gameLock.unlock();
    Client.java
        public void init()
            startClient();
        public void startClient()
            try
                connection = new Socket(InetAddress.getByName(TienLenHost), 12345);
                input = new Scanner(connection.getInputStream());
                output = new Formatter(connection.getOutputStream());
            catch (IOException ie)
                stop();
            ExecutorService worker = Executors.newFixedThreadPool(1);
            worker.execute(this);
        }So after worker.execute(this), it should go to Server.java and run the function execute() right? But in my case, it doesn't. If you know how to fix this, please let me know. Thanks!

  • General questions on how to get started with Oracle OEPE and databases

    My company has a server in the cloud, written using Ruby on Rails. The server is designed to work with a browser, so it communicates via standard HTTP.
    The server has an SQL database.
    The server sends and receives HTTP requests from clients, which are then used to either update the database or retrieve information from the database.
    The database can be edited from a separate admin dashboard.
    I have recently rewritten our client software as a native android app. The new app makes calls to the server that look like browser calls. I have used Eclipse to develop the Android app.
    Sounds pretty standard so far, right? :-)
    I now want to replace the Ruby on Rails server with a new Java server that I will write. I want to use Eclipse to develop the new server. During development, I want to be able to have the new Android app communicate with the development server software that will reside on my desktop.
    So I was thinking that Oracle's tools might be perfect for me, if only I knew which tools to use. There are lot to choose from. :-)
    I believe that all I need is OEPE and a database. I would like to keep it pretty simple. I don't want to learn 20 new tools. It will be enough effort to become proficient in OEPE and a database.
    I looked at "Oracle Database Tools >> Connecting to an Oracle database" in the help files for OEPE 12.1.1. I tried going through the help files for Database connections, but I got to a "New Connection Profile" form that asks me for a SID, a user name, a password, etc. I don't have any of those. I tried to enter some data in the forms and ping the database, but I could not get any results from the ping. So my first question is: Do I have to sign up for an Oracle database in the cloud or is there a database contained within the OEPE software that I just installed. I will have to do the former anyway when I eventually deploy my new server software, so maybe the right thing to do is sign up for the "database in the cloud" service now, and use it during development.
    The other question I have is about getting a simple application client and server application sample. I found a "hello world" example at http://docs.oracle.com/cd/E13224_01/wlw/docs103/guide/webapplications/workshopJSP/tutorialJSP/TutorialJSPMakeJSP.html, but that is for WLS 10.3 and it doesn't seem to match the 12.1.1 software very well.
    So does anybody know where I can find a simple client and server sample program for WLS 12.1.1?
    If I can get these two questions answered, I can start making some progress.
    Thanks in advance to anybody who can help me navigate this minefield.
    Jim

    I wanted to add some information to my previous posting.
    1. The server I will develop will communicate ONLY with Android and iOS native apps, so the interface will not be HTML or XML. The information sent by the server to the client will be JSON. The information sent by the client to the server will be HTTP parameters, usually in the form of URL-encoded form data. This is not a browser-to-server server interface, so JSP is probably not appropriate for the server. The communication protocol will be HTTP.
    2. I don't need anything fancy on the server side. The server will simply be a Java program that emits JSON responses to the client and receives URL-encoded form data from the client. The server program will also make database queries and update the database.
    3. I don't understand how my native Android app will be able to communicate with my development server code running on my desktop. I want that communication to be over the internet, but my desktop does not have a static IP address, so I don't see how the app will be able to address the development server software on my desktop PC. I don't want to deploy the server software into the cloud every time I start a debug run, but I don't see any other way for my app to be able to address the server code over the Internet.
    If anybody has any ideas, I would appreciate hearing them.

  • How to get started with playing a video file using Java on JSF page ?

    Hi ,
    I am developing a JSF (Java Server Faces) page.
    I need to develop following functionalities
    1). play video file on web page
    2). Let the user load video file into the system from a web page and that can stored in a database .
    Please guide me on how to do the above or where to get started .
    Thanks,

    hello brother
    I am also doing work on it.....but don't reach at any result plz help me if you have something
    [email protected]

  • General questions to get started with virtualization server cluster.

    Hello all, this is my first time posting here in the tech net forums. I am a software development student and have been spending most of my time lately in Linux.  First I would like to apologize if I am at all not complying with the forum ethics or
    protocol based on the fact that I am rushing to get this post in and wasn't able to do as much reading as I would normally like before posting. If my questions seem to be to noobish feel free to just tell me so.  That being said, I would appreciate some
    help. My systems have been down now for the better part of a month with trying to figure out, not how to configure the system I want, but rather to find a system to configure and be able to stick with it without running into issues that make me start researching
    a whole new system.
    So for a quick explanation of what I am trying to accomplish:
    I am looking to utilize the equipment I have, and put together a small virtual machine host.  The last few weeks I was working on building a Proxmox cluster which overall seemed to be pretty close to what I want, however the compatibility just isn't
    there yet in my eyes for a home use server.  I am trying to take basically the 5 or 6 PCs that I have already built, and configure them into a cluster that will be able to hopefully utilize as much system resource as possible.  From what I have learned
    in recent, this is referred to as a Beowulf cluster, or just a virtualization cluster.  So ideally I want to combine the 5-6 processors to form one "super computer" that will serve as nothing but a virtual machine host.  I am sorry if I
    am using the wrong terms for any of this but like I said, I am just trying to figure it all out still.  What is the best Microsoft OS to use to do this?  I am currently looking at either Server 2012 R2, but I have also looked briefly into Systems
    Center 2012 R2 and really like the look of this.  This is just for my personal use.  The reason I am looking to do this is that I currently use many different OSs and have many different tasks that require different configurations.  The bulk
    of the work I am doing, coding, 3D rendering, video editing, a lot of Autodesk and Adobe work.  Then of course I would like to be able to do some gaming still but haven't even begun to research to feasibility of gaming on a VM because of course my main
    priority is the work.  So is there a way that I can pull this off?  I am planning to start purchasing some server racks, like a 9 or 12U wall mount rack that I was planning on putting about 4 or 5 2U atx cases in.  Right now in my small office
    I have 5 fully built atx towers and then multiple laptops and tablets and chrome books and bla blah!  It is just too much so I am looking for a way to consolidate.  Also, regarding the 3D rendering, if there is a way to utilize multiple processors
    at once in this same config, that would be great.  I have again done some research on "render farms" which sounds similar to a Beowulf but I just need to focus in an area that I can research more thoroughly because right now I just keep jumping
    around every time I think I have found a better solution.  Please help!  Thank you very much to anyone who takes the time to help me with this task.  It is very much appreciated!

    Hello bda714,
    As I understand very little about this big computing themes I only could provide you with this interesting links:
    I think you are looking for something like this Windows High Performance Computing (HPC) regarding the OS to be used:
    Getting Started Guide for Microsoft HPC Pack 2012 R2 and HPC Pack 2012
    https://msdn.microsoft.com/en-us/library/jj884144.aspx
    Microsoft HPC Pack 2012 R2 and HPC Pack 2012
    https://technet.microsoft.com/en-us/library/jj899572.aspx
    And I could think that maybe you could find more help on this blog:
    The Microsoft HPC & Azure Batch Team 
    http://blogs.technet.com/b/windowshpc/
    Hope this info help you to reach your goal. :D
    5ALU2 !

  • New to JBOSS / JMS ! How to get started ?

    Hi,
    I'm a J2EE programmer.
    I have used JBoss as well as JMS (before long time with WebLogic), and need to know how JMS works in JBOSS, how to setup queues, monitor them (perhaps using JBOSSMQ and Active MQ), etc. I use Eclipse Europa.
    To get started and understand some existing code that uses this already, what would be a quick way. As running down with POC deadlines.
    I would appriciate if any one can provide sample application and configuration details to start with.
    Regards,
    Maulik

    Hi
    I would also like to add,
    - I aware that all the configuration files are available under deploy/jms folder.
    - jbossMQ-service.xml and uil2-service.xml files have great role to do while creating queues and creating ConnectionFactory, respectively.
    But I am not able to relate all the things and not able to start with a small example, even I am not able to define QueueConnectionFactory.
    I am getting error like,
    Exception in thread "main" javax.naming.CommunicationException [Root exception is java.lang.ClassNotFoundException: org.jboss.jms.client.JBossConnectionFactory (no security manager: RMI class loader disabled)]
    at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:728)
    at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at SendRecvClient.setupPTP(SendRecvClient.java:61)
    at SendRecvClient.sendRecvAsync(SendRecvClient.java:76)
    at SendRecvClient.main(SendRecvClient.java:107)
    Caused by: java.lang.ClassNotFoundException: org.jboss.jms.client.JBossConnectionFactory (no security manager: RMI class loader disabled)
    at sun.rmi.server.LoaderHandler.loadClass(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadClass(Unknown Source)
    at java.rmi.server.RMIClassLoader$2.loadClass(Unknown Source)
    at java.rmi.server.RMIClassLoader.loadClass(Unknown Source)
    at sun.rmi.server.MarshalInputStream.resolveClass(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    at java.rmi.MarshalledObject.get(Unknown Source)
    at org.jnp.interfaces.MarshalledValuePair.get(MarshalledValuePair.java:72)
    at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:652)
    ... 5 more
    So Any startup small application along with configuration details is highly appriciated.
    Regards,
    Maulik

  • How to get alert for app server that experienced high memory and CPU utiliz

    Hi
    How to get  alerts configured and turned u201Conu201D for the  app server that experienced high memory and CPU utilization?
    And let me know where we can check this?
    Regards,
    Neni

    hi,
    Have you configured a Central Monitoring System (CEN)? This includes registering the agent on the CEN, starting it and configuring the Central Auto Reactions on CEN using RZ21 transaction.
    [http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/05c80724d63836e10000000a42189b/frameset.htm|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/05c80724d63836e10000000a42189b/frameset.htm]
    Jansi

  • Got a Problem? How to Get Started

    Getting started on fixing your problem:
    Working with video editing on an NLE (Non Linear Editor) program can tax the most robust computers. Depending on many factors, this can be a daunting task, at best. Many of the components of one’s computer can be stressed, more than with almost any other operation, that it will ever perform.
    Getting help on the forum can seem almost as daunting, as the first thing that a poster is likely to encounter is a list of questions, before any answers. This is the natural flow, because people are trying to help remotely. They cannot come to your office and sit behind you to determine your computer system’s capabilities, and observe just what you are doing, when and how you are doing it. Do not be put off by these questions, as they are very necessary and will very likely give the respondents some clues on where to look for your problem.
    Problems can normally be broken down into these categories:
    1.) System
    2.) Assets (the Audio, Video and still images)
    3.) Project (how it is setup and with which Preset)
    4.) Workflow (what you are doing, and how you are doing it)
    If you prepare a checklist, before you post your problem, it will save everyone a great deal of time, and will likely yield your answer much more quickly. The more detail that you furnish, the fewer questions will remain, that have to be asked. Remember, you have to be the "eyes" for the others on the forum, if they are expected to help you. They could be thousands of mile away, in other time zones, and will not know about your system, your Assets, your Project or your workflow, until you tell them. Help them get started quickly, by telling them in your first post. Do your "homework," so they do not have to ask questions for the first five responses, and can start giving you answers much more quickly.
    System:
    Be very specific about your computer. Just saying that "I have a Dell" doesn’t tell them much of anything. List your CPU type and speed, i.e. Core2 Quad Q6700 2.3GHz. Same for your RAM, i.e. 4GB of DDS. Also, list your Video Card, type, connection and driver number and date. Same for your Audio System. Note: most of this data can be found in Control Panel>System>Hardware>Device Manager. Pointing people to a URL on your computer company’s Web site isn’t a bad idea, but giving the exact details of your system is far, far better. It is likely that that Web site will have the general configuration, and who knows if that is exactly what you bought. List it for them, so they do not have to go and guess, and write down the specs. of your system.
    One of the most important aspects of your system will be the I/O sub-system. What is that, you might ask? Well, it’s your HDD’s (Hard Disk Drives). The important info is how many physical HDD’s do you have. List their size, their speed, their connection, the amount of free, defragmented space and how they are allocated. This would look something like this: "3x 200GB SATA II. Drive C:\ OS, programs and Windows Virtual Memory with 185GB free, D:\ media with 120GB free, E:\ Project files, output and Scratch Disks with 150GB free." If you have any drive partitioned (not a good thing nowadays), let everyone know and give details. If you have a RAID, give full details on how it is managed, the type and how it is used in your system. [As an aside, most RAID’s should not really be considered for a system drive, unless one has built in redundancy in the RAID, i.e. 3, or more, physical disks. Remember, this info can be critical. If you have CD/DVD burners, list them and their connections. If you have external HDD’s, list them with the same details as for your internal HDD’s.
    Next, tell about your Windows Virtual Memory (Page File). How large is it, where is it located on your system and how is it managed, i.e. dynamically by Windows, or static? Again, this can be critical. For info, you will need to go to Control Panel>System>Advanced>Performance and look. In the Settings>Advanced, you should see things like Process Scheduling, Memory Usage and Virtual Memory. This is where you will find the answers. Note: depending on which OS one has, the exact location and syntax may differ.
    While we’re on the OS, list the exact OS that you have, i.e. Vista Ultimate 64-bit SP-2 with all updates and hot-fixes.
    What version of the NLE are you using and has it been updated, i.e. PE3.0.2.
    Finally, list any other programs, that might be in use, while you are editing, such as MSN Messaging, etc. These can be critical, even though you are basically editing video.
    Assets:
    Give full details on your Assets. Just saying "a bunch of .AVI’s" tells people nothing. Be very specific with the details. See this ARTICLE on what info to give, and how to obtain it. Same for your Audio and for your still images. Size in pixels, file type, etc., are very important for the stills, and file type. Sample-rate and sample size are important for the Audio.
    Project:
    How is your Project setup? Which Preset did you use? What is the Duration of your Timeline. This gives someone the "lay of the land," so to speak and is very important. Note: your Project Preset should match your Video Assets. You can always Export/Share to some other frame size, or format, but your Project should match your Video Assets.
    Workflow:
    How have you arranged your Assets on the Timeline allows someone to "see" your Project in their mind. Information such as one 00;10;00;00 AVI (remember, you will have furnished complete details on those AVI’s, or MPEG’s when you listed your Assets above) on Video Track 1 (VT1) with its Audio on Audio Track 1 (AT1). One AVI used as a PiP (Picture in Picture) on VT2 with its Audio on AT2. One MP3 soundtrack for the full Duration on Soundtrack and my Narration on the Narration Track. List any Transitions, or Effects used. If you have Titles, list them. If you have any Keyframing used, list where and what they control.
    List exactly what you are doing and to which Asset you are doing it, when your problem occurs. If you are doing something like Export/Share, list the full settings (Presets) used, and be sure to mention any other tasks being performed by your computer, while you are doing the Export/Share.
    If you have already done some trouble shooting, list what you have done and the complete results. Were there any error messages? If so, give the full description. To say, "I had error messages," tells people nothing. What exactly did they say?
    This information will help people get right to your problem and will get you up and running much more quickly.
    As an aside, think about the title of your post. Saying "Problem" is not good enough. Instead, something like "PE7 Fails on Share to MPEG-2" would be better. First, you are trying to let everyone know something about your Problem, so they will see it, and be interested in helping you. If you are having an Audio issue, mention "Audio" in the title, so the right people will find your post. Not everyone knows everything about all aspects of Video. You want the right people to see your post and to be working with you, to fix your problem. Also, later on, it is good to have a title that will be easily found by others, who may have the same exact problem. If you get an answer that works, please post back that success, so others, finding your post, will know what worked, and what did not. Note: do not put your entire post into the title. That is just tough to read and understand. Use a few words, but make them the right words.
    Other useful links:
    Get Help Quickly
    FAQ's
    System Crashes
    PE Help
    Forum Etiquette
    Help others to better help you.
    Hunt

    Hi Bill, Ho
    w or more like where do I post a question.  I can go to a forum page wher
    e there are questions but there is no place to ost a question.
    If you could clear up this I would greatly appreciate it.  I've been looking for 2 hours.
    Thank you!
    Cindy

  • How to get start and end time of an ESB instance in SOA 10.1.3.4

    Hi All,
    I am using soa 10.1.3.4 and want to track the esb instance start and end time. (For example, in case of bpel we can query the cube instance table to get creation and modify time of an instance. )
    How to get that in esb?
    Thank you.
    Regards,
    Satish

    Hi Satish
    You may enable instance tracking option on the ESB Console and track the instances audit information and also from the logs(log.xml) when ESB loggers are set to DEBUG mode.
    Regards
    A

Maybe you are looking for

  • After reset can't use as iPod without sim

    I upgraded to a 3g iPhone a while ago and have been using my original iPhone as an iPod without a sim card. I was planning to lend my old iPhone to a friend and thought that I would reset it before giving it to him - so I "reset all data" , which too

  • Home Thin Network - What do I need?

    I want to set up a Home Thin Server \ Client network. I have a pretty decent system that I want to use as my thin server... I will have it connected to my living room TV so thoughts of a media center may come to fruition later when I get a BlueRay pl

  • Actions In Transaction

    Hi . I created transaction QA and asign a action profile to it. i defined action profile as zcrmquot. i given action defination are as lob,sp,fin,pc Processing type as : when saving the document. processing medium is  : smart forms i created a quotai

  • Datasource of existing form

    Hi, My company is using a application that includes pdf Forms. They are run from an Active Server Page button object. I can trace the button backto a script (basically a query) and the pdf forms link to the fieldnames in the query. So far so good. I

  • Provider-specific properties

    Hi Experts, What is the effect on authorization if value is set in  provider-specific properties screen? For example, I set a constant value to the dimension element. Regards YHogan