Creating snapshops with API using Forms 5.0

We're trying to create snapshots on an Olite database using the
API. We've problems below are not yet solved:
1. It's impossible to create complex snapshots. A complex
snapshot uses a union or a join.
2. It's impossible to create a snapshot for a view.
3. It's impossible to create a snapshot that contains single
quotes. For example: The snapshot "select 'A' from dual" can't
be created.
null

We're trying to create snapshots on an Olite database using the
API. We've problems below are not yet solved:
1. It's impossible to create complex snapshots. A complex
snapshot uses a union or a join.
2. It's impossible to create a snapshot for a view.
3. It's impossible to create a snapshot that contains single
quotes. For example: The snapshot "select 'A' from dual" can't
be created.
null

Similar Messages

  • Creating Worksheets with Fill-In Form Fields

    What is the best application for creating worksheets with fill-in form fields?  The worksheets will be emailed to my clients for completion.  Once completed they need to be able to save them to their computer and/or email them back to me.  What application will they have to have in order to fill in and save the PDF?

    In short, you will need Acrobat to create the forms. They only need the free Reader to fill them in and save them.

  • Can a form be built in Adobe Acrobat cs6 with out using Forms Cental

    Can a form be built in Adobe Acrobat cs6 with out using Forms Cental
    If so how?

    This question is better answered at this link:
    <http://forums.adobe.com/community/acrobat/forms?view=discussions>
    Good luck.

  • Creating Templates with API

    Hi,
    I want to create a template with PL/SQL. This is a basic tamplate, the only thing I need is to create it and then the user access it to customize it.
    I have viewed WWW_UI_TEMPLATE API, but it only has procedures that show the page of creation like "SHOW_STRUCTURED_CREATE", but doesn't has a procedure that create the template automatically.
    Does somebody know any api that do it for me, or any another way to do it ?
    Thanks a lot,
    Hengel Zambrano.

    I've created a responsibility with the fnd_responsibility_pkg.insert_row. The API runs ok, and I can even see the new responsibility in the FND_RESPONSIBILITY table.
    But the problem is, I can't see it in oracle apps using forms (that is, can't see in the Define Responsibility window and can't even assign it to a user). What could I be doing wrong?This forms select values from FND_RESPONSIBILITY_VL (which select from FND_RESPONSIBILITY_TL and FND_RESPONSIBILITY tables). So, did you verify if you have this responsibility inserted to FND_RESPONSIBILITY_TL table?
    Can you select the responsibility from RESPONSIBILITY_VL?

  • Creating Responsibilities with API

    Hello, I've created a responsibility with the fnd_responsibility_pkg.insert_row. The API runs ok, and I can even see the new responsibility in the FND_RESPONSIBILITY table.
    But the problem is, I can't see it in oracle apps using forms (that is, can't see in the Define Responsibility window and can't even assign it to a user). What could I be doing wrong?
    Here is my API sample
    ================
    declare
    v_rowid varchar2(500);
    v_web_host_name varchar2(500);
    v_web_agent_name varchar2(500);
    v_version varchar2(500);
    v_responsibility_id number;
    -- some variables
    v_resp_name varchar2(100) := 'Iggy GL Mega User';
    v_application varchar2(100) := 'General Ledger';
    v_resp_key varchar2(100) := 'OANDO_GL_MEGA_B';
    v_menu_name varchar2(100) := 'GL_SUPERUSER';
    v_data_group varchar2(100) := 'Standard';
    v_req_group varchar2(100) := 'GL Concurrent Program Group';
    -- ids and other crap used by the API
    v_application_id number;
    v_data_group_id number;
    v_menu_id number;
    v_request_group_id number;
    begin
    -- get application_id
    select application_id into v_application_id
    from fnd_application_vl where application_name = v_application;
    -- get data group id
    select data_group_id into v_data_group_id
    from fnd_data_groups where data_group_name = v_data_group;
    -- get the menu_id
    select menu_id into v_menu_id
    from fnd_menus where menu_name = v_menu_name;
    -- get the request_group_id
    select request_group_id into v_request_group_id
    from fnd_request_groups where request_group_name = v_req_group;
    -- get current responsibility_id
    select FND_RESPONSIBILITY_S.NEXTVAL into v_responsibility_id from DUAL;
    -- run API
    fnd_responsibility_pkg.insert_row(
    -- out params
    x_rowid => v_rowid,
    -- in params
         x_responsibility_id => v_responsibility_id,
    x_application_id => v_application_id,
    x_web_host_name => v_web_host_name,
    x_web_agent_name => v_web_agent_name,
    x_data_group_application_id => v_application_id,
    x_data_group_id => v_data_group_id,
    x_menu_id => v_menu_id,
    x_start_date => to_date('01-JAN-1951'),
    x_end_date => null,
    x_group_application_id => v_application_id,
    x_request_group_id => v_request_group_id,
    x_version => v_version,
    x_responsibility_key => v_resp_key,
    x_responsibility_name => v_resp_name,
    x_description => '',
    x_creation_date => sysdate,
    x_created_by => -1,
    x_last_update_date => sysdate,
    x_last_updated_by => -1,
    x_last_update_login => 0
    exception
    when others then
    dbms_output.put_line('failed to add resp' || sqlerrm);
    end;

    I've created a responsibility with the fnd_responsibility_pkg.insert_row. The API runs ok, and I can even see the new responsibility in the FND_RESPONSIBILITY table.
    But the problem is, I can't see it in oracle apps using forms (that is, can't see in the Define Responsibility window and can't even assign it to a user). What could I be doing wrong?This forms select values from FND_RESPONSIBILITY_VL (which select from FND_RESPONSIBILITY_TL and FND_RESPONSIBILITY tables). So, did you verify if you have this responsibility inserted to FND_RESPONSIBILITY_TL table?
    Can you select the responsibility from RESPONSIBILITY_VL?

  • How to create a tree structure using forms.

    Hi,
    How do i create a tree structure using oracle forms,i have a table named Functions and a specific column 'Function Name' should be displayed in the tree nodes.Can anyone help me out on how to create a tree structure and populating the nodes??
    thanks in advance
    Regards
    Karthik

    The FTree package provides functions to populate the tree - look for the topic "Manipulating a hierarchical tree at runtime
    " in the online help this point to all the functions and triggers

  • Creating a .fmb with out using form builder

    Hi
    I am having a template to create form modules in the forms builder, for the most of the forms I need not change any
    of the PL/SQL code provided by the template. (All my business logic and information regading items in object navigator resides in the database) The only thing that I need to do is creation of fields in object navigator and provide the
    sub class information for it. So I felt that It's better to have a tool which generats the requried .fmb file if the all
    field details are stored in a table.
    While expermenting on that we came to know that there are some functions provided by Oracle Developer6.0 that creates all
    objects in the object navigator using a C program. These programs requires some header file, most of which are provided by
    Oracle developer6.0 and some are missing.
    Pls. let me know if any one experimented
    Thanx & Regards
    ([email protected])

    u have 2 options
    create  amterial master with price control indicator standrd and maintin the price of mateirial in account view now create a po with free line itme and do the gr now in this case sytem will create a accounting document and it post the amount to the stock account Dr.
    and no gr/ir  account hit will happen as it is a free itme so there is no question of paying any amount to vendor
    u can also use movement type 511 to do the gr for that free good
    option 2  create  am material with moving average price in this case if u do the gr then  system will not create any account document but point to note here is the price will become then zero in material master as map means latest price is updated in matreial master

  • OIM 11g create user with API - double resources

    Hello.
    We have a custom web client for creating a user in OIM. When we create a user with the OOTB web app (formerly xlWebApp), it creates the user and the Access Policies work correctly to give the user one of each resource.
    When we create the user with the API from our custom web app, it tries to assign 2 of each resource to the new user. Has anyone seen this behavior before? Thank you.

    Bump Thanks.

  • Create SR with Attachment using WSDL

    Anybody knows how to create a SR on CRMOD, with an Attachment consuming WSDL?

    Dear Dmitry Rassakhatsky
    Can you please elaborate what you are trying to achive using BAPI_DOCUMENT_CREATE02  and SAP XI.
    We would be in better position to suggest solution.
    Also most of us will not be able to understand Technical ABAP so request you to provide detail scenario.
    With Warm Regards
    Mangesh Pande

  • Help me in creatting MenuItem with sortcut using ctrl + O

    How to use sortcut(ctrl + o) in awt menuitem.......

    From the API:
    (in java.awt.MenuItem)
    void setShortcut(MenuShortcut s)
    Set the MenuShortcut object associated with this menu item.
    (In java.awt.MenuShortcut)
    (ctor)
    MenuShortcut(int key)
    Constructs a new MenuShortcut for the specified virtual keycode.
    (from java.awt.event.KeyEvent)
    (field)
    static int VK_O
    Hopefully that should tell you everything you need to know - if not, check the API docs out, they will answer these kinds of questions a lot faster than posting to the forums will
    Good Luck
    Lee

  • Retire Oracle Designer development and continue with just using Forms 11

    Hi,
    The company I am working for is taking over responsibility for an Oracle Designer 10 application.
    Due to Oracle Designer is an outdated development environment we are looking for potential solutions how to get rid of Designer without completely redeveloping or replacing the application.
    One options we thought about is to switch off Designer and only continuing to use Oracle Forms 11.
    Do anyone of you have experience in this area which you would like to share?
    Best regards,
    Marco

    There are a lot of case generated (CG$) trigger and procedures used in the Forms. For us the code seems to be very complex and hard to read.
    But, also some of them seems to be never used or it is just the statement "null" in it.
    We thought about SQL Developer Data Modeler to capture most of the Designer stuff. But still there is the technical documentation that is not fully supported by SDDM. Did anyone migrate these Designer documentation to an other tool? If yes, to which one and how? We tried the SDDM Report functionality to capture some of the documentation, but also these reports do not contain everything that Designer could provide.
    There are also "Preference Sets" used in Designer and we are wondering how to migrate these to Forms Builder. Did anyone migrate these preference sets to Forms Builder in the past and has some experiences/examples/recommendations about that? We thought about one "global" form that could contain these preference sets and then inherit them.
    There are also the Functional Hirarchie Diagrams in Designer, could they migrated to Forms or SDDM in any way? Or do we need to maintain these diagrams manually in a tool like Word or Visio?
    If we could capture all the things mentioned above, we would like to continue just with Oracle Forms Builder 11gR2 in combination with other tools like SQL Developer and Data Modeler and if no other solution could be find out with some manual maintained documents.
    For all recommendations and tips we are very interested and we would thank you all very much!

  • Create Bom with alternative using CSAP_MAT_BOM_MAINTAIN

    Hi all,
    I am trying to create a new alternative BOM and thought I had to use the function CSAP_MAT_BOM_MAINTAIN. Creating new BOMs with CSAP_MAT_BOM_CREATE works as well as maintaining them with CSAP_MAT_BOM_MAINTAIN, but I fail in creating a new alternative BOM. In the function
    CS_DI_HEADER_OBJECT_CHECK (called within the maintain-function ) it says (close to the failure )
    "*Anlegen von Alternativen über CSAP nicht erlaubt"
    "creation of alternative using csap not allowed" ....
    Well, sounds like I am using the wrong function, but which should I use instead ???
    Thanx in advance,
    Karsten

    Hi,
    Use : CS_BI_BOM_CREATE_BATCH_INPUT1 To Create a new BOM or New Alt. BOM.
    Use : CS_BC_BOM_CHANGE_BATCH_INPUT to maintain the BOM.

  • Help creating .dll with c using JNI

    Hi. I have created a JNI application that uses C to call Java. Now, I am trying to create the .dll for windows. I am using VS C++ compiler. My program compiles; however, it doesn't seem to start the JVM. I am not sure how to pass the arguments in VS C++ while builiding and running. Please let me know. Thanks.

    Hey,
    Thanks. I apologize for not being clear. I have created the dll file and an application that links to that dll and executes the code. It creates the .exe file and when I execute it, it goes through the sample() function that just prints "Hello", and then it goes through the startJVM() function where the JVM is intended to start; however, the status of JVM is returning -1. It's not able to start JVM. I have included the path for the jvm.dll and jvm.lib. But, still won't work. Please reply with suggestions/comments. Thanks again.

  • Can't create text with PHP using imagettftext [SOLVED]

    I think that after the upgrade of PHP to the modular one I can't create text using TTF fonts. Before I file a bug report could someone confirm if it works or not for them? I might just have screwed something in my box.
    This code should create a text image and display it in the browser (it assumes you have DejaVu fonts in the default directory):
    <?php
    // Set the content-type
    header("Content-type: image/png");
    // Create the image
    $im = imagecreatetruecolor(400, 30);
    // Create some colors
    $white = imagecolorallocate($im, 255, 255, 255);
    $grey = imagecolorallocate($im, 128, 128, 128);
    $black = imagecolorallocate($im, 0, 0, 0);
    imagefilledrectangle($im, 0, 0, 399, 29, $white);
    // The text to draw
    $text = 'Testing...';
    // Replace path by your own font path
    $font = '/usr/share/fonts/TTF/DejaVuSans.ttf';
    // Add some shadow to the text
    imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);
    // Add the text
    imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
    // Using imagepng() results in clearer text compared with imagejpeg()
    imagepng($im);
    imagedestroy($im);
    ?>
    Could someone with an up to date php with GD enabled tell me if it works or him/her?
    Thanks.
    EDIT: Ok, I solved it. The error reporting is turned off by default now, so I was not getting any error. After turning it on I found out it was related to the open_basedir directive being enabled now in php.ini. Turning it off allowed me to access the TTF for drawing text.
    Last edited by Bogart (2007-11-01 00:43:33)

    Aha!  I figured it out.  I used File...Open As to open it as a Camera RAW file.  In the ACR editor, it was showing as 16-bit depth.  Changed it to 8-bit and saved it.  Now the Text tool works!
    Ken

  • Create Calculator with the InfoPath Form Web Part

    Hi,
    I have gone through these steps
    https://msdn.microsoft.com/en-us/library/office/ee559624(v=office.14).aspx#sectionSection1
    on SharePoint 2013, and everything works except only one parameter will send data.  The last one set is the only one that will work.
    Any ideas?
    Thanks!

    Change your button not to use the Submit type but rather to use the Rules and Custom Code type, then add a rule that does a submit plus whatever other actions you're doing.  Add a Close action as well if you want, but you should also then be able
    to set the form web part to close on submit.  All of my forms are built like this, and I use them all in form web parts (I'm in love with them).
    Oh, another thing I do is when my user submits, I switch to a new view that looks nice and has a submit confirmation.  At the point, the form doesn't even need to be closed, but I do have a close button just in case.
    SharePoint Architect || Microsoft MVP ||
    My Blog

Maybe you are looking for