DIFFERRENCE BETWEEN CANVAS AND VIEWS

Hi,
Can any one tell me whats the differrence between Oracle Forms Canvas and Canvas View ? Coz the built-ins are differrent for canvas and view though they perform the samehting like FIND_CANVAS, FIND_VIEW .

Hi,
   <b>WebDynpro</b> is a highly declarative, tool-based programming model. It minimizes platform-dependent "plumbing" code for building UIs and maximizes declarative metadata describing huge portions of a typical application in a platform-independent way.
Web Dynpro follows a "top-down" approach in order to consistently support multiple runtime platforms.
In Web Dynpro you just do drag & drop the UI components.
Portal components has followed a "bottom-up", programming-driven approach to Web development.
<b>Webdynpro</b> is used when requirements ask for a prototype using minimal time n effort.
Highly skilled programmers are not necessary to write a webdynpro application
It uses dynamic controls without reloading the page.
<b>The Portal Development Kit (PDK)</b> provides documentation and examples with source code to demonstrate how to develop portal applications and portal content for the SAP NetWeaver Portal using the SAP NetWeaver Developer Studio.
PDK includes coding examples on the following topics:
*Creating Portal Components and Portal Services
*Portal Profiles
*Resources
*Internationalization
*Portal Beans
*Page Builder
*EPCF
*Application Integrator
*Connector Framework
*Portal Navigation
*Object Based Navigation
*Transformation Service
*User Management
PDK is for deployment for portal application, has very good documentation of portal development, contains sample application, Java Docs for all the apis for portal and KM and plugins for eclipse(which you don't need if you are using NWDS). It is basically a nice help for developer along with an iviews for uploading par and testing them.
In EP 6.0 it is just business package that you import to your portal. This will then give a "java development" role in portal which can be assigned to users. The role will then create a tab called "Java Development" in the top navigation and click on it you can see all the contents underneath.
Regards,
Pooja.
Message was edited by: Pooja S

Similar Messages

  • FCP 7/ Sync issue in the canvas and viewer-not in timeline.

    I am using FCP 7 on a Mac Pro.  I am seeing an audio/ video sync issue in the canvas and viewer if I display at anything less than 50%.  at 50% the video is choppy, but will play in sync.  If I adjust between 50% and 25% or less, I can actually see the frame change without moving the play head.  Has anyone else experienced this and found a solution?

    Thank you for the advice MtD.  This content was encoded using H264 compression, but I have the option within my media encoder application to create only i frames-no B or P frames.  This gives me a high quality file that is supposed to be much more "edit friendly" than standard H264.
    I'm in an environment where re-rendering to Apple ProRes is not always an option.  I have imported H264 content before and found no issue when trying to playback in the canvas.  One odd thing I did encounter with my "problematic" file is that though I capture this at 23.976fps, Quicktime Player identifies the frame rate as 23.97fps and Final Cut then interprets this as 59.94fps.  I thought this might be the culprit, but even after adjusting my frame rate to 23.98fps, and FCP7 importing as 23.98fps-the odd sync issue still appears in the canvas when displaying at less than 50%.
    I will take your advise and re-render to Apple ProRes when that is a possibility.
    Thank you.

  • Differrences between structure and table in data dictionary in ABAP?

    What is the differrences between structure and table in data dictionary in ABAP?
    are they same?

    Tables :
    1. The place where the data is stored so that you can retrieve at any time.
    2. There can be more than one record stored
    Structures :
    1. The data / info stays only during the runtime of the application and will not get stored at all during the run time ....
    2. Only one record can be stored at the runtime .....
    A structure forms the skeleton of the table.
    A structure comprises components i.e., fields. Types are defined for the components A component can refer to an elementary type (via a data element or by directly specifying the data type and length in the structure definition), another structure or a table type. A structure can therefore be nested to any depth
    Tables can be defined independently of the database in the ABAP Dictionary. The fields of the table are defined with their (database-independent) data types and lengths.
    When the table is activated, a physical table definition is created in the database for the table definition stored in the ABAP Dictionary. The table definition is translated from the ABAP Dictionary to a definition of the particular database.

  • Canvas and viewer won't display video correctly

    I have just reinstalled and then reinstalled 5.1.4. Picture plays on external video monitor but will not play in either canvas or viewer. RGB is set. Mirror on playback is set. Audio will play. Viewer will play on external monitor. Usually a still will be on viewer of canvas screen or just a jumbled mess. Sometimes with parts of display frame included in mess. Thanks for any help.

    Thanks for posting helpful info re my problem. Issue finally resolved. FYI in case you should encounter a similar problem. I failed to mention in my post I was running two video displays. The video card I was running on when I developed the problem had been my auxilary display and was too underpowered to run the canvas and viewer. I inadvertaintly switched final cut pro to that card and monitor when my previous main monitor quit. I simultaneously had a drive boot problem. All is well that ends well, I suppose. Only took 4 days to sort it out and could find no info in tech manual that would have led me to this.

  • The Relation between tables and views in oracle financial

    Dears
    I am work in oracle e business r12
    and i need to build report as xml
    when run my select its need big time to view data i have a huge of data so i need to clear the relation of this tables if there is miss and if there another technique in select statement
    this is my select statement
    select
    j_hdr.je_header_id je_header_id,
    hdr.VENDOR_NAME supplier,
    SEGMENT1||'-'||SEGMENT2||'-'||SEGMENT3||'-'||SEGMENT4||'-'||SEGMENT5||'-'||SEGMENT6||'-'||SEGMENT7||'-'||SEGMENT8||'-'||SEGMENT9 Account_number,
    hdr.gl_date gl_date,
    j_hdr.CURRENCY_CODE CURRENCY_CODE,
    inv_lin.DESCRIPTION DESCRIPTION,
    j_lin.ENTERED_DR ENTERED_DR,
    j_lin.ENTERED_CR ENTERED_CR,
    j_lin.ACCOUNTED_DR ACCOUNTED_DR,
    j_lin.ACCOUNTED_CR ACCOUNTED_CR,
    j_hdr.JE_SOURCE JE_SOURCE,
    j_hdr.DEFAULT_EFFECTIVE_DATE Transaction_DATE,
    hdr.INVOICE_NUM INVOICE_NUM,
    QUICK_PO_NUMBER PO_NUMBER,
    null ASSET_CATEGORY_ID,
    hdr.VENDOR_ID VENDOR_ID
    from gl_je_headers j_hdr,gl_je_lines_v j_lin,ap_invoice_distributions dist,ap_invoices_v hdr,ap_invoice_lines_v inv_lin
    where code_combination_id = DIST_CODE_COMBINATION_ID
    and hdr.invoice_id = inv_lin.INVOICE_ID
    and dist.invoice_id = inv_lin.INVOICE_ID
    and j_hdr.JE_HEADER_ID = j_lin.JE_HEADER_ID
    and j_hdr.status = 'P'
    and nvl(:P_SOURCE,'Payables') = 'Payables'
    and je_source = 'Payables'
    and j_lin.CODE_COMBINATION_ID between ( select CODE_COMBINATION_ID
    from gl_code_combinations_kfv
    where CONCATENATED_SEGMENTS = :P_FROM_COMBINATION_CODE)
    and ( select CODE_COMBINATION_ID
    from gl_code_combinations_kfv
    where CONCATENATED_SEGMENTS = :P_TO_COMBINATION_CODE)
    AND TRUNC(dEFAULT_EFFECTIVE_DATE) BETWEEN NVL(:P_FROM_DATE, DEFAULT_EFFECTIVE_DATE) AND NVL(:P_to_DATE, DEFAULT_EFFECTIVE_DATE)
    Thanks in advance

    Welcome to the world of complicated Oracle Application queries. Didn't fully understand your question, so a few guesses -
    I think that you are asking how to make your query faster? I would reference the FAQ section on how to post a question regarding performance.
    Your title indicates you want to understand the relationship between tables and views. In general, Oracle Applications uses views for 2 reasons - to join data from multiple tables for display, and to differentiate data from different organizations. (I am still on 11i and have heard organizations are handled differently in 12 so I can't speak to that for sure).
    To understand the relationship between tables in a view, you can access the view's source code, either through a development tool such as PL/SQL Developer or TOAD (I'm guessing Oracle's tool does this also, but have never used it), or by querying the source from the dba_source table.
    select * from dba_source where name = (name of view) and type = 'VIEW' order by line;without the ( ) just the view name, in all capital letters i.e. , 'GL_JE_LINES_V'
    Good luck!

  • FCP Canvas and Viewer

    My FCP canvas and viewer appears to be showing my 16:9 footage in a letterbox format - not the same as usual - normally when I make the canvas full screen the footage will fill the screen - but now it is letter boxed, if you see what I mean!?
    I am using FCP 5.0.4
    Can anyone help please?

    Widescreen mode can mean either letterboxed or anamorphic. Select a clip in the browser (or in the timeline for that matter) and hit command-9. Is the anamorphic check box, checked? If not, your original material is letterboxed and you've either got to live with it, or enlarge your images which will lose an enormous amount of quality. If your clips are anamoprhic, you've got to check the anamorphic check box in your sequence settings, then select all your clips, control click and choose remove attributes:basic motion. Should do the trick.
    This can be avoided by making sure your sequence settings match your clip settings BEFORE you start editing.

  • Canvas and View have gone green

    The canvas and viewer windows in our FCP 5.4.1 are green and will not display video. We've restarted computer, and then re-installed FCP. FCP has been working well on this computer for over a year. Any ideas? Thanks.

    sounds like something corrupt in your preference files
    FCP uses these files to configure your set up ... when things go screwy its often a good place to start
    note: reinstalling FCP doesn't help in this instance, because the preference files are not part of the install.
    trashing your prefernce files can be done mnaually
    but even easier is to use a nice bit of freeware caled FCP Rescue which is designed to perform this task ... it also lets you make a backup of your settings when they are good, which you can restore later if things go screwy again
    you can grab it here: make sure you download the version that matches your version of FCP
    http://fcprescue.andersholck.com

  • Image Doubling in both Canvas and Viewer

    Hey Guys, don't know why this is happening as I didn't change any settings, but when I reopened my edit I'm getting this weird Doubling of the image effect in both the canvas and viewer... Need to finish this and this doubling is killing me, already tried trashing prefs, no mirror filters on the clips, happens for entire sequence....Happening in multiple projects. Any ideas?

    Okay so I figured it out, but I'm not sure what it is... if you look in the top right hand corner of my screen, where the volume bar (not in the screen grab cause I had quit the app) there is a rounded corner blue box. When I clicked it a drop down menu shows and it was on Free View, I switched it to 2D and problem solved. Now, new problem, I have no idea what this is or why its on my menu bar. Any one know? Something to do with my Dual Displays?

  • What is the difference between 'workbookk' and ' view'?

    Hi all,
    What is the difference between 'workbook' and 'view'. I check some document but I don't see there is big difference.
    Thanks.
    J.

    hi John,
    We use workbooks for excel formating,like font changes, lay out changes etc...
    Workbooks into which queries are inserted are no different in appearance than other Excel workbooks.
    They can be saved as files, copied, sent and (using Excel functions) edited however you like and even supplemented with other data.
    Views are primarily used for BW Web Reports, it is similar to the concept of workbooks is for BEx.A local view can be accessed only within a workbook in which it was saved, where as a global view can be accessed globally in the system, it is not attached to a workbook. Only Global view can be used in BW Web Templates.
    u can seee the help doc for more details:
    http://help.sap.com/saphelp_nw04s/helpdata/en/0d/af12403dbedd5fe10000000a155106/content.htm
    http://help.sap.com/saphelp_erp2004/helpdata/en/3a/89883989676778e10000000a11402f/content.htm
    bye
    sham'm

  • Clips invisible in timeline as canvas and viewer playback become erratic.

    cutting a feature on the fcp... has anyone else had the problem where, at some point, the clips and thumbnails cut into the timeline start failing to appear (although they are, indeed, present). simulaneous with this issue, the canvas and viewer become erratic. for instance, i can't drag across the timeline and have it appear in the canvas unless i hit the spacebar first... same with the viewer.
    i had this problem earlier and thought it was corrected when i increased ram and disk space allocated to thumbnails and lessened the amount of memory allocated to fcp. this helped for a while but now, as the feature edit grows longer, the above problems have reappeared.
    any thoughts? thanks.

    Shane's Stock Tip Mantra: If the program was working
    fine, and now isn't, or just isn't working the way it
    should, the first things to do are:
    1) Trash your FCP preferences. Download the
    appropriate version of FCP Rescue at
    http://fcprescue.andersholck.com/ and run it.
    2) Open the Disk Utility and Repair Permissions.
    3) (optional) Sacrifice a goat on the eve of the
    first Full Moon of the month. Results may vary.
    Shane
    thanks for the response shane... this may sound naieve but i'm new to fcp... does trashing the preferences affect the work i've already done on the timeline-- which is considerable.
    also... the hyperlink you supplied wouldn't open for me. is it typed accurately?
    finally... i have my wife's yorkshire terrier for sacrifice. would that be a suitable substitute?
    thanks again.

  • Canvas and Viewer issues

    All of a sudden, can't see vid footage on the viewer or canvas.  Hear audio.  Clips are in the timeline.  4 hours trying to fix it.  Never happened before.  People with similar issues have apparently gotten cryptic answers so far.  Pleasse! someone who ACTUALLY knows a resolution respond.  I am standing by.
    Thank you
    Boe

    Try this:
    Shane's Stock Answer #15:  White or Black Canvas or Viewer
    Make sure the canvas or viewer are selected then go to VIEW>CHANNELS and set it to RGB.   It might be set to ALPHA.
    OR...
    Click on the drop down menu above the Viewer or Canvas and make sure that you are on IMAGE or IMAGE + WIREFRAME.

  • Any body explain me the differrence between BAPI and RFC

    Hi gurues,
                   The main difference between rfc and bapi is calling the non sap system. Other than that what r the differrence . How sap modules works other machine without sap is installed.

    The difference is not importat while you understand the concept.
    I think, RFC is the protocol for calling functions from external systems in R/3.
    I understand like BAPI a series of complet functions that SAP offers you for use and model a business use.
    But if I need program a function that can be called for external system i would call it RFC_NAME, because is a unique function that makes a single task.
    In other words, the difference i think is about work idea more than another thing.
    RFC
    A remote function call is a call to a function module running in a system different from the caller's. The remote function can also be called from within the same system (as a remote call).
    RFC consists of two interfaces : A calling interface for ABAP Programs and a calling interface for Non-SAP programs.
    The RFC Interface takes care of :-
    Converting all parameter data to the representation needed in the remote system
    Calling the communication routines needed to talk to the remote system.
    Handling communications errors, and notifying the caller, if desired ( using EXCEPTIONS paramater of the CALL FUNCTION).
    BAPI
    BAPIs are standardized programming interfaces (methods) enabling external applications to access business processes and data in the R/3 System.
    BAPIs provide stable and standardized methods to achieve seamless integration between the R/3 System and external applications, legacy systems and add-ons.
    BAPIs are defined in the BOR(Business object repository) as methods of SAP business object types that carry out specific business functions.
    BAPIs are implemented as RFC-enabled function modules and are created in the Function Builder of the ABAP Workbench.
    The most critical difference btwn BAPI and FM is that BAPI can be wrapped in Business objects whereas RFC cant.
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    The following standardized BAPIs are provided:
    Reading instances of SAP business objects
    GetList ( ) With the BAPI GetList you can select a range of object key values, for example, company codes and material numbers.
    The BAPI GetList() is a class method.
    GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved and returned to the calling program. The instance is identified via its key. The BAPI GetDetail() is an instance method. BAPIs that can create, change or delete instances of a business object type
    The following BAPIs of the same object type have to be programmed so that they can be called several times within one transaction. For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction, the second BAPI call must not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
    Create( ) and CreateFromData! ( )
    The BAPIs Create() and CreateFromData() create an instance of an SAP business object type, for example, a purchase order. These BAPIs are class methods.
    Change( )
    The BAPI Change() changes an existing instance of an SAP business object type, for example, a purchase order. The BAPI Change () is an instance method.
    Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database or sets a deletion flag.
    The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
    Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type. The instance to be cancelled remains in the database and an additional instance is created and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
    Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst! ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are instance methods.
    Check these Links out
    http://searchsap.techtarget.com/ateQuestionNResponse/0,289625,sid21_cid558752_tax293481,00.html
    http://www.sap-img.com/abap/interview-question-on-bapi-rfc-abap-objects-tables.htm
    http://www.sap-img.com/fu033.htm
    http://www.sap-img.com/abap/ale-bapi.htm
    Refer following SDN threads:
    Diff. Between BAPI and RFC
    Re: BAPI and RFC
    difference between RFC and BAPI
    Re: Difference Between BAPI and RFC?
    Reward all the helpful answers.

  • Panel between Filmstrip and Viewer missing

    Hey all!
    I have Lightroom 4.0, and I'm editing pictures, but I have come to notice that the panel between the Filmstrip and the Viewer is missing. This was the panel that gave me the ability to check the "Show Mask Overlay" and set the Mask Pins to different display options (Auto, Hide, Show, etc.). I can't figure out how to get it back. Toggling all of the panels does not work.
    Thanks!

    Yes, it doesn't show up when I do click that. It doesn't show up under Crop (would have the 'Done" button) or any of the other adjustments either.

  • Difference between read and view only -users having both permissions can download the documents

    Hi All,
     Would like to know whats the difference between view only and read permission.
    As per my requirement, my end users who have been assigned View Only should NOT be able to Download the document from a doc lib.Whereas who have Read permissions should be able to download.
    But when i tested with few users with these  permissions, those users who are having  viewonly permissions was able to  download the documents.
    how this will be true? MS says that this is not possible if it contains server side handlers.
    my customer worried about the  download-the-document part. as per them end users who have  view only permissions should not download the docs.

    Hi,
    Please check this similar thread:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/4b21a168-443b-45d3-940c-fe52e8538290/how-to-protect-sharepoint-document-not-allow-to-download?forum=sharepointadminprevious
    Your only option is to implement IRM to accomplish your requirement.
    Nico Martens
    SharePoint/Office365/Azure Consultant

  • Reg Differrences between SynBo and Data Object

    Hi,
            I want to know the architectural diffrences between a SyncBo of MI 2.5 and Data Object of NWM 7.1.  As it is given in help.sap.com documentation I think A data object support multiple levels of parent- child hirearchy where as a SyncBo is limited to one level of Header and Items.Similarly do any other differences exist?
    2) In what way A data Object concept is better than that of a Synco.?
    3) For manipulating the data of a data Object on Front end, Can we Use the existing SmartSync API of MI 2.5, or a seperate API for client side is going to be released?
    Thanks in Advance,
    Rajesh

    Hello Rajesh,
    1. The differences are small. You pretty much highlighted the biggest one (multi child node). Other differences exist in the fact that a SyncBO is linked to a backend BAPI as the DO is not (you would usually create the DO with the fields you need and then have backend adapters to fill it). Lifecycle of the DO is also different. Even release, non destructive change can happen and old application as well as new application will work at the same time. I can list a couple more, but I think you get that a SyncBO is different than a DO (even if in our development we still get mix both wording:))
    2. Yes DO is a better concept than SyncBO.
    3. There are 3 ways of accessing API on the client side. The first is the old SmartSync API which is only used in backward compatibility application (MAM for example). It should not be used for new development, but only to leverage existing one. After that you have two new frameworks for laptop and for PDA that you can find in NWDS 7.1. They reviewed the naming so I am not sure of the current ones, but I think it is something like Mobile Application for Handheld and Mobile Application for Laptop. Those two new framework uses WebDynPro flavored UI and provide access to the sync/data layer.
    Thank you,
    Julien.

Maybe you are looking for