Apex - Audit Trail With External Database

I'm currently trying to setup a primitive audit trail that allows me to record create data, create user, update date, update user. I currently have 3/4 however I can't get the username into database as V('APP_USER') is within Apex and the database is in Oracle 10G elsewhere.
Any suggestions or alternative ideas?

f1f7a787-7f56-4451-8300-5a9a0215226b
So v() and apex_application.g_user are unavailable in the trigger code on the external database.
But procedures and package variables from the external database are available on the database running APEX.
What I would do is create a package with a package variable that will hold the apex user. ( in the external database)
Then in application definition > Database session> initialization PL/SQL code set this package variable to the apex user.
Clear the package variable again in the cleanup code.
Using a package variable will mean that the value is aviable during the whole database session but not outside of is.
In apex every page load or submit and following page load is a database session.
Now the package variable will be set when it is a apex user and null when it is a database user.
Using a nvl round the package variable with user as alternative will give the apex user when the action was done by a apex user and the database user when not.
Nicolette
Ps changing your handle or at the very least signing your post will result in a more friendly greeting.

Similar Messages

  • Audit Vault 12.1.1 error creating audit trail with TRANSACTION LOG

    Hi,
    i installed AV 12.1.1 , the DB target is with Data Guard.
    when i run the script oracle_user_setup with the mode REDO_COLL the final message is that was succesfull , but when i go to the AV console and try to create an audit trail with TRANSACTION LOG the AV console shows me an error and the log shows me this :
    [2013-10-16T03:37:18.593-05:00] [collfwk] [ERROR] [] [] [tid: 10] [ecid: 192.168.56.8:78800:1381912639433:0,0] RedoCollector : runSourceScript : Error while running script on source for REDO collector.
    [2013-10-16T03:37:19.528-05:00] [collfwk] [ERROR] [] [] [tid: 10] [ecid: 192.168.56.8:78800:1381912639433:0,0] OAV-8004: Failed to start collector {0}:{1}CollectionFactory : createCollection : Exception while creating collection. [[
    Failed to start collector {0}:{1}
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.runSourceScript(RedoCollector.java:816)
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.sourceSetup(RedoCollector.java:579)
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.setup(RedoCollector.java:454)
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.startCollector(RedoCollector.java:216)
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollectorManager.startTrail(RedoCollectorManager.java:199)
                    at oracle.av.platform.agent.collfwk.impl.factory.CollectionFactory.createCollection(CollectionFactory.java:504)
                    at oracle.av.platform.agent.collfwk.impl.factory.CollectionFactory.createCollection(CollectionFactory.java:354)
                    at oracle.av.platform.agent.StartTrailCommandHandler.processMessage(StartTrailCommandHandler.java:63)
                    at oracle.av.platform.agent.AgentController.processMessage(AgentController.java:325)
                    at oracle.av.platform.agent.AgentController$MessageListenerThread.run(AgentController.java:1859)
                    at java.lang.Thread.run(Thread.java:679)
    Nested Exception:
    java.sql.SQLSyntaxErrorException: ORA-01031: insufficient privileges
    ORA-06512: at line 1
                    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:445)
                    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
                    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:879)
                    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:450)
                    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:192)
                    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
                    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
                    at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1044)
                    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1329)
                    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3584)
                    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3685)
                    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1376)
                    at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
                    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
                    at java.lang.reflect.Method.invoke(Method.java:616)
                    at oracle.ucp.jdbc.proxy.StatementProxyFactory.invoke(StatementProxyFactory.java:230)
                    at oracle.ucp.jdbc.proxy.PreparedStatementProxyFactory.invoke(PreparedStatementProxyFactory.java:124)
                    at $Proxy2.execute(Unknown Source)
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.runSourceScript(RedoCollector.java:747)
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.sourceSetup(RedoCollector.java:579)
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.setup(RedoCollector.java:454)
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.startCollector(RedoCollector.java:216)
                    at oracle.av.platform.agent.collfwk.impl.redo.RedoCollectorManager.startTrail(RedoCollectorManager.java:199)
                    at oracle.av.platform.agent.collfwk.impl.factory.CollectionFactory.createCollection(CollectionFactory.java:504)
                    at oracle.av.platform.agent.collfwk.impl.factory.CollectionFactory.createCollection(CollectionFactory.java:354)
                    at oracle.av.platform.agent.StartTrailCommandHandler.processMessage(StartTrailCommandHandler.java:63)
                    at oracle.av.platform.agent.AgentController.processMessage(AgentController.java:325)
                    at oracle.av.platform.agent.AgentController$MessageListenerThread.run(AgentController.java:1859)
                    at java.lang.Thread.run(Thread.java:679)
    i don't understand why the issue because the user has the privileges given by the script and i tried with grant as sysdba but without any result
    i don't understand what are the privileges that the collector needs.
    any idea?
    thnks for any help

    Hi
    Just run the script $AV_AGENT/av/plugins/com.oracle.av.plugin.oracle/config/oracle_user_setup.sql  USER_NAME REDO_COLL
    This will grant the user some privileges and roles like DBA and CREATE Database Link
    I hope this answer your question
    Thanks
    Ahmed Moustafa

  • OAV-9016 - Audit Vault 12.1.1 error creating audit trail with TRANSACTION LOG

    Hey guys,
    I bumped into this problem when trying to start an audit trail with TRANSACTION LOG.
    Oracle Audit Vault and Database Firewall 12.1.1.1
    Oracle 11gR2 RAC two nodes, OEL x64.
    Connection String:
    jdbc:oracle:thin:@//192.168.1.139:1521/orcl
    I have already ran the sql setup for a REDO_COLL user.
    Any ideas?
    I have created secure target for each node.
    (host01)(oracle@orcl1):log> pwd
    /u01/app/oracle/agent/av/log
    (host01)(oracle@orcl1):log> cat av.collfwk-8311-0.log
    [2013-12-12T17:16:49.855-02:00] [collfwk] [ERROR] [] [] [tid: 22] [ecid: 192.168.1.109:27132:1386867392018:0,0] OAV-9016: Target database global_name is not correct. global_name must include the domain for transaction log collection. Please configure the target database with the correct global_name.CollectionFactory : createCollection : Exception while creating collection. [[
    Target database global_name is not correct. global_name must include the domain for transaction log collection. Please configure the target database with the correct global_name.
            at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.checkDBName(RedoCollector.java:1480)
            at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.verifySource(RedoCollector.java:1278)
            at oracle.av.platform.agent.collfwk.impl.redo.RedoCollector.startCollector(RedoCollector.java:215)
            at oracle.av.platform.agent.collfwk.impl.redo.RedoCollectorManager.startTrail(RedoCollectorManager.java:199)
            at oracle.av.platform.agent.collfwk.impl.factory.CollectionFactory.createCollection(CollectionFactory.java:504)
            at oracle.av.platform.agent.collfwk.impl.factory.CollectionFactory.createCollection(CollectionFactory.java:354)
            at oracle.av.platform.agent.StartTrailCommandHandler.processMessage(StartTrailCommandHandler.java:63)
            at oracle.av.platform.agent.AgentController.processMessage(AgentController.java:325)
            at oracle.av.platform.agent.AgentController$MessageListenerThread.run(AgentController.java:1859)
            at java.lang.Thread.run(Thread.java:722)
    (host01)(grid@+ASM1):~> lsnrctl status
    LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 12-DEC-2013 17:27:34
    Copyright (c) 1991, 2011, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.2.0.3.0 - Production
    Start Date                12-DEC-2013 16:58:03
    Uptime                    0 days 0 hr. 29 min. 31 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/11.2.0/grid/network/admin/listener.ora
    Listener Log File         /u01/app/grid/diag/tnslsnr/host01/listener/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=LISTENER)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.109)(PORT=1521)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.139)(PORT=1521)))
    Services Summary...
    Service "+ASM" has 1 instance(s).
      Instance "+ASM1", status READY, has 1 handler(s) for this service...
    Service "orcl" has 1 instance(s).
      Instance "orcl1", status READY, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
      Instance "orcl1", status READY, has 1 handler(s) for this service...
    The command completed successfully
    (host01)(grid@+ASM1):~>
    (host01)(grid@+ASM1):~> cat /u01/app/11.2.0/grid/network/admin/listener.ora
    LISTENER=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER))))            # line added by Agent
    LISTENER_SCAN3=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN3))))                # line added by Agent
    LISTENER_SCAN2=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN2))))                # line added by Agent
    LISTENER_SCAN1=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN1))))                # line added by Agent
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER_SCAN1=ON                # line added by Agent
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER_SCAN2=ON                # line added by Agent
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER_SCAN3=ON                # line added by Agent
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER=ON              # line added by Agent
    (host01)(grid@+ASM1):~>

    Hi
    Just run the script $AV_AGENT/av/plugins/com.oracle.av.plugin.oracle/config/oracle_user_setup.sql  USER_NAME REDO_COLL
    This will grant the user some privileges and roles like DBA and CREATE Database Link
    I hope this answer your question
    Thanks
    Ahmed Moustafa

  • How to interact with external database in CQ5

    Hi,
    I need to interact with external database like SQL or Oracle to store some/fetch some data in CQ5. Can someone pls provide some help regarding the same. I guess I need to do it through JDBC. Please guide me step by step how to do this.
    Thanks

    Hi,
    Bellow you find some references to the documentation related to CQ and DB configuration and developments:
    http://dev.day.com/docs/en/cq/current/developing/jdbc.html
    https://helpx.adobe.com/cq/kb/HowToConfigureSlingDatasource.html
    Regards,
    kasq

  • Connecting AIR with external database

    Is it possible to connect AIR application to the external database in MySQL technology?

    Are you trying to connect to a MySQL database on a web server somewhere? If so, by far the easiest way to do so is to use some sort of application server layer (e.g. PHP, ColdFusion, Java) on the web server, and have the AIR application call the PHP (or whatever) code to get the data. That is the approach that all the links Greg has given you are talking about.
    Of course, in order to make that work you need to know enough PHP/Java/ColdFusion to write that middle layer. In the example you're asking about, the information it wants to know is the name of the server that the MySQL database is running on, and the MySQL username and password for the MySQL account that your PHP code is supposed to use. There are tons of resources on the web for writing PHP code that accesses MySQL, so you'll find much more and better information in other places than what you'll find in the Adobe AIR forums.
    However, maybe you want to have the MySQL server running directly on the user's computer rather than on a web server somewhere. In that case you would have a few options:
    Run a web server and application server (e.g. Apache and PHP) on the user's computer and use those to connect between the AIR application and the MySQL server.
    Write Java code to communicate between the MySQL server and the AIR app, and call that code using Merapi (http://merapiproject.net/)
    Run the MySQL server on the user's computer and call the server directly from AIR using ActionScript. While there is no built-in support for MySQL in AIR, there is a third-party (open source) library for calling MySQL directly from ActionScript available here: http://code.google.com/p/assql/. I haven't tested it so I have no idea how complete it is, but it's a solution to consider.
    However, in all three cases you're depending on some external pieces that have to be installed and loaded separate from your AIR application. (For instance, most users probably don't want a MySQL server running on their computer all the time if they aren't using your AIR app all the time -- so you'd want a way to start and stop the server, which also couldn't be done directly in AIR.) People do write applications that use external resources like this, but it's not the easiest thing to implement.
    If you're really wanting to run the database locally, the best solution (assuming it works for your needs) is to use AIR's built in local SQL database engine (based on SQLite). If you've looked at that option already, and found that it doesn't work for you, I'd be interested to know more about what you're trying to accomplish that you can't accomplish with the AIR local database.

  • Installation with external database

    I'll submit an RMS request for this, but one of the more annoying things is that if the installation goes "wrong" during the database install (ie, installing to Oracle, or external SYBAS, or SQL), you cannot just "redo" the database part
    Rather, it rolls EVERYTHING back and you have to start all over from scratch.
    Could we have like a "retry" button or something in case we butter-fingered something to re-enter it?
    Also the documentation for Oracle, lists that you should review database information and review SQL scripts
    So here I am thinking that the install screen/summary actually gives you this information.
    It does not.
    Where pray tell, is the database info on the summary? Oh, that's right, it's not there.
    SQL scripts? No mention of them at all in the product documentation for Oracle, let alone trying to find them on the install summary.
    I know our Oracle folks were quite interested to see what the scripts would actually attempt to do (I know this was a major issue with ZAM and getting Novell to even release the scripts, let alone support them). Seems that mentality has carried over to ZCM.

    Khurni,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • APEX's interaction with the Database -- username?

    Hi,
    How do we find out the database user who does all APEX operations? I'm running a query within APEX but a table isn't accessible...I need to specify the user so it can be granted select privileges. Help :-x
    Mike

    Hello Mike,
    Login into your workspace, click on 'Manage Services' in the upper right 'Administration' region. Then click on 'Workspace Overview' (4th in the right column). Then you will see the schema(s) that are used by your workspace. One of those schema's needs to be granted access to the object you want to use (you might need a synonym as well).
    Greetings,
    Roel
    http://roelhartman.blogspot.com/

  • Create RFC for connecting BW with external database (ORACLE)

    Hello,
    I want to connect to a seperate oracle database from SAP BW system. For that i have to create a RFC.
    I hope i have to ctrate a TCP/IP connection.
    In SM59, I can see " start on explicit host " option where i have to give the program name. I dont know which program name i have to enter or from which location in sap/OS level i can find the program name.
    Please suggest the program name or the location.
    Thanks & REgards
    Prasanth

    Hi,
    Can anybody answer to my thread?
    Regards
    Prasanth

  • Way of External Database Integration with UCCX

    Hi
    I want to know what are the way of UCCX integration with External Database(Mobile Operator, Banking, Insurance).I only know about DBwrite and DBGet. is there any way out(http, https,SOAP)? They dont want to give me direct access to there Databases.
    Sultan Al Arif

    One way to do this would be to use the Get URL Document step to request an XML file from a web server.
    Upon receiving this request the web server would then retrieve the required data via SQL (fairly easy to do using ASP.NET and  IIS), format it in an XML page and return it to your script.
    The script would then use Get XML Document Data steps to parse the XML file for the required data.
    The organisations that operate the databases with which you want to integrate may have some concerns about the security of this though as the data will not be encrypted in transit.

  • Apex with Oracle Database Vault

    Can someone point me to some document/whitepaper that describes how to setup Apex to work with Oracle Database Vault?
    My understanding is that data in tables secured by Vault's realms is not accessible even to DBAs (select any table) which is great. But how that does impact Apex applications? The data would have to to be accessible to the app's parsing schema. So unauthorized users can still gain access to the data via the Apex app instead of direct database access. Does Apex provide for tighter integration with Vault to prevent this sort of access?
    Thanks

    Bump. Thanks.

  • Submit webform content to external database through webservices

    Hi 2 all,
    we need to achieve the following :
    - create a webform where user insert his main details (name, company, email etc.)
    - in the webform there is a script that generates two random number to be used as username and password
    - all data of the webform shall be sent to an external database through the webservices provideb by the external site
    - the external site validates the form and send a TRUE/FALSE reply to BC
    - based on TRUE / FALSE reply the user see a webpage with different content and receives an e-mail with username and password if the reply of the external site is TRUE (as per random generated numbers above)
    is it possible to achieve those functionalities with BC an if not, someone knows if anybody faced a similar project so to read a tutorial or so?
    thanks
    Franco

    what we need to achieve is to send to the external database some data (username and password) to create a user in that application, if the username and password meet the requirements, the webservice send a TRUE / FALSE reply that will tell BC to send to user's e-mail a different message (if TRUE, send the username and password generated by the webform as described in my first message, if FALSE tells the user to resubmit the form, but since the parameters for creating USERNAME and PASSWORD are not directly edited by the user, the FALSE case shall be almost equal to none).
    we need to communicate with external database because the BC webform shall send the data to generate a username/password in the external application
    hope these new infos can help.
    we are really try to understand if a BC webform can send data to an external application through their webservices
    and in addition if it is possible within a webform to generate a random username and password to be included in the webservice XML structure
    if you need more infos we can have a chat on Skype or other ...
    Thanks

  • Update Audit Trail in CUP from an External IDM Solution

    Hi,
    We are doing an external IDM integration with CUP 5.3 SP7. Our design include gathering some approvals in the IDM solution before forwarding the request to CUP for some additional approvals and provisioning.
    We are trying to use the SAP delivered webservices like:SAPGRC_AC_IDM_SUBMITREQUEST for the request submission. In an effort to keep the entire audit trail in CUP, we are exploring means to send the IDM approval/audit trail to CUP so that an Admin can login to CUP to get the entire request history. Does anybody know how can we get this achieved? Is there an API /WS that can be used to update the Audit trail in CUP along with the submission of a request?
    We know there is one WS which provide the audit trail from CUP to IDM but not the other way !
    Thanks for your inputs,
    Regards,
    Anil

    The following 2 webservices may be able to help you:
    Inbound (from IdM to AC) Web Services (available with Access Control 5.2 SP04+):
    Audit Trail (includes the Provisioning Log Web service) SAPGRC_AC_IDM_AUDITTRAIL
    This Web service returns a comprehensive audit history. It enables IdM to retrieve an audit log from
    Access Control (for ERP provisioning) as well as provide an audit history of user provisioning to
    Access Control.
    Outbound (from AC to IdM) Web services (available with Access Control 5.3):
    Audit Trail (includes the Provisioning Log Web service) SAPGRC_AC_IDM_AUDITTRAIL_FROM_IDM
    This Web service returns a comprehensive audit history. It enables Access Control to retrieve the
    audit log from IdM (for non-ERP provisioning) as well as an audit history of user provisioning to IdM.

  • Adump folder is populating with file without starting audit trail

    Hi,
    I am using Oracle 10g release 2 (10.2.0.3.0) on linux 64 bit, i did not activate Audit trial in my database, but the folder adump have files are being created with aud extension showing Audit of login.
    Is it normal or Audit trail is on, as i checked the parameter Audit_trail, it is showing NONE
    Is this normal or audit trail is ON.

    Hello,
    this is normal behavior for sys-logins.
    See Metalink-Note:308066.1 for more infos.
    Greets,
    Hannibal
    Message was edited by:
    Hannibal

  • Can I synchronize my iDevice with Aperture database on external volume?

    Hi everyone,
    I'm a photography enthusiast and I would always take photos.
    Recently, my built-in harddisk was full and I transferred my photos to an USB-connected 2.5" external harddisk. That's not the problem - I can browse and edit the photo freely whenever I plug in my external harddisk.
    But when I tried to synchronize my iPad with a database on the external volume, the problem comes. iTunes told that it cannot find the aperture database (in local drive) and I have no idea to match it with my current database.
    Who can give me a solution? Thanks!
    ALC
    (Sorry for my poor English as I'm not an English native speaker)

    Hi Ap Lei Chau,
    Your English is fine.
    Though I do not have a iPad, I do have an iPhone. With my iPhone plugged in, open iTunes, under Devices click my phone, then Photos tab mine reads Aperture. Clicking that drop down I have a option to choose Folder. From there I can walk the path to an Aperture library.
    It is my hope it appears the same in an iPad.
    Cordially,
    RicD

  • Can I use Oracle APEX with MySQL Database

    Hi All,
    We are looking to create a performance dashboard using Oracle APEX for our client, but the application database is MySQL. Is it possible to create reports in APEX using data from MySQL database? If yes, are there any specific steps to be followed or any additional setups needed?
    Any inputs would be really helpful.
    Appreciate all the help
    Thanks,
    Sameer

    Hi Sameer,
    it's not possible to use apex on mysql, as stated above me by several persons.
    If you havent got any oracle database in your organization, apex would be an expensive choise unless you use the free Oracle XE (express edition), which has APEX embedded.
    There are some limitations to XE but with a bit of smart thinking it wouldnt be much of a problem.
    [check the XE information here|http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25143/toc.htm#BABIECJA]
    In short:
    - XE will use 1 CPU even if you have two or more in your system
    - There is a 4 GB data limit
    - RAM memory usage is limited to 1 GB
    - 1 installation per computer
    You can use XE as a reporting database. This will relieve your mysql database from heavy reporting processes, too.
    The XE can be used as a mini data warehouse. So you have to transfer and transform the relevant data from mysql to your XE instance.
    After that you can start building report screens etc in the embedded Apex .
    hope this helps you
    Robin

Maybe you are looking for

  • Short dump in reading selection values in Report

    Hi all, I have created a Navegational Attributte and added this Info Object in the existing Query and for this object we have created Charactistics Value Variable with Uesr Entry. But, When we use input selection option to select a vlaue for this Var

  • What's "SVGA"? Need that for an HDTV hook up?

    I'm preparing to set up my friend's Mini, when it arrives. She will be using her new Samsung HD TV, with a VGA input. I already gathered that I need a Male to Male VGA cable (the adaptor comes in the box, right?) But I was just now on monoprice.com t

  • Field Selection for MIRO

    Hello We want to Open the Currency field in MIRO, For the Import PO we want to change the currency field in MIRO, to Local currency How can we do the same, as of now the field is coming gray Regards Niti Narayan

  • Combine Several Movies on One DVD with iDVD?

    I have a couple of slide shows I made in iMovie, and I have a DVD that has a video_ts file on it. Can I put the two slide shows and the video_ts movie all on one DVD as long as there is room? I so, I would need 3 menu choices. Can I do this with iDVD

  • Looking for Thumbnail Menu site Guro for Hire

    Hello, I'm looking for a flash guru who can create a web site for my IT staffing company. I'm looking for a site that is thumbnail/menu driven. I created our current site in Flash but the new look I'm going for is a bit to complicated for myself. We