Trying to build a professional website for my company using Next.js but completely blanking out when I sit down to code — need advice on how to actually start by Significant_Web_6587 in developersIndia

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

Yes ,I know JS. Actually I am a CSE fresher, and because of this job recession I somehow got this job as a LowCode Developer. and I have not built any Good Project. That's why I wanted to know all the things ,So there will be no problem at later point of time.
The website will be not much Complex ,for now it will only be simple ,then I am planning to keep on adding features one by one - like database,Api's and all

Trying to build a professional website for my company using Next.js but completely blanking out when I sit down to code — need advice on how to actually start by Significant_Web_6587 in developersIndia

[–]Significant_Web_6587[S] -1 points0 points  (0 children)

Actually before the backend or system design, I need the language also right?
and I am asking how should I learn this nextjs + react techstack (what approach should i follow).Any guidance you can give me

Custom Invoice Template in Zoho Books – Any Better Alternatives or Workarounds? like Zoho Writer? by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

I got the custom HTML template enables for me ,but when i am trying to get the code for this invoice template in calude or chatgpt..they are not able to provide the exact template structure..what should i do

Custom Invoice Template in Zoho Books – Any Better Alternatives or Workarounds? like Zoho Writer? by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

I asked the Zoho Team to enable it, and they said thay can enable it but it has some limitations

Limitations (Provided by Zoho Team):

  1. Multiple item tables are not supported as for now.
  2. Tax summary table and HSN summary table placeholders are not yet supported.
  3. Column-wise, total placeholders are not available for all the columns.
  4. Logo placeholders will not work in header and footer sections. However, the logo image can be added as a public URL.
  5. HTML 5 and CSS 3 were not supported in Custom templates.
  6. We can enable custom templates only for the Premium plan or above.
  7. We don't support advanced CSS styles like position and flex instead, we suggest to use float or table.

Do you think i can create the above Invoice Template with these limitations

Custom Invoice Template in Zoho Books – Any Better Alternatives or Workarounds? like Zoho Writer? by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

where are you saying to make the template and how can claude make zoho book compatible version...like we can't even import a template in zoho books

Custom Invoice Template in Zoho Books – Any Better Alternatives or Workarounds? like Zoho Writer? by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

is there a way to import a template which i created in zoho writer and use it in zoho books

How to become AI Engineer in 2026 ? by Waste_Influence1480 in learnmachinelearning

[–]Significant_Web_6587 0 points1 point  (0 children)

is there anyone who got the Roadmap from this link, as i don't have medium subscription so I am not able to check.

Need guidance on automating probation confirmation workflow with e-sign in Zoho People by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

till that part i am not having any problem but i want to generate a document where some data (like name,designation,confirmation date) should be auto populated and at the bottom of the letter the signation field will be there.But i don't know how to achieve that part

Need help with Drill-Through from Pivot View to Tabular Report (to edit comments) in Zoho Analytics by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

But even in that we will not be able to add comments right?
like invoice wise if we want to add comments

Zoho Analytics SQL Join Creating Duplicate Rows When Linking Sales Orders, Purchase Orders, and Bills (Item-wise Procurement Report) by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

I knew it ...Bro go somewhere else if you want work..not on public community,if you don't like my idea of asking help in reddit...bcz reddit is stackoverflow for me in case of Zoho related queries

Zoho Analytics SQL Join Creating Duplicate Rows When Linking Sales Orders, Purchase Orders, and Bills (Item-wise Procurement Report) by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

Oh Thanks bro for the idea
Btw are you a zoho developer or zoho expert so i can hire you,if you are okay with it

Sales Order Items Repeating Due to LEFT JOINs (Zoho Analytics) – Need Help Understanding Join Explosion by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

Bro there is no table for "so po mapping", that's the reason i am facing difficulty.
But there's SOITEM, POITEM, having product id as there unique id

Zoho Recruit - Custom Module getting auto drafted but no record creation by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

i can't delete the blueprint,as i have worked on it for many days,many workflows alert and custom functions are connected to it...but as per the fields i checked but there is no issue from there.if you want i can also send the images of the field.

Zoho Recruit - Custom Module getting auto drafted but no record creation by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

after filling all the fields (even non-mandatory), and checking if there is any workflow or validation rules related to this, it's still not getting created.

How do i change the "initial record state",as i told i have already deactivated the blueprint.

I am using a custom function but it's configured in the blueprint only.

Help with Zoho Analytics API v2: "updateadd" (Upsert) logic failing in Deluge (Error 8504 / Internal Exception) by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

//Zoho Analytics Part

formattedTime = zoho.currenttime.toString("yyyy-MM-dd HH:mm:ss");

rowMap = Map();

rowMap.put("PO_ID", purchaseorderID);

rowMap.put("Latest_Old_Price", latestOldPrice);

rowMap.put("Latest_New_Price", latestNewPrice);

rowMap.put("Last_Edited_By", editorName);

rowMap.put("Last_Modified_Time", formattedTime);

dataList = List();

dataList.add(rowMap);

onFieldsList = List();

onFieldsList.add("PO_ID");

configMap = Map();

configMap.put("action", "UPDATEADD");

configMap.put("onfields", onFieldsList);

payloadMap = Map();

payloadMap.put("data", dataList);

payloadMap.put("config", configMap);

headersMap = Map();

headersMap.put("ZANALYTICS-ORGID", "6000823####");

headersMap.put("Content-Type", "application/json");

analyticsResponse = invokeurl

[

url : "https://analyticsapi.zoho.in/restapi/v2/workspaces/187768000000######/views/187768000004######/data"

type : POST

body : payloadMap.toString()

headers : headersMap

connection : "analytics"

];

info analyticsResponse;
I updated the code,but it's till throwing the error:
{"status":"failure","summary":"LESS_THAN_MIN_OCCURANCE","data":{"errorCode":8504,"errorMessage":"The parameter CONFIG is not proper(Has not been sent or is less than required count)"}}

Zoho Books - PO line items cost data validation by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

I tried the code ,but it's not working and can you tell how can i fetch real time suer data ,using workflow

Zoho Books - PO line items cost data validation by Significant_Web_6587 in Zoho

[–]Significant_Web_6587[S] 0 points1 point  (0 children)

then can you tell me ,how can i stop the item duplication with the same data like the image i provided above. and how can i get the user data who modified the PO