SuiteCRM, sugarCRM : Modifying the name of subpanels - sugarcrm

Modifying the name of subpanels using studio works perfectly,
but when i do quick repair and rebuild or when i clear simply the cache, i lose the modifications.
Thank you for your help !
Best regards.

Yes it happens Many time , Just try to do using through code,
you can change the subpanel name in Custom/Extension/Modules/YOUrmodule/language
Just find your label and change it.
OR please check you gave proper permissions to your folder.

Related

Is there any way to force to update metadata on Opensea?

I tried to change token base URL to display the new images of NFTs on opensea.io. But it is not updated immediately.
There is a way to update by specifying force_update=true on Rikeby testnet.
But I don't know how to update it on mainnet. Will it be possible?
Any help will be appreciated.
Try this :
https://api.opensea.io/api/v1/asset/<your_contract_address>/<token_id>/?force_update=true
please tell me if this works.
This method may not work on another mainnet example polygon.
Update: There is a manual refresh for metadata on opensea. One can always use that one too.

Class 'kartik\base\InputWidget' not found

In my Yii2 apps I add extension select2, since composer not successfully downloaded all the needed librarys. So I do it manually but I have still have error. Any help is BIG THANKS.
Here is my error.
I think since you did it manually you
forgot to add this file: input widget file
or did not specify proper path to it.
Check these and come back if any issues prevail.And always try to use composer as it's better to solve composer errors than finding what is missing after doing the entire set up.Isn't it? ;)

Why can't I find control using sap.ui.getCore().byId()?

I'm trying to access an input control in the controller but I'm not able to fetch it.
I'm using
sap.ui.getCore().byId("id of the input");
I faced a similar issue when I started using UI5. The id is not the same anymore because Sap UI5 dynamically concatenates some other properties to your id so it will be different. Hope this helps. try finding out the id after it has been changed by the resources.
https://openui5.hana.ondemand.com/#docs/guide/91f28be26f4d1014b6dd926db0e91070.html Hope this doc will help you.
You should use relative navigation(this.getView().byId('myId')). Absolute Navigation(sap.ui.getcore().byId('myId')) is not recommended, since that will not work anymore if you change like local project to FioriLaunchpad.
I think the source code of byId of Controller and createId of View explains a lot.
Try the following:
this.byId('controlId')
Or:
this.getView().byId('controlId')
See Difference Between this.getView().byId(), this.byId(), and sap.ui.getCore().byId()

How to resolve this error - " One of the documents you are trying to access has been deleted, please try refreshing"? in Odoo v8?

Whenever I try to create an employee record in Human Resources, when I click Save, the above error occurs.
I checked in the database for any kind of ir-regularities and found that I have attached the screenshot.
As in the database error, the Autoincrement ID has been skipped as I have noticed.
Anyone with a clear insight on this, kindly suggest with what can be done. It would really grateful. Thanks
Create a new database if you can, and re install your module and try again.
Ok I am answering the question,
There was a custom module which I was not aware of(other than my custom module) and that was installed. UNinstalling it removed the error.

How can I get rid of a persistent VBA Form Object that won't honor the form deletion?

I have an MS Access 2003 database that I'm using to develop a basic little inventory app. I have added some extraneous forms along the way and I wanted to get them out of the DB. I deleted most of them just fine but one of them appears to have left behind its VBA Object. All that's in the object is Option Compare Database. Now whenever I try to work with the database, I get the following error:
The form name 'Transaction1' is misspelled or refers to a form that doesn't exist.
If the invalid form name is a macro, ...
Truncated for typings sake.
Yes, I agree, the form doesn't exist. What confuses me so much is that all of the other forms, when I deleted them, also destroyed their VBA object as well. This one, no matter what, seems to like to stick around and I have no idea how to get rid of it.
How do I get rid of it?
Things I've tried:
Compact and Repair and the DB
Create a new form named what it's expecting, verify that it gets rid of the problem, and then delete that form.
You can try the /decompile switch
Make a backup of your mdb
Open your mdb (hold the SHIFT key down to stop any code from running) via a short
cut: msaccess.exe database.mdb /decompile
Open a module and compile your app
Save and close Access
Open again (SHIFT again) without decompile
Compact and repair database
close Access
I had similar problem. I found I had named the missing form in the STARTUP menu as the default form to open when starting Access. I opened Tools>Startup and deleted the missing forms name from the "Display/Form/Page" field of the Startup. My problem solved.
The problem I was having is that the form was named ~TMPCLP8151 and would not show up in Access no matter what I tried, but I could see it in VBA in the Project Explorer. Here's how I resolved the issue. I created a new form, and created an Event Procedure for Form_Open that contained this:
DoCmd.DeleteObject acForm, "~TMPCLP8151"
Then I just opened the form, and sure enough, the VB code deleted the form that I could not delete myself.
I had a same problem. I created a form with same name and deleted the form again. That fixed the peoblem. Try. BTW try to open the new form in design mode to make sure if the VBA module is assosiated with the new form.
I had to combine both solutions to achieve the goal.
First de- and recompile
next compact and repair
then create new form with the same name and delete it
Pay attention that the form has the status Hasmodule set to Yes
I had this problem. I renamed my default form from Form Login to frmLogin which suits my naming style, but the program was still looking for it on opening. I am using 2013 so I went to File » Options » CurrentDB and in the display dropdown select the new name. The old name remains in the list until you close and restart the application.