thub.users.profile.tabs.comments.personalized


Hi

  1. What's the preferred domain names?
    For Security purpose, I shared dummy domain names, we can use like @abc.co.in @xml.com ...

Thanks for the response.



Hi,

Yes, you're correct, email id name should contains one dot (.) and email id name starts with alphabets only, length would be minimum 5 chars and it is end with preferred domain names, all small letters, as I mentioned.

As like this...

kumar.sankar@abcpvt.in
sabira.vs1@xyz.in

Hi,

Noted, could you pls share any example for this (Step by Step) ?

Thanks

Hi,

As per your guidlines, I have some queries, pls elaborate

  1. Should I create a seperate Project for this API integration purpose

  2. If Yes then how I connect my existing project with this ?

  3. Please share some samples (similar this)

Thanks,



Hi,

Noted, as per your directions, im developing, request you to please elaborate how I get Reponse ? the response values comes like 101 Sucess, 102 some inputs are missing, ... 106 err.

Can I use like this pls refer following my code ? and Check As Tasks I added As Tasks.task

  Async Function XyxPushAsync(name As String, title As String, phone As String, file As Byte(), response As String) **As Tasks.Task**
         Dim body = New With {.title = title, .name_applicant = name, .mobile = phone, .upload_file = file}
         Dim respo As HttpResponseMessage = Await _client.PostAsJsonAsync("bel_crm_push_api.php", body)
         respo.EnsureSuccessStatusCode()
            
     End Function

Hi,

Based on your code, I tried with several methods but Im getting this err., I added CORS too, but no improvement, kinldy advice.


157735-webapi-err.png


webapi-err.png (9.1 KiB)

Hi,

Response values means,

After submiting the data, my partner API has retrun a Transaction Code (after insert a transaction id will be sent) I need it to save in my databased, for the purpose I want to caputure that code from Partners. Hope you understand.

Hi,
Sorry for the delayed response, I want to pass parameters from VB code Behind to SSRS, pls share few examples on this.

Thanks in advance.

Hi,

ref this sample data, after posting this data, I'm getting this error.

"title":"Mr","name_applicant":"RAMUDU","gender":"Male","marital_status":"Maried","occupation":"Student","income":"10,000 to 15,000",
"date_of_birth":"01/11/1991","address1":"Dharmasastha nagar","address2":"MAS","pin_code":"631502","state":"Tamil Nadu","district":"Kanchipuram","mobile":"9123456789","introducer_emp_code":"12345","emp_name":"ramudu","branch_code":"ACCAstha",
"branch_type":"ANB","crmbel_customerid":"undefined","crmbel_lead_id":"78996","status":"0","transaction_module":"399",
"nom_name":"UBALLU","nom_relation":"Spouse","nom_age":"41","proof_name":"Birth Certificate"

Hi,

After clicking I'm getting the following err., please check my code and confirm is it correct ? or is it changing anything?
ref this too.
<asp:Button ID="btn_doPost" runat="server" Text="Post" OnClientClick="hc_push(); return false;" />

151066-image.png


image.png (11.6 KiB)

Hi, I got an Answer to my question, but I'm unable to reply, when I respond it says Access Denied, how I solve this Access Denied issues ?

Hi,

Yes, FYI., my project is in asp.net only.

Hi,
My SQL version is Microsoft SQL Server 2016 (SP1-CU15-GDR) (KB4505221)

Hence I have created an FN, as follows,

 CREATE FUNCTION [dbo].[SplitString]
 (
     @String NVARCHAR(4000),
     @Delimiter NCHAR(1)
 )
 RETURNS TABLE
 AS
 RETURN
 (
     WITH Split(stpos,endpos)
     AS(
         SELECT 0 AS stpos, CHARINDEX(@Delimiter,@String) AS endpos
         UNION ALL
         SELECT endpos+1, CHARINDEX(@Delimiter,@String,endpos+1)
             FROM Split
             WHERE endpos > 0
     )
     SELECT 'Id' = ROW_NUMBER() OVER (ORDER BY (SELECT 1)),
         'Value' = SUBSTRING(@String,stpos,COALESCE(NULLIF(endpos,0),LEN(@String)+1)-stpos)
     FROM Split
 )

And I added [dbo].[SplitString], code as follows.

from cte
......
cross apply [dbo].[SplitString](cast(DueDates as varchar),','))
....

Thanks.

Hi,

Please run the following code, you can get some idea.

 select 
      row_number() over (order by VillageID) Sr,
      VillageID, VillageName, sum(NoOfMembers) as NoOfMembers,
      stuff((select concat(', ', DueDate) from
          ( select distinct DueDate from (
              select * from #Temp where VillageID = t.VillageID ) p
              unpivot (DueDate for d in (DueDate1, DueDate2, DueDate3, DueDate4, DueDate5)) u
          ) q
          where DueDate <> 0
          order by DueDate
          for xml path('')), 1, 2, '') as DueDates
  from #Temp t
  group by VillageID, VillageName
  order by VillageID

Hi,

Microsoft SQL Server 2016 (SP1-CU15-GDR) (KB4505221) - 13.0.4604.0 (X64) Jun 15 2019 07:56:34 Copyright (c) Microsoft Corporation Standard Edition (64-bit) on Windows Server 2016 Datacenter 10.0 <X64> (Build 14393: ) (Hypervisor)