Change Form Name

Dear All,
Is it possible to change the form name in any module of SAP B One. I want to change form name of A/R down payment request is it possible to do this in main menu of module. If yes please let me know the procedure.
Thanks
swapnil

Hi SWAPNIL,
Rahul is partially correct. You can change Purchase documents' name/form title from the document numbering form (AdministrationSystem IniticalizationDocument Numbering).
For Sales documents yes, you really need to use the UI API.
Regards,
Vítor Vieira

Similar Messages

  • Changing the name of the form when attached to an email

    Good Day All;
    I am wondering if there is a way to change the name of an attachment when the email button is clicked.
    Let me explain.
    I have designed a form that will be emailed from one are to another and when the email button is clicked the email attachment is named (example)  “_150s2140t32f8b0iu.pdf”. Of course this is a meaningless name. I would like to somehow change this to better represent the name of the form.
    Thanks for any suggestions
    Thanks
    Chomp

    Hi Chomp,
    It sounds like you are clicking the email button when in Preview in LC Designer. When the form is being Previewed it is given a temporary name. If the form is opened in Acrobat directly, does the email button attached the form with the proper/full name?
    If you want the form to be given a named based on user's inputted data, then you will need a trusted function (.js file) on every user's computer. See this discussion: http://forums.adobe.com/message/2266799#2266799.
    Niall

  • Changing the form name in a .js file

    hi,
    I am trying to use .js files instead of script in the jsp page with the use of
    <script src="root/scripts/foo.js"></script>.
    This foo.js has got the functions which access the information of the form in which they are included. So if I specify a dummy form name in the script, while a page (say "thisPage.jsp" with a form name "thisForm")is loading I would like all the references in the javascript file which are like this document.someFormName.---- to document.thisForm.--.
    How do I do this.
    regards,
    f

    actually, what you asked is completely a Javascript question. There's nothing JSP related about it. Nothing.
    Your actual question, the one you actually posted, was answered correctly. If your question was wrong, then that's not our problem.
    What does concurrent users have to do with anything anyway? Are they all using the same PC and browser instance at the same time? I doubt it. All the code you are referring to is Javascript code, and that will only run in the browser, not on the server, so concurrent user actions have nothing to do with it.
    If you want to change the form name in JSP, then you can do so when writing the page:
    <form name="<%= theFormName %>" action="..." method="POST">
    Otherwise, 'document.'+name ..., eval(), all that is Javascript, not JSP, has nothing to do with JSP or other users.
    So in conclusion, I don't think it's us people that posted answers interpretting things wrong, it's you who doesn't have any idea what he's doing.

  • Run report from forms - Cannot change file name in report node

    I am running a report (9i) from forms (9i) and I changed the name of the report in the filename field in the report node (in object navigator).
    I noticed that I get the error FRM-41214 on the RUN_REPORT_OBJECT line when I run the form, if I've changed the filename from what it originally was. e.g. It was originally rep44.rdf and I changed it to rep55.rdf, but I get this error unless I keep the rep44.rdf filename. Why? Is there somewhere else I should change this filename?

    To view the reports queue open this URL:
    http://<server>:<port>/reports/rwservlet/showjobs?server=<repserver>
    Also, try running the report stand alone, not from Forms.
    http://<server>:<port>/reports/rwservlet?server=<repserver>&report=rep55.rdf&userid=<un>/<pw>@<db>&destype=cache&desformat=PDF

  • Changing adobe forms name while saving

    hi,
    i have made an application in which i am generating pdf form but while saving a default name 'f' is appearing which i need to change. I am unable to change pdf form name.
    Plz help.
    thanks

    I have no solution for you but this forum is related to FPM discussions. i am not sure you posted in a right forum.
    requesting moderator to (re)place this to right forum.

  • Change file name when sending form through email

    Hi all,
    I created a form that can be downloaded, viewed and completed by the user in Acrobat reader, and then sent by email as a pdf-attachment by pushing a submit-button. As the form will be sent by several different users to the same address, in order to avoid confusion it would be good when the filename would not be the original form name, but someting based on the individal data entered by the user.
    Is there a way of between having filled in the form and actually sending it, automatically change the file name? I know users could save the file first and thén send it, but I would like to spare them the hassle.
    Thank! Mateo

    To do that you woudl have to certify the form which brings into play a whole other series of issues.

  • Form name and Program name change

    Hi
    I have created a smartform and a driver prog & saved them in 2 requests. Now i want to change the name of both but dont want to chnage the request numbers . Please advice how can i do that.
    Thanks & Regards,
    Preeti

    Hi
    You can't rename the form name.
    So create a new form and copy the old form into the new one.
    Assign the New program and form in the NACE tcode or at some other point.
    While creating a new form , it will ask for a request assign the same old request in which old form is there.
    similarly you can rename the Program to new one and add into the same request of old program. and release the request and use
    if you want you can delete the old form name and program name from the request also.
    Reward points if useful
    Regards
    Anji

  • Change the name of a field in the forms

    Hello, experts:
    As I can change the name of a field in the forms?
    When you change the name of a field on the form, the field name in the database also changes?
    Joan

    Hello Joan:
    If you mean the label of the form you can do with CTR + Double Click.
    Remember not to change the integrity of the database. Is only allowed to user fields
    make changes at the level of views, stored procedures, among others, which do not compromise the integrity of
    data.
    Remember, even if they change the label, has changed the field name in the database, only the presentation
    the form.
    Edwin Mauricio Nieto Leó

  • Change file name with oreilly servlet

    I am using oreilly servlet package and I want to change the file name to the file I am uploading, is this possible ?
    How ?
    Thanks.
    here I post the servlet code:
    package com.reducativa.sitio.servlets;
    * DemoParserUploadServlet.java
    * Example servlet to handle file uploads using MultipartParser for
    * decoding the incoming multipart/form-data stream
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import com.oreilly.servlet.multipart.*;
    public class DemoParserUploadServlet extends HttpServlet {
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    PrintWriter out = response.getWriter();
    response.setContentType("text/plain");
    out.println("Demo Parser Upload Servlet");
    File dir = new File("f:/");
    if (! dir.isDirectory()) {
    throw new ServletException("Supplied uploadDir " + "f:/ " +
    " is invalid");
    try {
    MultipartParser mp = new MultipartParser(request, 10*1024*1024); // 10MB
    Part part;
    while ((part = mp.readNextPart()) != null) {
    String name = part.getName();
    if (part.isParam()) {
    // it's a parameter part
    ParamPart paramPart = (ParamPart) part;
    String value = paramPart.getStringValue();
    out.println("param; name=" + name + ", value=" + value);
    else if (part.isFile()) {
    // it's a file part
    FilePart filePart = (FilePart) part;
    String fileName = filePart.getFileName();
    if (fileName != null) {
    // the part actually contained a file
    long size = filePart.writeTo(dir);
    out.println("file; name=" + name + "; filename=" + fileName +
    ", filePath=" + filePart.getFilePath() +
    ", content type=" + filePart.getContentType() +
    ", size=" + size);
    else {
    // the field did not contain a file
    out.println("file; name=" + name + "; EMPTY");
    out.flush();
    catch (IOException lEx) {
    this.getServletContext().log("error reading or saving file");
    }

    Hi there,
    I am facing the same problem that you have stated in your Feb 26, 2002 10:28 AM message regarding "change file name with oreilly servlet", I would like to change the file name to include a unique identifier upon upload, did you ever find a solution to your problem?
    Thanks!
    Todd
    [email protected]

  • How to use variables POST and personalize the fields form names

    Hi friends, I need to send POST values to a external URL from APEX application to proccess a credit card and later receive the POST values to save the transaction, also the fields require have a personalized name, APEX create the field with standar names properly from APEX.
    Any one can help me to solve this problem?
    Thanks
    Libio Balbin

    I'm assuming you mean that you will be posting your page form to an external URL. This also means that the items in the form will need to have the element name be a certain name expected by the external URL. Look at Re: item name isn't what i specified to how to do this.
    Basically, in the page HTML Header add a javascript function to change the name of the page items and then change the submit to go to the external website. Add to the On Load section to call the javascript when the page is loaded.

  • AD - 'Change First Name' process task is rejected by default - OIM 11.1.2

    Hi All,
    I wanted modification to be auto provisioned to AD account when user attribute is changed.
    For this created 'Change First Name' process task and made entry in "Lookup.USR_PROCESS_TRIGGERS" lookup def.
    I followed the link Enabling update for provisioned user in OIM11g
    When I changed first name of a user from identity console, 'Change First Name' process task is assigned to XELSYSADM. But the status of the process task is Rejected. Also, the changed 'First Name' value is not updated in the process form of the user. Hence the change is not reflected into AD.
    Please tell me why the status is Rejected and changes are not reflecting.
    Also, Please provide the solution to auto provision the modifications into AD.
    Thanks in Advance.

    Thanks much kevin,
    One more query.....
    In my case when 'city' attribute is changed its invoking 'Change city' which inturn invokes 'City updated' process. Now when city is updated I need to updated 'Organization Name' in AD process form and make it reflect in AD.
    For this, I created 'Change Org Unit' process task which will populate 'Organization Name' field in process form, so inturn it will invoke 'Organization name updated' process task.
    I made 'Change Org Unit' process task as dependent task for 'Change city', so once the 'Change City' process task status is 'C', it will invoke 'Change Org unit' process task.
    But, 'Change Org unit' process task is not being invoked.
    Could you pls provide me solution.
    Thanks in advance...

  • Change the name of window in SAP B1 8.8

    Dear All,
    I want to change the name of the A/R Down Payment request window to some other name. I have tried to do the same from frontend from document numbering but the problem is since there are no separate series for Down Payment request & invoice when I change the name there only the down payment invoice name changes while down payment request remains the same. Please guide if there is any table in SAP where all the window names might be saved and where I can go and edit the  name without any repercussions.

    Hi,
    Gordon is right you will get more replies if it's flagged as a question as people can earn points.
    But I'm feeling generous :P
    I don't know a way to do it like you mentioned, but you can just use the UI. There's loads of ways to do it but you could catch the form load event on before action = true, and do
    If (oForm.Title == "A/R Down Payment request")
               oForm.Title = "My new title";
    If you haven't worked with UI there's loads of examples and info to cover the bits I glossed over.
    Good luck

  • Anyone know how to change the name of the PDF after it's submitted via the "submit e-mail" button?

    Forgive me if I'm posting in the wrong section -
    I'm using Live Cycle v8.0 and I would like to know if I can change the name of the PDF that is being submitted via emai?
    For example -
    When I submit the form now it is named (12345abcd12345.pdf) and I would like it to read something like (memberapp.pdf)
    Any tips?

    I figured it out...thanks to anyone who may have been helping.

  • Changing default name of FDF file created by submit button

    Hi all,
    I was wondering if there was a way to change the default file name used by acrobat when the submit button is clicked. Currently, when a user clicks the submit button on my form, acrobat allows them to generate an FDF file and either save it to their hard drive or attach it to an email, but uses the file name "<name of pdf form>.fdf" I would like to change this to a unique ID that is generated based on form data. I didn't have any problems generating the UID, but I can't figure out how to change the name of the FDF file.
    Does anyone know if this is possible?
    Thanks.
    Jose

    Do you sign the document before extending the features? If you do then make sure "Lock the Document after signing" checkbox is not checked. Try this:
    Clear all signature fields.
    Click on the field that you want to sign
    "Sign Document" window will appear
    In the left bottom corner this check box will appear.
    Uncheck it.

  • Iphone 4s - how do I change the name in the contacts for the owner of the phone - it is coming up as the other person who uses the laptop - so when ringing or texting anyone 2 names are being used as the caller id on the screen

    Iphone 4s - how do I change the name in the contacts for the owner of the phone - it is coming up as the other person who uses the laptop - so when ringing or texting anyone 2 names are being used as the caller id on the screen

    *Ralph Johns* writes:
    "Your options are:
    Get a trial account form @mac which will work as an iChat name after the 60 days run out but not be a email account that is valid (And is free)"
    Do you mean a trial account from .Mac? (DotMac)
    "Get an AIM Screen name and set it to Display what you want as you set it up.
    The Screen name can be whatever yu want but you can also set it to display something else as well."
    I had thought about this, but it seems other people have already chosen the screen name "pinksharkmark" and virtually every variation of it I can think of. So that isn't an option for me. As for getting it to display something else as well, do you mean that if I were to get an AIM screen name like "CromulentCat" I could somehow log in to iChat under the AIM account "CromulentCat" yet get iChat to represent me to my Buddies as "PinkSharkMark"? Because I have to admit I don't see how that can be done. It appears as if iChat displays to anyone chatting with you precisely the account name you logged in under and nothing else. So if you logged in using a .Mac account, then you are displayed as "[email protected]" while if you logged in under an AIM account, you are displayed as "CromulentCat". But that's it that's all... there is no way to change CromulentCat to PinkSharkMark.
    Thanks very much for taking the time to reply, though.

Maybe you are looking for

  • I purchased two albums on my Iphone and they will not show up on my MacBook Pro

    I ahve tried to chaeck for availible downloads multiple times but it says there are no downloads. Also, the songs are there just greyed out and i can't play them. If i go onto the Itunes Store then it gives me an option to buy them again instead of s

  • Some idiot made an illegal folder name in mail.app on our server...

    Hi. Some one in our office accidently created some mail folders on our OSX 10.9 server that contains illegal characters. And now we can't remove/change/rename/move or do anything with them. The log says thing like 2014-01-10 18:17:13,045 Mail[1049]:

  • Problem in Portrail and Landscape

    Hi, I have created a report that contains two pages: the first page is in portrail , the other is in landscape. However, after printing through report runtime, the handout contains some unreadable words(code) in left hand corner of the 2nd page, ever

  • File to file BPM

    hello experts I try to make a simple file to file scenario, using BPM. in the BPM I have a reciever and sender (with out transformation or anything else). I see it in the SXMB enter to the BPM, but no file is coming out. is it possible to make a simp

  • HTC won't show correct weather location.

    Can someone tell me why my Accu-Weathe On my HTC screen no longer shows my local area?  It keeps showing a city I don't even know where it is?  I tried going into settings, etc but have had no luck?  It worked fine until about 3 days ago?  Thanks for