FORMS FTREE restrictions ?

(Forms 9i )
hi, I use a dynamic record group to populate a tree.
In one node of my tree, i use larges strings (over 30 chars).All is ok on screen these strings display correctly. But any times i try to select this node, the system.tree_node_selected value is always 'FALSE' ( unselected ). So i suppose, that it exists a maximum length of 30 chars for labels using an item Tree.
Question : How is it possible to over the limit of 30 chars : I know it's possible to change forms limitation for variables names and other forms id .. But i don't know how !!!!

Hi,
didn't find anything about this issue, but what about using the WHEN-TREE-NODE-SELECTED trigger
DECLARE
htree ITEM;
node_label VARCHAR2(200);
parent_node NODE;
BEGIN
-- Find the tree itself.
htree := Find_Item('tree_block.htree3');
node_label:= Ftree.Get_Tree_Node_Property(htree, :SYSTEM.TRIGGER_NODE, Ftree.NODE_LABEL);
END;
Possible properties to query for are:
NODE_STATE
=============
Returns the state of the hierarchical tree node. This is either EXPANDED_NODE, COLLAPSED_NODE, or LEAF_NODE.
NODE_DEPTH
=============
Returns the nesting level of the hierarchical tree node.
NODE_LABEL
==============
Returns the label
NODE_ICON
==============
Returns the icon name
NODE_VALUE
==============
Returns the value of the hierarchical tree node.
Frank

Similar Messages

  • Reg: SAP Adobe form size restrictions

    Hi Geeks,
               Could anybody explain me about the memory restriction in sap adobe offline forms. Presently the form size is around 670kb with 3 pages. There is plan to expand this to 26 pages with 670kb * 8 .Will there be any performance issue in this case?
    Regards,
    Sivakaran.K.C

    Hi Kumar,
    For sure your form would be @ 5 MB and it would be a performance issue.
    Since the entire file has to be processed between ECC & ADS systems you can see the processing time and its hectic.
    but I have a doubt, your 3 pages file is @ 670KB..? is it any complex one...?
    Well there is a bug in ADLC 8.2.X version where it keeps on adding  <?templateDesigner StyleID aped3?> this tag redundantly every time you edit the form, especially when you copy paste elements with in the form. check if there is something like this in your form just in case.
    The solution for this bug is Manually delete all the entries leave one for occurance. (alternatively if you search in adobe forms you can find a parser which deletes these redundant entries.)
    Then upgared to latest ADLC or have respective patch.
    Cheers,
    Sai.

  • Form Personalization - Restrict access to one lookup table

    Need to pose this to the experts. I need to see if through a form personalization i can restrict access to certain lookup tables that a responsibility has access to. So responsibility 'XXHR' can only see and update lookup tables 'XXHR_A' and lookup table 'XXHR_B' and not be able to see or update any other table.
    Thanks in advance for your support
    Steve

    Forms Personalization is a feature of the Oracle Enterprise Business Suite (EBS) not a feature of Oracle Forms. Please post EBS related questions in the appropriate EBS Forum. If you have a general Forms question, then this is the appropriate forum.
    Craig...

  • PDF with form fields & restricted permissions

    I have a PDF file that is an illustrated monthly calendar. It was designed in Xara Designer, saved as a PDF through PrimoPDF and then brought into Adobe Acrobat Pro 9 were text fields were added.  Additionally, the permissions on the PDF have been restricted (password security) so that no one can import the file into Illustrator, Photoshop (or the like). I need to prevent people from extracting or altering the illustrations.
    Here's the issue...
    I sell these calendars in digital format and PC/windows users have no problem adding text to the form fields using Adobe Reader.  Even desktop Mac users can do it using Adobe Reader for Mac.
    HOWEVER, the text fields do not work on Adobe Reader for iPad!  The calendar pdf file opens, you can actually SEE the text fields (blueish color), but you can't click in a text box and start typing.
    I've done some testing and when the PDF file does not have permissions restricted it works just fine.
    But I must have permissions restricted to protect the integrity and copyright of my illustrations, while still allowing users the ability to add typed text into the preformatted text boxes on the calendar.
    Any workaround? Any ideas why it doesn't work on iPad??

    Currently, Adobe Reader for iOS doesn't support form filling in any protected documents.

  • Free-form Character Restriction

    Is there a way to restrict the use of specific characters (e.g., !, @) in a free-form text field?

    Hi Cherie,
       Write a validation with following expression :
       FIND(<your column here>,"@")<1
       And set 'Automatic Execution' to Error.
    Regards/-
    Venkat

  • Adobe LiveCycle to edit .PDF forms without restrictions??

    I have a client that requested to have me redesign a windows document she's been using as a form, and to convert it into a PDF. I used the forms feature in Acrobat Pro, and it worked great with the design I made in InDesign.
    Before tackling this, my client made clear that she needed to be able to add, subtract, and make other alterations to these forms after they are filled out. She wanted forms that HER clients could Save As... and send back to her. Then she would modify them.
    I checked into this and was under the impression after talking to people in another forum that if all of the security settings were turned down all the way, that this wouldnt be a problem....BUT IT IS!!! Affter the fact of me making it!!!
    Her clients cant Save As and send back the documents for her to modify. Is that what LifeCycle would help with? If she had LifeCycle could she then edit her clients forms??
    I really need a solution to this and any help would be a godsend.

    Rosger wrote:
    So if I set this they should be able to "save as" send it back and my client should be able to edit the feilds that were filled out again?
    Thanks for the prompt reply
    That is how it is supposed to work yes. Some folks around here have mentioned that once the form has been filled then saved, they haven't been able to edit it later but, that isn't the norm nor my experience.

  • Form access restrict

    Hi All,
    When I am trying to Open Supplier form in Payables Manager, I am getting error as "Function not available to this responsibility. Change responsibility or contact your system Administrator".
    Please let me know, if any solution is to solve this issue.
    Any response is highly appreciated.
    Thank You

    following can be the reasons to this issue:
    -menu exclusion from the responsibility-as already mentioned in a post by some one,
    -function disables form the menu attached to your responsibility,
    -recompile the menu attached to your responsibility,
    -some times, it's an issue with HTML pages

  • 9iAS Forms: FTREE.FIND_TREE_NODE ignoring start point parameter?

    Has anyone succeeded in defining start point other than tree root node when calling FTREE.FIND_TREE_NODE? I'm trying to implement a search that starts from the currently selected node and finds the next one matching the search term but it seems to always start from the root node. Here's the find button trigger code that's not working:
    DECLARE
    htree ITEM := Find_Item('tree.hier');
    start_point FTREE.NODE := Ftree.Get_Tree_Selection(htree, 1);
    BEGIN
    FTREE.SET_TREE_SELECTION(
    htree,
    FTREE.FIND_TREE_NODE(
    htree, '%'||:temp.search_string||'%',
    FTREE.FIND_NEXT, FTREE.NODE_LABEL,
    FTREE.ROOT_NODE, start_point ),
    FTREE.SELECT_ON );
    END;

    Pauli,
    what about
    DECLARE
    htree ITEM := Find_Item('tree.hier');
    start_point FTREE.NODE := Ftree.Get_Tree_Selection(htree, 1);
    BEGIN
    FTREE.SET_TREE_SELECTION(
    htree,
    FTREE.FIND_TREE_NODE(
    htree, '%'||:temp.search_string||'%',
    FTREE.FIND_NEXT, FTREE.NODE_LABEL,
    :SYSTEM.TRIGGER_NODE, :SYSTEM.TRIGGER_NODE ),
    FTREE.SELECT_ON );
    END;
    to start searching from the current selected node ?
    Frank

  • Restrict to prevent changes to pdf form

    Hi,
    I have a form that I would like to modify so that other uses cannot add/edit fields in the form. Users need to be able to fill out the form, I just want to prevent them from changing the forms structure or content.
    I have explored the security settings and none seem to accomplish what I want. See, I have seen forms that are restricted, but you are still able to click "Add/Edit Fields" to which it prompts the following error message:
    "This document restricts some Acrobat features to allow for extended features in Adobe Reader. To create a copy of the document that is not restricted (and has no extended features in Adobe Reader), click Save a Copy."
    Also, I do not want the form to state "(SECURED)" in the document title.
    Looking at the form whose restriction I hope to replicate, if I go to Properties>Security, the Security Method is "No Security" but under the Document Restrictions Summary section, Changing the Document, Document Assembly, and Creation of Template Pages all are set to "Not Allowed * "
    I have not been able to replicate this style of restriction and was hoping to get some guidance. Thanks for the help.

    Please see the uploaded screenshots from the file that has the security settings that I wish to replicate. I would like to have it so my new form cannot be tampered with, only fiiled out.
    This is the message that appears when "Forms > Add or Edit Fields..." is selected.
    When I navigate to "File > Properties" I can see the document has these security settings.
    Can anyone provide me with help to try and replicate these security settings???
    Thank you.

  • Send Email from approval task form

    In my reusable workflow, I have added an approval action. Everything works perfectly. What I want is - When approver comes to approval form, he should be able to send notification email to the initiator (From that form) that he has started working on that document.
    What I have tried - I have added a button clicking on which will submit the form to initiator. 
    But it fails. possible reason - when I create a data connection in workflow's infopath form to submit form as email, I am getting following warning
    "Domain trust form templates cannot be sent as email attachments. to fix this problem, modify the form option to change the security level of form template to restricted".
    I also tried to update status field and wait for it to changes in workflow and send an email from sp designer workflow. it didn't work.
    Please help or suggest any other possible way to achieve this functionality (Send Email from approval task form to initiator).

    Hi mry,
    I could reproduce on my SharePoint 2013 on-premise based on your another
    post.
    Based on the the following article, SharePoint workflow cannot use the InfoPath form in restricted mode which doesn't allow the data connection, but as your image warning message shows sending InfoPath form as mail attachments will need restricted level.
    http://msdn.microsoft.com/en-us/library/office/ee526352.aspx
    You can consider to send a mail to initiator in "Whe a Task Completes" step when you click button approved/rejected, and construct the current task form link format as follow,
    http://sp/_layouts/15/WrkTaskIP.aspx?List=WorkflowTasksListGUID&ID=[%Current Task:ID%]
    Thanks
    Daniel Yang
    TechNet Community Support

  • Avoid forms personalization/trigger during record update

    Hi all,
    I am trying to use forms personalization restrict users not to duplicate invoice numbers for a given supplier in Oracle Payables(Oracle Apps
    R 12.1.3).
    Here are my details,
    Trigger Event: WHEN-VALIDATE-RECORD
    Trigger Object: INV_SUM_FOLDER
    Condition: 0<(SELECT count(*) FROM ap_invoices_all WHERE invoice_num =:INV_SUM_FOLDER.INVOICE_NUM AND vendor_id = :INV_SUM_FOLDER.VENDOR_ID) AND :SYSTEM.RECORD_STATUS='INSERT'
    Processing Mode: Not in Enter-Query Mode
    Actions:
    Type: Message
    Message Type: Error
    Message Text: Duplicate Invoice Number
    This trigger shoud only for new record inserts so, I have used the condition, *:system.record_status = 'INSERT'* but this trigger is still firing during update of existing invoices, say when i wanna change terms for the AP invoice.
    I couldnt figure out where the error is, if anyone has any idea, please help.
    Thanks.
    Edited by: Kwin on Oct 10, 2012 9:12 AM
    Edited by: Kwin on Oct 10, 2012 9:21 AM

    You can have one more condition like
    0<(SELECT count(*) FROM ap_invoices_all WHERE invoice_num =:INV_SUM_FOLDER.INVOICE_NUM AND vendor_id = :INV_SUM_FOLDER.VENDOR_ID) AND :SYSTEM.RECORD_STATUS='INSERT'
    AND
    :INV_SUM_FOLDER.INVOICE_ID is null
    because Invoice Id will be not not null for existing Invocies and for new invoices , it will be null.
    Thanks
    Pradeep

  • Adding field 'Document Type' to Cash Flow Statement form in FSI5

    Dear SAP Experts
    I am developing a 'Cash Flow Statement' using FSI5/FSI3 functionality. I need to have a field 'Document Type' in the list of characteristics.
    Can anyone of you guide me how can I add this field?
    An urgent reply is highly appreciated.
    Thanks
    Syed Zia Abbas

    Hi Abbas,
    I have few comments, which should help to solve your
    problem. Please take a look to note 43661 which describes the
    creation of new forms and reports.
    Following are the steps to create the form and report:
    FSI4 => Form type: Financial Statement Key Figures => Copy
                 Form: Name and Text for the new form
                 Copy from: 0SAPRATIO-04
    FSI5 => find and double click the new form just created => Edit Gen.
    data selection => change the FSV to what you want to use
    FSI1 => Report type: Financial Statement Key Figures  => Create
                 Report: Name and Text for the new report
                 With form: Name of the new form details please refer to standard SAP report 0SAPRATIO-04
    FSI3 => find and execute the new report to check if you can get the
    result you want.
    To change the fin. statement version in the general data selections of
    your new form is not enough. You have to check each line of the new form
    too and replace the fin. statement items with items of your own fin. statement structure.
    - The mentioned forms contain restrictions via for example financial
      statement items in rows and years and/or periods in columns. But, if
      you execute the reports, you get no results. It is because the forms
      are just an example templates for items of financial statement version
      (FSV) INT, which is also just a template.
      To be able to get requested results, you have to create your own
      forms (and reports based on your forms) with restriction via your
      own financial statement version (in general data selection) and the
      financial statement items corresponding to your FSV (in particular
      rows). Otherwise, you cannot get any results, as there are no values
      for the template FSV INT and items from the INT.
      But it is up to you, how you arrange the form definition. It is
      closely related to your own FSV definition.
    I hope you find this information useful.
    Jose Luis Carbajo

  • Restricting Query in master detail situation

    I got two tables and three forms 1)master-detail 2)a selection form based on detial table.
    When we enter data in master form i.e deptno want to open a selection form with restricting query only to those records that is entered in master from.
    I want to know how to restrict data in selection form.Bit confusing,
    Thank You,
    Zubyr

    add a parameter to your detail form, and set the default-where property of your block.
    you can reference parameters directly in the where clause of the block:
    deptno = :parameter.deptno
    call your detailform from the masterform with a paramlist
    declare
    xParamlist paramlist;
    begin
    xParamlist := Get_Parameter_List('PARAMLIST');          
    IF (id_null (xParamList)) THEN
    xParamList := create_parameter_list ('PARAMLIST');
    ELSE
    destroy_parameter_list (xParamList);
    xParamList := create_parameter_list ('PARAMLIST');
    END IF;
    Add_Parameter(xParamlist,'EMPNO',TEXT_PARAMETER, :master.deptno);
    call_form('detailform',NO_HIDE,NO_REPLACE,NO_QUERY_ONLY,xParamList);
    end;
    regards

  • Registration prior to filling out form.

    Is it possible to have users register with their e-mail address before they can access the form? And

    Hi;
    There isn't anything in FormsCentral forms to restrict access but embedding the form into a page on your own website with restricted access is a decent alternative.
    You could embed the form into a website of your own that includes a password or email registration to access that page.  This would not make it impossible to fill out the form by directly accessing the forms URL but it would be very difficult to discover and would probably be a good enough solution. 
    The Embed code is in a sub-tab on the Distribute tab.
    Thanks,
    Josh

  • How to know what is the characteristics value restricted to KF column ?

    Dear Experts,
    My query is like this :
    Filter :
    ======
    Fiscal Year input variable to allow user enter whatever Interval range of years.
    Key figure Column  definition :
    Fiscal Year
    KF Structure
    ============
    -  KF1
    -  KF2
    Output of report :
    ===============
    Eg.
    User  enters : FY range from 2010 to 2013
    Report shows :
    2010--201120122013-----
    char1 char2 __KF1__KF2__KF1__KF2__KF1__KF2__KF1__KF2 
    My requirement is to display KF column header as "Actual" for FY < 2011 and as "Plan" for FY > 2011.
    It seems I need to use a Text Variable.
    But how can the text variable know what is the FY for each Column in order to compare with current FY 2011 to know if it should display "Actual" or "Plan" ?
    Kindly advise what function to use to meet this requirement. I have been asking several related questions from different angles but problem remains.
    regards
    Bass

    Dear AL,
    I hope to clarify with you, do you mean like this :
    1. Let user enter 1 Fiscal year as the start or end year. This variable will be used to restrict the KFs by offsetting this variable for the rest of the KF columns.
    2. Based on this form of restricted KF, the Text variable will read these variable values using Replacement Path for this characteristic using dimension setting 'Date'?
    I actually tried restricting a column with a FY variable, which is a range of FYs, and created a Text Variable using replacement path but the replacement path gave a fixed FY, eg, 'From' value,  and not an incremental FY result for the next KF Columns.
    I also tested using a Formula variable to compare the year using replacement path to compare if > 2011. Seems the same issue as the Text variable, unable to determine or read what is the FY in the next column. It only knows the start FY of the FY range entered.
    My FY characteristic is an infoset type of characteristic technical name, eg ZZ_ISET_F10, and not the 0fiscper. I not sure if the way created these variables are correct.
    Best regards
    Bass

Maybe you are looking for