How to Integrate Telegram with Oracle Apex 1) create Telegram Account in your Mobile like whatsapp 2) Ones you register in telegram apps serach for BotFather 3) To Create New Bot u need to enter below command /newbot Alright, a new bot. How are we going to call it? Please choose a name for your bot. Macsbot Good. Now let's choose a username for your bot. It must end in `bot`. Like this, for example: TetrisBot or tetris_bot. MacsOmanBot Done! Congratulations on your new bot. You will find it at t.me/MacsOmanBot. You can now add a description, about section and profile picture for your bot, see /help for a list of commands. By the way, when you've finished creating your cool bot, ping our Bot Support if you want a better username for it. Just make sure the bot is fully operational before you do this. Use this token to access the HTTP API:<Here you will prompt with your api> 4) /mybots (this command will return the list of bots which you have created) ...
1) Get API URL From Register WhatsApp API Provider 2) In my case https://app.chat-api.com/ 3) Login with your account or register for new account 4) Add new Instance 5) Give Instance Name and Reboot 6) Open your WhatsApp in mobile --> Go to Setting --> WhatsApp Web/Desktop and Scan QR code for Activate your business account with instance 7) Copy Your API 8) Go to Oracle APEX , go to sql Workshop and create procedure to call the API 8 ) Call the procedure Mobile No = Should Start with Country Code begin whatsapp_send ( l_mobileno => '968XXXXX', l_message => 'Hello' ...
1) Create a dynamic action for the Row Initialization event on the IG region. 2) Event :- Row Initialization Action :- Execute Java Script code Set Fire on Initialization to No' var val, model = this.data.model, rec = this.data.record, erec = $v("P404_ITEM_CODE"), erec1=$v("P404_COMPCD"), meta = model.getRecordMetadata(this.data.recordId); if ( meta.inserted ) { val = model.getValue(rec, "ITEM_CODE") if ( val.v === val.d ) { model.setValue(rec,"ITEM_CODE", {d:apex.item("ITEM_CODE").displayValueFor(erec), v: erec}); } val = model.getValue(rec, "COMPCD"); if ( val.v === val.d ) { model.setValue(rec,"COMPCD", {d:apex.item("COMPCD").displayValueFor(erec1), v:erec1}); } }
Comments
Post a Comment