Xi; in the item in the form (itm is a db-field with Varchar2)

Hello
I'm looking for a solution for my problem.
I have a form with one master-block and four detail-block. One item in a detail-block makes at time (shows in the field) [xi;] This field is a db-field varchar2 with the correct length look like the attribute in the table (scheduling by byte default, scheduling by null the same effect). After I maked the query, the field shows the right value in this field.
I have this effect in an other Form with one master and one detail-block with one item in the master-block.
Can anyone give me the answer what is the problem and how can I solution this problem.
Client Windows XP
App-Server VMS with Apache
Forms 9.0.2
DB 9.2
Thank's for your help
René

Yes you just add an edit text box to the form and bind it to the UDF.
Dim oItem As SAPbouiCOM.Item
oItem = oForm.Items.Add("TextBox1", BoFormItemTypes.it_EDIT)
'You will need to adjust these values to position it correctly
oItem.Left = 5
oItem.Width = 65
oItem.Top = 50
oItem.Height = 19
Dim oEdit As SAPbouiCOM.EditText
oEdit = oItem.Specific
oEdit.DataBind.SetBound(True, "OCRD", "U_Test")

Similar Messages

  • How to set password in the form, request is coming from SPML with no pwd

    Hi ,
    Im using SPML request to create and modify users? I have 2 problems
    1) Does anyone know, how to customize the form to call 2 different workflow depending on the request meaning, if SPML request is ADD, then it should call Create User workflow, and SPML request is MOD then it should call Update User workflow.
    Right now, i don't know who to do it and currently it is working for create users only.
    2) Im not getting password field from SPML request, so i have to set password with value 'password' in the form. Can i do that and How?
    Appriciate any response

    Hi,
    According to your post, I know you want to add a custom field to Task form. When vale is Yes, send the email to the assigned person. When the value is No, item update and user can approve the task without the email sending out.
    Doubt you have already create an approval workflow which associated with Task list in SharePoint Designer.
    1. To add new fields to Task Form, click New button in Task Form Fields section. Name the “Send the email or not” of choose type. See the below image:
    Then, save and publish the workflow to make it effect. You can visit the following article for details:
    Updating List Item with Task Form Custom Field in SharePoint Approval 2010 Workflow
    http://blogs.msdn.com/b/kishore/archive/2012/01/15/updating-list-item-with-task-form-custom-field-in-sharepoint-approval-2010-workflow.aspx
    2. In SharePoint Designer, create another workflow which associated with Task list.
    a. Click workflows > List Workflow and choose Task list.
    b. Add the condition, if the current item: “Send the email or not” is equals to yes. Then, add the action “Send an email”.
    c. Publish the workflow.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • How can I modify the Contacts Template to display additional fields with out selecting "add field" everytime?

    How can I modify the contacts template in either iCloud, my iPhone, or my iPad to display additional fields that I always use ... example: How can I get Job Title to always be a fillable field with out selecting "add field" everytime?

    Let the HairSalon implement the java.lang.Comparable interface. You'll need to write code for
    public int compareTo(Object o1, Object o2)
    The compare method would cast the Objects to HairSalons and return the difference in price.
    Then use java.util.Arrays.sort(Object []);

  • Button on Form to Update a specific field with hard coded data

    Hi Guys,
    This will probably be a nice a simple issue for you guys, but I have ben struggling on how to do this for hours!
    On my form created by a report I have a field called status that is pulling the data from the order_status column contained in the customer_orders table.
    What I am looking to do is to create a button on the form that once clicked will change the order_status to "Complete" and update the customer_orders table.
    I have attempted to do this by creating the button and also a proccess on the page, and have assigned the button to the process
    I have set the process as PL/SQL and have entered the following code:
    BEGIN
    UPDATE customer_orders
    SET order_status='Complete'
    WHERE customer_order_id =:P7_customer_order_id;
    END;
    However when I click on the button, the page just refreshes and the field has not been amended!
    Please Help
    Thanks
    kev

    I don't know of any example apps containing that off-hand. I've done this sort of thing several times before, but also can't post them as-is on apex.oracle.com due to sensitivity.
    I can tell you the steps I would follow:
    1) Create a button - in a region position or among region items - doesn't matter. If doing it as a button in a region position it will submit as the button name; if doing it as a button among region items it will submit as the button label.
    2) Create a PL/SQL after-submit process (On Submit - After Computations and Validations). Put the PL/SQL code in for the process (your update code looked fine to me, syntax-wise at least). Continue on in the process wizard and when it gets to where it wants to know if there is a condition, see the dropdown When Button Pressed - you'll want to select the button from step 1.
    3) Then, depending on what you want it to do next you would provide a branch - it could be a branch back to the same page refreshing the data with the new status or move on to another page.
    Are these the steps you followed?
    Hope this helps,
    John

  • Portal Forms - How to make a Field with DEFAULT value NON-EDITABLE by Users

    I HAVE A FORM WITH A DATE FIELD ON IT WITH DEFAULT VALUE.
    THIS IS A TABLE-FIELD.
    I WANT THE FIELD TO BE DISPLAYED ON THE FORM BUT NOT TO ALLOW
    USERS TO EDIT/CHANGE IT.
    HOW CAN I DO THIS?
    TKS IN ADVANCE

    Hi,
    see Re: sequencing problem-Forms
    Regards Michael

  • When using the placholder attribute in an input field with a dark background, why can't the blinking caret be white on focus?

    Chrome and Safari both do this, making it clear to the user that they're in the field and ready to type. Currently the caret will take the color property but only once the user has started typing. This seems like it would be a worthwhile feature to bake into the next build of FF.

    I have a separate java class that gets my data and returns a Result object. Do you mean java.sql.ResultSet?
    In my main servlet I do the following:
    request.setAttribute("supporttracker",
    supporttracker.findsupporttracker(monthYear));
    and then in my JSP I can iterate through the Result
    like the following with no problems:
    <c:forEach var="supporttracker" begin="0"
    items="${supporttracker.rows}" varStatus="counter">
    My problem is that I can only iterate through this
    once in the page whereas I have no problem doing
    multiple forEach loops through other types of
    lists/collections such as an ArrayList. Right, because a ResultSet is a database cursor and doesn't act the same way that an ArrayList does. It's more like an InputStream - once you read it, you close it. If you want to re-read it, you have to re-initialize it again.
    Iterators behave that way, too. Once you walk through them, you have to re-initialize them.
    I've looked
    on the web and in a couple of books, I first thought
    it may be scope or some attribute in forEach that I
    was missing but I'm stumped. It seems like it's
    because the pointer to the result set is at the end
    of the result set when trying the second iteration,
    but I thought by using the begin="0" would put the
    pointer at the first row again, on my second
    iteration I'm getting no rows/data outputed.
    Please help and thanks in advance!The better thing to do is for your method to return a List of objects, one per row, that represent what the ResultSet returns. Have that method iterate through the ResultSet, loading the rows into the List, and close it before you leave in a finally block. A database cursor is a scarce resource, so it's a good idea to close it as soon as you can.
    %

  • Invalid date - getting an error message on the form

    Hi
    I am using APEX version 3...
    in my form I have a date field (with date picker option)... my users can pick the date with no issues... the issue is when my user enters manually (usually by mistake) something in the date field.... I get the following error message when the date is invalid
    ORA-01840: input value not long enough for date format
    I know in version 4 of APEX we can use dynamic action or validation function... is there an option to use in Version 3...?
    thanks

    Hi,
    Create a Validation....
    Name: Valid Date
    Type: Function Returning Boolean
    Validation Expression 1:
    DECLARE
    my_date DATE;
    BEGIN
    IF LENGTH (:P1_DATE) = 11
    THEN
    my_date := TO_DATE (:P1_DATE, 'DD-MON-YYYY');
    RETURN TRUE;
    ELSE
    RETURN FALSE;
    END IF;
    EXCEPTION
    WHEN OTHERS
    THEN
    RETURN FALSE;
    END;
    Error Message: Date is not a valid date!
    Associated Item: P1_DATE
    Condition Type: Value of Item in Expression 1 Is NOT NULL
    Expression 1: P1_DATE
    Regards,
    Kartik Patel
    http://patelkartik.blogspot.com/
    http://apex.oracle.com/pls/apex/f?p=9904351712:1

  • The data source "....." referenced in the form template is not valid or cannot be found

    Greetings,
    I have an InfoPath 2013 form that uses an external data connection.  The data connection became corrupt (somehow, no one knows who changed what).  A user went in to InfoPath designer and created a new data connection and changed all references
    to use that new data connection.  Now the form cannot be published at all with the error
    "The data source "GetUserProfileByName" referenced in the form template is not valid or cannot be found"
    The new data source they created is GetUserProfileByName2 and changed all references.
    Of course, since it is broke, they asked me to see if I can find the issue.  I went through the form looking to see if they missed any references to the old data connection and can't find anything.
    Where is InfoPath storing the old data connection information and where can I remote it?  I looked in the manifest and don't see it there either.
    Any thoughts?
    Thank you!

    Hi Bob,
    There are many XML schema files for the data connection, I recommend to check if the references to the XML files have been changed to the new schema files in the manifest file.
    For example, if we create a data connection called GetUserProfileByName, then there will be one XML file and three XML schema files for the data connection.
    Please make sure that all the references are updated in the manifest file.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • A form field (for a client fax number) on my own web site is remembering my email address used to log into the site. The usual clearing of the remembered entry works OK, but evey time I remember the login it automatically populates this one field with my

    The form where this happens contains an email field as well as a password field, so it does have both of the fields that are on the login page. It is used to modify the details of the user of our site and is accessed by the administrators, not the users themselves. To auto fill the fax field (which is named _fax) with my email address is very strange. If I log in as a different admin user then the email address I use to login appears in the field. The password field is also appears on the form and is being populated, presumably with my password. How can Firefox get it wrong and put an entry in a field with a different name, and why that field and not other empty fields on the form?
    == This happened ==
    Every time Firefox opened

    First be sure login and password are OK. Sometimes the address starts wit "http://..." and sometime starts with "ftp://...". Try both normal FTP access and Scure FTP access (SFTP). At the end, contact the site's provider.

  • User has to enter a specified number of CHARs length while filling the form

    Hello
    I am developing a interactive form, which got context interface from WebDynPro ABAP. I have a input field on the form, its NAME, i binded it with NAME1 of WebDynPro context, in SAP its length is 35 CHARs.
    My requirement is user can not enter more than 35 CHARs in the form, while user is fillling it. So, to achive this,
    1) Its enough just binding form NAME to WebDynPro SAP NAME1 attribute of context, then, SAP will automatically take care this?
    2) or do i need to put the 35 number lenght in Max Chars field of Object-Field in the FORM?
    Thank you

    Hi,
    While binding a field on layout you get an option to specify properties of the field in regards with bound data element. If there you have chosen the property of max chars then its not mandatory to specify it again in object properties of the field. But if you have not mentioned it while binding then it will be required to separately mention in the object property.
    Regards,
    Vaibhav

  • The browser only shows the viewname of the form?

    Hey,
    i'm working with the SAP NW2004s Developer Workplace SR2 Preview. Installed Adobe Reader 7.0.9 and xACF NW04S SP13 related to the SAP Note 766191.
    I created a form which actually has no functionality so far, cause i wanted to see if the system works fine. I just created some context nodes and put them into the form.
    First, i had problems with the credentials, but this is solved.
    Now, the browser<b> only shows the viewname</b> of my form, but no PDF. DeveloperStudio hasn't thrown any errors.
    Can you help?
    thanks,
    Thorben

    Hi Thorben,
    Have you checked if ADS is configured correctly. To do so type the following in the browser.
    http://<server>:<port>/AdobeDocumentServices/Config
    Select Test
    Select rpData
    Without entering any parameters, Click Send.
    Provide the ADSUser username and Password and click Submit.
    If the config is correct you will receive the Version info . Ignore the string " "PDFDocument" not found or it is empty."
    If you don't receive the version info, you willl have to do the configuration again.
    If the configuration is correct, Make sure that Active X is enabled in the browser settings.
    In addition, check out the following thread
    Adobe form is not displayed
    Hope this helps.

  • I would like to create a form that gives the user opportunities to provide information on as many as 50 projects. Does Adobe FormsCentral allow for this "expandable" type of form, such that if someone only has 10 projects, they can complete the form as ea

    I would like to create a form that gives the user opportunities to provide information on as many as 50 projects. Does Adobe FormsCentral allow for this "expandable" type of form, such that if someone only has 10 projects, they can complete the form as easily as someone with 50 projects. In other words, is there a way to make the form "expandable?"

    Hi Ms Buckner,
    Yes, you can do this with the Show/Hide "Skip" logic rules.
    1. Suppose, for example, you have your first ten projects showing by default.
    2. At the end of those fields, you would have a Yes/No question asking if the person wanted to add more projects.
    3. If they answer "No", they move on to the next section/area/question/etc.
    4. If they answer "Yes" you have the form display ten more project fields that you had already included, but you had hidden up to this point.
    5. Repeat steps two, three, and four as often as needed. (It helps that you can copy and paste fields, including groups of questions, so you don't have to manually re-create them each time.)
    It means you must anticipate the maximum number of times you want to provide project fields, but you've already done that, and you have to build the form with that maximum number, but only display smaller portions at a time until they have filled in all they need.
    I hope that helps,
    Brian

  • Problem with filling the forms in Nokia browser af...

    Hello,
     I updated my Nokia 808 to FP2 successfuly. But i realized one problem in web browser and the new keyboard. For example when i want to write into a form box i can only see virtual keyboard. I cannot see what i type. If you want to test this, please open your local nokia website and click on support / e mail us. You will see a form which will ask your phone model and OS etc. Try to type into the boxes. Yesterday i failed to write anything. Also reaction is very slow. You can see what i m talking about in the attachments.
      Also with the new update, videos are not working correctly. Sometimes video player is crashing. Sometimes i see strange and colourful images while it is trying to play the video. Then it turns to normal and i see the video clearly.
      Im satisfied with some new things in the update but there are problems and slow downs. Some features are not working such as Nokia Social. I hope Nokia Team will find a solution. Thank you.
    Attachments:
    Fotoğraf0001.jpg ‏183 KB
    Fotoğraf0150.jpg ‏179 KB

    HI ilkerol,
    Welcome to Nokia Support Discussions!
    Thanks for the feedback! I tested the support form with the same results, the page was slow and kept on moving up to the top when I was typing in the textbox.  I tried it with a Lumia device, and even though I was able to fill the textbox without problems, the drop down menus did not work. Based on that experience, it seems that the form is meant to be used with a personal computer, not a mobile device. I will, however, escalate this issue in case there is a possibility of a quick fix. 
    As for the video issue, does this happen with all videos or just certain ones? Colorful images etc. usually mean that the video file encoding is somehow broken and the player cannot read it properly.
    Hope this helps!
    Puigchild
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

  • Title of the form

    hello all,
    My form has a long title. The title of the form gets displayed properly on phones with larger displays but on phones with smaller displays (samsung) it gets truncated. How can this problem be solved ??
    regards,
    @debug

    You should first search on the on-line help of your forms installation.....
    Anyway , take a look at set_window_property...
    Sim

  • If I use the function to align adjacent fields, or the function to match size, duplicate fields are created. How can I get this to stop?

    I have a form that consists of columns and rows of fillable fields. When I use the edit function to make the height of the fields the same, or make the widths of the different columns of fields the same, or align the fields vertically or horizontally, duplicate fields are created. If these fields have a box around them, all of the duplicate fields' boxes are shown. The field names have the same base name, but have a suffix that is sequentially numbered. If I delete the "lower" numbered suffix names (with the same base name), the resulting field does not appear on the form.
    What is going on with the alignment or size process. I do use the CTRL-Click function to select the group of fields I am trying to size or align. If using the selection of multiple fields should be done differently, how can it be done?

    No. That's not what's happening. The duplicate fields are ONLY created after I employ the alignment or sizing functions. Weird.
    I was hoping that this was the result of some kind of setting in Acrobat, or that the duplicate fields would disappear when saving the form, but that's not what happened.
    Thanks for your input, however.

Maybe you are looking for

  • Can I use an external hard drive for my ipad mini?

    Can I use an external hard drive for my ipad mini?

  • Oracle 9 and PHP under Redhat 9

    Hi, I am planning to migrate my current web server from redhat 7.x to 9 and I am currently evaluating what may go wrong or need special attention before I actually replace it. After searching the archives and other lists I still have a question : a)

  • Will apple be able to fix my iPod button for free

    My button has gotten flat and hard to click will I be able to get it fix for free

  • Selection Failure error while using SUM expression - 11g

    Hi, I am using following expression to calculate SUM of child node values. It works in 10G, but errors our in 11g. Anyone has any workaround? Expression: <copy> <from expression="sum(bpws:getVariableData('Invoke_ebs_get_order_data_ebs_get_order_dataS

  • Default style

    Hi. This isn't really a problem, but I have a question. Pages always opens with body as the default style, is there a way I can create a new style that is default and all new documents open with? Thank you in advance,