Experts Experience Required: Direction In 10g

Dear all,
We are buildinig an application which will support two languages ( arabic & english).
so we want to change the direction of the form depending on the user choise.
i am using set_form_property to left_to_right & right_to_left
and its not working.but when i set the form property at the design time to direction :right_to_left or left_to_right it works perfect.
but when i use set_form_property at the run time. it runs but it does not change the items direction.
best regards,
shooosh

hi all..i try that before an as i think that is the code you need ,(p_lang) is the parameter to indicate that the form now is arabic or english:
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,TITLE,X_SYS_NAME);
          SET_WINDOW_PROPERTY('WINDOW1',TITLE,WIND_NAM);
IF P_LANG = 0 then
SET_FORM_PROPERTY( P_FORM_ID,DIRECTION,RIGHT_TO_LEFT );
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,DIRECTION,RIGHT_TO_LEFT);
SET_WINDOW_PROPERTY     ('WINDOW1',DIRECTION,RIGHT_TO_LEFT );
ELSE
SET_FORM_PROPERTY ( P_FORM_ID,DIRECTION,LEFT_TO_RIGHT );
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,DIRECTION,LEFT_TO_RIGHT);
SET_WINDOW_PROPERTY ( 'WINDOW1',DIRECTION,LEFT_TO_RIGHT );
END IF;
plaese try it ...it will work properly

Similar Messages

  • When has firefox required direct access to the workstations camera?

    Can anyone provide an example of when Firefox requires direct access to the workstation camera? I do not know if Firefox even requires access to the camera

    Historically, access to the camera was only available through plugins like Flash. The Flash DLL runs in the plugin-container.exe process; if protected mode is in effect, it may also run outside of that process.
    I suspect that access through native APIs (e.g., [https://developer.mozilla.org/en-US/docs/Web/API/Navigator.getUserMedia navigator.mozGetUserMedia]) is rare on the desktop. I don't recall getting any requests for it so far personally.

  • Business Objects 4.0 (Custom functions) -- Expert advise required

    Good day All!!!
    I require a technical expert advise from this forum ASAP. I hope you have some time amidst
    your busy schedule and answer the required clarifications.
    Problem Description:
    I would like to write a custom function (e.g to convert local time zone to utc and from utc time zone to local) and import that function in the BO 4.0 universe so that universe has the ability to use this function.
    I understand BO 4.0 supports importing of the custom functions e.g data_quality_custom_functions.atl.
    Expert advise Required from you on below questions:
    Now my question is how to write a custom function and generate the required .atl files that can be imported in the universe?
    Does this require any specific tool/API's to generate these functions ?
    Can we use traditional languages like C/C++ to generate the custom functions or does it uses any script based languages?
    Is there any flexibility to accommodate complex algorithms in the custom based function?
    Are do we have to approach SAP to generate the .atl files by giving some interface document?
    It would be of great help at this stage if you could provide some insight into the mentioned areas as we are in a critical stage to finalize a design approach. If you have time to answer our queries and require additional details on why we have to go for custom functions then I will be glad to provide right level of details.
    Looking forward to your expert advise early....
    Thanks
    NAGSCAT

    Yes, it is. Please, look at chapter 8.5.2 in the Business Intelligence Platform Administrator Guide.

  • Is license required for Oracle 10g client on production

    Is license required for Oracle 10g client on production?

    Standard disclaimer: We don't represent Oracle. Your situation may be different because of specific wording in your particular Oracle contract, because of differences in licensing regimes over the years, because of laws in your particular country, etc. If you have a serious licensing question, you really need to address it to Oracle Sales. Explaining that some guy on the internet told you it was OK is going to be cold comfort if you're ever audited by Oracle and they disagree with my interpretation...
    In general, no, you don't need a separate client license. The database is generally licensed to support a number of named users and/or all the users that a certain hardware configuration can support. Assuming the person using the Oracle client is connecting to a properly licensed database (and that they are one of the named users if that is the licensing regime), you shouldn't need a separate license.
    There may be slightly different rules if we're talking about developers connecting to the database because of the "Oracle Programmer" set of licenses that appears on pricing sheets that I've never fully understood.
    Justin

  • Experience using Oracle Forms 10g w IBM Rational Clear Case & Build Forge

    Does anyone have experience using Oracle Forms 10g w IBM Rational Clear Case & Build Forge for configuration mgmt?
    Janice

    Hi,
    We had also different Installation (Win2k3 R2 32Bit and 64Bit.).
    1.) For me personally I didn't recognize benefits with 64 bit
    2.) when using Itanium you defenitely have to recompile. We had one Itanium at one of our customers; As Itanium is not x86 compatible you need to recompile on Itanium. it got kicked out and used for another purpose in cause of this and as mentioned the performance weren't so much higher (or in other words not noticeable). Another reason for getting rid of the damn Itanium was that Forms/Reports on Itanium Platform had some annoying bugs; but this was 10.1.2.0.2 maybe in 10.1.2.3 they're fixed.
    3.) If you want to use Itanium you simply have to transfer your fmb/mmb/pll to your Itanium IAS, and use forms and reports compiler which comes with it to recompile them.
    Generally at the moment we suggest our customers to use 32bit.
    just my 10 cents ;)
    regards

  • Experts Experience Are Required Here

    Dear Sir,
    I have copied this code from your article from oracle.com but I need to do one modification.
    I want to send the form name to the procedure to retrieve all the information instead of opening each form.
    Best regards
    PROCEDURE Get_Canvas_Names IS
    lc$blockDeb     varchar2(60); -- start block
    lc$block          varchar2(60); -- current block name
    lc$item               varchar2(60); -- current item
    lc$Type               varchar2(20); -- item type
    lc$itemdeb     varchar2(60); -- first item
    lc$canvas          varchar2(60); -- current canvas name
    lc$tabcan          varchar2(60); -- current tab canvas name
    lc$Acanvas     varchar2(60):= ' '; -- old canvas name
    lc$Atabcan     varchar2(60):= ' '; -- old tab canvas name
    ln$NbRec          pls_integer := 0 ; -- number of records (for know if the block is multi-records)
    BEGIN
    LC$BlockDeb := get_form_property( NAME_IN('System.Current_Form'), FIRST_BLOCK ) ;
    LC$Block := LC$BlockDeb ;
    Loop -- For each block of the form
    LN$NbRec := get_block_property(LC$BLOCK, RECORDS_DISPLAYED) ;
    lc$itemdeb := get_block_property(LC$BLOCK, FIRST_ITEM) ;
    lc$item := LC$BLOCK || '.' || lc$itemdeb ;
    while lc$itemdeb is not null loop -- For each item
    -- visible item ? --
    IF GET_ITEM_PROPERTY(LC$Item , VISIBLE) = 'TRUE' Then
         -- Get the canvas and tab canvas name --
         lc$canvas := GET_ITEM_PROPERTY(LC$Item , ITEM_CANVAS ) ;
         lc$tabcan := GET_ITEM_PROPERTY(LC$Item , ITEM_TAB_PAGE ) ;
    End if ; -- GET_ITEM_PROPERTY(LC$Item , VISIBLE) = 'TRUE'
    lc$itemdeb := get_item_property(lc$item, NEXT_NAVIGATION_ITEM );
    lc$item := LC$BLOCK || '.' || lc$itemdeb ;
    end loop ;
    LC$Block := get_block_property( LC$Block, NEXTBLOCK ) ; -- next block
    exit when LC$Block is null ;
    End loop ;
    END Get_Canvas_Names;

    Hello,
    You can't. All these Forms built-ins can be applied only on the current form running in memory. There is no built-in that allows to read a Forms module that is not loaded in memory.
    Francois

  • Help Required - Oracle AS 10g

    hello,
    i have just downloaded oracle 10g softwares ...
    i installed database then developer suite ... everything was fine ... until i was unable to run forms ...
    a friend of mine told me that i need to install application server in order to run forms ...
    1st of all i want to know that is there any way i can run forms without using Oracle AS 10g ...
    2ndly i m facing problems in installation of Oracle AS 10g ...
    i have studied online documentation but it ain't so helpfull for me ...
    it seems like ... i have to install "Oracle AS infrastructure" first and then "Middle-tier: Business Intelligence and forms" ...
    i m using P-IV (AMD Athlon XP 2100+, MMX, 1.7GHz Processor) with 512 MB DD RAM and Windows XP Professional with Service Pack 2 as Operating System.
    During installation, the installer is warning dat only "Oracle Application Server (J2EE and Web Cache)" and "Oracle Application Server Developer Kits" are supported installations on dis platform ...
    what should i do ... urgent help required ...
    regards,
    yasir ([email protected])

    @ brusardl and rkogelhe
    thanx for replying ...
    brusardl
    i didn't changed da port while installing Oracle AS ...
    inspite i stopped all services using/listening from dat port ...
    now ... i guess there has been some conflict ... as database listner stops automatically just after starting !!!
    rkogelhe
    can u plz tell me what is BI version of Forms ...
    and can i view forms running on web without installing Oracle AS with OC4J bundled in Forms ???
    Another Problem:
    I re-installed Database, Developer suite and then Oracle AS infrastructure ...
    everthing went fine ...
    when i installed Oracle AS Middle Tier - Business Intelligence & Forms
    during installation ... some configuration assistants failed/skipped ...
    da OC4J configration assistant at 5th last position failed ... so remaining 4 configuration assistants were skipped ...
    at da end it said ... Installation Succesfull but with some configuration assistants failed/skipped ...
    is dis a installation useless ... can i fix dis ?
    regards,
    yasir

  • Experience required!

    Hi there - apologies in advance for this rather wordy question, but I'm looking for some clarification over a few things with somebody who's had experience in this field..
    Basically, here is where I stand, currently.
    I'm sixteen and interested in flash web design. I've produced a website already, which, at the time of production I was over the moon with, but obviously as time goes on, as I expect is the case with most designers, I've become less and less fond of it. The main reason being, it's awfully un-dynamic making updating it a real nightmare. (A side note - the website is for photography, so heavily reliant on being able to be updated).
    Now, I wish to produce a new website with content that I will be able to update more easily. Without trying to push myself too far, I'm hoping to produce something as close to a CMS as possible.
    Here's the method I'm thinking of, but I'm just not sure whether it's viable:
    1) Thumbnails, loaded into a movieclip, with an XML file providing the the link to the image.
    2) Full size images, loaded into movieclips too, with an XML providing the link to the image.
    3) Text on the website, such as an about me etc, inside an XML file, loading from there too.
    In all honesty, that's the core of the website.
    The two problems I face each time I get going are how to load images effectively.
    SO, after a long wind way of piecing my words together: THE QUESTION:
    What is the best way to setup a site with such components as the above, mainly focusing on the 'loading images' side of things.
    Does my method seem logical?
    And if so, how do I go about setting up a generic loader that draw a certain image url, for multiple instances, from XML?
    Thank you for taking the time to read this, and thanks in advance for any advice you can provide, at all!
    Kind regards.

    Here's the scoop on classes.  There are folks who use them, religiously, and there are others (moi) who don't. There are those who emphasize they are the only way to do anything, and there are those (moi) who don't.
    I don't use them primarily because I still have to understand some things about them that in the past have caused my brain to twist up trying to understand... long before I ever met Flash.  Still, I can deal with simpler ones and can usually help solve simpler problems people have with them.  I don't emphasize creating them, because things can be done withoutcreating them.  But they do offer a structuring basis that can make for better control of your own designs and workflow (I guess).  And, after all, anything you do in working with actionscript is going to boil down to using classes, even if they are just the built-in ones.
    But to design what you are after you don't need to use classes.  So if you want to learn how to do it, then you can pursue it sans classes.  If you do pursue it with classes, then you'll be doubling up on the learning effort... trying to solve the functional design on one hand and trying to solve working with classes on the other.
    As far as your wondering about creating master-pieces.  You can create them dynamically with code, assigning their properties when they are created... lining them up one after another, assigning them event listeners, etc... you just devise a little coded assembly line to cycle through them.  A MovieClip object can have properties assigned to it dynamically, so you don't need to have a master lying in the library that you use over and over (though you could).  For instance...
    for(var i:uint = 0; i<5; i++){
         var mc:MovieClip = new MovieClip();
         mc.x = i*100;
         mc.name = "mc"+String(i);
         mc.age = i*10;
         mc.addEventListener(...etc);
         addChild(mc);
    With that loop I just created 5 potential homes for things to be planted in, they are spread out at 100 pixel intervals and can each be targeted using their name properties.  I could have stored them in an array and use the array to target them instead of their names (often easier to deal with).  Normally the populating will be done as each one is created in the loop, but that is just to demo how your masters can be easily created from code alone.
    The XML file will be a resource of data which you can use for the content.  It can identify the images that your code will load and plant into those movieclips, or indicate sections of text content, or color schemes, or placement values of things... pretty much anything you want to be able to adjust without editing and compiling a new Flash file.
    Later on, you can mix in a server side language such as PHP to allow you to load images to a server and/or to extract the names of images from a folder on a server, and it can generate the xml formatted data that Flash will read in just as if it were an xml file (flash doesn't know/care, as long as what it gets looks like xml).  And then, advancing even further, you get to mix in a server database, making your site all kinds of dynamic--storing and retrieving data all over the place.  It's a great hurdle to get over, especially at your age... the world will be yours to conquer... I didn't learn these things until I was over-the-hill.
    Don't fear it, just pursue it.  It really is not difficult stuff but it requires developing a way of thinking You just have to develop a programming frame of mind.  It will come.  It won't happen overnight, at least not right away, but at some point a light will come on and you'll find your confidence level makes you fearless.
    Take your time and pursue it one stage at a time, and don't be shy of keeping it simple.  Find a basic tutorial and get the basic concepts under your belt... don't shoot for the ultimate design from the start... you can build up to that in stages.  Since you want to pursue xml next, which is a logical choice, here's a link to the first xml-related tutorial I learned from...
    AS3 - RSS XML feed
    http://www.gotoandlearn.com/play.php?id=64
    The gotoandlearn.com site has a lot of good tutorials that deal with some of the features you'll be getting into, though alot are advanced beyond anything I know as well.
    And since that is an RSS tutorial, I recommend you also do a Google search for "AS3 XML tutorial" because an RSS feed has some slight differences in the xml data and I wouldn't want to guide you into a corner.

  • How to maintain year of experience required for a position?

    Hi All,
    There is a very requirement for a position like "3 years of experience as Executive" I dont know how to maintain this requirement in SAP. Right now we have created a qualification named "Executive Experience" with a time scale assigned to it with a validity period of one year so HR dept must change the scale evey year. It works but it's not best practice. I know if there is a way we can use employee past and current work history to determine the level of experience and also how to define this requirement in position profile.

    Hi Dilek,
    I maintained all those thing. But i have to do the selection process on the basis of position with year of experience. While doing the selection process via Position or Qualification its picking up the exact applicant. I created a career as 3 years as you said so that the minimum year of experience for that position is 3 years. Then where i can give the year of experience for the applicant? Even though i maintained the previous employer details as 2 years the system is picking up the applicant. Logic wise how to do this?
    Please help me to sort out this problem.
    Thanks in advance,
    Magesh S.

  • Requirement failure - Oracle 10G 10.1.0.3 on RH (Red Hat) ES 4

    Hi all!
    I'm trying to install Oracle DB 10G 10.1.0.3 for Linux on a RedHat ES release 4 server.
    The initial requirement test state that OS version must be redhat -2.1, redhat-3 to install, and prompts "Failed". After checking the Certify in metalink I see that RH4 is supported with 10Gr1 (10.1.0.3 minimum). I think this might be caused by missing rpm's...
    Since the documentation does not state package dependencies for RH4 I'm kind'a lost when it comes to installing this. Anybody done this successfully? Does anybody have a link to som doc?
    With gratitude!
    "Heyers"

    Is there a reason you're not using 10gR2? (10.2.0.1+)? It's much better :)
    You can add redhat-4 to oraparam.ini in the install directory and it should skip that for you :)
    ~Jer

  • How to maintain experience requirement for a position

    Hi All,
    There is a very common requirement for a position like "5 years of experience in management level" I dont know how to maintain this requirement in SAP. right now we have created a qualification named "Management Experience" with a time scale assigned to it with a validity period of one year so HR dept must change the scale evey year. It works but it's not best practice. I know if there is a way we can use employee past and current work history to determine the level of experience and also how to define this requirement in position profile.
    Thanks in advance,
    Shahin

    I  guess  it will be SU12 Transaction.
    Thanks
    Seshu

  • Registration key required for database 10g software

    receive a password and message "Thank you for registering", but never get the key necessary to install software on disk that came with textbook--very frustrating

    You can download and install Oracle Database 10g free (for personal/development use) from OTN, with no registration key required:
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    (I recommend Express Edition)
    Cheers, OTN

  • Registration Key required for trial 10g

    I wanted to install the 10g and self-study guide that Oracle sent me in the mail. The install requires a registration key, made available at oracle.com.
    After filling in all the forms required to register, I wind up at a "Survey Error", and of course no key.
    I then spent 20 minutes in many different automated attendant menus, trying to figure out how to get a human to help me. After being told frequently how important my call was, and how menus had been changed to "expedite" my call, I reached Wendy - twice, in fact. She told me to wait to be transferred, then press six.
    This took me to a voice mail box, with a promise that someone from sales would return my call.
    At this point I gave up, and composed this little message. I am not impressed.

    You can download and install Oracle Database 10g free (for personal/development use) from OTN, with no registration key required:
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    (I recommend Express Edition)
    Cheers, OTN

  • Shifting career from ABAP development to BIW - expert opinions required.

    Hi Experts,
    I am having around 2.5years of developement experience in SAP - ABAP, i want to shift my career to BIW - can someone guide me with all the pro's and con's of the same.
    Infact i want to move away from coding stuff - what all the things are neccessary topics for me to cover in BIW to start a career - as i have zero knowledge of BIW.
    Advance Thanks
    Harini

    hi,
    If u are  having experience in ABAP then BW is a good combination for u.  But BW is a vast with theory and u need real time exposure in that area.  In BW we will write ABAP coding for transformations,and routines.  In BW ABAP coding is also there but very less.  I think u can start learning BW.
    First u need to start with Data Modeling ( Infocube and ODS object design)- Extraction of data from flat Interface- Extraction of Master Data, Transaction Data, Extraction of data from R/3 Systems,Process chains. Learn these areas well.
    As u already into ABAP learn how to do coding for routines,Enhancements then u can manage it very well.

  • Documentation of Portal Implementation - Experiences Required!

    Dear EP Experts & NW Gurus,
    I would like to know:
    1)Any amount of portal implementation includes creation of Portal objects and PAR files, systems etc etc..
    Moving these portal objects from one env to other some times involves changing few properties..Here i would like to know as to how are the EP developers documenting the Portal Developement?
    2) How are the diff companies & consultants following the process of Design, Specs, TestCases & implementation?
    Since there are so many properties involved for portal objects, these properties need to be documented so that if some problem happens in prod system then the docs can be consulted to find out whether the properties are correct or not?
    3) How does SAP themselves do the documentation of their releases?Is there some tools that they have created which queries some kind of databases & which just dumps the properties etc into some excel format...?
    Why i am asking this is bcos (in our case) after such a large implementation (hundreds of portal objects & tons of config..), the docs which we created have become so heavey and big it sometimes becomes diff to manage the docs manually. & then when we have team scenario,(where many ppl work & new ppl come & join..)these docs maintainance is painfull.
    4) Most of the time after implementaion, where the support starts and when old iView keeps on changing as per new req, <b>is there any Standard way by which we can maintain the versions of Portal objects and config..??</b>
    Please remember that i am talking abt all the phases of Soft Dev (High level Design, Specs, TestCases)..
    I would like to discuss what kind of documennation does SAP & others do for portal implementations..
    Regards
    Gaurav

    Hi Dagfinn,
    Thanx for the reply..
    I also think that the documentation should never become a burden..but a boon..
    - Can you explain in detail about the first point (writing script)..are u saying that by some means i traverse the PCD and pickup the portal objects etc..
    - We are on NW and have also configuared JDI recently. But how to use JDI for such kind of requirement.
    Also as i asked, do u have any knowledge about Version Maintanance of Portal Objects?
    The reason why i am again asking this is because what has happened recently is that since many ppl work on same objects and later on if an administrator wants to debug that who has changed what property -> it becomes diff to find out. even if i find that who has changed by "Changed by" but out of soo many propertes of any iView, which one was changed????
    Regarding your answer about PCD Databases Browser.. in thread (Changing name of PCD object EP 6.0 SP11)
    <i>Yes,
    You can use the PCD database browser to change pcd properties, though I am not sure if it is included in NetWeaver.
    Dagfinn</i>
    I am on SP11 & SP9, and i am able to find that tool, but still not able to successfully connect. As soon as i connect, i willlet u know...
    What about the other people here in SDN, what do the others have to say...??
    Regards
    Gaurav Gandhi

Maybe you are looking for

  • Usage Error while generating spool

    I need to create a function module which would be called from a BRF. The function module must generate an adobe form and sent to the spool. I get usage error at the call form function module level. could someone suggest if anything is missing in the

  • Mp4/Mpeg videos not playing in Robohelp 9 preview

    I have RH 9.02 installed on Windows 7 32bit. I'm able to embed captivate files without any problems. However, mp4 and mpeg files that I've inserted  in preview won't play. They play perfectly fine outside of RH. When I try to play the mp4 file, it re

  • E75 wifi connection

    I have an E75 and am trying to surf the internet using my home wifi. When I press"start browsing" button, I get a message on the screen from Orange World saying that the page I am trying to access is only avaliable when connected to Orange GPRS netwo

  • LaCie D2 Firewire 800 drives not mounting.

    Hi guys, After an OS upgrade to 10.5 I can't mount any Firewire drives to desktop. In fact, they're not even listed in System profiler, the message "*Warning:Unable to list FireWire devices*" comes up in Firewire bus section. They worked fine under 1

  • DST Issues

    I am having some issues with a BB Curve. I installed the latest version of the OS on it and I am still having issues between Calendars on the BB and the pc. When I book a meetin gon the BB for 10 am it shows as 9 am on the pc and visa versa. Any thou