Change System Form Name

Hi,
   I am trying to chagne the name of the "Sales Quotation" to something else. Pl. note I am totally new to B1 SDK's and .NET also. Any help will be appriciated.
   Awaiting replies.

Dear Premal Mistry,
Please try following UI API sample code
If pVal.FormTypeEx = "149" Then
  If pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD And pVal.BeforeAction = False then
    Dim oForm As SAPbouiCOM.Form
    oForm = oApp.Forms.Item(pVal.FormUID)
    oForm.Title = "new form title"
    oForm = Nothing
  End If
End If
Regards Regards
Jane Jing
SAP Business One Forums team

Similar Messages

  • 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.

  • 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 system folders name in mavericks

    Hi all, there is a way to change the system folder name in Mavericks as described in this article? http://www.macworld.com/article/1046866/renamesystemfolders.html
    Thank you

    Hi,
    Just in case someone search for this argument.
    I wanted to change system folders name because some folders wasn't translated in my language in OSx (it's a long story the "why").
    Now I just find a solutions in this article: http://www.cnet.com/news/home-and-system-directory-names-not-translating-in-os-x /
    So I'm happy to say "thank you touch command"
    Thanks again,
    br
    fulvio

  • Change System Form Title

    Hi All,
    Is it possible to change the name/description of system forms? For eg. I want to change the name of "Sales Order" form to "Service Order" or probably something else..can this be done?
    If it is possible, can anyone please help me with a sample code? Also, if the changes are possible then will the name change also reflect in the main menu?
    Thanks in advance.

    HI,
    Write this code inside Item Event
       If pVal.FormTypeEx = "139" Then
                If pVal.EventType <> SAPbouiCOM.BoEventTypes.et_FORM_UNLOAD Then
                    Dim oForm As SAPbouiCOM.Form
                    Try
    oForm =SBO_Application.Forms.Item(FORMUID)
    oForm.Title="Service Order"
            Catch ex As Exception
                    End Try
                End If
            End If
    Hope this will help you
    Regards,
    BBN

  • Change XML form name

    Hi experts,
    How to change name of XML form saved in KM content. Currently it shows ''70fc4796-f9a5-2e10-c3bc-b659540ddc71.xml '. Appreciate any suggestions.
    Thanks,
    Nanie

    Hi,
    You will have to add a input field in edit form of xml form. If you already have one, you can use that. Instad of binding this field to xml schema, bind it to Standard property which you will find under properties node. Display name is the property you should bind it. Whenever you save your form that field will over write the name of the document.
    Nitesh

  • 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

  • Dynamically changing the file name using the submit button

    I am currently using a submit button to send information to myself from the user of the form. Is there any way to change the name of the file that is emailed as a .pdf file according to some type of parameter or data set that is collected in the form?

    Not programmatically. The attachment wil take the same name as the opened PDF. If you change the name of the PDF then it will change your form name as well. That cannot be done programmatically.

  • Change InfoView Default Name 'object_view.aspx'

    Hi,I am using a password protected Adobe PDF form which opens within the InfoView portal. When I click on the form name to open it, InfoView assigns the form the name of 'object_view.aspx'. When I email the pdf form by clicking an email button on the form, InfoView change the form name to 'object_view.pdf". Is there a way to have the form's real file name to be recognized and attached to email by Crystal Reports server?

    I dont believe It is possible without hacking Infoview itself, which is unsupported and not recommended.
    Jason

  • Display FirstName and Last Name on change password form

    Hi,
    I have to display FirstName and Last Name in change password form instead of DN of the user the below syntax is displaying complete DN.
    resourceAccounts.currentResourceAccount[$(name)].accountDisplayName, would appreciate if anybody can guide me on this.
    Thanks

    Hi,
    For anyone searching how to do this, I've modified the Change User Password Form to contain a user's first and last names. As the User view is not accessible from this form, I added the following:
          <Field name='fullname'>
            <Display class='Label'>
              <Property name='title' value='Full Name'/>
              <Property name='value'>
                   <rule name='EndUserRuleLibrary:getRealName'>
                       <argument name='accountId' value='$(resourceAccounts.id)'/>
                   </rule>
              </Property>
            </Display>
            <Disable>
              <or>
                <ref>answersVerified</ref>
                <isnull>
                  <ref>resourceAccounts.id</ref>
                </isnull>
              </or>
            </Disable>
          </Field>      I'm not at all sure this is the best way of accomplishing this, but I couldn't find forum search results that would allow me to display additional user attributes on this form.
    Hope it helps!
    Nick.

  • Source System Logical Name change

    Hello,
    We are refreshing our R3Qas system with a copy of our R3Prd system.  As part of this task our R3Qas logical name is changing from QASC230 to QASC200.
    I am at the point in the refresh where I am beginning tasks on the existing BWQas system. 
    I Right Click on the source system representing the R3Qas system "QAS client 230" technical name: QASC230.  I choose 'Restore'  I then provide the logon information but the system it jumps to is the Old R3Qas not the new R3Qas.
    I know that it is jumping based on the RFC, So I assume I can change that RFC to jump to the new system, what do you think?  Also what about the Source System name an technical name, will it always be QAS Client 230 and QASC230 or can that be changed to reflect the new name of QASC200?
    Thanks for your advice and assistance!
    Nick

    Since the BWQ system was already an existing system that was attached to the previous R3Q system, this task was essentially busy work.
    The change that occured was that the existing R3Q system (Physical Name: QAS01 Logical Name: R3QASC230) was being replaced with a new R3Q system (A copy of Production was used) (Physical Name: QAS02 Logical Name: R3QASC200).
    The actions that I needed to take to connect BWQ to the new R3Q follow:
    1. On QAS02 visit TX SE37. and run RSAP_BIW_DISCONNECT, Choose 'Single Test'.  For I_BIW_LOGSYS: I provided BWP001 which corresponds to the logical name of our Production BW system. For I_OLTP_LOGSYS: I provided R3PRDC200 which corresponds to the logical name of the QAS02 system (this system).  I then Click 'Execute' and 10 seconds later this step is done.
    2. On QAS02 visit TX: BDLS.  For the 'Old Logical System Name' provide BWP001.  For the 'New Logical System Name' provide BWQ001.  Ensure the 1st radio button is selected, and deselect all checkboxes.  From the Program menu choose to 'Execute' in background (it took about 45 minutes). Confirm the 'Mapping System Name'.
    3. Again on QAS02 visit TX: BDLS.  For the 'Old Logical System Name' provide R3PRDC200.  For the 'New Logical System Name' provide R3QASC200.  Ensure the 1st radio button is selected, and deselect all checkboxes.  From the Program menu choose to 'Execute' in background (BASIS already did this step so a message appeared to that effect)
    4. On the BWQ box visit TX: BDLS.  For the 'Old Logical System Name' provide R3QASC230.  For the 'New Logical System Name' provide R3QASC200.  Ensure the 1st radio button is selected, and deselect all checkboxes.  From the Program menu choose to 'Execute' in background (it took about 45 minutes). Confirm the at the prompt and run.
    5. On BWQ create new RFC's based on the old ones to point at the new QAS02 system.  Modify the old ones with an X in the 'Target Host' so they do not function.
    6. Open up the BWQ client in SCC4.  (or perhaps try SM30 to modify the table in the next step)
    7. On BWQ visit TX: SE16.  Tablename: RSLOGSYSDEST.  Change the 'Old' reference to the QAS box to the 'New' information.  (ie: R3QASC230 became R3QASC200).
    8. On BWQ visit TX: WE20.  Expand 'Partner Type LS', Select 'R3QASC200', click the classification tabe, change the 'Partn.Status' from I to 'A' and save.
    9. On BWQ right click on the R3 Source system and choose 'Restore' Provide the passwords that are required.  When prompted to logon to the remote system use an ADMIN (BASIS) level Account.  Click 'Continue' when you get the 'User exists...' prompt.  Click 'Only Activate' when prompted.  you will then get a termination message regarding the port description.
    10. On BWQ Back at WE20: Expand 'Partner Type LS', Select R3QASC200, double click on RSRQST.  Under 'Outbound Options' click the drop down for 'Reciever port'  Select the 'new' correct system and 'Save'.
    11. On BWQ right click on the R3 Source system and choose 'Restore' Provide the passwords that are required.  When prompted to logon to the remote system use an ADMIN (BASIS) level Account.  Click 'Continue' when you get the 'User exists...' prompt.  You will get a prompt to Use or Check, choose 'Use'.  When prompted about 'Connection cannot be used' click 'Delete'. Logon again as ADMIN account, Click 'Continue' when you get the 'User exists...' prompt. Click 'Replicate as well' when prompted.  you will then get a termination message regarding the port description.
    You should be all set now!
    Nick

  • Change Long Admin Name in System Preferences.

    I recently upgraded to a MacBook Pro and when setting up the computer, I made my long name Dave's MacBookPro. Now when I go to log in it calls itself "Dave's MacBookPro's Macbook Pro". I went to Preferences and changed my long name to just Dave and everything is now ok...except when I go to System Profiler. When I click, About This Mac, on the top it still says "Dave's MacBookPro's MacBook Pro". Where do I go to change that setting, so it reads correctly. I don't plan on changing my shortname, so it shouldn't affect anything...Or can changing the long name affect any programs? Thanks.

    no. the long login name is only used to set the computer name during the original computer set up. otherwise they have nothing to do with each other.

  • Change Source system Tech.Name

    Production :   PRE -
    >  PRB
    PRE-Production    :   PPE -
    > PRE
    We make a copy of our production BI to Preproduction BI (PPB) we follow note # 886102. We want to connect this system to our pre production ERP (PPE).We already run BDLS change the logical system name we created new RFC created which is pointed to new R3 system .Problem is when we are going to run Tcode RSA1 in source system it shows old Tech name PRE600. We are unable to activate the source system.
    We can create new source system (PPE),but All our BI objects mapped with old source System (PRE600). I am afraid to change thousands of BI objects ( change source system from PRE600 to PPE600).
    Is there any work around we can change the Logical Source system Tech.Name? or some batch job which change the source system name for all BI objects.
    Appreciate your earliest reply.
    Nawab

    Hi
    Can you please check the Tcode BDLS
    Check the document it will be helpful
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bff13df2-0c01-0010-6ba7-bc50346a6fd8
    Regards

  • Hiding items in system form by changing record

    Hi,
    I have on system form textbox binded to UDF. If user change the record, the textbox is not showing. I know about possibility to catch events like form_load, resize and data_load where I can set visible to true to this textbox, but my question is, if exists some better method how to say to SBO that this field will be always visible.
    thx
    Petr

    I found the problem, in some forms in diferent modes is set diferent panelevel...

  • 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

Maybe you are looking for