Frmf2xml.sh: why do i need a display variable set to transform fmb to xml?

hallo,
why do i need a display variable set to transform fmb to xml with a shell script (frmf2xml.sh) ?
OS: SunOS 5.10
Oracle Forms Developer: 10.1.2
thank you
christian

Hi DrClap,
I just wanted to check with you whether I understood your comment correctly.
It's not possible to directly specify a physical file location path, like it is specified for HTTP URL +<c:import url= http://...+, that would internally/automatically convert in one of the form - Reader, Source, Document, String.
It can only be produced/specified explicitly in one of the form - Reader, Source, Document, String.
Am I correct in my understanding?
Regards,
Gnanam

Similar Messages

  • I have os 10.4. Why do I need the mac box set to upgrade to snow leopard?

    I have os 10.4. Why do I need the mac box set to upgrade to snow leopard? What happens if I upgrade with just a 10.6 upgrade?

    ds store wrote:
    No iPhoto, iMovie, iDVD, Garageband, but I can pinch those off the 10.4 installer disk using Pacifist.
    You can usually get those from the original grey installer discs that came with your Mac without bothering with Pacifist. Look for an 'installed bundled software' or similarly named item on one of those discs, generally the #1 disc. Run that & the original versions of those apps that were bundled with your Mac will be installed. Software Update will let you know if there is an update you can download for them (but of course that won't include an upgrade to a more recent major version, which you would have to buy separately).

  • Display variable setting in Solaris 8

    Hi guyz,
    I am using the telnet session to start the application. In this case, I can't able to start because of Display variable setting.
    My problem is, I can telnet from my localsystem to the Server-A. Only from Server-A, I can telnet to Server-B where my applications are.How to set Display settings in this case?
    Please help me guyz.
    With regards,
    Amin

    Hello,
    how to set a variable depends on the shell. If you use the command 'uname -n' it will return the name of your system, which can in turn be resolved to the ip-address.
    C-shell (csh) setenv `uname -n`:0.0
    Bourne-shell (sh) set DISPLAY=`uname -n`:0.0; export DISPLAY
    Korn-shell (ksh) export DISPLAY=`uname -n`:0.0
    Best regards
    Michael

  • DIsplay variable setting ReflectionX in Bash shell

    Everyone,
    Can somebody help me with setting display variable for running Configtool in ReflectoinX in Bash shell.
    Appreciate your time. Thanks.

    > It looks like it will work..only thing is that we need to set display variable..i assume.
    If you logon as <sid>adm then no DISPLAY (or other variable) must be set if you use XDMCP.
    > I am doing sudo for opening a java tool which needs x window..other x windows like visual admin is working fine but for configtool, i am getting this error saying display variable is not set.
    That's what I was saying - do not switch users (sudo, su etc.) - that will delete the environment and invalidate .Xauthority.
    > I am not given the <sid>adm password, can i just use X window with sudo OR do i need to get the <sid>adm password to start the configtool..
    In that case I would not use XCMCP to connect but a pure telnet, do sudo and then set the DISPLAY to
    <your-IP>:<reflection-display>. the latter can be found when open Reflection in the lower part of the configuration window.
    Markus

  • HT201269 why do I need 2 emails when setting up and apple id

    when seeting up my apple id I need to have 2 emails addresses, why is this?

    Hello Joannesean2002,
    You need only one Email address for creating an Apple Id and the Second Rescue Email address is optional and is required to reset password and security Questions in case you forget the Password or Security Questions. So if you have only one email address then still you can create your New Apple Id.
    Hope this answers your question.

  • Need to display variable descriptive text in a report

    Does anyone know of a way to display the descriptive text for user entry variables in Crystal Reports? I've tried a couple of methods in the past (a subreport going against master data and building an array of text valued from the data) but each has method has some significant drawbacks. How are customers dealing with this right now? I have been encouraging them to be satisfied with the technical names, but that doesn't go over very well.

    Look like no one had any thoughts. I'll just close this one down for now.

  • Need to have  'variable name' node in the converted XML data.

    i am converting the abap data to xml using cl_xml_document. in the converted xml data, i need to have one more node. in the below example, i want a node  <variable name="productionOrderDetails"> to come after the Data node.
    ?xml version="1.0"?>
    <Data>
         <item>
              <DISPO>100</DISPO>
              <PLNBEZ>F126</PLNBEZ>
              <GAMNG>300.000</GAMNG>
              <ERFMG>285.000</ERFMG>
              <PRE_PROD>100.000</PRE_PROD>
              <PRE_BLOG>0.000</PRE_BLOG>
              <BLOG_MTD>144.000</BLOG_MTD>
              <BAL_PLAN>144.000</BAL_PLAN>
         </item>
    </Data>
    thanks in advance

    Hi ,
    you can use class  IF_IXML_NODE, first you need to read (go thru ) XML then need to Insert a New Node.
    ref SAP Program BCCIIXMLT1/BCCIIXMLT*
    regards
    Prabhu

  • Why does WebUtil needs AS configurations?

    If we have to only attache the WebUtil.PLL and sub-class the webutil.olb to the form and place the frmwebutil.jar in the \%Oracle Dev Home%\forms\java then why do we need such a complicated set-up in the app server (like signing with JACOB which I really don't understand)? Do we have to install any Java components in the DB also?
    Can anybody explain to me what happens when a 10g Release 2 Form tries to read an Excel sheet from the client machine? In simple steps can you plese explan what WebUtil components are called and where those components are (client/app server/DB machine)? How does the application server come into play when a Form reads from an Excel sheet in the client machine because the Excel sheet is in the client machine and NOT in the app. server or DB machine?
    Please pardon my ignorence in this. I tried reading the documentation (PDFs and web-pages) but I could not figure how it works.
    Edited by: user12240205 on Apr 29, 2011 6:06 AM

    then why do we need such a complicated set-up in the app server (like signing with JACOB which I really don't understand)?JACOB stands for JAva-COm Bridge. This is the mechanism by which Oracle Forms is able to interact with the Client workstation and call Windows COM Automation components. Without the JACOB library (.jar) WebUtil would not work. You have to sign the jacob.jar because your application is deployed over the web.
    Do we have to install any Java components in the DB also?No - you only need the WebUtil database package.
    Can anybody explain to me what happens when a 10g Release 2 Form tries to read an Excel sheet from the client machine?Forms uses the Webutil Client_OLE2 package to communicate with Excel using Windows COM methods. As I mentioned above, without the JACOB library, WebUtil would not be able to communicate with Excel using COM.
    In simple steps can you plese explan what WebUtil components are called and where those components are (client/app server/DB machine)?Rather than explain each step, there are numerous demo's on the internet and in Oracle's Forms Demos that demonstrate how to use WebUtil. It is also a very common topic in the Forums. I recommend you look at WebUtil - A Simplified guide to understanding WebUtil. Also take a look at Forms: How to Read an Excel file into a Form for an example of how to interact with Excel.
    How does the application server come into play when a Form reads from an Excel sheet in the client machine because the Excel sheet is in the client machine and NOT in the app. server or DB machine?{qoute}The Application Server (AS) is simply the transport mechanism to deliver the JACOB Java Library to the Client. When a Forms interacts with Excel - everything occurs on the client. Depending on what you are attempting to do, the AS may never be involved with a WebUtil transaction on the client. Now, if you need to upload a file or store a client image in the database then the AS and the Database server would become involved.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • DISPLAY variable in R12 Forms/Web tier

    Hello everyone,
    Just wanted to clarify something about the DISPLAY variable in R12 Forms/Web Tiers.  Is it necessary to have DISPLAY variable set to an active X session(Vnc) server session on Forms/Web Tiers? I understand that we need to do it for CM/Report/Admin tiers. Please confirm.
    Thanks

    968420 wrote:
    How about Forms/Web tiers?
    It's required is some cases (like the following), and I would recommend having it set on all application tier nodes to the same value.
    s_display -- Required only if you need to access graphs/charts, OLM implementation, ..etc (any page that requires DISPLAY to be set)
    Cannot Play The Course From The Class Details Page (Doc ID 391815.1)
    Receive Error When Attempting To Open A Work Plan Gantt Chart View (Doc ID 306413.1)
    s_forms-c4ws_display -- Required if you have SOA Gateway integrated
    Oracle EBS R12 Context Variables (Doc ID 458282.1)
    Thanks,
    Hussein

  • What is proper setting for DISPLAY variable?

    Newbie to X here....
    I'm ssh'd into my RHEL 5.4 system (64 bit) and get the following error from "./runInstaller" as the oracle user.
    Exception in thread "main" java.lang.InternalError: Can't connect to X11 window server using '172.21.52.87:0.0' as the value of the DISPLAY variable.
    at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
    at sun.awt.X11GraphicsEnvironment.<clinit>(Unknown Source)
    As root, I started the vncserver via "vncserver".
    I've tried the running "runInstaller" with the DISPLAY variable set to 172.21.52.87:0.0 and as 172.21.52.87:0 but keep getting this error.
    Am I suppose to connect to this server in another way other than ssh? If so, what's recommended?
    TIA,
    John

    Hello John,
    here is a procedure how I usually start a X11 GUI:
    1) Start Xming which can be downloaded from http://sourceforge.net/projects/xming/
    2) Connect to the server with the settings as shown
    http://www.oratoolkit.ch/images/otn/puttyX11Config.png
    3) execute xhost resp. ./runInstaller
    that's all! ;)
    Cheers,
    David
    OCP 9i / 10g / 11g
    http://www.oratoolkit.ch/knowledge/howto/installation/otn.php

  • Itunes app no longer showing genres or the top charts/genius bar in the top bar ... it only displays a faint music in the centre with just the search box..why? i need them back:-(

    itunes app no longer showing genres or the top charts/genius bar in the top bar ... it only displays a faint music in the centre with just the search box..why? i need them back:-(

    The iTunes Store listing of your podcast is simply reflecting the contents of your podcast feed. Make sure all of the content you want displayed in the iTunes Store is still contained within your feed.
    Are you able to supply your feed for reference?

  • Why do i need to restart my imac everyday like ten times to get it to work, also the screen displays little digital squares.

    Why do i need to restart my imac everyday like ten times to get it to work, also the screen displays little digital squares.

    Hi Matt,
    I purchased my imac in November of 2010 and below is a cut and past from Hardware overview. It has 1 TB hardrive, with 670 GB free. When i start up in the morning, it boots normal then freezes. Half the time i can get it to restart before it freezes, other half i have to power down then restart. At the same time throughout this process the little pixel squares show up sometimes in a single line or two aross the screen, then sometimes more random. After about 7 times of rebooting, everything runs fine for the day with no weird pixels. then i shut down at night, and start the porcess over in the morning. Thanks for your help!
    iMac
      Model Identifier:
    iMac11,3
      Processor Name:
    Intel Core i5
      Processor Speed:
    2.8 GHz
      Number Of Processors:
    1
      Total Number Of Cores:
    4
      L2 Cache (per core):
    256 KB
      L3 Cache:
    8 MB
      Memory:
    4 GB
      Processor Interconnect Speed:
    4.8 GT/s
      Boot ROM Version:
    IM112.0057.B00
      SMC Version (system):
    1.59f2
      Serial Number (system):
      Hardware UUID:
    AF510593-DDA2-513F-AE18-631B726F0BB1

  • Archiving cds and why do i need id3 tags

    here comes another one of those questions looking at which codec to use to store music.....i also have tag questions.....
    i'm about to (re-)rip my cd collection and looking at some info re codecs and id3 tags
    now.....i believe i understand the benefits of alac (lower file sizes, keeping id3 tags, lossless compression) v wav(no compression)
    however (and for some out there) if we just entertain the fact that wav may have some minute benefit for me depending on my questions and answers given.....and yes i know wav and alac will sound the same to the human ear - i accept that as a given of lossless compression ......
    points i'd like to outline:
    i am looking to rip my cds, firstly and mostly, for an archiving purpose!! purpose numero uno!!
    i could well want to re-create cds with these archived records in the future
    size of files is of no concern to me at all
    i'm using a mac nowadays
    i will convert most of these files, where needed, to use with a portable music player (i'm not bothered with having, say a wav file and then also converting and having an alac file, as crazy as that sounds)
    this is where i ask for info re the benefits of embedded tags that are found in alac:
    are these tags that important?
    where do they come into play in ripping and later converting music?
    are these uses just bells and whistles that have no benefit to my needs?
    if i rip cds to wav (or aiff), say, using itunes, will cd info and track listings be available on the downloading database (eg itunes) to name these wav files?
    if i then ensure these song files are kept under the album's folder, have i just done what tags do? surely not. that is all i have needed in the past.
    this is where i feel i may be really missing what id tags (can) do
    are tags more than just managing song files and where they belong and where they have come from?
    is it just a convenience of not personally managing your song files (as per previous paragraph)?
    (in the past i had ripped cds to mp3 codec. i think i used "cd rip" or something like that on my pc.
    my mp3 files were individually named and sorted and kept under album folders under artist name folders.
    apart form the very odd occasion all track and album info i needed was found on a database that was attached to the ripping software.
    i never had a problem managing/maintaining these files and folders.)
    i welcome some enlightenment on some of my questions above and other info that may be relevant
    and yes, i understand that music will sound the same as a wav file or alac file - but humour me re using wav and tell me why i need id3 tags
    i guess the crux of it is:
    why do i need id3 tags?
    does my managing of my song file in the album folder do what tags do?
    what problems/shortcomings/headaches may i encounter by not having those tags if i use wav as opposed to alac?
    what do i not know about these little buggers?
    what codec is best for my purpose of archiving and re creating of cds (for playing in cd players)
    thanks in advance for your input and any clarity that i may experience through this
    peter t
    excuse my long windedness (i have spent some time editing this entry)

    Crows2012 wrote:
    as mentioned earlier if i just have songs (wav) in album folders, when i import these albums into itunes, do you know if these will come up under AN album with their file names purely using my filename setup (but with no artwork)?
    Yes, iTunes will read the filename, such as "Track 1" or something else and display it. But nothing else. No Album or Artist.
    so the tracks will remain grouped as an album based on their initial folder and the albums and tracks as per file name?
    Crows2012 wrote:
    also, does aiff have limitations (apart from the full size of the file)?
    I'm not sure I understand what you mean. For all practical purposes AIFF and WAV are exactly the same thing. They're just file containers.
    i thought that i had read somewhere that aiff tags could run into some issues with its tags - ie may not always be transferred 100% accurately with certain players (or hardware maybe)
    Crows2012 wrote:
    and how do these codecs work re-creating an album for the purposes of playing in a cd player? - this is a crucial question for the purpose of my archiving/backup of CDs THEMSELVES
    That's actually going to depend on what burning software you use. Once you rip the tracks to whatever file container you choose (WAV/AIFF/ALAC) you'll never really exactly re-create the album. But for archiving purposes all three file containers will do what you want, which is to create a lossless archive. AIFF has the advantage of supporting embedded ID3, which ALAC has the additional advantage of the files also being about half the size of AIFF/WAV files.
    i was thinking that maybe wav was able to recreate an album (in effect duplicate one) if my cd was lost or damaged in the future. i was thinking this IF when ripping to wav everything is unchanged (unless there is other data on the original cd). and maybe only possible with wav. the purpose for this would be to play recreated cds on my cd player
    any idea on this one?
    (i havent looked too thoroughly on this angle but i'll keep googling on this one)
    much appreciate all info thus far
    peter t

  • Why do I need to connect my Ipad mini with my Mac Book Pro via iCloud?

    Why do I need to connect my Ipad mini with my Mac Book Pro via iCloud? I don't have iCloud on my MacBook Pro and only intend to use the mini to check e-mail and use Garage Band and Photo Booth for song writing when traveling . . .

    Thanks Community! I solved the problem. In fact it was not a problem but lack of understanding. These guys at Apple are way ahead in thir thinking. I will try to explain as short as I can.
    In Lion, ihe Prefferences/Display show only two choices: 6-7 steps of resolution and some color tab. No two screens, no two display to overlap, nothing for us to do. "That was the problem"! Everything is automatic.
    When I connected the HDMI cable to the Miniport into a T-bolt slot, the TV screen showed the "spiral galaxy" how Zyriab is calling it. In fact he gave me the best clue. That shows the connection is good. But where is the Mac Book image?
    You have to drag it to the right out of the Mac Book display area, and "voila!" it will continue on the TV screen. The same with the mouse pointer, push it out ofthe Mac Book display area and you see it on the TV sreen. Good image, you can keep the max resolution, etc. The sound is still on the Book's speakers. I have to figure that out.
    Thank everybody, especialy Zyriab, ne was the closest.
    High regards to everybody

  • What are smart mailboxes and why do i need both smart and "normal" ones?

    What are smart mailboxes and why do I need both smart and "normal" mailboxes?

    Hi Kingoftypos,
    Thanks for that clarification. So, now it appears that the ultimate purpose of a Smart Mailbox is to point to all emails that meet the criteria in a single place, so if they are spread among several mailboxes, you will be able to see them all together. Here is an article from Apple that describes it:
    A Smart Mailbox displays in one location messages that are stored in other mailboxes, so you don’t have to move messages between mailboxes. The messages displayed by a Smart Mailbox are based on criteria you define, and are automatically updated to include new messages that match your criteria. For example, you might create a Smart Mailbox that displays all messages found in all mailboxes from a specific sender.
    If you change a message in a Smart Mailbox, such as marking the message as read or unread, or moving or deleting the message, the change is reflected in the mailbox where the message is actually stored.
    So, adam, I would think that, if you had mail going to a lot of different places, and wanted to be able to see a particular set of those in a single place, you would use a smart mailbox. Maybe use the rules to direct your mail to different places to start with, but a smart mailbox to bring a set of common ones all together into a single smart mailbox?
    Maybe you have Rules move your Amazon mail to an Amazon folder and your Apple mail to an Apple folder, but then you have a Smart Mailbox that contains any mail that has the word "Receipt" in the Subject line?
    Just a thought....
    Cheers,
    GB

Maybe you are looking for

  • Can't import library from iPod to iTunes

    I was having troubles with my laptop so I was forced to re-load the entire operating system, deleting everything previously on my computer. Now, I'm unable to load all of my songs from my iPod into my new iTunes library. The only ones it is allowing

  • HT1296 Events entered in my iPhone 3GS will no longer sync to my Outlook 2010 calendar - what's up?

    Some change in iOS I suppose makes it so events entered in my iPhone 3GS will no longer populate my Outlook 2010 calendar when I sync the devices through iTunes.  It used to be that events entered in each place would populate the other locationg when

  • Db updation from servlet

    hi , I am new to sevlets and trying to update an access db through a servlet using the code given below. String strUpdate ="UPDATE TABLE ProposalTrackingSystem "+                     "SET Responsibilities = '"+strRespo+"'"+                     "WHERE

  • Display Authorization for MASSD

    Hi, There is a requirement for giving a user only display authorizations for MASSD. I've tried various combinations of objects, however have been unsuccessful so far.. Pls. help. Thanks, Saba.

  • ITunes shuts down on startup.

    When I try to open iTunes, windows (data execution prevention) shuts it down. This just started happening.