No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

nlu.yml 157KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511
  1. version: "3.1"
  2. nlu:
  3. - intent: greet
  4. examples: |
  5. - hey
  6. - hello
  7. - hi
  8. - hello there
  9. - good morning
  10. - good evening
  11. - moin
  12. - hey there
  13. - let's go
  14. - hey dude
  15. - goodmorning
  16. - goodevening
  17. - good afternoon
  18. - intent: goodbye
  19. examples: |
  20. - cu
  21. - good by
  22. - cee you later
  23. - good night
  24. - bye
  25. - goodbye
  26. - have a nice day
  27. - see you around
  28. - bye bye
  29. - see you later
  30. - intent: affirm
  31. examples: |
  32. - yes
  33. - y
  34. - indeed
  35. - of course
  36. - that sounds good
  37. - correct
  38. - intent: deny
  39. examples: |
  40. - no
  41. - n
  42. - never
  43. - I don't think so
  44. - don't like that
  45. - no way
  46. - not really
  47. - intent: mood_great
  48. examples: |
  49. - perfect
  50. - great
  51. - amazing
  52. - feeling like a king
  53. - wonderful
  54. - I am feeling very good
  55. - I am great
  56. - I am amazing
  57. - I am going to save the world
  58. - super stoked
  59. - extremely good
  60. - so so perfect
  61. - so good
  62. - so perfect
  63. - intent: mood_unhappy
  64. examples: |
  65. - my day was horrible
  66. - I am sad
  67. - I don't feel very well
  68. - I am disappointed
  69. - super sad
  70. - I'm so sad
  71. - sad
  72. - very sad
  73. - unhappy
  74. - not good
  75. - not very good
  76. - extremly sad
  77. - so saad
  78. - so sad
  79. - intent: bot_challenge
  80. examples: |
  81. - are you a bot?
  82. - are you a human?
  83. - am I talking to a bot?
  84. - am I talking to a human?
  85. - intent: Support Question 1
  86. examples: |
  87. - "Not able to change tagging between DSRs"
  88. - "The tagging between DSRs cannot be changed"
  89. - "Changing the tagging between DSRs is not allowed "
  90. - "There is no way to modify the tagging between DSRs "
  91. - "Unable modify tags bwtween DSRs"
  92. - "nan"
  93. - intent: Support Question -2
  94. examples: |
  95. - "How to create the customer"
  96. - "Not able to create the customer"
  97. - "Need to create the customer "
  98. - "nan"
  99. - "nan"
  100. - "nan"
  101. - intent: Support Question -3
  102. examples: |
  103. - "How to change my stock number in DMS "
  104. - "Need training on stock correction"
  105. - "Need to do stock inventory"
  106. - "How can i change my stock report in DMS"
  107. - "Explain the process of Item reconcilation "
  108. - "nan"
  109. - intent: Support Question -4
  110. examples: |
  111. - "HOW TO CHANGE RETAILER DETAIL"
  112. - "How to change the DSR name"
  113. - "Need to edit the DSR name "
  114. - "How can i edit the sales person name"
  115. - "Need to add the new DSR name"
  116. - "nan"
  117. - intent: Support Question -5
  118. examples: |
  119. - "i am from trichy branch i have billed materials from madurai branch i am unable to select madurai branch in my login"
  120. - "How can I shift to another branch"
  121. - "Need to add the branch "
  122. - "What is process of adding the branch "
  123. - "Need to add the another branch "
  124. - "nan"
  125. - intent: Support Question -6
  126. examples: |
  127. - "How can i check the geo taggging customer list "
  128. - "How can i check the geo tagging and non geo tagging customer "
  129. - "Need to chekc the geo tagging customers "
  130. - "Need help to download the Geo tagging customer list"
  131. - "How to download the geo tagging customers list "
  132. - "nan"
  133. - intent: Support Question-7
  134. examples: |
  135. - "Kindly unable AR boarding kit access"
  136. - "How to reedme the Ar onboarding points"
  137. - "How can i shift to AR onboarding"
  138. - "Need help oncreating the Ar onboarding kit"
  139. - "How can i shif to primary "
  140. - "nan"
  141. - intent: Support Question -8
  142. examples: |
  143. - "hi there admin is forget their id password please help asap"
  144. - "How can i change my DMS login password "
  145. - "Employee has forgoted the password what can i do now "
  146. - "Need help on changeing my DMS password "
  147. - "what is next process if an employee forgots the password "
  148. - "nan"
  149. - intent: Support Question-9
  150. examples: |
  151. - "Pending Order Details Report are not generated "
  152. - "How can see the pending orders "
  153. - "Is there any report see the pending orders"
  154. - "How to dowload the Pending order details "
  155. - "Need help on downloding the Pending orders details "
  156. - "nan"
  157. - intent: Support Question-10
  158. examples: |
  159. - "Dear sir we would like to inform you today create the DC and also tagging the EB but volume is not showing so please rectify the same as per as possible customer name-k k construction "
  160. - "How to check the EB Invoice report"
  161. - "How can see my EB Invoice data"
  162. - "nan"
  163. - "nan"
  164. - "Need EB invoice data how can i dowload that "
  165. - intent: Support ticket-11
  166. examples: |
  167. - "How to create stock transfer"
  168. - "Need to create the stock transfer "
  169. - "How to transfer the stock "
  170. - "How to move the stock from one branch to another branch "
  171. - "Need Help on transfer of stock from one branch to another branch "
  172. - "nan"
  173. - intent: Support ticket-13
  174. examples: |
  175. - "Not able to change tagging between DSRs"
  176. - "Unable to tag DSR s"
  177. - "Why am I unable to tag DSRs "
  178. - "Help me in tagging DSR s"
  179. - "nan"
  180. - "nan"
  181. - intent: Support ticket-14
  182. examples: |
  183. - "customers codes are displaying instead of names help me out"
  184. - "nan"
  185. - "nan"
  186. - "nan"
  187. - "nan"
  188. - "nan"
  189. - intent: Support ticket-15
  190. examples: |
  191. - "HOW TO CHANGE RETAILER DETAIL"
  192. - "How to update retailer details in DMS "
  193. - "How to update customer details "
  194. - "Need to change retailer details "
  195. - "unable to do Customer update "
  196. - "nan"
  197. - intent: Support ticket-16
  198. examples: |
  199. - "regarding for customer E B Tagging and purchase invoice please contact no-7999195042"
  200. - "How to assign tag to a particular customer "
  201. - "E B Tagging issue help me out "
  202. - "not able to assign LOB for a customer "
  203. - "nan"
  204. - "nan"
  205. - intent: Support ticket-17
  206. examples: |
  207. - "Dear sir we would like to inform you today create the DC and also tagging the EB but volume is not showing so please rectify the same as per as possible customer name-k k construction "
  208. - "Explain how to asssign Tags to a Customer "
  209. - "not able to assign LOB for a customer "
  210. - "How to assign LOB to a customer "
  211. - "nan"
  212. - "nan"
  213. - intent: Support ticket-18
  214. examples: |
  215. - "i am from trichy branch i have billed materials from madurai branch i am unable to select madurai branch in my login"
  216. - "unable to switch branch with my logins help"
  217. - "How to create branch for an employee"
  218. - "Explain Branch creation adding process "
  219. - "nan"
  220. - "nan"
  221. - intent: Support ticket-19
  222. examples: |
  223. - "we can t see the stock our stock is mismatch please solve this issue kindly call on this no 9805426454 "
  224. - "Need training on stock correction"
  225. - "Explain Purchase order creation "
  226. - "GRN Option not visible explain "
  227. - "nan"
  228. - "nan"
  229. - intent: Support ticket-20
  230. examples: |
  231. - "INVOICE NO H2 CR 2 1594 WRONGLY BILLED PLEASE CALL 9900244033 ITS URGENT"
  232. - "How to take print out in sales invoice "
  233. - "Not able to print sales invoice "
  234. - "Print option not working for sales invoice look into it urgently"
  235. - "nan"
  236. - "nan"
  237. - intent: Support ticket-21
  238. examples: |
  239. - "receipt is shown in advance even after adjust to b no 357"
  240. - "How to create Receipts "
  241. - "how to check wallet amount while creating Receipts "
  242. - "Explain the process of checking wallet amount "
  243. - "nan"
  244. - "nan"
  245. - intent: Support ticket-22
  246. examples: |
  247. - "Dear sir Please help change dsr name to customer master Calling 9509299808"
  248. - "How to change the DSR name for customers "
  249. - "how to use change manager module to change salesperson name for particular customers "
  250. - "Not able to change salesperson explain "
  251. - "nan"
  252. - "nan"
  253. - intent: Support ticket-23
  254. examples: |
  255. - "How to create stock transfer"
  256. - "Stock transfer creation training required help"
  257. - "Not able to create stock transfer urgent"
  258. - "stock trasfer"
  259. - "nan"
  260. - "nan"
  261. - intent: Support ticket-24
  262. examples: |
  263. - "Required Geo tagged non tagged report"
  264. - "Geo tagging Customer report"
  265. - "Non Geo tagged customers reoprt"
  266. - "Need report on Geo Tagging and Non Geo Tagging customer"
  267. - "nan"
  268. - "nan"
  269. - intent: Support ticket-25
  270. examples: |
  271. - "Geo tag not submit"
  272. - "Explain how to Geo tag a customer"
  273. - "Training on Geo tagging"
  274. - "Customer Geo Tagging issue help"
  275. - "nan"
  276. - "nan"
  277. - intent: Support ticket-26
  278. examples: |
  279. - "As per GRN stock of 20w40 50 ltr and 15w30 50 ltr stock not shown in stock report please help"
  280. - "How to check Stock Movement Log Report"
  281. - "Need Report on Stock Movement Log"
  282. - "Stock Movement Log not visible how to check"
  283. - "nan"
  284. - "nan"
  285. - intent: Support ticket-27
  286. examples: |
  287. - "Please contact our Employee Mr Bishal Gupta at Mobile No 9038130086 He couldn t able to logg in due to Password problem "
  288. - "Password issue help"
  289. - "Unable to login password reset option not visible help"
  290. - "How to reset login password issue"
  291. - "nan"
  292. - "nan"
  293. - intent: Support ticket-28
  294. examples: |
  295. - "Our new Employee Mr Kingkar Debnath Please help him to create his Email id in the DMS portal"
  296. - "New employee login creation process explain "
  297. - "new password creaton process"
  298. - "password reset to an employee"
  299. - "nan"
  300. - "nan"
  301. - intent: Support ticket-29
  302. examples: |
  303. - "Kindly unable AR boarding kit access"
  304. - "AR OnBoarding process"
  305. - "Unable to OnBoard AR s help"
  306. - "nan"
  307. - "nan"
  308. - "nan"
  309. - intent: Support ticket-30
  310. examples: |
  311. - "GST ON INVOICES PLEASE CALL 7676218698"
  312. - "unable to find Sales Invoice data report"
  313. - "Report on sales Invoice not able to find"
  314. - "How to check GST Invoice report"
  315. - "nan"
  316. - "nan"
  317. - intent: Support ticket-31
  318. examples: |
  319. - "hi there admin is forget their id password please help asap"
  320. - "How to reset login password"
  321. - "please help to reset password for login"
  322. - "nan"
  323. - "nan"
  324. - "nan"
  325. - intent: Support ticket-32
  326. examples: |
  327. - "Geo tag problem no current location received"
  328. - "How to use Geo Tagging "
  329. - "unable to Geo tag at customer location help"
  330. - "nan"
  331. - "nan"
  332. - "nan"
  333. - intent: Support ticket-33
  334. examples: |
  335. - "Pending Order Details Report are not generated "
  336. - "How to download pending orders report "
  337. - "Pending orders report not able to download help"
  338. - "Report cannot be downloaded for pending orders"
  339. - "nan"
  340. - "nan"
  341. - intent: Support ticket-34
  342. examples: |
  343. - "Not able to generate pci report of last month and this quarter"
  344. - "PCI Invoice report how to download"
  345. - "Report on PCI Invoices not visible help"
  346. - "nan"
  347. - "nan"
  348. - "nan"
  349. - intent: Support ticket-35
  350. examples: |
  351. - "i AM NOT ABLE TO ADD SALES MANAGER WHILE CREATING NEW CUSTOMER"
  352. - "Sales manager assigning for a sales executive"
  353. - "New customer sales manager creation"
  354. - "How to add sales manager to a customer"
  355. - "nan"
  356. - "nan"
  357. - intent: Support ticket-36
  358. examples: |
  359. - "data not showing correct data in sales report "
  360. - "How to correct data in a sales report "
  361. - "How to apply date filter for a sales report"
  362. - "unable to get correct data in a sales report help"
  363. - "nan"
  364. - "nan"
  365. - intent: Support ticket-37
  366. examples: |
  367. - "Hi Mobil Bizgaze Team We are unable to create sale order It shows series is expired series format does not exist "
  368. - "How to extend series "
  369. - "Getting series error help"
  370. - "Series expired"
  371. - "nan"
  372. - "nan"
  373. - intent: Support ticket-38
  374. examples: |
  375. - "one of the new DSR created few customers and by mistake created as admin instead of owner kanaka Durga Automobile kmm Address Harakavari Bavi Center Raithu bazaar opposite khammam 507003 New Sai Sri Mechanical Works khammam FCI by pass Road Paradise Bar opposite khammam 507003 S K automobile khammam FCI Road Venkateswara swami Temple Opposite khammam 507003 Dayakar mechanical works Khammam Raparthi Nagar by pass beside Anjaneya temple khammam 507003"
  376. - "how to change the customer designation"
  377. - "How to update designation of a user"
  378. - "by mistake wrongly set designation to a new customer how to correct it"
  379. - "nan"
  380. - "nan"
  381. - intent: Support ticket-39
  382. examples: |
  383. - "PLEASE CALL BACK TO OUR LAND LANE NO 0891 2569433 FOR CREATION OF NEW ACCOUNT"
  384. - "New customer creation process explain"
  385. - "change stage of a customer"
  386. - "nan"
  387. - "nan"
  388. - "nan"
  389. - intent: Support ticket-41
  390. examples: |
  391. - "Unable to geo tag"
  392. - "Geo tagging Customer report"
  393. - "How Geo Tagging can be done for a customer"
  394. - "nan"
  395. - "nan"
  396. - "nan"
  397. - intent: Support ticket-42
  398. examples: |
  399. - "My DSR TANVIR ALAM is unable to geo tag Please contact him on 8097121113 "
  400. - "nan"
  401. - "nan"
  402. - "nan"
  403. - "nan"
  404. - "nan"
  405. - intent: Support ticket-43
  406. examples: |
  407. - "GEO TAGING FOR DSR NOT HAPENING - NAME- RATIKANTA BEHERA CONTACT NO-9326550478"
  408. - "Explain DSR Geo tagging"
  409. - "Getting error in Geo Tagging help"
  410. - "nan"
  411. - "nan"
  412. - "nan"
  413. - intent: Support ticket-44
  414. examples: |
  415. - "Sales Order not showing"
  416. - "Sales Order creation"
  417. - "stage changing and sales order creation process not understood help"
  418. - "sales order not visible how to check "
  419. - "nan"
  420. - "nan"
  421. - intent: Support ticket-45
  422. examples: |
  423. - "Creation of user id for accounts purpose"
  424. - "How to create an employee with particular designation"
  425. - "User creation"
  426. - "nan"
  427. - "nan"
  428. - "nan"
  429. - intent: Support ticket-46
  430. examples: |
  431. - "Our both DSR having attached GEO tagging error Kindly check resolve the same "
  432. - "Geo tagging error please rectify"
  433. - "Geo tagging option not visible help immediately"
  434. - "nan"
  435. - "nan"
  436. - "nan"
  437. - intent: Support ticket-47
  438. examples: |
  439. - "Didnot able to Void Order"
  440. - "How to change stage of an order"
  441. - "nan"
  442. - "nan"
  443. - "nan"
  444. - "nan"
  445. - intent: Support ticket-48
  446. examples: |
  447. - "Stock transfer issue"
  448. - "Issue with stock transfer please help"
  449. - "Not able to create stock transfer urgent"
  450. - "nan"
  451. - "nan"
  452. - "nan"
  453. - intent: Support ticket-49
  454. examples: |
  455. - "ENABLE TO TAG DSRS"
  456. - "DSR tagging issue help"
  457. - "nan"
  458. - "nan"
  459. - "nan"
  460. - "nan"
  461. - intent: Support ticket-50
  462. examples: |
  463. - "Anebal to geo tek"
  464. - "geo tagging help required"
  465. - "unable to Geo tag at customer location help"
  466. - "nan"
  467. - "nan"
  468. - "nan"
  469. - intent: Support ticket-51
  470. examples: |
  471. - "rts q2 and 3 call 8225083314"
  472. - "how to check the RTS on the invoice report in DMS"
  473. - "Where we find RTS report in DMS "
  474. - "How to check RTS discount "
  475. - "RTS report is not reflecting "
  476. - "In RTS report data is not reflcting "
  477. - intent: Support ticket-52
  478. examples: |
  479. - "PLZ CALL 7676218698"
  480. - "nan"
  481. - "Where we find Stock report in DMS "
  482. - "How to check Stock "
  483. - "Stock report is not reflecting "
  484. - "In Stock report data is not reflcting "
  485. - intent: Support ticket-53
  486. examples: |
  487. - "need help in opportunity download please call 9509299808"
  488. - "nan"
  489. - "Unable to sales Opportunity Details download"
  490. - "sales Opportunity Details data is not reflecting"
  491. - "opportunity report how to check "
  492. - "Opporitunity file how can we see "
  493. - intent: Support ticket-54
  494. examples: |
  495. - "Need to change below customer RTS status from NO to Yes Customer Name - Anwar Motor Garage Pathri Please guide "
  496. - "nan"
  497. - "we can t add tags in customer "
  498. - "How to add tags to customer"
  499. - "unable to tags in customers"
  500. - "customer need to add tags"
  501. - intent: Support ticket-55
  502. examples: |
  503. - "Support for confimation invoices for Q1 Q2 Q3"
  504. - "nan"
  505. - "how can i check the sales invoices data "
  506. - "How to apply date filter Sales invoice reports "
  507. - "unable see the sales invoice report"
  508. - "In Sale invoice report data is not reflcting "
  509. - intent: Support ticket-56
  510. examples: |
  511. - "notification related issue"
  512. - "nan"
  513. - "how we can find notifications"
  514. - "Where we find notifications "
  515. - "how to check notifications"
  516. - "Notifications are not generetad "
  517. - intent: Support ticket-57
  518. examples: |
  519. - "Sir Even after saving the location in geo tag the location is not showing correctly later "
  520. - "nan"
  521. - "Unable to do geo tagging"
  522. - "Need to add geo tagging "
  523. - "How to geo tagging for customer "
  524. - "Need explaining the geo tagging "
  525. - intent: Support ticket-58
  526. examples: |
  527. - "Please send Q4 MHP My Target we can t see the Target in the DMS APP "
  528. - "nan"
  529. - "Unable to check MHP reports "
  530. - "Need last quarter data is not reflecting MHP"
  531. - "How to apply date filter in MHP report"
  532. - "Employee unable see MHP report "
  533. - intent: Support ticket-59
  534. examples: |
  535. - "VINOD AUTOMOBILES IS NOT SHOWING ON SALES ORDER DMS PLEASE SOLVE THIS ISSHU KINDLY CALL ON THIS NO 9805426454 "
  536. - "nan"
  537. - "need to change sales manger name in customer"
  538. - "Need to edit the Sales manager name "
  539. - "unable to edit sales manager name "
  540. - "customer need to add sales manager "
  541. - intent: Support ticket-60
  542. examples: |
  543. - "we sell one product to customer and they paid in cash but its still showing in pending need help regarding that and receipt creation "
  544. - "nan"
  545. - "how to create recepit entry "
  546. - "Unable to create recepit "
  547. - "create new recepit "
  548. - "how add new recepit entry "
  549. - intent: Support ticket-61
  550. examples: |
  551. - "Need DMS adaption report"
  552. - "nan"
  553. - "Where we find PCI invoice report "
  554. - "Unable to check PCI report "
  555. - "In PCI invoice report data is reflecting "
  556. - "How to check PCI Invoice report "
  557. - intent: Support ticket-62
  558. examples: |
  559. - "Dear Team We are unable to generate Debit Note Purchase Return please Call us "
  560. - "nan"
  561. - "Series is expired"
  562. - "How to extended series in purchase return "
  563. - "Unable to create Purchase return"
  564. - "While creating the purchase return getting as series is expired"
  565. - intent: Support ticket-63
  566. examples: |
  567. - "Geo tagging is not visible in DMS Please do the needful"
  568. - "nan"
  569. - "Unable to do geo tagging"
  570. - "Need to add geo tagging "
  571. - "How to geo tagging for customer "
  572. - "Need explaining the geo tagging "
  573. - intent: Support ticket-64
  574. examples: |
  575. - "unable to enter GRN"
  576. - "nan"
  577. - "Expain the process of Creting GRN"
  578. - "Need to add GRN"
  579. - "help while creating GRN"
  580. - "Process of GRN"
  581. - intent: Support ticket-65
  582. examples: |
  583. - "MHP Q-4 2022 IS NOT SHOW IN DMS"
  584. - "nan"
  585. - "Unable to check MHP reports "
  586. - "Need last quarter data is not reflecting MHP"
  587. - "How to apply date filter in MHP report"
  588. - "Employee unable see MHP report "
  589. - intent: Support ticket-66
  590. examples: |
  591. - "disusing for stock"
  592. - "nan"
  593. - "Where we find Stock report in DMS "
  594. - "How to check Stock "
  595. - "Stock report is not reflecting "
  596. - "In Stock report data is not reflcting "
  597. - intent: Support ticket-67
  598. examples: |
  599. - "Not able to do the billing showing lob issue"
  600. - "nan"
  601. - "need to change sales manger name in customer"
  602. - "Need to edit the Sales manager name "
  603. - "unable to edit sales manager name "
  604. - "customer need to add sales manager "
  605. - intent: Support ticket-68
  606. examples: |
  607. - "Please Send me 2022 Sales For q Wise January to till November Send my I d aurangabad srlubricants in"
  608. - "nan"
  609. - "Where we find PCI invoice report "
  610. - "Unable to check PCI report "
  611. - "In PCI invoice report data is reflecting "
  612. - "How to check PCI Invoice report "
  613. - intent: Support ticket-69
  614. examples: |
  615. - "My geo tagging is not working plz do the needfull"
  616. - "nan"
  617. - "Unable to do geo tagging"
  618. - "Need to add geo tagging "
  619. - "How to geo tagging for customer "
  620. - "Need explaining the geo tagging "
  621. - intent: Support ticket-70
  622. examples: |
  623. - "Dealer Tag"
  624. - "nan"
  625. - "need to change sales manger name in customer"
  626. - "Need to edit the Sales manager name "
  627. - "unable to edit sales manager name "
  628. - "customer need to add sales manager "
  629. - intent: Support ticket-71
  630. examples: |
  631. - "Customer teg"
  632. - "nan"
  633. - "how can i check the sales invoices data "
  634. - "How to apply date filter Sales invoice reports "
  635. - "unable see the sales invoice report"
  636. - "In Sale invoice report data is not reflcting "
  637. - intent: Support ticket-72
  638. examples: |
  639. - "Sir sales invoice is not moving to confirmed stage Please do the needful "
  640. - "nan"
  641. - "How to add payment type in Sales order module"
  642. - "Need to change payment type "
  643. - "unable to edit sales order for changing payment type "
  644. - "getting issuse in changing in payment in sales order "
  645. - intent: Support ticket-73
  646. examples: |
  647. - "One of my colleague Manoj need to change his mail id please help me asap"
  648. - "nan"
  649. - "need to add mail id"
  650. - "how to add mail id"
  651. - "need to change mail id "
  652. - "Need update new mail ID "
  653. - intent: Support ticket-74
  654. examples: |
  655. - "Hi sir Issue regarding edit bill Please contact me this number- 7986647612"
  656. - "nan"
  657. - "need to quantity in Sales order "
  658. - "how to change quanitity in sales order"
  659. - "how to add quantity in sales order"
  660. - "how to add the quantity in sales order "
  661. - intent: Support ticket-75
  662. examples: |
  663. - "SALES REPORT DSR WISE"
  664. - "nan"
  665. - "how can i check the sales invoices data "
  666. - "How to apply date filter Sales invoice reports "
  667. - "unable see the sales invoice report"
  668. - "In Sale invoice report data is not reflcting "
  669. - intent: Support ticket-76
  670. examples: |
  671. - "Our DSRs have not able to log-in DMS the details as below of DSRs 1 Sangharatna Ramteke - 8888824434 2 Manish Vyas - 8149318696 3 Bhumesh Tembhare - 9371211062 4 Shailesh Kamble - 9371967798 DMS login ID not create yet please call on Mob 7744899922"
  672. - "nan"
  673. - "nan"
  674. - "nan"
  675. - "how to change password in employee "
  676. - "need new password for employee"
  677. - intent: Support ticket-77
  678. examples: |
  679. - "MONTHLY SALES NOT SHOWING IN SALES PERSON PLEASE CALL TO MR SHAMBHU DAYAL CHOUDHARY MOBILE NO 9929963657"
  680. - "nan"
  681. - "How to check mobil dashboards"
  682. - "need the process of checking mobil dashboards"
  683. - "unable to see dashboards"
  684. - "getting some issuse in dashboards"
  685. - intent: Support ticket-78
  686. examples: |
  687. - "SOME PROBLEM IN DMS SO PLEASE HELP 6207925718"
  688. - "nan"
  689. - "Where we find RTS report in DMS "
  690. - "How to check RTS discount "
  691. - "RTS report is not reflecting "
  692. - "In RTS report data is not reflcting "
  693. - intent: Support ticket-79
  694. examples: |
  695. - "Dear sir Geo tagging problem"
  696. - "nan"
  697. - "Unable to do geo tagging"
  698. - "Need to add geo tagging "
  699. - "How to geo tagging for customer "
  700. - "Need explaining the geo tagging "
  701. - intent: Support ticket-80
  702. examples: |
  703. - "Dear team We are not received Q-4 targets"
  704. - "nan"
  705. - "Unable to check MHP reports "
  706. - "Need last quarter data is not reflecting MHP"
  707. - "How to apply date filter in MHP report"
  708. - "Employee unable see MHP report "
  709. - intent: Support ticket-81
  710. examples: |
  711. - "Mam Please suggest if we add any customers GST number effective as on date then is it effect the back bills "
  712. - "nan"
  713. - "geeting issuse changing the GSTIN dates"
  714. - "need edit GST from date"
  715. - "how to change GST from date"
  716. - "how to check GST from date and to date "
  717. - intent: Support ticket-82
  718. examples: |
  719. - "unable to edit GRN"
  720. - "nan"
  721. - "how to delete the items GRN "
  722. - "need to delete to items in GRN"
  723. - "what is process OF deleting the items GRN"
  724. - "unable to edit GRN for deleting the items "
  725. - intent: Support ticket-83
  726. examples: |
  727. - "While geo-tagging wrong address showing"
  728. - "nan"
  729. - "Unable to do geo tagging"
  730. - "Need to add geo tagging "
  731. - "How to geo tagging for customer "
  732. - "Need explaining the geo tagging "
  733. - intent: Support ticket-84
  734. examples: |
  735. - "A MART LUCKNOW InvoiceNo SIN 22-23 0798 Difference in Sales Return"
  736. - "nan"
  737. - "unable to calculating thr rts discount the sales return "
  738. - "RTS discount is reflecting in sales return"
  739. - "RTS Discount amount is wrong"
  740. - "In Sales return the RTS discount is showing zero "
  741. - intent: Support ticket-85
  742. examples: |
  743. - "NOT TAKING INWARD PLEASE CALL BACK TO 0891-2569433"
  744. - "nan"
  745. - "Series is expired"
  746. - "How to extended series in purchase invoice "
  747. - "Unable to create Purchase invoice"
  748. - "While creating the purchase invoice getting as series is expired"
  749. - intent: Support ticket-86
  750. examples: |
  751. - "Need help to uplode icici bank statment for brs s k traders "
  752. - "nan"
  753. - "Getting issuse in BRS "
  754. - "what is mean by BRS statement"
  755. - "how to check BRS Statement"
  756. - "how to upload BRS"
  757. - intent: Support ticket-87
  758. examples: |
  759. - "Rate are not correct in sales return"
  760. - "nan"
  761. - "Where we find RTS report in DMS "
  762. - "How to check RTS discount "
  763. - "RTS report is not reflecting "
  764. - "In RTS report data is not reflcting "
  765. - intent: Support ticket-88
  766. examples: |
  767. - "want to change item in invoice"
  768. - "nan"
  769. - "how to add or delete the itemssales invoice"
  770. - "need toadd or delete to items invoice"
  771. - "what is process adding or deleting the items sales invoice"
  772. - "unable to edit sales invoice foradding or deleting the items "
  773. - intent: Support ticket-89
  774. examples: |
  775. - "My dealers name not coming to my DMS APP please suggest me thank you "
  776. - "nan"
  777. - "how to create sales order "
  778. - "need help in sales order "
  779. - "getting issuse in sales order"
  780. - "unable to gerented sales order"
  781. - intent: Support ticket-90
  782. examples: |
  783. - "rts amount nahi aa raha h"
  784. - "nan"
  785. - "getting issuse in sales return"
  786. - "unable to gerented sales return"
  787. - "how to create sales return"
  788. - "unable to gerented sales return"
  789. - intent: Support ticket-91
  790. examples: |
  791. - "how can we create return in sales invoice"
  792. - "nan"
  793. - "Series is expired"
  794. - "How to extended series insales return "
  795. - "Unable to create sales return"
  796. - "While creating the sales return getting as series is expired"
  797. - intent: Support ticket-92
  798. examples: |
  799. - "Regarding the Report 2022"
  800. - "nan"
  801. - "Where we find Detail volumne report in DMS "
  802. - "How to check Detail volumne discount "
  803. - " Detail volumne report is not reflecting "
  804. - "In Detail volumne report data is not reflcting "
  805. - intent: Support ticket-93
  806. examples: |
  807. - "SALES DSR WISE"
  808. - "nan"
  809. - "Where we find PCI invoice report "
  810. - "Unable to check PCI report "
  811. - "In PCI invoice report data is reflecting "
  812. - "How to check PCI Invoice report "
  813. - intent: Support ticket-94
  814. examples: |
  815. - "GRN 22-23 598 this GRN not show create invoice "
  816. - "nan"
  817. - "how to delete the items GRN "
  818. - "need to delete to items in GRN"
  819. - "what is process OF deleting the items GRN"
  820. - "unable to edit GRN for deleting the items "
  821. - intent: Support ticket-95
  822. examples: |
  823. - "SHRI SAINATH ENTERPRISES - This customer is not editing mail id"
  824. - "nan"
  825. - "need to add mail id"
  826. - "how to add mail id"
  827. - "need to change mail id "
  828. - "Need update new mail ID "
  829. - intent: Support ticket-96
  830. examples: |
  831. - "New create customer"
  832. - "nan"
  833. - "help in customer creation"
  834. - "issuse with customer module"
  835. - "what is process of creting the customer"
  836. - "unable to do customer"
  837. - intent: Support ticket-97
  838. examples: |
  839. - "Purchase in"
  840. - "nan"
  841. - "need help in TCS "
  842. - "unable to apply TCS in purchase order"
  843. - "Why TCS is applied purchase order"
  844. - "how to apply TCS in purchase order"
  845. - intent: Support ticket-98
  846. examples: |
  847. - "DSR WISE SALES"
  848. - "nan"
  849. - "Where we find PCI invoice report "
  850. - "Unable to check PCI report "
  851. - "In PCI invoice report data is reflecting "
  852. - "How to check PCI Invoice report "
  853. - intent: Support ticket-99
  854. examples: |
  855. - "MBC MCC reports"
  856. - "nan"
  857. - "how to apply date fitler in monthly wise workshop "
  858. - "unable to apply date filter in monthly wise workshop "
  859. - "date filter is not working "
  860. - "explain the process of applying the date filter in monthl wise workshop report "
  861. - intent: Support ticket-100
  862. examples: |
  863. - "I would like to know if we can give batch details for the inward and outward stocks "
  864. - "nan"
  865. - "Explain the process of adding the batch item"
  866. - "where batch item will added "
  867. - "While adding batch item some issuse reflecting"
  868. - "unable to add Batch item"
  869. - intent: Support ticket-101
  870. examples: |
  871. - "Q4 target enquiry"
  872. - "How to check MHP target in DMS"
  873. - "MHP target is not updated in DMS"
  874. - "explain the process of checking MHP report"
  875. - "how to check the MHP incentives in DMS "
  876. - "nan"
  877. - intent: Support ticket-102
  878. examples: |
  879. - "Q 4 Mobil Hero targets are not appearing"
  880. - "How to check MHP target in DMS"
  881. - "MHP target is not updated in DMS"
  882. - "explain the process of checking MHP report"
  883. - "how to check the MHP incentives in DMS "
  884. - "nan"
  885. - intent: Support ticket-103
  886. examples: |
  887. - "Series is Expire when creating GRN"
  888. - "error showing series is expired while trying to create GRN"
  889. - "unable to create GRN due to series expires"
  890. - "how to extend series for GRN module"
  891. - "explain the process of series creation"
  892. - "nan"
  893. - intent: Support ticket-104
  894. examples: |
  895. - "RTS DETAILS"
  896. - "how to check RTS details in one report"
  897. - "where can i check over all report of RTS in DMS"
  898. - "explain about detailed volume report"
  899. - "unable to check detailed volume report"
  900. - "nan"
  901. - intent: Support ticket-105
  902. examples: |
  903. - "Retailer Volume of Q4 2022 with RTS Payout Details"
  904. - "how to check RTS payout details of Q4"
  905. - "how to check RTS details in one report"
  906. - "unable to check detailed volume report"
  907. - "how to check RTS oninvoce details in reports"
  908. - "nan"
  909. - intent: Support ticket-106
  910. examples: |
  911. - "I AM NOT ABLE TO CREATE RETURN SALE INVOICE SO PLEASE SOLVE THIS PROBLEM KINDLY CALL ON THIS NO 9882222205 "
  912. - "how to create sales return"
  913. - "how to return the invoiced material in DMS"
  914. - "explain the process of returning the invoiced items"
  915. - "how to create sales return with selected items"
  916. - "nan"
  917. - intent: Support ticket-107
  918. examples: |
  919. - "How to create GRN and then proceed with other steps "
  920. - "Explain thr proceedure of creating GRN in DMS"
  921. - "How to create GRN to the purchase order"
  922. - "how to add the stock in DMS"
  923. - "how to enter stock inventory to the received goods"
  924. - "nan"
  925. - intent: Support ticket-108
  926. examples: |
  927. - "Need to correct segments"
  928. - "how to add LOB segments to the customers in DMS"
  929. - "how to update the segmants in customer module"
  930. - "unable to add LOB tags while creating the customer"
  931. - "explain the process of updating th LOB segments of the customers"
  932. - "nan"
  933. - intent: Support ticket-109
  934. examples: |
  935. - "Customer tag report"
  936. - "how to change the salesperson mapping to the customers"
  937. - "explain the proceedure to update sales person of customer in DMS"
  938. - "how to use change manager widget "
  939. - "how to change the sales person of the customers by using change managers widget"
  940. - "nan"
  941. - intent: Support ticket-110
  942. examples: |
  943. - "dear sir madam regarding for purchase invoice please contact no-7999195042"
  944. - "how to create purchase invoice "
  945. - "unable create purchase invoice to the given GRN"
  946. - "how to editypurchase invoice in DMS"
  947. - "How to check purchase invoice in DMS"
  948. - "nan"
  949. - intent: Support ticket-111
  950. examples: |
  951. - "NOT CREATE MOBIL opportunity PARTY NAME NOT SHOW MO -8305595186"
  952. - "unable to create mobil opportunity"
  953. - "customer name is not loading while creating Mobil opportunity"
  954. - "expalin the process of creating mobil opportunity "
  955. - "how to edit mobil opportunity in DMS"
  956. - "nan"
  957. - intent: Support ticket-112
  958. examples: |
  959. - "Hi sir Issue regarding sales order bill edit Please contact me this number- 7986647612 "
  960. - "How to add item in create sales order "
  961. - "how to edit the sales items in sales order after placing "
  962. - "unable to delete items in sales order"
  963. - "explain the proceedure of sales order and DC in DMS"
  964. - "nan"
  965. - intent: Support ticket-113
  966. examples: |
  967. - "Purchase invoice not shown"
  968. - "how to check purchase invoice in DMS"
  969. - "how to search purchase order in search bar"
  970. - "unable to find the purchase order in DMS"
  971. - "how to search particular purchase order through search bar"
  972. - "nan"
  973. - intent: Support ticket-114
  974. examples: |
  975. - "Actual billed volume is not reflecting here as per DSR name"
  976. - "explain the process of sales item register report in DMS"
  977. - " how to check billed volume of a dsr in reports"
  978. - "proceedure to check billed volume in DMS"
  979. - "how to check sales item register "
  980. - "nan"
  981. - intent: Support ticket-115
  982. examples: |
  983. - "after invoicing the stage of invoice is not setting as confirmed"
  984. - "how to change payment mode while creating sales order"
  985. - "explain the process of changing payment type mode while creating sales order"
  986. - "how to change stage of a sales order in DMS "
  987. - "unable to change the sales order stage from active to confirm"
  988. - "nan"
  989. - intent: Support ticket-116
  990. examples: |
  991. - "unable to create invoice"
  992. - "how to crate sales invoice"
  993. - "explain the proceess of creating sales invoice"
  994. - "explain the process of adding item in DC "
  995. - "explain how to create secondary sales in DMS"
  996. - "nan"
  997. - intent: Support ticket-117
  998. examples: |
  999. - "orders punched v s orders delivered party wise report required similarly order punched v s orders delivered product wise report required "
  1000. - "explain the process of checking the Sales pending order report"
  1001. - "how to check the pending orders in DMS"
  1002. - "how check the pending and completed sales orders in DMS"
  1003. - "unable to check sales pending order details"
  1004. - "nan"
  1005. - intent: Support ticket-118
  1006. examples: |
  1007. - "HELP FOR CORRECT ENTERY CALL 9923392112"
  1008. - "how to change the role of an employee in DMS"
  1009. - "explained the process of changing employee designation "
  1010. - "how to update employee role and designation in DMS"
  1011. - "employee designation is not getting updated"
  1012. - "nan"
  1013. - intent: Support ticket-119
  1014. examples: |
  1015. - "WRONGLY DELETE INVOICE NO 3531 DATE - 29 12 22"
  1016. - "how to add sales item in sales invoice"
  1017. - "explain the process of how to add item in Sales invoice"
  1018. - "nan"
  1019. - "nan"
  1020. - "nan"
  1021. - intent: Support ticket-120
  1022. examples: |
  1023. - "please create a new series"
  1024. - "how to create new series in sales invoice module"
  1025. - "explain the process of checking PCI invoice report"
  1026. - "how to check PCI report in DMS"
  1027. - "nan"
  1028. - "nan"
  1029. - intent: Support ticket-121
  1030. examples: |
  1031. - "PCI INVOICE VOLUME AND MHP VOLUME SHOWS DIFFERENT AMOUNT"
  1032. - "how to create new series in sales invoice module"
  1033. - "explain the process of checking PCI invoice report"
  1034. - "how to check PCI report in DMS"
  1035. - "nan"
  1036. - "nan"
  1037. - intent: Support ticket-122
  1038. examples: |
  1039. - "Need Employee Route Demo"
  1040. - "how to create route schedule in DMS"
  1041. - "explain about routes and route schedule in DMS"
  1042. - "unable create route schedules in DMS"
  1043. - "nan"
  1044. - "nan"
  1045. - intent: Support ticket-123
  1046. examples: |
  1047. - "CHANGE CUSTOMER ADDRESS US217 SUN NYLON STORES TIRUNELVELI MOBIL NO 8610267737"
  1048. - "How to add address to the customer in DMS"
  1049. - "how to upadte the new address to the customer"
  1050. - "expalin the process to add shipping address to the customer"
  1051. - "nan"
  1052. - "nan"
  1053. - intent: Support ticket-124
  1054. examples: |
  1055. - "issue creating lead in Mobil oportunity"
  1056. - "unable to create mobil opportunity"
  1057. - "customer name is not loading while creating Mobil opportunity"
  1058. - "expalin the process of creating mobil opportunity "
  1059. - "how to edit mobil opportunity in DMS"
  1060. - "nan"
  1061. - intent: Support ticket-125
  1062. examples: |
  1063. - "Need support on purchase invoice details"
  1064. - "How to check item stock moment log in DMS"
  1065. - "unable to check item history"
  1066. - "how to check stock report in DMS"
  1067. - "explain the process of how to download Stock movement log report"
  1068. - "nan"
  1069. - intent: Support ticket-126
  1070. examples: |
  1071. - "Not able to edit sales person for current month bills please make me understand how to do it "
  1072. - "How to change the salesperson after invoiced"
  1073. - "nan"
  1074. - "nan"
  1075. - "nan"
  1076. - "nan"
  1077. - intent: Support ticket-127
  1078. examples: |
  1079. - "How to create the customer"
  1080. - "Not able to create the customer"
  1081. - "Need to create the customer "
  1082. - "nan"
  1083. - "nan"
  1084. - "nan"
  1085. - intent: Support ticket-128
  1086. examples: |
  1087. - "How to change my stock number in DMS "
  1088. - "Need training on stock correction"
  1089. - "Need to do stock inventory"
  1090. - "How can i change my stock report in DMS"
  1091. - "Explain the process of Item reconcilation "
  1092. - "nan"
  1093. - intent: Support ticket-129
  1094. examples: |
  1095. - "HOW TO CHANGE RETAILER DETAIL"
  1096. - "How to change the DSR name"
  1097. - "Need to edit the DSR name "
  1098. - "How can i edit the sales person name"
  1099. - "Need to add the new DSR name"
  1100. - "nan"
  1101. - intent: Support ticket-130
  1102. examples: |
  1103. - "i am from trichy branch i have billed materials from madurai branch i am unable to select madurai branch in my login"
  1104. - "How can I shift to another branch"
  1105. - "Need to add the branch "
  1106. - "What is process of adding the branch "
  1107. - "Need to add the another branch "
  1108. - "nan"
  1109. - intent: Support ticket-131
  1110. examples: |
  1111. - "How can i check the geo taggging customer list "
  1112. - "How can i check the geo tagging and non geo tagging customer "
  1113. - "Need to chekc the geo tagging customers "
  1114. - "Need help to download the Geo tagging customer list"
  1115. - "How to download the geo tagging customers list "
  1116. - "nan"
  1117. - intent: Support ticket-132
  1118. examples: |
  1119. - "Kindly unable AR boarding kit access"
  1120. - "How to reedme the Ar onboarding points"
  1121. - "How can i shift to AR onboarding"
  1122. - "Need help oncreating the Ar onboarding kit"
  1123. - "How can i shif to primary "
  1124. - "nan"
  1125. - intent: Support ticket-133
  1126. examples: |
  1127. - "hi there admin is forget their id password please help asap"
  1128. - "How can i change my DMS login password "
  1129. - "Employee has forgoted the password what can i do now "
  1130. - "Need help on changeing my DMS password "
  1131. - "what is next process if an employee forgots the password "
  1132. - "nan"
  1133. - intent: Support ticket-134
  1134. examples: |
  1135. - "Pending Order Details Report are not generated "
  1136. - "How can see the pending orders "
  1137. - "Is there any report see the pending orders"
  1138. - "How to dowload the Pending order details "
  1139. - "Need help on downloding the Pending orders details "
  1140. - "nan"
  1141. - intent: Support ticket-135
  1142. examples: |
  1143. - "Dear sir we would like to inform you today create the DC and also tagging the EB but volume is not showing so please rectify the same as per as possible customer name-k k construction "
  1144. - "How to check the EB Invoice report"
  1145. - "How can see my EB Invoice data"
  1146. - "explain about how to check Eb invoice report in DMS"
  1147. - "how to check eb tagged invoices in reports"
  1148. - "nan"
  1149. - intent: Support ticket-136
  1150. examples: |
  1151. - "SRI BALAJI ENTERPRISES KPHB when added in offers it says its already added but it is not shown in the list both are attached"
  1152. - "How to check the if the customer is included in particular offer"
  1153. - "unable to identify either customer is included in offers or not"
  1154. - "explain me about how to check included customers in offer module"
  1155. - "how can i check the offers applicable for customer in offers module "
  1156. - "nan"
  1157. - intent: Support ticket-137
  1158. examples: |
  1159. - "DETAILED PROCESS OF DSR TAGGING CONTACT PERSON -POOJA CONTACT NO 7975450461"
  1160. - "explain the proceedure to update sales person of customer in DMS"
  1161. - "how to use change manager widget "
  1162. - "how to change the sales person of the customers by using change managers widget"
  1163. - "nan"
  1164. - "nan"
  1165. - intent: Support ticket-138
  1166. examples: |
  1167. - "135361-MOBIL RARUS 827 5GA PLZ REMOVE MRP"
  1168. - "how can i create new mrp for old product"
  1169. - "how can i selct mrp while creating inventory of an item"
  1170. - "nan"
  1171. - "nan"
  1172. - "nan"
  1173. - intent: Support ticket-139
  1174. examples: |
  1175. - "dear sir i have created invoice of ck motors repairing works on the date 29 11 2022 the invoice is showing in dsr rahul tanwar s id but not showing in dms i have attach the document as per i requsted mob no -7976422620"
  1176. - "nan"
  1177. - "how to check sale invoice data in one report"
  1178. - "how to check all invoice created by sales person"
  1179. - "nan"
  1180. - "nan"
  1181. - intent: Support ticket-140
  1182. examples: |
  1183. - "DEAR SIR WRONGLY SELECTED CASH SALES INVOICE NO H2 CB 22 0124 DATE-12 01 2023 PLEASE CHANGE AA 000 CASH SALES HUBLI SIR "
  1184. - "How to update the customer name and customer address"
  1185. - "nan"
  1186. - "nan"
  1187. - "nan"
  1188. - "nan"
  1189. - intent: Support ticket-141
  1190. examples: |
  1191. - "montly details"
  1192. - "how to check sale invoice data in one report"
  1193. - "how to check all invoice created by sales person"
  1194. - "nan"
  1195. - "nan"
  1196. - "nan"
  1197. - intent: Support ticket-142
  1198. examples: |
  1199. - "In the customer tab geo tagging is not working Please help"
  1200. - "How to geotag the customer in DMS"
  1201. - "how to enable geotagging for the customer"
  1202. - "nan"
  1203. - "nan"
  1204. - "nan"
  1205. - intent: Support ticket-143
  1206. examples: |
  1207. - "UNABLE TO LOGIN PLEASE SOLVE THE PROBLEM 97797-86400 EMAIL ID babbukumar1270 gmail com"
  1208. - "Explain the process of unlocking employee id"
  1209. - "how to unlock my id from login page"
  1210. - "help me with unlocking my id "
  1211. - "nan"
  1212. - "nan"
  1213. - intent: Support ticket-144
  1214. examples: |
  1215. - "want to creatv a employee"
  1216. - "Explain the process of registring new employee through login page"
  1217. - "how to create login and password for new employee"
  1218. - "how to create own login id in DMS"
  1219. - "nan"
  1220. - "nan"
  1221. - intent: Support ticket-145
  1222. examples: |
  1223. - "Error Mobile Number Already Exists"
  1224. - "Explain the process of registring new employee through login page"
  1225. - "how to create login and password for new employee"
  1226. - "how to create own login id in DMS"
  1227. - "nan"
  1228. - "nan"
  1229. - intent: Support ticket-146
  1230. examples: |
  1231. - "Hi Team Need your help for GPS tagging as correct location in map is not showing for retailers while GEO tagging AR base location is showing in map I asked DSR to clear cache and try it but still facing same issue Please look into it DSR Namr- Rahul Kumar Jain Contact No-9770021565 AR Name- JK Power"
  1232. - "How to geotag the customer in DMS"
  1233. - "how to enable geotagging for the customer"
  1234. - "nan"
  1235. - "nan"
  1236. - "nan"
  1237. - intent: Support ticket-147
  1238. examples: |
  1239. - "Not able make geo tagging "
  1240. - "How to geotag the customer in DMS"
  1241. - "how to enable geotagging for the customer"
  1242. - "nan"
  1243. - "nan"
  1244. - "nan"
  1245. - intent: Support ticket-148
  1246. examples: |
  1247. - "We are not able to make geo tagging"
  1248. - "How to geotag the customer in DMS"
  1249. - "how to enable geotagging for the customer"
  1250. - "nan"
  1251. - "nan"
  1252. - "nan"
  1253. - intent: Support ticket-149
  1254. examples: |
  1255. - "How to make gio tagging "
  1256. - "How to geotag the customer in DMS"
  1257. - "how to enable geotagging for the customer"
  1258. - "nan"
  1259. - "nan"
  1260. - "nan"
  1261. - intent: Support ticket-150
  1262. examples: |
  1263. - "Geo tagging"
  1264. - "How can i check the geo tagging and non geo tagging report "
  1265. - "Unable to view geo tagging report"
  1266. - "Explain how to download geo tagging customers report "
  1267. - "There is no report available in the name of geo tagging report "
  1268. - "nan"
  1269. - intent: Support ticket-151
  1270. examples: |
  1271. - "Unable to create sales order from my employee user login "
  1272. - "nan"
  1273. - "Unable to create sales order from my employee user login "
  1274. - "How to give permission for DSR roles "
  1275. - "Expalin the process of modules permission "
  1276. - "nan"
  1277. - intent: Support ticket-152
  1278. examples: |
  1279. - "HOW CANCEL INVOICE"
  1280. - "How to void invoice in DMS "
  1281. - "Unable to cancel Invoice "
  1282. - "Explain the process of removing invoice"
  1283. - "Need help for deleting invoice "
  1284. - "nan"
  1285. - intent: Support ticket-153
  1286. examples: |
  1287. - "Dear Sir Mam Please find the attachment and resolve problm Thanks Regards Asha Kumari 9509385397"
  1288. - "How to create vendor in DMS"
  1289. - "How to create partner in DMS "
  1290. - "Unable to create purchase to other distributors "
  1291. - "Expalin the process of creating partner "
  1292. - "nan"
  1293. - intent: Support ticket-154
  1294. examples: |
  1295. - "Please contact our new Employee Mr Rahul Adhya at mobile no 9147065649 This is urgent Give him the App Sales Order by which he can place Sales Order in DMS "
  1296. - "nan"
  1297. - "nan"
  1298. - "nan"
  1299. - "nan"
  1300. - "nan"
  1301. - intent: Support ticket-155
  1302. examples: |
  1303. - "Below attached customers are missing in MBC MCC MTC Leads for renewal Please call Mr ROY P THOMAS mobile no 9946948314"
  1304. - "How to renewal MBC MCC MTC workshop leads in DMS"
  1305. - "Unable to renewal MBC MCC MTC leads "
  1306. - "Expalin the process of MBC MCC renewal"
  1307. - "I am not able to create to MBC MCC lead "
  1308. - "nan"
  1309. - intent: Support ticket-156
  1310. examples: |
  1311. - "Not able to Create MCC MBC MTS Lead in Bizgaze"
  1312. - "I am not able to create to MBC MCC lead "
  1313. - "How to renewal MBC MCC MTC workshop leads in DMS"
  1314. - "Unable to renewal MBC MCC MTC leads "
  1315. - "Expalin the process of MBC MCC renewal"
  1316. - "nan"
  1317. - intent: Support ticket-157
  1318. examples: |
  1319. - "Manual Voucher Numbers required to give Bizgaze invoice to market also customer wants no of tins to be shown in invoice along volume "
  1320. - "Expian how to create manual invoices"
  1321. - "Unable to create manual invoices"
  1322. - "How to add manual invoioce numbers on invoices"
  1323. - "How to check manual invoice numbers "
  1324. - "nan"
  1325. - intent: Support ticket-158
  1326. examples: |
  1327. - "in Customer master report we are not able to see Geo Tagging details"
  1328. - "How can i check the geo tagging and non geo tagging report "
  1329. - "Unable to view geo tagging report"
  1330. - "Explain how to download geo tagging customers report "
  1331. - "There is no report available in the name of geo tagging report "
  1332. - "nan"
  1333. - intent: Support ticket-159
  1334. examples: |
  1335. - "Please contact our employee Mr Bishal Gupta at Mobile no 9038130086 He is facing problem JIO tagging with customers "
  1336. - "Unable to view geo tagging report"
  1337. - "Explain how to download geo tagging customers report "
  1338. - "There is no report available in the name of geo tagging report "
  1339. - "How can i check the geo tagging and non geo tagging report "
  1340. - "nan"
  1341. - intent: Support ticket-160
  1342. examples: |
  1343. - "Not able to see the party to place the order "
  1344. - "Customer not reflecting while creating sales order in DSR login"
  1345. - "Unable to add followers in customers"
  1346. - "Explain the process of adding followers"
  1347. - "How to add followers in customers"
  1348. - "nan"
  1349. - intent: Support ticket-161
  1350. examples: |
  1351. - "My another account of manoj kumar is locked kindly do the needful"
  1352. - "Explain the process of unlocking the employee login "
  1353. - "nan"
  1354. - "nan"
  1355. - "How to unlock employee login"
  1356. - "nan"
  1357. - intent: Support ticket-162
  1358. examples: |
  1359. - "GQP-1050 PRICE LIST PRICE-11544 06 SALES ORDER PRICE -10433 9"
  1360. - "How to upload price code list in DMS"
  1361. - "nan"
  1362. - "nan"
  1363. - "nan"
  1364. - "nan"
  1365. - intent: Support ticket-163
  1366. examples: |
  1367. - "Geo Tagging is not working kindly check and clear the issues Pl find the attached Screenshot"
  1368. - "How to assign geo tagging for the particular customer"
  1369. - "nan"
  1370. - "nan"
  1371. - "nan"
  1372. - "nan"
  1373. - intent: Support ticket-164
  1374. examples: |
  1375. - "Geo Tagging is not working kindly check and clear the issues and pl find the attached screenshot for your reference "
  1376. - "How to assign geo tagging for the particular customer"
  1377. - "nan"
  1378. - "nan"
  1379. - "nan"
  1380. - "nan"
  1381. - intent: Support ticket-165
  1382. examples: |
  1383. - "ONE CASE ENTERED FOR MCC CATEGORY B APPROVAL BUT DATA SHOWN AS DRAFT WHEREAS WE HAVE CHANGED THE STAGE OF TM APPROVAL PLEASE CHECK AND UPDATE "
  1384. - "nan"
  1385. - "There is option for submit for approval of MBC MCC leads "
  1386. - "nan"
  1387. - "nan"
  1388. - "nan"
  1389. - intent: Support ticket-166
  1390. examples: |
  1391. - "creation employee login id"
  1392. - "How to create employee in DMS"
  1393. - "nan"
  1394. - "nan"
  1395. - "nan"
  1396. - "nan"
  1397. - intent: Support ticket-167
  1398. examples: |
  1399. - "geo tagging"
  1400. - "How to Assign geo tagging for the particular customers"
  1401. - "nan"
  1402. - "nan"
  1403. - "nan"
  1404. - "nan"
  1405. - intent: Support ticket-168
  1406. examples: |
  1407. - "Hi sir Please help me unlock D M S account and re-set password "
  1408. - "How to unlock the employee login "
  1409. - "nan"
  1410. - "nan"
  1411. - "nan"
  1412. - "nan"
  1413. - intent: Support ticket-169
  1414. examples: |
  1415. - "PLEASE GIVE ME FULL ACSSES PLEASE"
  1416. - "PLease provide Admin access to my logion "
  1417. - "nan"
  1418. - "nan"
  1419. - "nan"
  1420. - "nan"
  1421. - intent: Support ticket-170
  1422. examples: |
  1423. - "Having error in sales return "
  1424. - "How to create sale return in DMS "
  1425. - "nan"
  1426. - "nan"
  1427. - "nan"
  1428. - "nan"
  1429. - intent: Support ticket-171
  1430. examples: |
  1431. - "My DSR Team is geo tagging the retailers but same not reflecting in geo tagging report I am downloading from Bizgaze Kindly resolve the issue "
  1432. - "How can i check the geo tagging and non geo tagging report "
  1433. - "nan"
  1434. - "nan"
  1435. - "nan"
  1436. - "nan"
  1437. - intent: Support ticket-172
  1438. examples: |
  1439. - "RTS Q3 REPORT"
  1440. - "What is the process to download to download the RTS payouts DVP report"
  1441. - "nan"
  1442. - "nan"
  1443. - "nan"
  1444. - "nan"
  1445. - intent: Support ticket-173
  1446. examples: |
  1447. - "PURCHASE BILL ISSUE"
  1448. - "How to add item in purchase invoice"
  1449. - "Expalin the process of adding items in purchase invoice "
  1450. - "nan"
  1451. - "nan"
  1452. - "nan"
  1453. - intent: Support ticket-174
  1454. examples: |
  1455. - "Kindly raise the below QTR credit notes Q3 2022 Q4 2022"
  1456. - "How to generate Q2 credit notes in DMS"
  1457. - "Iam unable to generate Q2 credit notes in DMS "
  1458. - "nan"
  1459. - "nan"
  1460. - "nan"
  1461. - intent: Support ticket-175
  1462. examples: |
  1463. - "HOW EDIT GST NUMBER"
  1464. - "How to update GST number for the particular customer"
  1465. - "I am not able to change GST number in DMS for the customer "
  1466. - "nan"
  1467. - "nan"
  1468. - "nan"
  1469. - intent: Support ticket-176
  1470. examples: |
  1471. - "Geo tagging nai ho raha h"
  1472. - "Explian the process of geo tagging for the customers in DMS"
  1473. - "nan"
  1474. - "nan"
  1475. - "nan"
  1476. - "nan"
  1477. - intent: Support ticket-177
  1478. examples: |
  1479. - "Error Default Series For Receipt is not found receipt entry not taken today"
  1480. - "How to create series for the receipts in DMS "
  1481. - "nan"
  1482. - "nan"
  1483. - "nan"
  1484. - "nan"
  1485. - intent: Support ticket-178
  1486. examples: |
  1487. - "PLEASE CALL BACK TO THIS LAND LANE NO 0891 2569433 FOR BILLING INVOICE"
  1488. - "Explian the process of stock report in DMS "
  1489. - "nan"
  1490. - "nan"
  1491. - "nan"
  1492. - "nan"
  1493. - intent: Support ticket-179
  1494. examples: |
  1495. - "Unable to do geo tag Kindly send video for this"
  1496. - "Explain the process of geo tagging "
  1497. - "nan"
  1498. - "nan"
  1499. - "nan"
  1500. - "nan"
  1501. - intent: Support ticket-180
  1502. examples: |
  1503. - "Helo sir Pl solve this problem my sales executive manpreet1689 gmail com Password 9855962193 Not working User is locked on screen Thanks Singla motors"
  1504. - "nan"
  1505. - "How to unlock the employee in DMS "
  1506. - "nan"
  1507. - "nan"
  1508. - "nan"
  1509. - intent: Support ticket-181
  1510. examples: |
  1511. - "please call back to land lane no 0891-2569433 for billing invoice"
  1512. - "Explian the process of stock movement log in DMS "
  1513. - "nan"
  1514. - "nan"
  1515. - "nan"
  1516. - "nan"
  1517. - intent: Support ticket-182
  1518. examples: |
  1519. - "INVOICE COMPLETED BUT ONE ITEM ADD THIS INVOICE"
  1520. - "How to add items in existing sales invoice "
  1521. - "Explain the process of adding removing items in sales invoice "
  1522. - "nan"
  1523. - "nan"
  1524. - "nan"
  1525. - intent: Support ticket-183
  1526. examples: |
  1527. - "not showing sales person name"
  1528. - "How to add address for the existing customer"
  1529. - "Explain the process of adding address in customers "
  1530. - "nan"
  1531. - "nan"
  1532. - "nan"
  1533. - intent: Support ticket-184
  1534. examples: |
  1535. - "Unable to create CN give acess of Ledger widget to DSRs"
  1536. - "Explain the process how to Extend the sereis in credit note "
  1537. - "Need to extend the series in CN"
  1538. - "nan"
  1539. - "nan"
  1540. - "nan"
  1541. - intent: Support ticket-185
  1542. examples: |
  1543. - "DEAR SIR MADAM PLEASE CORRECT INWARD QTY "
  1544. - "How to remove the item quantity in GRN "
  1545. - "nan"
  1546. - "nan"
  1547. - "nan"
  1548. - "nan"
  1549. - intent: Support ticket-186
  1550. examples: |
  1551. - "cash bucket is not view kindly help Call from this number -9047047674"
  1552. - "How to check cash buckets in Mobil dashboards"
  1553. - "nan"
  1554. - "nan"
  1555. - "nan"
  1556. - "nan"
  1557. - intent: Support ticket-187
  1558. examples: |
  1559. - "Happy Namaste Sir Mam We Have two case of MOBIL 1 0W-40 SP CTN 4X4L SG-144463 But when we are making DC Then stock is showing Nil please gude "
  1560. - "nan"
  1561. - "How to change ship from address in DC "
  1562. - "nan"
  1563. - "nan"
  1564. - "nan"
  1565. - intent: Support ticket-188
  1566. examples: |
  1567. - "Upon adding customer to our account we are facing problem in selecting sales manager as there is no option available for choosing the manager in the drag down button "
  1568. - "nan"
  1569. - "How to add address for the existing Customer in DMS"
  1570. - "nan"
  1571. - "nan"
  1572. - "nan"
  1573. - intent: Support ticket-189
  1574. examples: |
  1575. - "Unable to do GRN"
  1576. - "How to create GRN in DMS "
  1577. - "nan"
  1578. - "nan"
  1579. - "nan"
  1580. - "nan"
  1581. - intent: Support ticket-190
  1582. examples: |
  1583. - "sales targets sale in-out are not visible in Mobil Dashboards please rivert back"
  1584. - "How to apply date filter in Mobil dashboards"
  1585. - "How can i check sale-in sale-out dashboards"
  1586. - "nan"
  1587. - "nan"
  1588. - "nan"
  1589. - intent: Support ticket-191
  1590. examples: |
  1591. - "GST No not Showing"
  1592. - "How to update GST number for the particular customer"
  1593. - "nan"
  1594. - "nan"
  1595. - "nan"
  1596. - "nan"
  1597. - intent: Support ticket-192
  1598. examples: |
  1599. - "Geo tagging issue for a sales parson swaroop please do the needful and try to do the earliest call this no 7506333038"
  1600. - "Explain the process of geo tagging "
  1601. - "nan"
  1602. - "nan"
  1603. - "nan"
  1604. - "nan"
  1605. - intent: Support ticket-193
  1606. examples: |
  1607. - "GST ISSUE"
  1608. - "How to update GST number for the particular customer"
  1609. - "nan"
  1610. - "nan"
  1611. - "nan"
  1612. - "nan"
  1613. - intent: Support ticket-194
  1614. examples: |
  1615. - "Stock issue in product code -146117 Kindly do the needful "
  1616. - "How to add MRP in DC"
  1617. - "nan"
  1618. - "nan"
  1619. - "nan"
  1620. - "nan"
  1621. - intent: Support ticket-195
  1622. examples: |
  1623. - "Mam Unable to take print out of Debit note"
  1624. - "How to take print in Debit note"
  1625. - "nan"
  1626. - "nan"
  1627. - "nan"
  1628. - "nan"
  1629. - intent: Support ticket-196
  1630. examples: |
  1631. - "OUR NEW DSR NAVEEN C DMS APP HAS BEEN LOCKED REQUESTE YOU TO KINDLY UNLOCK THE SAME IMMEDIATELY CONTACT NO 8453342229 KINDLY CONTACT IMMEDIATELY"
  1632. - "nan"
  1633. - "How to unlock the employee login "
  1634. - "nan"
  1635. - "nan"
  1636. - "nan"
  1637. - intent: Support ticket-197
  1638. examples: |
  1639. - "HOW WE CAN FIND THE LIST OF NON GEO TAGGING CUSTOMERS"
  1640. - "how to check geo tag non geo tagging customers in DMS "
  1641. - "nan"
  1642. - "nan"
  1643. - "nan"
  1644. - "nan"
  1645. - intent: Support ticket-198
  1646. examples: |
  1647. - "We need a Location details for all Empolyee Jio Taging details need "
  1648. - "how to check geo tag non geo tagging customers in DMS "
  1649. - "nan"
  1650. - "nan"
  1651. - "nan"
  1652. - "nan"
  1653. - intent: Support ticket-199
  1654. examples: |
  1655. - "Hello DMS Team kindly request YOU Please Check below invoice number issue Api Queue saved Successfully but All quantity are same but invoice not link in DMS Invoice number 226004863 Kindly check asap "
  1656. - "nan"
  1657. - "Explain the process how to adding quantity and removing quantity in sales order"
  1658. - "nan"
  1659. - "nan"
  1660. - "nan"
  1661. - intent: Support ticket-200
  1662. examples: |
  1663. - "Mam The following Debit not we issued from Faridabad portal but unable to take print out DR-F 22-23 002"
  1664. - "unable to view Print widget in Debit note"
  1665. - "How to take print in Debit note"
  1666. - "nan"
  1667. - "nan"
  1668. - "nan"
  1669. - intent: Support ticket-201
  1670. examples: |
  1671. - "HOW TO ADD A GST NUMBER IN AN EXISTENCE DEALER ACCOUNT CALL 9923392112"
  1672. - "how to add the GSTIN number to the existing customer"
  1673. - "GST number unable to add help"
  1674. - "nan"
  1675. - "nan"
  1676. - "nan"
  1677. - intent: Support ticket-202
  1678. examples: |
  1679. - "Please Call at 9418307770 Need to create new login for DSRs"
  1680. - "DSR login creation"
  1681. - "process of creating the new user ID and password"
  1682. - "New user logins creation"
  1683. - "nan"
  1684. - "nan"
  1685. - intent: Support ticket-203
  1686. examples: |
  1687. - "Invoice creation problem"
  1688. - "how to create invoice"
  1689. - "Invoice not visible in DMS help"
  1690. - "nan"
  1691. - "nan"
  1692. - "nan"
  1693. - intent: Support ticket-204
  1694. examples: |
  1695. - "WANT TO DELETE SOME DC ITEMS AS WELL AS FROM SALES ORDER WHICH WERE CREATED MISTAKELY CREATED IN WRONG SKU- CALL 9612489539"
  1696. - "how to delete the item in DC"
  1697. - "How to edit DC after creating it"
  1698. - "nan"
  1699. - "nan"
  1700. - "nan"
  1701. - intent: Support ticket-205
  1702. examples: |
  1703. - "customers"
  1704. - "How to create a Customer "
  1705. - "Customer creation process"
  1706. - "How to create a customer"
  1707. - "nan"
  1708. - "nan"
  1709. - intent: Support ticket-206
  1710. examples: |
  1711. - "Purchase inwards some issue So please help"
  1712. - "how to change the stages in purchase order"
  1713. - "nan"
  1714. - "nan"
  1715. - "nan"
  1716. - "nan"
  1717. - intent: Support ticket-207
  1718. examples: |
  1719. - "Invoice finding issue"
  1720. - "unable to search an invoice help"
  1721. - "Not finding an invoice in DMS"
  1722. - "nan"
  1723. - "nan"
  1724. - "nan"
  1725. - intent: Support ticket-208
  1726. examples: |
  1727. - "Need to edit one sales order and DC Please guide "
  1728. - "How to edit sales order"
  1729. - "sales order update and DC update"
  1730. - "nan"
  1731. - "nan"
  1732. - "nan"
  1733. - intent: Support ticket-209
  1734. examples: |
  1735. - "Invoice related issue urgent"
  1736. - "How to search Invoice "
  1737. - "Unable to find Invoice help in searching "
  1738. - "nan"
  1739. - "nan"
  1740. - "nan"
  1741. - intent: Support ticket-210
  1742. examples: |
  1743. - "HAVING ISSUE IN UPDATING GST DETAILS RESOLVE THIS ISSUE IN PRIORITY"
  1744. - "How to update GSTIN details"
  1745. - "How to Edit GST details in customer module"
  1746. - "nan"
  1747. - "nan"
  1748. - "nan"
  1749. - intent: Support ticket-211
  1750. examples: |
  1751. - "WE UNABLE TO CHECK THE STOCK KINDLY ADVICE THROUGH ANYDESK IMMEDIATELY"
  1752. - "stock movement log report missing help"
  1753. - "how to check and download the Stock movement log report"
  1754. - "nan"
  1755. - "nan"
  1756. - "nan"
  1757. - intent: Support ticket-212
  1758. examples: |
  1759. - "need to correct the invoice format"
  1760. - "how to take print in sales invoices"
  1761. - "Sales invoice print option not visible kindly help"
  1762. - "nan"
  1763. - "nan"
  1764. - "nan"
  1765. - intent: Support ticket-213
  1766. examples: |
  1767. - "AR onboarding not shown in DMS"
  1768. - "creating AR ONBOARDING in DMS"
  1769. - "AR OnBoarding process"
  1770. - "nan"
  1771. - "nan"
  1772. - "nan"
  1773. - intent: Support ticket-214
  1774. examples: |
  1775. - "We need customer master data Kindly share me the details or tell how to download in dms "
  1776. - "customer master Report downloading process"
  1777. - "nan"
  1778. - "nan"
  1779. - "nan"
  1780. - "nan"
  1781. - intent: Support ticket-215
  1782. examples: |
  1783. - "Receipt payment is not showing in account check receipt"
  1784. - "how to extended the series for the Receipts"
  1785. - "nan"
  1786. - "nan"
  1787. - "nan"
  1788. - "nan"
  1789. - intent: Support ticket-216
  1790. examples: |
  1791. - "Sir Please add one new employee in our dms system EMPLOYEE NAME-VIJENDRA KUMAR EMAIL ID-sanjeetagupta1983 gmail com Mobile no -8873514140"
  1792. - "Creation of new employee"
  1793. - "nan"
  1794. - "nan"
  1795. - "nan"
  1796. - "nan"
  1797. - intent: Support ticket-218
  1798. examples: |
  1799. - "Need Login ID and Password for the updated list of employees"
  1800. - "how to create Login ID and password"
  1801. - "nan"
  1802. - "nan"
  1803. - "nan"
  1804. - "nan"
  1805. - intent: Support ticket-219
  1806. examples: |
  1807. - "Need support in customer tagging to different DSRs"
  1808. - "process of changing the old to the new manager for customers in DMS"
  1809. - "nan"
  1810. - "nan"
  1811. - "nan"
  1812. - "nan"
  1813. - intent: Support ticket-220
  1814. examples: |
  1815. - "PRODUCT AND PRODUCT CODE NOT FOUND BUT HAVE PLACED THE ORDER IN SAME CODE"
  1816. - "how to enable the sellable in items module"
  1817. - "nan"
  1818. - "nan"
  1819. - "nan"
  1820. - "nan"
  1821. - intent: Support ticket-221
  1822. examples: |
  1823. - "Sir Our New employee VIJENDRA KUMAR EMAIL ID-sanjeetagupta1983 gmail com Mobile no -8873514140 is trying to set Dms password thru link but otp was not coming Please contact to him "
  1824. - "how to create Login ID and password "
  1825. - "nan"
  1826. - "nan"
  1827. - "nan"
  1828. - "nan"
  1829. - intent: Support ticket-222
  1830. examples: |
  1831. - "Hi Mobil team I need your help to know about Jio tagging waiting for your response thanks"
  1832. - "process of Geo tagging"
  1833. - "nan"
  1834. - "nan"
  1835. - "nan"
  1836. - "nan"
  1837. - intent: Support ticket-223
  1838. examples: |
  1839. - "GCIN 7358 CUSTOMER NAME ESWARI AUTOMOBILES TYRES CUSTOMER NAME NOT SHOWING IN RECEIPTS PLS TAKE NECESSARY ACTION AND RESOLVE ASAP "
  1840. - "how to add contact point in customers module"
  1841. - "nan"
  1842. - "nan"
  1843. - "nan"
  1844. - "nan"
  1845. - intent: Support ticket-224
  1846. examples: |
  1847. - "STOCK NOT SHOWING 6207925718"
  1848. - "how to download and check the Stock report"
  1849. - "nan"
  1850. - "nan"
  1851. - "nan"
  1852. - "nan"
  1853. - intent: Support ticket-225
  1854. examples: |
  1855. - "regarding employees"
  1856. - "process of downloading the customer master report"
  1857. - "nan"
  1858. - "nan"
  1859. - "nan"
  1860. - "nan"
  1861. - intent: Support ticket-226
  1862. examples: |
  1863. - "not showing customer name for order placed"
  1864. - "how to search customer name in customer module"
  1865. - "nan"
  1866. - "nan"
  1867. - "nan"
  1868. - "nan"
  1869. - intent: Support ticket-228
  1870. examples: |
  1871. - "purchase bill related"
  1872. - "process of creating GRN in DMS"
  1873. - "nan"
  1874. - "nan"
  1875. - "nan"
  1876. - "nan"
  1877. - intent: Support ticket-229
  1878. examples: |
  1879. - "DEAR BIZGAZE EB TAG OPTION NOT SHOW IN INVOICE WHEN I CREAT INVOICE OF ZIYA MINERALS ORES "
  1880. - "how to change tags to customers"
  1881. - "nan"
  1882. - "nan"
  1883. - "nan"
  1884. - "nan"
  1885. - intent: Support ticket-230
  1886. examples: |
  1887. - "Party name not showing in my login id"
  1888. - "process of adding follower for the existing customer"
  1889. - "nan"
  1890. - "nan"
  1891. - "nan"
  1892. - "nan"
  1893. - intent: Support ticket-231
  1894. examples: |
  1895. - "I need to upload the Sales Opportunity File Attaching the excel for uploading"
  1896. - "how to upload a Sales Opportunity File in the integrator module"
  1897. - "nan"
  1898. - "nan"
  1899. - "nan"
  1900. - "nan"
  1901. - intent: Support ticket-232
  1902. examples: |
  1903. - "Geo tagging not working"
  1904. - "process of Geo-tagging for customers"
  1905. - "Please clear your browser history"
  1906. - "nan"
  1907. - "nan"
  1908. - "nan"
  1909. - intent: Support ticket-233
  1910. examples: |
  1911. - "Error Series is Expired Series Format Does Not Exist"
  1912. - "Series Expiry"
  1913. - "process of extending the series in vouchers"
  1914. - "nan"
  1915. - "nan"
  1916. - "nan"
  1917. - intent: Support ticket-234
  1918. examples: |
  1919. - "How to take entry from one dealer to another So please help me 6207925718"
  1920. - "process of creating partners in DMS"
  1921. - "nan"
  1922. - "nan"
  1923. - "nan"
  1924. - "nan"
  1925. - intent: Support ticket-235
  1926. examples: |
  1927. - "Geo tagging tab is not showing under reports"
  1928. - "process of checking geo tagging for customers in DMS"
  1929. - "How to check PCI Reports "
  1930. - "nan"
  1931. - "nan"
  1932. - "nan"
  1933. - intent: Support ticket-236
  1934. examples: |
  1935. - "Dear Sir Madam Want to delete one Product i e MOBIL DEL MX PLUS 15W-40 PL7 5L IN-DP 3-144534 from GRN IN 22-23 0259 Kindly do the needful "
  1936. - "how to remove item from GRN in DMS"
  1937. - "nan"
  1938. - "nan"
  1939. - "nan"
  1940. - "nan"
  1941. - intent: Support ticket-237
  1942. examples: |
  1943. - "REGARDING MBC MCC AGREEMENT"
  1944. - "how to renewal MBC MCC Leads"
  1945. - "nan"
  1946. - "nan"
  1947. - "nan"
  1948. - "nan"
  1949. - intent: Support ticket-238
  1950. examples: |
  1951. - "DEAR SIR MAM I AM FACING ERRORS WHILE PLACING SALES ORDER"
  1952. - "how to extended the series for the Sales order module"
  1953. - "nan"
  1954. - "nan"
  1955. - "nan"
  1956. - "nan"
  1957. - intent: Support ticket-239
  1958. examples: |
  1959. - "Geo Tagging Report is not updated report in the system Kindly resolve"
  1960. - "How geo tagging can be done for customers in DMS"
  1961. - "nan"
  1962. - "nan"
  1963. - "nan"
  1964. - "nan"
  1965. - intent: Support ticket-240
  1966. examples: |
  1967. - "regarding ledger"
  1968. - "How to check ledger balance in DMS"
  1969. - "nan"
  1970. - "nan"
  1971. - "nan"
  1972. - "nan"
  1973. - intent: Support ticket-242
  1974. examples: |
  1975. - "Please suggest how to download the list of which customers have been geo-tagged "
  1976. - "How geo tagging can be done for customers in DMS"
  1977. - "nan"
  1978. - "nan"
  1979. - "nan"
  1980. - "nan"
  1981. - intent: Support ticket-243
  1982. examples: |
  1983. - "I CANT CREATE SALES ORDER SOME ERRORS ARE COMING PLEASE SOLVE THEM ASAP I AM ATTACHING SCREEN SHOT BELOW"
  1984. - "how to extended the series for the DC module"
  1985. - "nan"
  1986. - "nan"
  1987. - "nan"
  1988. - "nan"
  1989. - intent: Support ticket-244
  1990. examples: |
  1991. - "GST PROMBLEM PLS CALL 7676696781"
  1992. - "how extended dates for GSTIN in Customers module"
  1993. - "nan"
  1994. - "nan"
  1995. - "nan"
  1996. - "nan"
  1997. - intent: Support ticket-245
  1998. examples: |
  1999. - "PLEASE TELL US WHERE WE CHECK GEO TAGGING"
  2000. - "How GEO tagging can be done in customer location"
  2001. - "nan"
  2002. - "nan"
  2003. - "nan"
  2004. - "nan"
  2005. - intent: Support ticket-246
  2006. examples: |
  2007. - "We request you to Create New DC Series for Stock Transfer at Surat Morbi Location "
  2008. - "How to create new series in DC"
  2009. - "nan"
  2010. - "nan"
  2011. - "nan"
  2012. - "nan"
  2013. - intent: Support ticket-247
  2014. examples: |
  2015. - "How to Create Surat Stock Transfer inward Entry "
  2016. - "How to Create Stock Transfer inward "
  2017. - "nan"
  2018. - "nan"
  2019. - "nan"
  2020. - "nan"
  2021. - intent: Support ticket-248
  2022. examples: |
  2023. - "Unable to add geo tagging"
  2024. - "How GEO tagging can be done in customer location"
  2025. - "nan"
  2026. - "nan"
  2027. - "nan"
  2028. - "nan"
  2029. - intent: Support ticket-249
  2030. examples: |
  2031. - "I NEED ACCESSS TO MANUAL ENTERING THE GST NUMBER OF OUR CUSTOMERS 7087716665"
  2032. - "How to add GSTN number for existing customer"
  2033. - "nan"
  2034. - "nan"
  2035. - "nan"
  2036. - "nan"
  2037. - intent: Support ticket-250
  2038. examples: |
  2039. - "urgent requiment call immediately"
  2040. - "how to change the salesperson name for the customers by using the change Manager Module"
  2041. - "nan"
  2042. - "nan"
  2043. - "nan"
  2044. - "nan"
  2045. - intent: Support ticket-251
  2046. examples: |
  2047. - "Required stock Movement "
  2048. - "How to activate Stock Movement Log"
  2049. - "nan"
  2050. - "nan"
  2051. - "nan"
  2052. - "nan"
  2053. - intent: Support ticket-252
  2054. examples: |
  2055. - "how to see customer GEO tagging reports "
  2056. - "How to download Customer Geo Tagging Report"
  2057. - "nan"
  2058. - "nan"
  2059. - "nan"
  2060. - "nan"
  2061. - intent: Support ticket-253
  2062. examples: |
  2063. - "regarding rts and goods returned"
  2064. - "how to create Sales return"
  2065. - "nan"
  2066. - "nan"
  2067. - "nan"
  2068. - "nan"
  2069. - intent: Support ticket-254
  2070. examples: |
  2071. - "GRN related queries"
  2072. - "How to change invoice stages"
  2073. - "nan"
  2074. - "nan"
  2075. - "nan"
  2076. - "nan"
  2077. - intent: Support ticket-255
  2078. examples: |
  2079. - "Non - Geo tagging customers list"
  2080. - "How to download report of Non-Geo tagged customers"
  2081. - "how to check non geo tagging customer list"
  2082. - "nan"
  2083. - "nan"
  2084. - "nan"
  2085. - intent: Support ticket-256
  2086. examples: |
  2087. - "Happy Namaste DC-D 22-23 5 wrong make in Delhi Portal please solve the issue "
  2088. - "explain the process of changing DC stage partial to void"
  2089. - "how stages can be changed in DC"
  2090. - "nan"
  2091. - "nan"
  2092. - "nan"
  2093. - intent: Support ticket-257
  2094. examples: |
  2095. - "Any report not show"
  2096. - "how to change role in Employee module"
  2097. - "nan"
  2098. - "nan"
  2099. - "nan"
  2100. - "nan"
  2101. - intent: Support ticket-258
  2102. examples: |
  2103. - "We need MBC MCC Month wise volume report and need to change some details in mcc workshop kindly check and call us"
  2104. - "How to Check month wise workshop volumes"
  2105. - "nan"
  2106. - "nan"
  2107. - "nan"
  2108. - "nan"
  2109. - intent: Support ticket-259
  2110. examples: |
  2111. - "PLEASE HELP REGARDING UPDATE OF SALES INVOICE "
  2112. - "how add item in DC"
  2113. - "how to edit item list in DC"
  2114. - "nan"
  2115. - "nan"
  2116. - "nan"
  2117. - intent: Support ticket-260
  2118. examples: |
  2119. - "DSR"
  2120. - "how to check and download the Mobil Maharaja 2023 AL employee report"
  2121. - "nan"
  2122. - "nan"
  2123. - "nan"
  2124. - "nan"
  2125. - intent: Support ticket-261
  2126. examples: |
  2127. - "Good Afternoon Sir Madam we are currently billing in busy software In future will be updated in dms If is it possible to convert the customer details from busy software to dms Kindly confirm Pls Contact 9791901023"
  2128. - "explained how to add for GSTIN number in Customers module"
  2129. - "nan"
  2130. - "nan"
  2131. - "nan"
  2132. - "nan"
  2133. - intent: Support ticket-262
  2134. examples: |
  2135. - "INVOICE IS COMPLETE BUT HOW EDIT THE LITER"
  2136. - "How to add the Item quantity for approval stage order"
  2137. - "How to edit item quantity of sales order"
  2138. - "nan"
  2139. - "nan"
  2140. - "nan"
  2141. - intent: Support ticket-263
  2142. examples: |
  2143. - "regarding MBC MCC agreement Contact no - 7975450461"
  2144. - "how to create renewal for MBC MCC LEADS"
  2145. - "nan"
  2146. - "nan"
  2147. - "nan"
  2148. - "nan"
  2149. - intent: Support ticket-264
  2150. examples: |
  2151. - "Stock report coloums are showing blank attached the screen short for your reference contact no 9840076654"
  2152. - "How to check the stock movement log report"
  2153. - "nan"
  2154. - "nan"
  2155. - "nan"
  2156. - "nan"
  2157. - intent: Support ticket-265
  2158. examples: |
  2159. - "Happy Namaste Stock Movement Log not showing please solve the issue "
  2160. - "Stock Movement Log not showing please solve the issue"
  2161. - "nan"
  2162. - "nan"
  2163. - "nan"
  2164. - "nan"
  2165. - intent: Support ticket-266
  2166. examples: |
  2167. - "sale return pls"
  2168. - "how to cancel the E- invoice"
  2169. - "On sale return what to do with E-invoice"
  2170. - "nan"
  2171. - "nan"
  2172. - "nan"
  2173. - intent: Support ticket-267
  2174. examples: |
  2175. - "Where to take geo tag report"
  2176. - "how to download geo tgging report"
  2177. - "nan"
  2178. - "nan"
  2179. - "nan"
  2180. - "nan"
  2181. - intent: Support ticket-268
  2182. examples: |
  2183. - "HOW TO CHECK DOCUMENT NUMBER IN DUNNING LETTER"
  2184. - "how to check the Purchase Order pending Report"
  2185. - "how to apply filter while checking PO reports at different stages and dates"
  2186. - "nan"
  2187. - "nan"
  2188. - "nan"
  2189. - intent: Support ticket-269
  2190. examples: |
  2191. - "How to apply for 3rd year on boarding package in DMS"
  2192. - "how to create AR Onboarding items"
  2193. - "nan"
  2194. - "nan"
  2195. - "nan"
  2196. - "nan"
  2197. - intent: Support ticket-270
  2198. examples: |
  2199. - "MR SANTOSH REHAMANWALLE RESIGIONED TO THE JOB THAT PLACES MR YALLAPPA HARAVI CELL NO 8892352791 KINDLY TAG SANTOSH REHAMANWALLE ACCOUNTS TO YALLAPPA HARAVI"
  2200. - "how to change the salesperson name for the customers by using the change Manager Module"
  2201. - "How to edit sales person name for the customers"
  2202. - "nan"
  2203. - "nan"
  2204. - "nan"
  2205. - intent: Support ticket-271
  2206. examples: |
  2207. - "Good Morning Sir Madam We are able to view GST in Customer Details but not showed in the Tax Invoice Kindly find the attachment for your reference Pls Contact 9791901023"
  2208. - "How to add the GSTIN number to the particular customer"
  2209. - "How to edit Customer details in contact widget"
  2210. - "nan"
  2211. - "nan"
  2212. - "nan"
  2213. - intent: Support ticket-272
  2214. examples: |
  2215. - "MOBIL NEW DSR MR YALLAPPA HARAVI MOBILE APP COMING ERR PLEASE CALL HIM CELL NO -88923 52791"
  2216. - "how to create Login ID and password"
  2217. - "nan"
  2218. - "nan"
  2219. - "nan"
  2220. - "nan"
  2221. - intent: Support ticket-273
  2222. examples: |
  2223. - "How to check Geo Tagging update outlet wise kindly confirm"
  2224. - "how to do GEO tagging at the customer location"
  2225. - "nan"
  2226. - "nan"
  2227. - "nan"
  2228. - "nan"
  2229. - intent: Support ticket-274
  2230. examples: |
  2231. - "Information for GEO tagging"
  2232. - "how to do GEO tagging at the customer location"
  2233. - "nan"
  2234. - "nan"
  2235. - "nan"
  2236. - "nan"
  2237. - intent: Support ticket-275
  2238. examples: |
  2239. - "We have 2 same address creations in customers mistakenly raised order and billed in 1 customer actually bills under one more customer please help us out "
  2240. - "how to create Sales return"
  2241. - "nan"
  2242. - "nan"
  2243. - "nan"
  2244. - "nan"
  2245. - intent: Support ticket-276
  2246. examples: |
  2247. - "One of the dsr sale not seen"
  2248. - "how to add the manager in manager followers"
  2249. - "nan"
  2250. - "nan"
  2251. - "nan"
  2252. - "nan"
  2253. - intent: Support ticket-277
  2254. examples: |
  2255. - "CUSTOMER CREATION"
  2256. - "how to create customer"
  2257. - "how to add new customer"
  2258. - "nan"
  2259. - "nan"
  2260. - "nan"
  2261. - intent: Support ticket-278
  2262. examples: |
  2263. - "Sales order error"
  2264. - "how to change the stages in Dc"
  2265. - "nan"
  2266. - "nan"
  2267. - "nan"
  2268. - "nan"
  2269. - intent: Support ticket-279
  2270. examples: |
  2271. - "DMS entry"
  2272. - "how to download and check the PCI Invoice report"
  2273. - "where to find PCI ivoice report"
  2274. - "nan"
  2275. - "nan"
  2276. - "nan"
  2277. - intent: Support ticket-280
  2278. examples: |
  2279. - "Can Not able to add new lob tag in party Mobil Tag---Segment is not opening"
  2280. - "how to add LOB tags to customer"
  2281. - "how to assign LOB tags "
  2282. - "nan"
  2283. - "nan"
  2284. - "nan"
  2285. - intent: Support ticket-281
  2286. examples: |
  2287. - "HOW to EXPIRE CUSTOMER IN CUSTOMER MASTER "
  2288. - "How rejected customers are loading in customer "
  2289. - "how to reject the customer"
  2290. - "how to change the customer stage"
  2291. - "nan"
  2292. - "nan"
  2293. - intent: Support ticket-282
  2294. examples: |
  2295. - "please Update in DMS EMP 005 Mahesh Harad Sales Representative is Relieved new sales representative Akash Singh Number 7348074468"
  2296. - "how to create a Login ID and password"
  2297. - "nan"
  2298. - "nan"
  2299. - "nan"
  2300. - "nan"
  2301. - intent: Support ticket-283
  2302. examples: |
  2303. - "DSR DHHERAJ SAINI NOT OPERATE DMS LOGIN"
  2304. - "nan"
  2305. - "nan"
  2306. - "nan"
  2307. - "nan"
  2308. - "nan"
  2309. - intent: Support ticket-284
  2310. examples: |
  2311. - "we need to show Value but not stock item in system for purchase invoice cause we received Exxon invoice for 5 Drums but received 1 dented drum which we are returning to Exxon but need to show full amount same as Exxon invoice -Is there any option in bizgaze will not show Stock inward"
  2312. - "nan"
  2313. - "how to check stock movement log"
  2314. - "nan"
  2315. - "nan"
  2316. - "nan"
  2317. - intent: Support ticket-285
  2318. examples: |
  2319. - "how to know how many shops geo taged please enable geo taged shops report"
  2320. - "how to check customer GEO tagging report"
  2321. - "nan"
  2322. - "nan"
  2323. - "nan"
  2324. - "nan"
  2325. - intent: Support ticket-286
  2326. examples: |
  2327. - "dear sir madam regarding for purchase order please contact no-7999195042 urgent basis"
  2328. - "nan"
  2329. - "how to check stock movement log"
  2330. - "nan"
  2331. - "nan"
  2332. - "nan"
  2333. - intent: Support ticket-287
  2334. examples: |
  2335. - "payments"
  2336. - "how to create receipts in DMS"
  2337. - "unable to find payment receipts help"
  2338. - "nan"
  2339. - "nan"
  2340. - "nan"
  2341. - intent: Support ticket-288
  2342. examples: |
  2343. - " EK OIL FILTER ASSY 6286 NEED TO CREATE AND RUN AS A FOC OVER PRODUCT CODE -143655 PRODUCT CODE -143654 EACH CAN 1 PCS FOC "
  2344. - "how to create a service item in DMS"
  2345. - "nan"
  2346. - "nan"
  2347. - "nan"
  2348. - "nan"
  2349. - intent: Support ticket-289
  2350. examples: |
  2351. - "Not able to see my MHP Quarter 1 2023 target in the reports column"
  2352. - "how to check MHP Q1 Q2 Q3 Q4 2022 reports"
  2353. - "nan"
  2354. - "nan"
  2355. - "nan"
  2356. - "nan"
  2357. - intent: Support ticket-290
  2358. examples: |
  2359. - "While creating creating it shows draft option only Please enable approval active partial completed"
  2360. - "how to change the customer stage from lead to confirm"
  2361. - "Enabling stages of a customer"
  2362. - "nan"
  2363. - "nan"
  2364. - "nan"
  2365. - intent: Support ticket-291
  2366. examples: |
  2367. - "PLEASE CONTACT NO -7355065856"
  2368. - "how to check stock report in DMS"
  2369. - "nan"
  2370. - "nan"
  2371. - "nan"
  2372. - "nan"
  2373. - intent: Support ticket-292
  2374. examples: |
  2375. - "change the sales manager PLS CALL 9925661095 NUMBER"
  2376. - "how to change sales manager "
  2377. - "In change manager module how to change sales manager "
  2378. - "nan"
  2379. - "nan"
  2380. - "nan"
  2381. - intent: Support ticket-293
  2382. examples: |
  2383. - "We have not enter in purchase entry in DMS "
  2384. - "how to Create new series in Purchase order"
  2385. - "Series Expiry error please rectify"
  2386. - "nan"
  2387. - "nan"
  2388. - "nan"
  2389. - intent: Support ticket-294
  2390. examples: |
  2391. - "Please update Q1 2023 secondary target for DSR that s not show in DMS"
  2392. - "How to check MHP Q1 Q2 Q3 Q4 2022 reports"
  2393. - "nan"
  2394. - "nan"
  2395. - "nan"
  2396. - "nan"
  2397. - intent: Support ticket-295
  2398. examples: |
  2399. - "Could not place order in dms"
  2400. - "how to Create new series in Purchase order"
  2401. - "In PO Series Expiry error please rectify"
  2402. - "nan"
  2403. - "nan"
  2404. - "nan"
  2405. - intent: Support ticket-296
  2406. examples: |
  2407. - "PUCHASE invoice problem Error Series is Expired Series Format Does Not Exist"
  2408. - "In PO Series Expiry error please rectify"
  2409. - "how to Create new series in Purchase order"
  2410. - "nan"
  2411. - "nan"
  2412. - "nan"
  2413. - intent: Support ticket-297
  2414. examples: |
  2415. - "VIKAS AGECO IN USER ID LOCKED PLZ UNLOCKED 2 TIME RAISE TICKET BUT NOT REPLY 8305595186"
  2416. - "how to create Login ID and password"
  2417. - "How to create logins to an employee"
  2418. - "nan"
  2419. - "nan"
  2420. - "nan"
  2421. - intent: Support ticket-298
  2422. examples: |
  2423. - "Can t use mobil app because it doesn t show some folders"
  2424. - "how to change role in Employee module"
  2425. - "nan"
  2426. - "nan"
  2427. - "nan"
  2428. - "nan"
  2429. - intent: Support ticket-299
  2430. examples: |
  2431. - "Need to login in a new sales representative named Murugan otp error while logging in for the first time attaching the details regarding otp error please fix it "
  2432. - "how to create Login ID and password"
  2433. - "How to create logins to an employee"
  2434. - "nan"
  2435. - "nan"
  2436. - "nan"
  2437. - intent: Support ticket-300
  2438. examples: |
  2439. - "change the customers one DSR to another DSR"
  2440. - "how to change manager in DMS"
  2441. - "how to change the customers one DSR to another DSR"
  2442. - "nan"
  2443. - "nan"
  2444. - "nan"
  2445. - intent: Support ticket-301
  2446. examples: |
  2447. - "Plz give access of sales order in employee id - Vikash kumar Mo -9939110168 Email id -vk9939110168 gmail com"
  2448. - "how to add role to new employee in DMS"
  2449. - "nan"
  2450. - "nan"
  2451. - "nan"
  2452. - "nan"
  2453. - intent: Support ticket-302
  2454. examples: |
  2455. - "Regarding Geo tagging"
  2456. - "how to Geo tag an employee"
  2457. - "nan"
  2458. - "nan"
  2459. - "nan"
  2460. - "nan"
  2461. - intent: Support ticket-303
  2462. examples: |
  2463. - "Dear sir madam Kindly update the new DSR email ID Name - Karthik Email ID - karthiksvc1982 gmail com Pls contact 9791901023"
  2464. - "Explain the process of creation of new employee"
  2465. - "New employee creation"
  2466. - "nan"
  2467. - "nan"
  2468. - "nan"
  2469. - intent: Support ticket-304
  2470. examples: |
  2471. - "THIS INVOICE NO JPR22-23 XM08516 RTS SETTLEMENT NOT SHOWING"
  2472. - "nan"
  2473. - "what is the process of adding the LOb tags to customer "
  2474. - "how to add tags to customer"
  2475. - "need help in adding the tags"
  2476. - "uanble to add tags"
  2477. - intent: Support ticket-305
  2478. examples: |
  2479. - "Al geotag report is not visible in my dashboard Please resolve it "
  2480. - "nan"
  2481. - "Where we find PCI invoice report "
  2482. - "Unable to check PCI report "
  2483. - "In PCI invoice report data is reflecting "
  2484. - "How to check PCI Invoice report "
  2485. - intent: Support ticket-306
  2486. examples: |
  2487. - "How to creat new sales empolyee and change maneger"
  2488. - "nan"
  2489. - "how to create of an employee in DMS"
  2490. - "explained the process of creation employee"
  2491. - "how to update employee in DMS"
  2492. - "employee is not getting updated"
  2493. - intent: Support ticket-307
  2494. examples: |
  2495. - "FOR NEW EMPLOYEE ADD"
  2496. - "nan"
  2497. - "Unable to create Login ID and password"
  2498. - "need to create login id and password"
  2499. - "update login id and password"
  2500. - " explain thr creation of employee"
  2501. - intent: Support ticket-308
  2502. examples: |
  2503. - "please create sales return series please contract this number 9770726456 its urgently"
  2504. - "nan"
  2505. - "sales return is not saving "
  2506. - "I am not able to create the sales return please help"
  2507. - "isssue in saving sales return"
  2508. - "unable to save sales return"
  2509. - intent: Support ticket-309
  2510. examples: |
  2511. - "Good Morning Sir We are not able to update customer phone number kindly do the needful Pls Contact 9791901023"
  2512. - "nan"
  2513. - "while editing the mobil number to customer some issuse is reflecting "
  2514. - "need to change mobil number for customer"
  2515. - "add mobile number for customer"
  2516. - "unable to edit mobil no"
  2517. - intent: Support ticket-310
  2518. examples: |
  2519. - "Non Geo Tag Customers report in not reflecting in customer Location in Mobil Dashboard please resolve urgently Please contact on this number 8950614140"
  2520. - "nan"
  2521. - "can we download report from mobil dashboards"
  2522. - "unable to check mobil dashboards"
  2523. - "how to check mobil dashborads"
  2524. - " not visible in Mobil Dashboards"
  2525. - intent: Support ticket-311
  2526. examples: |
  2527. - "Please add On Purchase order SURAJ ENTERPRISER Bhubaneswar GSTIN- 21AHQPN8351G1Z6"
  2528. - "nan"
  2529. - "how to create of an partners in DMS"
  2530. - "explained the process of creation partners"
  2531. - "how to update partners in DMS"
  2532. - " need creation process of partners"
  2533. - intent: Support ticket-312
  2534. examples: |
  2535. - "How to deactivate customer"
  2536. - "nan"
  2537. - "reject the customers "
  2538. - "need to reject the customer"
  2539. - "how to reject the customer"
  2540. - "change the customer stage to reject"
  2541. - intent: Support ticket-313
  2542. examples: |
  2543. - "we need to update new employee name RAJAT MANDAOKAR MOB NO 7721899911 but the error shown Error Series is Expired Series Format Does Not Exist "
  2544. - "nan"
  2545. - "Series is expired"
  2546. - "How to extended series in employee "
  2547. - "Unable to create employee"
  2548. - "While creating the employee getting as series is expired"
  2549. - intent: Support ticket-314
  2550. examples: |
  2551. - "Created MATERIAL HANDLING CHARGE in item But the same is not getting displayed in invoice"
  2552. - "nan"
  2553. - "how to add the items Dc "
  2554. - "need to add to items DC"
  2555. - "what is process adding the items DC"
  2556. - "unable to edit DC for adding the items "
  2557. - intent: Support ticket-315
  2558. examples: |
  2559. - "SERIES HAS BEEN EXPIRED PLZ CREATE NEW ONE 7087716665"
  2560. - "nan"
  2561. - "Series is expired"
  2562. - "How to extended series in DC "
  2563. - "Unable to create DC"
  2564. - "While creating the DC getting as series is expired"
  2565. - intent: Support ticket-316
  2566. examples: |
  2567. - "NNED HELP"
  2568. - "nan"
  2569. - "how to create of an Item reconciliation"
  2570. - "explained the process of creation Item reconciliation"
  2571. - "how to update Item reconciliation in DMS"
  2572. - " need creation process of Item reconciliation"
  2573. - intent: Support ticket-317
  2574. examples: |
  2575. - "HOW TO RECONCILE STOCK ITEMS"
  2576. - "nan"
  2577. - "how to create of an Item reconciliation"
  2578. - "explained the process of creation Item reconciliation"
  2579. - "how to update Item reconciliation in DMS"
  2580. - " need creation process of Item reconciliation"
  2581. - intent: Support ticket-318
  2582. examples: |
  2583. - "detailed process of item reconciliation contact number -7975450461"
  2584. - "nan"
  2585. - "how to create of an Item reconciliation"
  2586. - "explained the process of creation Item reconciliation"
  2587. - "how to update Item reconciliation in DMS"
  2588. - " need creation process of Item reconciliation"
  2589. - intent: Support ticket-319
  2590. examples: |
  2591. - "wont be able to create opportunity "
  2592. - "nan"
  2593. - "Series is expired"
  2594. - "How to extended series in Mobil opportunity"
  2595. - "Unable to create Mobil opportunity"
  2596. - "While creating the Mobil opportunity getting as series is expired"
  2597. - intent: Support ticket-320
  2598. examples: |
  2599. - "Support for stock correction"
  2600. - "nan"
  2601. - "how to create of an Item reconciliation"
  2602. - "explained the process of creation Item reconciliation"
  2603. - "how to update Item reconciliation in DMS"
  2604. - " need creation process of Item reconciliation"
  2605. - intent: Support ticket-321
  2606. examples: |
  2607. - "HOW TO PUT ITEM RECONCILATION IN DMS"
  2608. - "nan"
  2609. - "how to add items in Item reconciliation"
  2610. - "explained the process of adding the items in Item reconciliation"
  2611. - "how to updatethe items in Item reconciliation"
  2612. - " need to add the items in Item reconciliation module "
  2613. - intent: Support ticket-322
  2614. examples: |
  2615. - "dms team request to support to correction of inventory one demo"
  2616. - "nan"
  2617. - "how to create of an Item reconciliation"
  2618. - "explained the process of creation Item reconciliation"
  2619. - "how to update Item reconciliation in DMS"
  2620. - " need creation process of Item reconciliation"
  2621. - intent: Support ticket-323
  2622. examples: |
  2623. - "two sku inventory need to be corrected plz help-cl 9612489539"
  2624. - "nan"
  2625. - "how to add items in Item reconciliation"
  2626. - "explained the process of adding the items in Item reconciliation"
  2627. - "how to updatethe items in Item reconciliation"
  2628. - " need to add the items in Item reconciliation module "
  2629. - intent: Support ticket-324
  2630. examples: |
  2631. - "Please guide for item reconciliation"
  2632. - "nan"
  2633. - "how to create of an Item reconciliation"
  2634. - "explained the process of creation Item reconciliation"
  2635. - "how to update Item reconciliation in DMS"
  2636. - " need creation process of Item reconciliation"
  2637. - intent: Support ticket-325
  2638. examples: |
  2639. - "we want to merge both godown i e dhantoli wadi to wadi and also want to update stock correction kindly help"
  2640. - "nan"
  2641. - "how to create of an Item reconciliation"
  2642. - "explained the process of creation Item reconciliation"
  2643. - "how to update Item reconciliation in DMS"
  2644. - " need creation process of Item reconciliation"
  2645. - intent: Support ticket-326
  2646. examples: |
  2647. - "hi we received 40 barrels of Mobil 1 MGA 0W20 208L from Hydrabad-Rotex Kindly add these barrels into stock inventory "
  2648. - "nan"
  2649. - "how to create of an Item reconciliation"
  2650. - "explained the process of creation Item reconciliation"
  2651. - "how to update Item reconciliation in DMS"
  2652. - " need creation process of Item reconciliation"
  2653. - intent: Support ticket-327
  2654. examples: |
  2655. - "i have added stock but it is not visible "
  2656. - "nan"
  2657. - "how to create of an Item reconciliation"
  2658. - "explained the process of creation Item reconciliation"
  2659. - "how to update Item reconciliation in DMS"
  2660. - " need creation process of Item reconciliation"
  2661. - intent: Support ticket-328
  2662. examples: |
  2663. - "need help in reconciliation pls call Madam urgent 9845520570 RAMANI"
  2664. - "nan"
  2665. - "how to create of an Item reconciliation"
  2666. - "explained the process of creation Item reconciliation"
  2667. - "how to update Item reconciliation in DMS"
  2668. - " need creation process of Item reconciliation"
  2669. - intent: Support ticket-329
  2670. examples: |
  2671. - "How to make Inventory correction in DMS Contact no 9766546168"
  2672. - "nan"
  2673. - "how to create of an Item reconciliation"
  2674. - "explained the process of creation Item reconciliation"
  2675. - "how to update Item reconciliation in DMS"
  2676. - " need creation process of Item reconciliation"
  2677. - intent: Support ticket-330
  2678. examples: |
  2679. - "Regarding item reconciliation contact no 7975450461"
  2680. - "nan"
  2681. - "how to create of an Item reconciliation"
  2682. - "explained the process of creation Item reconciliation"
  2683. - "how to update Item reconciliation in DMS"
  2684. - " need creation process of Item reconciliation"
  2685. - intent: Support ticket-331
  2686. examples: |
  2687. - "Create Q4 2022 RTS credit note "
  2688. - "nan"
  2689. - "unable to generate credit notes in DMS "
  2690. - "explain the process of creating credit notes in DMS "
  2691. - "how to generate credit notes in DMS "
  2692. - "creation ofcredit notes in DMS "
  2693. - intent: Support ticket-332
  2694. examples: |
  2695. - "Dear Team Kindly suggest how to make sales entry purchase entry for missing previous dates Purushotthama S Executive enior Warehouse Supervisor M s Pon Pure Chemical India Pvt Ltd Plot No 14 KIADB Sankalapur Industrial Area Ballari Road Hospet- 583201 P No 9591438710"
  2696. - "nan"
  2697. - "Where we find purchase invoice report "
  2698. - "Unable to check purchase invoice report "
  2699. - "In purchase invoice report data is reflecting "
  2700. - "How to check purchase Invoice report "
  2701. - intent: Support ticket-333
  2702. examples: |
  2703. - "Opening Stock Update Error"
  2704. - "nan"
  2705. - "how to create of an Item reconciliation"
  2706. - "explained the process of creation Item reconciliation"
  2707. - "how to update Item reconciliation in DMS"
  2708. - " need creation process of Item reconciliation"
  2709. - intent: Support ticket-334
  2710. examples: |
  2711. - "How to Create Item Reconcile Entry in DMS "
  2712. - "nan"
  2713. - "how to create of an Item reconciliation"
  2714. - "explained the process of creation Item reconciliation"
  2715. - "how to update Item reconciliation in DMS"
  2716. - " need creation process of Item reconciliation"
  2717. - intent: Support ticket-335
  2718. examples: |
  2719. - "I WANT ONE STOCK ADJUSTMENT HOW TO DO"
  2720. - "nan"
  2721. - "how to create of an Item reconciliation"
  2722. - "explained the process of creation Item reconciliation"
  2723. - "how to update Item reconciliation in DMS"
  2724. - " need creation process of Item reconciliation"
  2725. - intent: Support ticket-336
  2726. examples: |
  2727. - "geo tagging issue"
  2728. - "nan"
  2729. - "can we download report from mobil dashboards"
  2730. - "unable to check mobil dashboards"
  2731. - "how to check mobil dashborads"
  2732. - " not visible in Mobil Dashboards"
  2733. - intent: Support ticket-337
  2734. examples: |
  2735. - "SKU 139265 MOBIL GARD 412 9 DRUM BUT PHYSICAL STOCK 7 DRUM CONTACT 9870296516"
  2736. - "nan"
  2737. - "how to create of an Item reconciliation"
  2738. - "explained the process of creation Item reconciliation"
  2739. - "how to update Item reconciliation in DMS"
  2740. - " need creation process of Item reconciliation"
  2741. - intent: Support ticket-338
  2742. examples: |
  2743. - "How to check the inventory report"
  2744. - "nan"
  2745. - "how to create of an Item reconciliation"
  2746. - "explained the process of creation Item reconciliation"
  2747. - "how to update Item reconciliation in DMS"
  2748. - " need creation process of Item reconciliation"
  2749. - intent: Support ticket-339
  2750. examples: |
  2751. - "stock correction "
  2752. - "nan"
  2753. - "how to add items in Item reconciliation"
  2754. - "explained the process of adding the items in Item reconciliation"
  2755. - "how to updatethe items in Item reconciliation"
  2756. - " need to add the items in Item reconciliation module "
  2757. - intent: Support ticket-340
  2758. examples: |
  2759. - "PLEASE UPDATE ON INVOICE CORRECT ADDRESS AND PAN NO MONGA MOTORS - DAM ROAD NEW KALI MATA MANDIR - TALWARA -DISTRICT HOSHIARPUR -PUNJAB ZIP CODE CODE 144216 AND PAN NO AFWPM7625Q"
  2760. - "nan"
  2761. - "update the our new address"
  2762. - "how to update address in company"
  2763. - "need to change addresss in company"
  2764. - "unable to change the address "
  2765. - intent: Support ticket-341
  2766. examples: |
  2767. - "Stock reconicilation"
  2768. - "nan"
  2769. - "how to create of an Item reconciliation"
  2770. - "explained the process of creation Item reconciliation"
  2771. - "how to update Item reconciliation in DMS"
  2772. - " need creation process of Item reconciliation"
  2773. - intent: Support ticket-342
  2774. examples: |
  2775. - "Stock Reconsilation"
  2776. - "nan"
  2777. - "how to create of an Item reconciliation"
  2778. - "explained the process of creation Item reconciliation"
  2779. - "how to update Item reconciliation in DMS"
  2780. - " need creation process of Item reconciliation"
  2781. - intent: Support ticket-343
  2782. examples: |
  2783. - "Need support on item reconciliation process"
  2784. - "nan"
  2785. - "how to create of an Item reconciliation"
  2786. - "explained the process of creation Item reconciliation"
  2787. - "how to update Item reconciliation in DMS"
  2788. - " need creation process of Item reconciliation"
  2789. - intent: Support ticket-344
  2790. examples: |
  2791. - "Unable to login in system "
  2792. - "nan"
  2793. - "how to create of an Item reconciliation"
  2794. - "explained the process of creation Item reconciliation"
  2795. - "how to update Item reconciliation in DMS"
  2796. - " need creation process of Item reconciliation"
  2797. - intent: Support ticket-345
  2798. examples: |
  2799. - "NEED HELP IN STOCK PLEASE CALL ON 9509299808"
  2800. - "nan"
  2801. - "how to create of an Item reconciliation"
  2802. - "explained the process of creation Item reconciliation"
  2803. - "how to update Item reconciliation in DMS"
  2804. - " need creation process of Item reconciliation"
  2805. - intent: Support ticket-346
  2806. examples: |
  2807. - "we did inventory correction but that showing wrongly in dms so we create new inventory correction and the old one we need to neglect kindly contact us"
  2808. - "nan"
  2809. - "how to add items in Item reconciliation"
  2810. - "explained the process of adding the items in Item reconciliation"
  2811. - "how to updatethe items in Item reconciliation"
  2812. - " need to add the items in Item reconciliation module "
  2813. - intent: Support ticket-347
  2814. examples: |
  2815. - "NEW SALE PERSON NOT LOGIN DMS IN MOBILE"
  2816. - "nan"
  2817. - "Unable to create Login ID and password"
  2818. - "need to create login id and password"
  2819. - "update login id and password"
  2820. - " explain thr creation of employee"
  2821. - intent: Support ticket-348
  2822. examples: |
  2823. - "regarding RTS DISCOUNT Contact no 7975450461"
  2824. - "nan"
  2825. - "what is the process of adding the LOb tags to customer "
  2826. - "how to add tags to customer"
  2827. - "need help in adding the tags"
  2828. - "uanble to add tags"
  2829. - intent: Support ticket-349
  2830. examples: |
  2831. - "foc billing"
  2832. - "nan"
  2833. - "unable to add FOC items in offers "
  2834. - "need help in FOC items"
  2835. - "how to create FOC items in offers "
  2836. - "explain the process of creation FOC items in offers"
  2837. - intent: Support ticket-350
  2838. examples: |
  2839. - "Unable to raise debit notes It is showing series not valid"
  2840. - "nan"
  2841. - "Series is expired"
  2842. - "How to extended series in debit note"
  2843. - "Unable to create debit notes"
  2844. - "While creating the debit note getting as series is expired"
  2845. - intent: Support ticket-351
  2846. examples: |
  2847. - "Not Able to bill print"
  2848. - "nan"
  2849. - "need changes in print sales invoice"
  2850. - "need help in taking print in sales invoice"
  2851. - "how to take print in sales invoice"
  2852. - "unable to take print in sales invoice"
  2853. - intent: Support ticket-352
  2854. examples: |
  2855. - "How to change admin and manager name "
  2856. - "nan"
  2857. - "how to change an employee role in DMS "
  2858. - "explained the process of upadting the role employee"
  2859. - "need to update role employee in DMS"
  2860. - "help in changing the roles for employee"
  2861. - intent: Support ticket-353
  2862. examples: |
  2863. - "geo tagging and mbc mcc leads issue"
  2864. - "nan"
  2865. - "how to check mobil dashborads"
  2866. - " not visible in Mobil Dashboards"
  2867. - "how to delete the documents in MBC MCC Leads"
  2868. - "Need to change documents in MBC MCC leads"
  2869. - intent: Support ticket-354
  2870. examples: |
  2871. - "We are trying to generate Exxon Purchase invoice but Value is not matching with Exxon invoice due to adding an Item FEES MINIMUM ORDER QUANTITY -Plz look into this issue"
  2872. - "how to add service item in purchase invoice"
  2873. - "kindly help in changing the service item in purchase invoice"
  2874. - "unable to add service item for purchase invoice "
  2875. - "need to add service item for purchase invoice"
  2876. - "how to add service item in purchase invoice"
  2877. - intent: Support ticket-355
  2878. examples: |
  2879. - "EB tagging function is not working"
  2880. - "how to add EB name in Mobil opportunity"
  2881. - "nan"
  2882. - "nan"
  2883. - "nan"
  2884. - "nan"
  2885. - intent: Support ticket-356
  2886. examples: |
  2887. - "STOCK REPORT"
  2888. - "how to download and check the Stock report"
  2889. - "nan"
  2890. - "nan"
  2891. - "nan"
  2892. - "nan"
  2893. - intent: Support ticket-357
  2894. examples: |
  2895. - " Error Series is Expired Series Format Does Not Exist This issue is being generated while placing a purchase order"
  2896. - " Error Series is Expired Series Format Does Not Exist in purchase order"
  2897. - "nan"
  2898. - "nan"
  2899. - "nan"
  2900. - "nan"
  2901. - intent: Support ticket-358
  2902. examples: |
  2903. - "ORDER NO JAPTNA-2223-4346 NOT ABLE TO PROCEED FURTHER FOR INVOICING PLEASE CHECK"
  2904. - "how to add item in DC"
  2905. - "nan"
  2906. - "nan"
  2907. - "nan"
  2908. - "nan"
  2909. - intent: Support ticket-359
  2910. examples: |
  2911. - "MHP-Q1-23 are not reflecting"
  2912. - "MHP Q1 2023 data"
  2913. - "nan"
  2914. - "nan"
  2915. - "nan"
  2916. - "nan"
  2917. - intent: Support ticket-360
  2918. examples: |
  2919. - "foc"
  2920. - "how to create the sales order with FOC Items"
  2921. - "create the sales order with FOC Items"
  2922. - "nan"
  2923. - "nan"
  2924. - "nan"
  2925. - intent: Support ticket-361
  2926. examples: |
  2927. - "REGARDING AR ONBOARDING"
  2928. - "how to create the AR Onboarding"
  2929. - "nan"
  2930. - "nan"
  2931. - "nan"
  2932. - "nan"
  2933. - intent: Support ticket-362
  2934. examples: |
  2935. - "WHEN I CREATE EMPLOYEE LOGIN ID THEN SOME ERROR ARE SHOWING PLEASE CONTACT ME ON 8104983418-SEEMA"
  2936. - "how to create the new user ID and password"
  2937. - "nan"
  2938. - "nan"
  2939. - "nan"
  2940. - "nan"
  2941. - intent: Support ticket-363
  2942. examples: |
  2943. - "Need to edit Quantity and Price in Invoice not able to do the same Screen shot shared on email"
  2944. - "How to enable item MRP in DMS"
  2945. - "nan"
  2946. - "nan"
  2947. - "nan"
  2948. - "nan"
  2949. - intent: Support ticket-364
  2950. examples: |
  2951. - "I am not able to create the sales return please help My contact number is 9140484234"
  2952. - "How to extend the series in DMS"
  2953. - "serious expiry error help"
  2954. - "nan"
  2955. - "nan"
  2956. - "nan"
  2957. - intent: Support ticket-365
  2958. examples: |
  2959. - "HOW TO CREATE PARTY LEDGER IN ANOTHER ADDRESS"
  2960. - "how to assign the GST number for the customer"
  2961. - "nan"
  2962. - "nan"
  2963. - "nan"
  2964. - "nan"
  2965. - intent: Support ticket-366
  2966. examples: |
  2967. - "We would like to inform you my DMS system is showing the 67 but actual is 100 jio tagging please do the necessary action as per as possible "
  2968. - "how to check the Non GEO tagging customer report"
  2969. - "nan"
  2970. - "nan"
  2971. - "nan"
  2972. - "nan"
  2973. - intent: Support ticket-367
  2974. examples: |
  2975. - "not able to create customer opportunity please contact my number is 8169816128"
  2976. - "how to contact your admin to extend the series in the opportunity module"
  2977. - "how to create opportunity"
  2978. - "nan"
  2979. - "nan"
  2980. - "nan"
  2981. - intent: Support ticket-368
  2982. examples: |
  2983. - "Good Afternoon Sir Madam How to change customer confirmed stage to reject stage Pls contact 9791901023"
  2984. - "How to change stage from confirmed to rejected stage"
  2985. - "nan"
  2986. - "nan"
  2987. - "nan"
  2988. - "nan"
  2989. - intent: Support ticket-369
  2990. examples: |
  2991. - "Q1 2023 ka mco volume sahi show nahi kar raha h"
  2992. - "how to download and check the PCI Invoice report"
  2993. - "nan"
  2994. - "nan"
  2995. - "nan"
  2996. - "nan"
  2997. - intent: Support ticket-370
  2998. examples: |
  2999. - "Please enable geoTag report"
  3000. - "how to Geo Tag a customer"
  3001. - "nan"
  3002. - "nan"
  3003. - "nan"
  3004. - "nan"
  3005. - intent: Support ticket-371
  3006. examples: |
  3007. - "regarding geo tagging"
  3008. - "how to Geo Tag a customer"
  3009. - "nan"
  3010. - "nan"
  3011. - "nan"
  3012. - "nan"
  3013. - intent: Support ticket-372
  3014. examples: |
  3015. - "customer"
  3016. - "how to check the Geo tagging of a customer"
  3017. - "nan"
  3018. - "nan"
  3019. - "nan"
  3020. - "nan"
  3021. - intent: Support ticket-373
  3022. examples: |
  3023. - "IWS Volumes are not showing in report kindly check and let us know"
  3024. - "how to check month wise workshop volume report in DMS"
  3025. - "nan"
  3026. - "nan"
  3027. - "nan"
  3028. - "nan"
  3029. - intent: Support ticket-374
  3030. examples: |
  3031. - "series is expired series format does not exist"
  3032. - "How to extend the series in DMS"
  3033. - "series is expired series format does not exist"
  3034. - "nan"
  3035. - "nan"
  3036. - "nan"
  3037. - intent: Support ticket-375
  3038. examples: |
  3039. - "How to get Geo tagging data "
  3040. - "how to check the Geo tagging of a customer"
  3041. - "nan"
  3042. - "nan"
  3043. - "nan"
  3044. - "nan"
  3045. - intent: Support ticket-376
  3046. examples: |
  3047. - "Dear Team Please check mobile app not working today"
  3048. - "how to Create new series in DC"
  3049. - "nan"
  3050. - "nan"
  3051. - "nan"
  3052. - "nan"
  3053. - intent: Support ticket-377
  3054. examples: |
  3055. - "mobil gwalior ageco in ID LOCKED PLZ UNLOCKED ID 830555186"
  3056. - "how to unlock the employee id in DMS"
  3057. - "nan"
  3058. - "nan"
  3059. - "nan"
  3060. - "nan"
  3061. - intent: Support ticket-378
  3062. examples: |
  3063. - "Not able to see Q1 2023 targets"
  3064. - "MHP Q1 2023 data reflecting in your portal"
  3065. - "nan"
  3066. - "nan"
  3067. - "nan"
  3068. - "nan"
  3069. - intent: Support ticket-379
  3070. examples: |
  3071. - "mhp q1 2023 are not updated"
  3072. - "MHP Q1 2023 data reflecting in your portal"
  3073. - "nan"
  3074. - "nan"
  3075. - "nan"
  3076. - "nan"
  3077. - intent: Support ticket-380
  3078. examples: |
  3079. - "Error Series is expired Series format does not exist "
  3080. - "how to Create new series in Purchase order"
  3081. - "nan"
  3082. - "nan"
  3083. - "nan"
  3084. - "nan"
  3085. - intent: Support ticket-382
  3086. examples: |
  3087. - "we are unable to see the report of RTS 2022 2023 retail Please update the report of all RTS qualify dealers Also update the Q1-2023 all dealer s purchase"
  3088. - "how to check RTS Points"
  3089. - "nan"
  3090. - "nan"
  3091. - "nan"
  3092. - "nan"
  3093. - intent: Support ticket-383
  3094. examples: |
  3095. - "Credit Notes for offer Rts Q4 2022 Not showing for all Accounts Total 171 credit notes are their as per data but only 87 credit notes are shown"
  3096. - "how to check Detail volume payout report"
  3097. - "nan"
  3098. - "nan"
  3099. - "nan"
  3100. - "nan"
  3101. - intent: Support ticket-384
  3102. examples: |
  3103. - "Shasti cars Not able to select shipping Avinashi branch"
  3104. - "how to extended the series for the Sales order"
  3105. - "nan"
  3106. - "nan"
  3107. - "nan"
  3108. - "nan"
  3109. - intent: Support ticket-385
  3110. examples: |
  3111. - "I am unable to see MHP Q4 2022 report and MHP Q1 2023 report Kindly enable and same and confirm "
  3112. - "how to check MHP report "
  3113. - "nan"
  3114. - "nan"
  3115. - "nan"
  3116. - "nan"
  3117. - intent: Support ticket-386
  3118. examples: |
  3119. - "please call there is issue on sales person change "
  3120. - "how to change the DSR name for the customers by using the change Manager Module"
  3121. - "nan"
  3122. - "nan"
  3123. - "nan"
  3124. - "nan"
  3125. - intent: Support ticket-387
  3126. examples: |
  3127. - "CUSTOMER"
  3128. - "how to change the DSR name for the customers by using the change Manager Module"
  3129. - "nan"
  3130. - "nan"
  3131. - "nan"
  3132. - "nan"
  3133. - intent: Support ticket-388
  3134. examples: |
  3135. - "Unable to update Stock"
  3136. - "how to check the stock movement log report"
  3137. - "nan"
  3138. - "nan"
  3139. - "nan"
  3140. - "nan"
  3141. - intent: Support ticket-389
  3142. examples: |
  3143. - "Not showing any target of qtr 1 2023 and please also help for analysis our target qtr 4 2022 also not showing"
  3144. - "how to get MHP Q1 2023 data"
  3145. - "nan"
  3146. - "nan"
  3147. - "nan"
  3148. - "nan"
  3149. - intent: Support ticket-390
  3150. examples: |
  3151. - "Q 1 2024 Target and volume Not reflecting in DMS moudule "
  3152. - "how to contact your admin for View access for employee"
  3153. - "how to check Target and volume Not reflecting in DMS module"
  3154. - "nan"
  3155. - "nan"
  3156. - "nan"
  3157. - intent: Support ticket-391
  3158. examples: |
  3159. - "Invoice series missed"
  3160. - "Series expiry please help"
  3161. - "nan"
  3162. - "nan"
  3163. - "nan"
  3164. - "nan"
  3165. - intent: Support ticket-392
  3166. examples: |
  3167. - "i have generated dms invoice but customer gst number not showing on that also sometimes we deliver material on delivery challan and later create invoice after receiving PO So need to add dc details on invoice also also have to add our account details on invoice please help regarding this "
  3168. - "How to add the GST number in the Address widget"
  3169. - "How to edit address widget in sales invoice print"
  3170. - "nan"
  3171. - "nan"
  3172. - "nan"
  3173. - intent: Support ticket-393
  3174. examples: |
  3175. - "CUSTOMER"
  3176. - "how to change the sales manger name to the particular customer"
  3177. - "nan"
  3178. - "nan"
  3179. - "nan"
  3180. - "nan"
  3181. - intent: Support ticket-394
  3182. examples: |
  3183. - "Mobil Opportunity Series is Expired contact 9870312141"
  3184. - "how to extend the series for the Mobil Opportunity"
  3185. - "nan"
  3186. - "nan"
  3187. - "nan"
  3188. - "nan"
  3189. - intent: Support ticket-395
  3190. examples: |
  3191. - "How to create Credit note contact no 9766546168"
  3192. - "How to create Credit note "
  3193. - "nan"
  3194. - "nan"
  3195. - "nan"
  3196. - "nan"
  3197. - intent: Support ticket-396
  3198. examples: |
  3199. - "Please tell from where to download the geotagging report So please help 6207925718"
  3200. - "how to download the geotagging report"
  3201. - "nan"
  3202. - "nan"
  3203. - "nan"
  3204. - "nan"
  3205. - intent: Support ticket-397
  3206. examples: |
  3207. - "Dear Team we are unable to create new sale invoice as it is showing error in series Kindly find the error attached to this request Request you to kindly help us rectify the error on earliest Regards"
  3208. - "how to create new sales invoice"
  3209. - "nan"
  3210. - "nan"
  3211. - "nan"
  3212. - "nan"
  3213. - intent: Support ticket-398
  3214. examples: |
  3215. - "Dear all We would like to inform you MHP Q4 and Q1 2023 are not showing last two days and facing the issue like our achieved volume not showing So pl kindly resolve the issue "
  3216. - "MHP Q4 and Q1 2023 reports not showing"
  3217. - "nan"
  3218. - "nan"
  3219. - "nan"
  3220. - "nan"
  3221. - intent: Support ticket-399
  3222. examples: |
  3223. - "Error in creating employees"
  3224. - "How to create an employee"
  3225. - "Employee creation error help"
  3226. - "nan"
  3227. - "nan"
  3228. - "nan"
  3229. - intent: Support ticket-400
  3230. examples: |
  3231. - "Dear Sir Madam We have tried to reach you multiple times over the call for activation e-invoice but yet not active please confirm "
  3232. - "how to create the E- invoice in Sales invoice module"
  3233. - "Unable to create invoice "
  3234. - "nan"
  3235. - "nan"
  3236. - "nan"
  3237. - intent: Support ticket-401
  3238. examples: |
  3239. - "Unable to create invoice "
  3240. - "how to extended the series for the Sales order module"
  3241. - "nan"
  3242. - "nan"
  3243. - "nan"
  3244. - "nan"
  3245. - intent: Support ticket-402
  3246. examples: |
  3247. - "MBC MCC REPORT NOT SHOWING"
  3248. - "How to check MCC MBC report"
  3249. - "nan"
  3250. - "nan"
  3251. - "nan"
  3252. - "nan"
  3253. - intent: Support ticket-403
  3254. examples: |
  3255. - "Sir Trying to approve one GRN vendor Name jyoti Lube with account of other purchase but system not allowing to approve please check"
  3256. - "how to extend the series for the Purchase invoice module"
  3257. - "nan"
  3258. - "nan"
  3259. - "nan"
  3260. - "nan"
  3261. - intent: Support ticket-404
  3262. examples: |
  3263. - "One of our employees Mr Sai Kiran user has locked -plz look into this"
  3264. - "How to unlock the employee from admin login "
  3265. - "nan"
  3266. - "nan"
  3267. - "nan"
  3268. - "nan"
  3269. - intent: Support ticket-405
  3270. examples: |
  3271. - "Dear Sir Rts of Quarter 1 is not showing a retailer the retailer name is Loknath Enterprises"
  3272. - "Explain the process of checking the Detailed volume payout report "
  3273. - "Unable to RTS payouts report in DMS "
  3274. - "nan"
  3275. - "nan"
  3276. - "nan"
  3277. - intent: Support ticket-406
  3278. examples: |
  3279. - "Facing error while creating new customer master error - Series is expired series format does not exist"
  3280. - "I am not able to create new customer in DMS showing some error "
  3281. - "Facing error while creating new customer in DMS"
  3282. - "nan"
  3283. - "nan"
  3284. - "nan"
  3285. - intent: Support ticket-407
  3286. examples: |
  3287. - "Hello team Kindly Update Emplyoee Mr Somnath Nichare update email id somnath nichare sanjaytools com"
  3288. - "Explian the process of updating email address for my employees"
  3289. - "How to change email address for the employee"
  3290. - "nan"
  3291. - "nan"
  3292. - "nan"
  3293. - intent: Support ticket-408
  3294. examples: |
  3295. - "GEO TAGING UPDATE"
  3296. - "nan"
  3297. - "nan"
  3298. - "nan"
  3299. - "nan"
  3300. - "nan"
  3301. - intent: Support ticket-409
  3302. examples: |
  3303. - "Problem with new customer added please call me 8307462237"
  3304. - "Explian the process of creation of new customer in DMS"
  3305. - "nan"
  3306. - "nan"
  3307. - "nan"
  3308. - "nan"
  3309. - intent: Support ticket-410
  3310. examples: |
  3311. - "EMPLOYEE TARGET 2023 NOT SHOW"
  3312. - "how to check the MHP Q1 2023"
  3313. - "nan"
  3314. - "nan"
  3315. - "nan"
  3316. - "nan"
  3317. - intent: Support ticket-411
  3318. examples: |
  3319. - "kindly add on-boarding option in my DMS "
  3320. - "Explain the process of creating AR-On boarding kit in DMS "
  3321. - "nan"
  3322. - "nan"
  3323. - "nan"
  3324. - "nan"
  3325. - intent: Support ticket-412
  3326. examples: |
  3327. - "Hello Team Kindly Check Error Your OTP for registering is OTP Please use it to complete the registration BIZGAZE"
  3328. - "how to create new password to the new employee in DMS"
  3329. - "nan"
  3330. - "nan"
  3331. - "nan"
  3332. - "nan"
  3333. - intent: Support ticket-413
  3334. examples: |
  3335. - "Series problem "
  3336. - "How to extend series in DMS "
  3337. - "nan"
  3338. - "nan"
  3339. - "nan"
  3340. - "nan"
  3341. - intent: Support ticket-414
  3342. examples: |
  3343. - "Please share Geotaging details of each DSR which is done or pending through mail"
  3344. - "How to check geo tagging non geo tagging customers in DMS"
  3345. - "nan"
  3346. - "nan"
  3347. - "nan"
  3348. - "nan"
  3349. - intent: Support ticket-415
  3350. examples: |
  3351. - "FOR EMPLOYEE ID EPM 004 NOT ABLE TO REGISTER ON MOBIL APP "
  3352. - "explain the process of creating the new user ID and password"
  3353. - "nan"
  3354. - "nan"
  3355. - "nan"
  3356. - "nan"
  3357. - intent: Support ticket-416
  3358. examples: |
  3359. - "Dear Sir Madam Regarding For Sales Invoice Print and sales series No please contact no-7999195042 urgent basis "
  3360. - "how to extended the series for the Sales invoice module"
  3361. - "nan"
  3362. - "nan"
  3363. - "nan"
  3364. - "nan"
  3365. - intent: Support ticket-417
  3366. examples: |
  3367. - "we request to create the new year for 23-24 series to all inwards ourwards"
  3368. - "how to Creating new series in Purchase order"
  3369. - "nan"
  3370. - "nan"
  3371. - "nan"
  3372. - "nan"
  3373. - intent: Support ticket-418
  3374. examples: |
  3375. - "invoice is complete but one item add this invoice"
  3376. - "how to add item quantity"
  3377. - "nan"
  3378. - "nan"
  3379. - "nan"
  3380. - "nan"
  3381. - intent: Support ticket-419
  3382. examples: |
  3383. - "DMS app sales order displayed error Series is expired series format does not exist"
  3384. - "how to extended the series for the Sales invoice module"
  3385. - "nan"
  3386. - "nan"
  3387. - "nan"
  3388. - "nan"
  3389. - intent: Support ticket-420
  3390. examples: |
  3391. - "i can t able to login on my own device like my mobile But i can able to login on my company laptop could you please rectify it so that i can able to geo mapping in bizgaze "
  3392. - "how to contact your admin for unlock"
  3393. - "System Unlock request please help"
  3394. - "nan"
  3395. - "nan"
  3396. - "nan"
  3397. - intent: Support ticket-421
  3398. examples: |
  3399. - "Sree Sharadhambal Automobiles Support Series Error not able to place order"
  3400. - "How to extend the series in purchase order"
  3401. - "nan"
  3402. - "nan"
  3403. - "nan"
  3404. - "nan"
  3405. - intent: Support ticket-422
  3406. examples: |
  3407. - "PURCHASE ISSUE"
  3408. - "How to extend the series in purchase order"
  3409. - "nan"
  3410. - "nan"
  3411. - "nan"
  3412. - "nan"
  3413. - intent: Support ticket-423
  3414. examples: |
  3415. - "Salesman wise report and dsr name change in sales order"
  3416. - "how to change the DSR name for particular customer"
  3417. - "How to get Salesman wise report and dsr name change in sales order"
  3418. - "nan"
  3419. - "nan"
  3420. - "nan"
  3421. - intent: Support ticket-424
  3422. examples: |
  3423. - "Sales Return Volume not reflecting in PCI invoice and invoice amount is reflecting in outstanding list"
  3424. - "how to adjust the amount for sales return in receipts"
  3425. - "Sales Return Volume not reflecting in PCI invoice and invoice amount is reflecting in outstanding list"
  3426. - "nan"
  3427. - "nan"
  3428. - "nan"
  3429. - intent: Support ticket-425
  3430. examples: |
  3431. - "How to Delete Sales Order"
  3432. - "how to change the stages in Sales order"
  3433. - "nan"
  3434. - "nan"
  3435. - "nan"
  3436. - "nan"
  3437. - intent: Support ticket-426
  3438. examples: |
  3439. - "In DMS we are created new DSR Error Series is Expired Series Format Does Not Exist contact 022-24054101 102"
  3440. - "Error Series is Expired Series"
  3441. - "nan"
  3442. - "nan"
  3443. - "nan"
  3444. - "nan"
  3445. - intent: Support ticket-427
  3446. examples: |
  3447. - "Dear Team We are unable to check Geo tagging please call us on urgent basis "
  3448. - "Geo Tagging issue please help"
  3449. - "nan"
  3450. - "nan"
  3451. - "nan"
  3452. - "nan"
  3453. - intent: Support ticket-428
  3454. examples: |
  3455. - "on creating sales order its showing series expired series format does not exist need immediate support"
  3456. - "how to extend the series for the Sales order"
  3457. - "nan"
  3458. - "nan"
  3459. - "nan"
  3460. - "nan"
  3461. - intent: Support ticket-429
  3462. examples: |
  3463. - "Rts q1 2023 report is not available Please resolve"
  3464. - "how to select the filter while downloading the report"
  3465. - "nan"
  3466. - "nan"
  3467. - "nan"
  3468. - "nan"
  3469. - intent: Support ticket-430
  3470. examples: |
  3471. - "dms is not working not allowing to create invoice kindly contact on urgent basis in the morning 10 a m mobile number 7049016518 7974811410"
  3472. - "how to extend the series for the DC module"
  3473. - "nan"
  3474. - "nan"
  3475. - "nan"
  3476. - "nan"
  3477. - intent: Support ticket-431
  3478. examples: |
  3479. - "We are unable to making sales invoice and entering sales order in dms due to error of series is expired please solve this error on urgent basis because we need to make invoices of Q1"
  3480. - "process of extending the series for the DC module"
  3481. - " series is expired please solve this error"
  3482. - "nan"
  3483. - "nan"
  3484. - "nan"
  3485. - intent: Support ticket-432
  3486. examples: |
  3487. - "Series Expired Issue"
  3488. - "Series Expired Issue"
  3489. - "nan"
  3490. - "nan"
  3491. - "nan"
  3492. - "nan"
  3493. - intent: Support ticket-433
  3494. examples: |
  3495. - "when entering sales order showing some error like series is experied"
  3496. - "Explain the process of extending the series"
  3497. - "nan"
  3498. - "nan"
  3499. - "nan"
  3500. - "nan"
  3501. - intent: Support ticket-434
  3502. examples: |
  3503. - "Having issue while taking GRN"
  3504. - "how to extend the series for the GRN module"
  3505. - "nan"
  3506. - "nan"
  3507. - "nan"
  3508. - "nan"
  3509. - intent: Support ticket-435
  3510. examples: |
  3511. - "series is expired"
  3512. - "Series Expired Issue"
  3513. - "nan"
  3514. - "nan"
  3515. - "nan"
  3516. - "nan"
  3517. - intent: Support ticket-436
  3518. examples: |
  3519. - "series"
  3520. - "Series Expired Issue"
  3521. - "nan"
  3522. - "nan"
  3523. - "nan"
  3524. - "nan"
  3525. - intent: Support ticket-437
  3526. examples: |
  3527. - "Inward not taken"
  3528. - "how to extended the series for the GRN module"
  3529. - "nan"
  3530. - "nan"
  3531. - "nan"
  3532. - "nan"
  3533. - intent: Support ticket-438
  3534. examples: |
  3535. - " Series Expired "
  3536. - " Series Expired "
  3537. - "nan"
  3538. - "nan"
  3539. - "nan"
  3540. - "nan"
  3541. - intent: Support ticket-439
  3542. examples: |
  3543. - "We have Created New Sales Invoice Series for tomorrow New Year Start so we request you to confirm its Ok "
  3544. - "how to Create new series in Purchase order"
  3545. - "nan"
  3546. - "nan"
  3547. - "nan"
  3548. - "nan"
  3549. - intent: Support ticket-440
  3550. examples: |
  3551. - "need to change sales person for some sales invoices please help regarding this and also need help regarding creation of mobil opportunity "
  3552. - "How to change the sales person name"
  3553. - "nan"
  3554. - "nan"
  3555. - "nan"
  3556. - "nan"
  3557. - intent: Support ticket-441
  3558. examples: |
  3559. - "Dear Sir Madam It is noted that while creating a New Entry for DSR an error pop up showing that the Series is Expired Series Format Does Not Exist Kindly rectify the same and revert to us at the earliest "
  3560. - " Series is Expired Series Format Does Not Exist Kindly rectify"
  3561. - "nan"
  3562. - "nan"
  3563. - "nan"
  3564. - "nan"
  3565. - intent: Support ticket-442
  3566. examples: |
  3567. - "series got expired error"
  3568. - " Series is Expired Series Format Does Not Exist Kindly rectify"
  3569. - "nan"
  3570. - "nan"
  3571. - "nan"
  3572. - "nan"
  3573. - intent: Support ticket-443
  3574. examples: |
  3575. - "PLEASE CHANGE SERIES OF SALES ORDERS INVOICE RECEIPT"
  3576. - " Series is Expired Series Format Does Not Exist Kindly rectify"
  3577. - "nan"
  3578. - "nan"
  3579. - "nan"
  3580. - "nan"
  3581. - intent: Support ticket-444
  3582. examples: |
  3583. - "we are unable to create Account of new customer due to Error Series is Expired Series Format Does Not Exist "
  3584. - "Error Series is Expired Series Format Does Not Exist "
  3585. - "nan"
  3586. - "nan"
  3587. - "nan"
  3588. - "nan"
  3589. - intent: Support ticket-445
  3590. examples: |
  3591. - "PURCHASE INVOICE RELATED ISSUE"
  3592. - "PURCHASE INVOICE series RELATED ISSUE"
  3593. - "nan"
  3594. - "nan"
  3595. - "nan"
  3596. - "nan"
  3597. - intent: Support ticket-446
  3598. examples: |
  3599. - "Goodmorning Madam Kindly update the new financial year for purchase invoice sales invoice purchase order sales order ect pls contact 9791901023"
  3600. - "Kindly update the new financial year for purchase invoice sales invoice purchase order sales order"
  3601. - "nan"
  3602. - "nan"
  3603. - "nan"
  3604. - "nan"
  3605. - intent: Support ticket-447
  3606. examples: |
  3607. - "Hello DMS Team Kindly Check error while create new order Series is Expired Series Format Does not Exist All Ready Change Series in DMS But not Solved This Issue "
  3608. - "Series is Expired Series Format Does not Exist"
  3609. - "nan"
  3610. - "nan"
  3611. - "nan"
  3612. - "nan"
  3613. - intent: Support ticket-448
  3614. examples: |
  3615. - "Workshop Q4 2022 Month wise Quarter wise report is not showing"
  3616. - "How to check with Q4 report month wise quarter wise"
  3617. - "How to apply date filter for reports"
  3618. - "nan"
  3619. - "nan"
  3620. - "nan"
  3621. - intent: Support ticket-449
  3622. examples: |
  3623. - "CHANGE FINANCIAL YEAR 2023-24 ON INVOICES "
  3624. - "Series is Expired Series Format Does not Exist"
  3625. - "nan"
  3626. - "nan"
  3627. - "nan"
  3628. - "nan"
  3629. - intent: Support ticket-450
  3630. examples: |
  3631. - "Dear Sir Madam Regarding for Series expire new Series Update please contact no-7999195042"
  3632. - "Series expire please update new Series "
  3633. - "nan"
  3634. - "nan"
  3635. - "nan"
  3636. - "nan"
  3637. - intent: Support ticket-451
  3638. examples: |
  3639. - "Mama Unable to completing the data 2022-2023 Screen short mail to you"
  3640. - "how to renew all your transactional series "
  3641. - "nan"
  3642. - "nan"
  3643. - "nan"
  3644. - "nan"
  3645. - intent: Support ticket-452
  3646. examples: |
  3647. - "SERIES EXPIRED IN INWARD OF PURCHASE"
  3648. - "How to Create new series in Purchase order"
  3649. - "nan"
  3650. - "nan"
  3651. - "nan"
  3652. - "nan"
  3653. - intent: Support ticket-453
  3654. examples: |
  3655. - "Need support in creating series getting the below error message Screen shot shared on email"
  3656. - "Series is Expired Series Format Does not Exist"
  3657. - "nan"
  3658. - "nan"
  3659. - "nan"
  3660. - "nan"
  3661. - intent: Support ticket-454
  3662. examples: |
  3663. - "update new series"
  3664. - "Series is Expired Series Format Does not Exist"
  3665. - "nan"
  3666. - "nan"
  3667. - "nan"
  3668. - "nan"
  3669. - intent: Support ticket-455
  3670. examples: |
  3671. - "year change issue"
  3672. - "financial year Changing"
  3673. - "Series expairy please help"
  3674. - "nan"
  3675. - "nan"
  3676. - "nan"
  3677. - intent: Support ticket-456
  3678. examples: |
  3679. - "dsr name change series expire call 8225083314"
  3680. - "How to change DSR name "
  3681. - " How to creating the new series"
  3682. - "How to Create new employee"
  3683. - "nan"
  3684. - "nan"
  3685. - intent: Support ticket-457
  3686. examples: |
  3687. - "pls suggest how to change employee name dsr name in old customers "
  3688. - "How to change manager option in DMS"
  3689. - "how to change employee name"
  3690. - "nan"
  3691. - "nan"
  3692. - "nan"
  3693. - intent: Support ticket-458
  3694. examples: |
  3695. - "customer"
  3696. - "How to create a Customer"
  3697. - "Customer Creation"
  3698. - "How to adding the Address for particular customer"
  3699. - "nan"
  3700. - "nan"
  3701. - intent: Support ticket-459
  3702. examples: |
  3703. - "Purchase order issue"
  3704. - "How to create Purchase order"
  3705. - "How to Create new series in Purchase order"
  3706. - "nan"
  3707. - "nan"
  3708. - "nan"
  3709. - intent: Support ticket-460
  3710. examples: |
  3711. - "Not able to change the Series through video shared by you"
  3712. - "How to Change the series"
  3713. - "nan"
  3714. - "nan"
  3715. - "nan"
  3716. - "nan"
  3717. - intent: Support ticket-461
  3718. examples: |
  3719. - "Dear Sir When I enter sale then is showing series is expired or not exist Kindly do needful for the same"
  3720. - "How to Change Series "
  3721. - "financial year Changing"
  3722. - "nan"
  3723. - "nan"
  3724. - "nan"
  3725. - intent: Support ticket-462
  3726. examples: |
  3727. - "help us the change the series"
  3728. - "financial year Changing"
  3729. - "How to change Series"
  3730. - "How to Create new Series"
  3731. - "nan"
  3732. - "nan"
  3733. - intent: Support ticket-463
  3734. examples: |
  3735. - "Can t do sales estimate the error arriving series is expired pls resolve the problem asap"
  3736. - "financial year Changing"
  3737. - "How to change Series"
  3738. - "nan"
  3739. - "nan"
  3740. - "nan"
  3741. - intent: Support ticket-464
  3742. examples: |
  3743. - "Error Series is Expired Series Format Does Not Exist"
  3744. - "financial year Changing"
  3745. - "How to change new Series"
  3746. - "How to Create new Series in purchase order"
  3747. - "nan"
  3748. - "nan"
  3749. - intent: Support ticket-465
  3750. examples: |
  3751. - "series update"
  3752. - "financial year Changing"
  3753. - "How to change new Series"
  3754. - "nan"
  3755. - "nan"
  3756. - "nan"
  3757. - intent: Support ticket-466
  3758. examples: |
  3759. - "Error Series is Expired Series Format Does Not Exist"
  3760. - "financial year Changing"
  3761. - "Creating new series in Purchase order"
  3762. - "nan"
  3763. - "nan"
  3764. - "nan"
  3765. - intent: Support ticket-467
  3766. examples: |
  3767. - "WE HAVE CREATED 2023-24 SERIES ACCORDING TO THE SYSTEM BUT ITS NOT WORKING TO MAKE SALE INVOICES SO SOLVE THE PROBLEM 7087716665"
  3768. - "financial year Changing"
  3769. - "Creating new series in sales invoice"
  3770. - "nan"
  3771. - "nan"
  3772. - "nan"
  3773. - intent: Support ticket-468
  3774. examples: |
  3775. - "we are unable to put up the orders please change the series"
  3776. - "financial year Changing"
  3777. - "How to change Series in orders"
  3778. - "nan"
  3779. - "nan"
  3780. - "nan"
  3781. - intent: Support ticket-469
  3782. examples: |
  3783. - "Need to guide for creating new series "
  3784. - "financial year Changing"
  3785. - "How to change new Series"
  3786. - "nan"
  3787. - "nan"
  3788. - "nan"
  3789. - intent: Support ticket-470
  3790. examples: |
  3791. - "UNABLE TO CREATE DC WHILE CREATING IT SHOWING LIKE THIS Error Series is Expired Series Format Does Not Exist "
  3792. - "How to change New Series"
  3793. - "financial year Changing"
  3794. - "nan"
  3795. - "nan"
  3796. - "nan"
  3797. - intent: Support ticket-471
  3798. examples: |
  3799. - "Dear Sir Madam We have already created a MBC M s Highway Players But this customer has been rejected due to some reasons Now once again we are trying to create the customer MBC in Cat B But system is showing This customer is already registered Request to you Please remove this customer name in MBC So we car registered again "
  3800. - "nan"
  3801. - "nan"
  3802. - "nan"
  3803. - "nan"
  3804. - "How to create renewal for MBC MCC LEADS"
  3805. - intent: Support ticket-472
  3806. examples: |
  3807. - "Please Enable AR On boarding kit option"
  3808. - "How to creating the AR onboarding points"
  3809. - "nan"
  3810. - "nan"
  3811. - "nan"
  3812. - "nan"
  3813. - intent: Support ticket-473
  3814. examples: |
  3815. - "CHANGE INVOICE NUMBER"
  3816. - "How to Change Invioce series number"
  3817. - "nan"
  3818. - "nan"
  3819. - "nan"
  3820. - "nan"
  3821. - intent: Support ticket-474
  3822. examples: |
  3823. - "CHANGE INVOICE NUMBER"
  3824. - "How to Change Invioce series number"
  3825. - "How to create the new series"
  3826. - "nan"
  3827. - "nan"
  3828. - "nan"
  3829. - intent: Support ticket-475
  3830. examples: |
  3831. - "Unable to place order"
  3832. - "How to Change order series"
  3833. - "nan"
  3834. - "nan"
  3835. - "nan"
  3836. - "nan"
  3837. - intent: Support ticket-476
  3838. examples: |
  3839. - "helo pl change finacial year in sale purchase and receipt thanks singla motor"
  3840. - "financial year Changing"
  3841. - "How to change sales and purchase order series"
  3842. - "nan"
  3843. - "nan"
  3844. - "nan"
  3845. - intent: Support ticket-477
  3846. examples: |
  3847. - "Renew Series for the FY 2023-24"
  3848. - "financial year Changing"
  3849. - "How to renewal new series"
  3850. - "nan"
  3851. - "nan"
  3852. - "nan"
  3853. - intent: Support ticket-478
  3854. examples: |
  3855. - "no data available reflected in the screen during Renew Series for the FY 2023-24 so please Renew"
  3856. - "How to create the new series"
  3857. - "How to renewal new series"
  3858. - "nan"
  3859. - "nan"
  3860. - "nan"
  3861. - intent: Support ticket-479
  3862. examples: |
  3863. - "FACING PROBLEM IN CHANGING THE FINANCIAL YEAR IN SALES ORDER PURCHASE ORDER DEBIT NOTE CREDIT NOTE ETC PLEASE DO THE NEEDFUL"
  3864. - "financial year Changing"
  3865. - "How to change sales and purchase order series Debit note Credit note "
  3866. - "nan"
  3867. - "nan"
  3868. - "nan"
  3869. - intent: Support ticket-480
  3870. examples: |
  3871. - "In creating DC comming item error"
  3872. - "how to change the stages in Dc"
  3873. - "How to create the DC"
  3874. - "nan"
  3875. - "nan"
  3876. - "nan"
  3877. - intent: Support ticket-481
  3878. examples: |
  3879. - "not able to create sales order please see the attachment"
  3880. - "how to extended the series"
  3881. - "How to create the sales and purchase order series"
  3882. - "nan"
  3883. - "nan"
  3884. - "nan"
  3885. - intent: Support ticket-482
  3886. examples: |
  3887. - "HOW TO ADD NEW DSR IN DMS "
  3888. - "How to create the New Employee"
  3889. - "HOW TO ADD NEW DSR IN DMS "
  3890. - "nan"
  3891. - "nan"
  3892. - "nan"
  3893. - intent: Support ticket-483
  3894. examples: |
  3895. - "SERIES PROBLEM 8305595186"
  3896. - "How to Create new series in Purchase order"
  3897. - "nan"
  3898. - "nan"
  3899. - "nan"
  3900. - "nan"
  3901. - intent: Support ticket-484
  3902. examples: |
  3903. - "Having issue while making invoice "
  3904. - "creating the new series"
  3905. - "How to create new series in invoice"
  3906. - "nan"
  3907. - "nan"
  3908. - "nan"
  3909. - intent: Support ticket-485
  3910. examples: |
  3911. - "Want to change DSR name in parties"
  3912. - "How to change DSR name"
  3913. - "How to changethe DSR name to the particular Customer"
  3914. - "nan"
  3915. - "nan"
  3916. - "nan"
  3917. - intent: Support ticket-486
  3918. examples: |
  3919. - "ERROR SHOWING WHILE IN WARDING"
  3920. - "How to extending series in GRN module"
  3921. - "nan"
  3922. - "nan"
  3923. - "nan"
  3924. - "nan"
  3925. - intent: Support ticket-487
  3926. examples: |
  3927. - "want to create new series for 2023-2024 plz help-9612489539"
  3928. - "How to Create a new series"
  3929. - "How to change the contact number"
  3930. - "nan"
  3931. - "nan"
  3932. - "nan"
  3933. - intent: Support ticket-488
  3934. examples: |
  3935. - "Unable to save the DC Showing Error Series is Expired Series Format Does Not Exist We have to upload sales bills Kindly resolve the issue on priority "
  3936. - "How to create series format manually in DMS"
  3937. - "How to create the new series"
  3938. - "nan"
  3939. - "nan"
  3940. - "nan"
  3941. - intent: Support ticket-489
  3942. examples: |
  3943. - "we are having some problem in updating series kindly solve this problem call on this no 9805426454"
  3944. - "How to create the new series"
  3945. - "nan"
  3946. - "nan"
  3947. - "nan"
  3948. - "nan"
  3949. - intent: Support ticket-490
  3950. examples: |
  3951. - "Happy Namaste We have made Internal Transfer from Gurugram Location Series is coming OT-B 23-24 0002 but it should come OT-B 23-24 0001 Please make it OT-B 23-24 0001 Regards Manan Gaba"
  3952. - "how to extend the series for the Sales invoice module"
  3953. - "Series error please help"
  3954. - "nan"
  3955. - "nan"
  3956. - "nan"
  3957. - intent: Support ticket-491
  3958. examples: |
  3959. - "unable to create new fiscal -SALES DC SERIES PLZ HELP PLZ CALL 9612489539"
  3960. - "how to extend the series for the Sales invoice module"
  3961. - "how to create financial year series when expired"
  3962. - "nan"
  3963. - "nan"
  3964. - "nan"
  3965. - intent: Support ticket-492
  3966. examples: |
  3967. - "Not able to create new Employee Also need to create DMS app login ID for 2 DSRs"
  3968. - "how to extend the series for the Employee module"
  3969. - "nan"
  3970. - "nan"
  3971. - "nan"
  3972. - "nan"
  3973. - intent: Support ticket-493
  3974. examples: |
  3975. - "Accounts missing in my DMS pipeline"
  3976. - "how to Add followers to customers"
  3977. - "nan"
  3978. - "nan"
  3979. - "nan"
  3980. - "nan"
  3981. - intent: Support ticket-494
  3982. examples: |
  3983. - "An error occurs while making the purchase"
  3984. - "how to extended the series for the Purchase invoice"
  3985. - " while making the purchase an error occurs "
  3986. - "nan"
  3987. - "nan"
  3988. - "nan"
  3989. - intent: Support ticket-495
  3990. examples: |
  3991. - "Not able to make payment"
  3992. - "how to extended the series for the Receipt module"
  3993. - "As series expired we are unable to make payment please help"
  3994. - "nan"
  3995. - "nan"
  3996. - "nan"
  3997. - intent: Support ticket-496
  3998. examples: |
  3999. - "sales invoice"
  4000. - "explain the process of creating the new series"
  4001. - "nan"
  4002. - "nan"
  4003. - "nan"
  4004. - "nan"
  4005. - intent: Support ticket-497
  4006. examples: |
  4007. - "PURCHASE ENTER PLS CALL 9925661095 NUMBER"
  4008. - "how to extended the series for the Purchase invoice module"
  4009. - "nan"
  4010. - "nan"
  4011. - "nan"
  4012. - "nan"
  4013. - intent: Support ticket-498
  4014. examples: |
  4015. - "Hariom viswakarma series is exipired"
  4016. - "Series not found how to create manually"
  4017. - "nan"
  4018. - "nan"
  4019. - "nan"
  4020. - "nan"
  4021. - intent: Support ticket-499
  4022. examples: |
  4023. - "Gst Updation Issue"
  4024. - "unable to update GSTIN details help"
  4025. - "How to edit GSTIN details"
  4026. - "nan"
  4027. - "nan"
  4028. - "nan"
  4029. - intent: Support ticket-500
  4030. examples: |
  4031. - "NEW SERIES GENERATING"
  4032. - "Unable to generate new series"
  4033. - "nan"
  4034. - "nan"
  4035. - "nan"
  4036. - "nan"
  4037. - intent: Support ticket-501
  4038. examples: |
  4039. - "Series not found Plz call my 9910157860"
  4040. - "Series not found how to create manually"
  4041. - "nan"
  4042. - "nan"
  4043. - "nan"
  4044. - "nan"
  4045. - intent: Support ticket-502
  4046. examples: |
  4047. - "series need to create manually help"
  4048. - "how to create manual series in Sales invoices module"
  4049. - "nan"
  4050. - "nan"
  4051. - "nan"
  4052. - "nan"
  4053. - intent: Support ticket-503
  4054. examples: |
  4055. - "Not able to add New Employee "
  4056. - "nan"
  4057. - "nan"
  4058. - "nan"
  4059. - "nan"
  4060. - "nan"
  4061. - intent: Support ticket-504
  4062. examples: |
  4063. - "Please support inward series upgrade"
  4064. - "How to extend series in DMS "
  4065. - "nan"
  4066. - "nan"
  4067. - "nan"
  4068. - "nan"
  4069. - intent: Support ticket-505
  4070. examples: |
  4071. - "We are not create the GRN in DMS yet we create the GRN than Error shown in Series expired"
  4072. - "How to extend series in DMS "
  4073. - "nan"
  4074. - "nan"
  4075. - "nan"
  4076. - "nan"
  4077. - intent: Support ticket-506
  4078. examples: |
  4079. - "please help me to find On boarding Tab Also help me to place on boarding kit order in DMS "
  4080. - "Explain the process of creating AR-On boarding kit in DMS "
  4081. - "nan"
  4082. - "nan"
  4083. - "nan"
  4084. - "nan"
  4085. - intent: Support ticket-507
  4086. examples: |
  4087. - "New customer is not being created while completing the details profile of the customer it is not being saved as an error occurs on the screen series expired kindly solve it at the earliest 2 NOS MBC is already created in my DSR ID but i want some changes in the profile of MBC and then to submit it waiting for your early response 7064055675"
  4088. - "nan"
  4089. - "nan"
  4090. - "nan"
  4091. - "nan"
  4092. - "nan"
  4093. - intent: Support ticket-508
  4094. examples: |
  4095. - "Hi Issue regarding customers Please contact me this number - 7986647612 "
  4096. - "nan"
  4097. - "nan"
  4098. - "nan"
  4099. - "nan"
  4100. - "nan"
  4101. - intent: Support ticket-509
  4102. examples: |
  4103. - "PLEASE CALL BACK TO OUR LAND LANE NO 0891 2569433 FOR CLARIFICATION WHEN WE ARE MAKING INVOICE WE ARE GETTING ERROR LIKE SERIES EXPIRE"
  4104. - "How to extend series in DMS "
  4105. - "nan"
  4106. - "nan"
  4107. - "nan"
  4108. - "nan"
  4109. - intent: Support ticket-510
  4110. examples: |
  4111. - "creat icone"
  4112. - "nan"
  4113. - "nan"
  4114. - "nan"
  4115. - "nan"
  4116. - "nan"
  4117. - intent: Support ticket-511
  4118. examples: |
  4119. - "we have to set series no"
  4120. - "How to extend series in DMS "
  4121. - "nan"
  4122. - "nan"
  4123. - "nan"
  4124. - "nan"
  4125. - intent: Support ticket-512
  4126. examples: |
  4127. - "Just only show customer template only Please check and update"
  4128. - "nan"
  4129. - "nan"
  4130. - "nan"
  4131. - "nan"
  4132. - "nan"
  4133. - intent: Support ticket-513
  4134. examples: |
  4135. - "I m sales representative It s comes with customers template only doesn t come other 11 templates I has been attached image also check and update other 11templte "
  4136. - "nan"
  4137. - "nan"
  4138. - "nan"
  4139. - "nan"
  4140. - "nan"
  4141. - intent: Support ticket-514
  4142. examples: |
  4143. - "About Renew series 2023-24"
  4144. - "How to extend series in DMS "
  4145. - "nan"
  4146. - "nan"
  4147. - "nan"
  4148. - "nan"
  4149. - intent: Support ticket-515
  4150. examples: |
  4151. - "UNBALE TO ENTER PURCHASE SALES AS ITS SHOWING SERIES EXPIRED ALTHOUGH WE HAVE MADE NEW SERIES KINDLY CHECK FROM YOUR END IN ALL FOR SERIES CONFIGURATION"
  4152. - "nan"
  4153. - "nan"
  4154. - "nan"
  4155. - "nan"
  4156. - "nan"
  4157. - intent: Support ticket-516
  4158. examples: |
  4159. - "ERROR IN SERIES"
  4160. - "How to extend series in DMS "
  4161. - "nan"
  4162. - "nan"
  4163. - "nan"
  4164. - "nan"
  4165. - intent: Support ticket-517
  4166. examples: |
  4167. - "Dear Team Please set the New series for invoices for FY 23-24"
  4168. - "nan"
  4169. - "nan"
  4170. - "nan"
  4171. - "nan"
  4172. - "nan"
  4173. - intent: Support ticket-518
  4174. examples: |
  4175. - "dsr changing problem"
  4176. - "nan"
  4177. - "nan"
  4178. - "nan"
  4179. - "nan"
  4180. - "nan"
  4181. - intent: Support ticket-519
  4182. examples: |
  4183. - "Please help to get my onboarding sales estimate thank you sona industries"
  4184. - "nan"
  4185. - "nan"
  4186. - "nan"
  4187. - "nan"
  4188. - "nan"
  4189. - intent: Support ticket-520
  4190. examples: |
  4191. - "we are facing problem in DMS We are not able to save GRN the app has been showing series is required series format does not exist please call on mob-7744899933"
  4192. - "nan"
  4193. - "nan"
  4194. - "How to extend series in DMS "
  4195. - "nan"
  4196. - "nan"
  4197. - intent: Support ticket-521
  4198. examples: |
  4199. - "FACING PROBLEM IN CHANGING RETAILER NAME PH NO-8658145420"
  4200. - "nan"
  4201. - "nan"
  4202. - "nan"
  4203. - "nan"
  4204. - "nan"
  4205. - intent: Support ticket-522
  4206. examples: |
  4207. - "DEAR SIR MADAM WE ARE UNABLE TO RAISE THE RECEITS ENTRYS FOR THE CURRENT YEAR KINDLY RESOLVE THE PROBLEM IMMEDIATELY"
  4208. - "nan"
  4209. - "nan"
  4210. - "nan"
  4211. - "nan"
  4212. - "nan"
  4213. - intent: Support ticket-523
  4214. examples: |
  4215. - "GRN TO PURCHASE INVOICE ENTER PLS CALL 9925661095 NUMBER"
  4216. - "nan"
  4217. - "nan"
  4218. - "nan"
  4219. - "nan"
  4220. - "nan"
  4221. - intent: Support ticket-524
  4222. examples: |
  4223. - "Error Series is Expired Series Format Does Not Exist "
  4224. - "How to extend series in DMS "
  4225. - "nan"
  4226. - "nan"
  4227. - "nan"
  4228. - "nan"
  4229. - intent: Support ticket-525
  4230. examples: |
  4231. - "Purchase order Create Grn than one error show series format does not exist"
  4232. - "How to extend series in DMS "
  4233. - "nan"
  4234. - "nan"
  4235. - "nan"
  4236. - "nan"
  4237. - intent: Support ticket-526
  4238. examples: |
  4239. - "How to check Purchase order Details"
  4240. - "nan"
  4241. - "nan"
  4242. - "nan"
  4243. - "nan"
  4244. - "nan"
  4245. - intent: Support ticket-527
  4246. examples: |
  4247. - "Un able to bill its showing as services expired"
  4248. - "How to extend series in DMS "
  4249. - "nan"
  4250. - "nan"
  4251. - "nan"
  4252. - "nan"
  4253. - intent: Support ticket-528
  4254. examples: |
  4255. - "Stock Item inwards or outward report"
  4256. - "nan"
  4257. - "nan"
  4258. - "nan"
  4259. - "nan"
  4260. - "nan"
  4261. - intent: Support ticket-529
  4262. examples: |
  4263. - "how to correct Purchase last years"
  4264. - "nan"
  4265. - "nan"
  4266. - "nan"
  4267. - "nan"
  4268. - "nan"
  4269. - intent: Support ticket-530
  4270. examples: |
  4271. - "We are facing problem in GRN Creation series is required series is expire please call on this no-7744899933"
  4272. - "How to extend series in DMS "
  4273. - "nan"
  4274. - "nan"
  4275. - "nan"
  4276. - "nan"
  4277. - intent: Support ticket-531
  4278. examples: |
  4279. - "purches bills not eantar"
  4280. - "nan"
  4281. - "nan"
  4282. - "nan"
  4283. - "nan"
  4284. - "nan"
  4285. - intent: Support ticket-532
  4286. examples: |
  4287. - "REGRADING SESRIES"
  4288. - "nan"
  4289. - "nan"
  4290. - "nan"
  4291. - "nan"
  4292. - "nan"
  4293. - intent: Support ticket-533
  4294. examples: |
  4295. - "I am unable to see this month secondary sales please help"
  4296. - "nan"
  4297. - "nan"
  4298. - "nan"
  4299. - "nan"
  4300. - "nan"
  4301. - intent: Support ticket-534
  4302. examples: |
  4303. - "find out the rts scheme"
  4304. - "nan"
  4305. - "nan"
  4306. - "nan"
  4307. - "nan"
  4308. - "nan"
  4309. - intent: Support ticket-535
  4310. examples: |
  4311. - "Series issue"
  4312. - "How to extend series in DMS "
  4313. - "nan"
  4314. - "nan"
  4315. - "nan"
  4316. - "nan"
  4317. - intent: Support ticket-536
  4318. examples: |
  4319. - "We are not able to do billing for Gulfam some error showing in Dms please solve this problem kindly call on this no 9805426454 "
  4320. - "How to extend series in DMS "
  4321. - "nan"
  4322. - "nan"
  4323. - "nan"
  4324. - "nan"
  4325. - intent: Support ticket-537
  4326. examples: |
  4327. - "MY CONTACT NUMBER 7355065856"
  4328. - "nan"
  4329. - "nan"
  4330. - "nan"
  4331. - "nan"
  4332. - "nan"
  4333. - intent: Support ticket-538
  4334. examples: |
  4335. - "Hi Issue regarding sales order Please urgent contact me this number - 7986647612 "
  4336. - "nan"
  4337. - "nan"
  4338. - "nan"
  4339. - "nan"
  4340. - "nan"
  4341. - intent: Support ticket-539
  4342. examples: |
  4343. - "Invoice not Generated"
  4344. - "nan"
  4345. - "nan"
  4346. - "nan"
  4347. - "nan"
  4348. - "nan"
  4349. - intent: Support ticket-540
  4350. examples: |
  4351. - "Payment ishun"
  4352. - "nan"
  4353. - "nan"
  4354. - "nan"
  4355. - "nan"
  4356. - "nan"
  4357. - intent: Support ticket-541
  4358. examples: |
  4359. - "Payment ishu"
  4360. - "nan"
  4361. - "nan"
  4362. - "nan"
  4363. - "nan"
  4364. - "nan"
  4365. - intent: Support ticket-542
  4366. examples: |
  4367. - "Hi Invoice number of the current financial is not starting from 001"
  4368. - "nan"
  4369. - "nan"
  4370. - "nan"
  4371. - "nan"
  4372. - "nan"
  4373. - intent: Support ticket-543
  4374. examples: |
  4375. - "SHOWING SERIES EXPIRED"
  4376. - "How to extend series in DMS "
  4377. - "nan"
  4378. - "nan"
  4379. - "nan"
  4380. - "nan"
  4381. - intent: Support ticket-544
  4382. examples: |
  4383. - "Error Series is Expired Series Format Does Not Exist"
  4384. - "nan"
  4385. - "nan"
  4386. - "nan"
  4387. - "nan"
  4388. - "nan"
  4389. - intent: Support ticket-545
  4390. examples: |
  4391. - "Not able to proceed with sales order Please call me on 9740498877"
  4392. - "nan"
  4393. - "nan"
  4394. - "nan"
  4395. - "nan"
  4396. - "nan"
  4397. - intent: Support ticket-546
  4398. examples: |
  4399. - "new dsr joining data is not saved o DmS series format expired issue displayed on screen"
  4400. - "How to extend series in DMS "
  4401. - "nan"
  4402. - "nan"
  4403. - "nan"
  4404. - "nan"
  4405. - intent: Support ticket-547
  4406. examples: |
  4407. - "ITEM SKU- 146117 146118 146119 146120 146121 Please make this all items a MRP mandatory while create DC GRN"
  4408. - "nan"
  4409. - "nan"
  4410. - "nan"
  4411. - "nan"
  4412. - "nan"
  4413. - intent: Support ticket-548
  4414. examples: |
  4415. - "Sir please provide me dsr id and pasward my contact number 7355065856"
  4416. - "Explain the process of creation of DSR logins in DMS "
  4417. - "nan"
  4418. - "nan"
  4419. - "nan"
  4420. - "nan"
  4421. - intent: Support ticket-549
  4422. examples: |
  4423. - "LEDGER AMOUNT NOT SHOWING"
  4424. - "nan"
  4425. - "nan"
  4426. - "nan"
  4427. - "nan"
  4428. - "nan"
  4429. - intent: Support ticket-550
  4430. examples: |
  4431. - "order not save"
  4432. - "How to extend series in DMS "
  4433. - "nan"
  4434. - "nan"
  4435. - "nan"
  4436. - "nan"
  4437. - intent: Support ticket-551
  4438. examples: |
  4439. - "Sir sales return is not saving "
  4440. - "How to extend series in DMS "
  4441. - "nan"
  4442. - "nan"
  4443. - "nan"
  4444. - "nan"
  4445. - intent: Support ticket-552
  4446. examples: |
  4447. - "DSR SALES EXECUTIVE Give Only Order Placing Right No any other Right give to DSR "
  4448. - "nan"
  4449. - "nan"
  4450. - "nan"
  4451. - "nan"
  4452. - "nan"
  4453. - intent: Support ticket-553
  4454. examples: |
  4455. - "WE ARE UNABLE TO TAKE GRN FOR INVOICE NUMBER MH10105699 DATE 13 4 2023 PLEASE CALL 9923392112"
  4456. - "nan"
  4457. - "nan"
  4458. - "nan"
  4459. - "nan"
  4460. - "nan"
  4461. - intent: Support ticket-554
  4462. examples: |
  4463. - "how change DSR tag from Mr A to Mr B in one click 200 customer shift from A to B"
  4464. - "nan"
  4465. - "nan"
  4466. - "nan"
  4467. - "nan"
  4468. - "nan"
  4469. - intent: Support ticket-555
  4470. examples: |
  4471. - "Problem in taking INWARD CALL 9845520570"
  4472. - "how to change manager in DMS"
  4473. - "how to change the customers one DSR to another DSR"
  4474. - "nan"
  4475. - "nan"
  4476. - "nan"
  4477. - intent: Support ticket-556
  4478. examples: |
  4479. - "My TVS LOB is not coming while creating Purchase Order for Gulati Agencies Pvt Ltd Faridabad in Gurugram Location Request you to add My TVS LOB in it Regards Manan Gaba"
  4480. - "nan"
  4481. - "Explain how to add a new LOB to the branch in DMS"
  4482. - "all LOBs are not showing in new Branch"
  4483. - "how to configure all LOBs to new branch"
  4484. - "nan"
  4485. - intent: Support ticket-557
  4486. examples: |
  4487. - "pipe not ablle to update"
  4488. - "how to update my pipeline series in DMS"
  4489. - "nan"
  4490. - "nan"
  4491. - "nan"
  4492. - "nan"
  4493. - intent: Support ticket-558
  4494. examples: |
  4495. - "mobil opportunity series expire please solve issue "
  4496. - "how to update my pipeline series in DMS"
  4497. - "nan"
  4498. - "nan"
  4499. - "nan"
  4500. - "nan"
  4501. - intent: Support ticket-559
  4502. examples: |
  4503. - "Invoice entry prblm"
  4504. - "nan"
  4505. - "nan"
  4506. - "nan"
  4507. - "nan"
  4508. - "nan"
  4509. - intent: Support ticket-560
  4510. examples: |
  4511. - "unable to enter details says series expired "
  4512. - "How to create manual series in DMS"
  4513. - "nan"
  4514. - "nan"
  4515. - "nan"
  4516. - "nan"
  4517. - intent: Support ticket-561
  4518. examples: |
  4519. - "DEAR SIR PLEASE GIVE THE OPTION FOR CREATING PURCHASE ORDER"
  4520. - "How to check the active purchase orders "
  4521. - "how to search purchase order with order number"
  4522. - "nan"
  4523. - "nan"
  4524. - "nan"
  4525. - intent: Support ticket-562
  4526. examples: |
  4527. - "order not save"
  4528. - "nan"
  4529. - "how to create series or extend the series dates in all modules"
  4530. - "nan"
  4531. - "nan"
  4532. - "nan"
  4533. - intent: Support ticket-563
  4534. examples: |
  4535. - "I have some problem in sales return series"
  4536. - "how to create series in sales return"
  4537. - "nan"
  4538. - "nan"
  4539. - "nan"
  4540. - "nan"
  4541. - intent: Support ticket-564
  4542. examples: |
  4543. - "PURCHASE ORDER NOT DMS"
  4544. - "Hot to create GRN for given purchase order"
  4545. - "how to inward the material for given purchase order"
  4546. - "nan"
  4547. - "nan"
  4548. - "nan"
  4549. - intent: Support ticket-565
  4550. examples: |
  4551. - "Dear teem MBC MCC Workshop volume not show in app "
  4552. - "How to check Month Wise Workshop Volumes report"
  4553. - "nan"
  4554. - "nan"
  4555. - "nan"
  4556. - "nan"
  4557. - intent: Support ticket-566
  4558. examples: |
  4559. - "sale return"
  4560. - "explain the process of creatig sales return"
  4561. - "nan"
  4562. - "nan"
  4563. - "nan"
  4564. - "nan"
  4565. - intent: Support ticket-567
  4566. examples: |
  4567. - "moduls are not add in dsr"
  4568. - "how to Add Update the role of a dsr"
  4569. - "nan"
  4570. - "nan"
  4571. - "nan"
  4572. - "nan"
  4573. - intent: Support ticket-568
  4574. examples: |
  4575. - "Need DSR change to other DSR"
  4576. - "how to change manager in DMS"
  4577. - "how to change the customers one DSR to another DSR"
  4578. - "nan"
  4579. - "nan"
  4580. - "nan"
  4581. - intent: Support ticket-569
  4582. examples: |
  4583. - "ROUTES IS NOT CREATING"
  4584. - "how to extend the series to undefined in DMS"
  4585. - "enable the option of undefined in series "
  4586. - "nan"
  4587. - "nan"
  4588. - "nan"
  4589. - intent: Support ticket-570
  4590. examples: |
  4591. - "UNABLE TO ENTER THE PURCHASE INVOICE 7087716665"
  4592. - "How to check the active purchase orders "
  4593. - "how to search purchase order with order number"
  4594. - "nan"
  4595. - "nan"
  4596. - "nan"
  4597. - intent: Support ticket-571
  4598. examples: |
  4599. - "Not Able to create new vendor"
  4600. - "how to create new Vendor"
  4601. - "how to create series in Vendor"
  4602. - "nan"
  4603. - "nan"
  4604. - "nan"
  4605. - intent: Support ticket-572
  4606. examples: |
  4607. - "Dear Team Please call us for regarding Beat Plan"
  4608. - "explain the proceedure of creating new beat plan"
  4609. - "how to create series in Routes and Route schedule "
  4610. - "nan"
  4611. - "nan"
  4612. - "nan"
  4613. - intent: Support ticket-573
  4614. examples: |
  4615. - "NOT ABLE TO MAKE SALE BILL PURCHASE BILLS"
  4616. - "how to create series or extend the series dates in all modules"
  4617. - "nan"
  4618. - "nan"
  4619. - "nan"
  4620. - "nan"
  4621. - intent: Support ticket-574
  4622. examples: |
  4623. - "financial all series should be changed "
  4624. - "how to extend all modules series at once in DMS"
  4625. - "nan"
  4626. - "nan"
  4627. - "nan"
  4628. - "nan"
  4629. - intent: Support ticket-575
  4630. examples: |
  4631. - "WHILE CREATING NEW EMPLOYEE IT IS SHOWING ERROR Series is Expired Series Format Does Not Exist "
  4632. - "how to create series or extend the series dates in all modules"
  4633. - "nan"
  4634. - "nan"
  4635. - "nan"
  4636. - "nan"
  4637. - intent: Support ticket-576
  4638. examples: |
  4639. - "Route schedule"
  4640. - "how to create new route and add customers in it"
  4641. - "explain how to add customers in Route plan"
  4642. - "nan"
  4643. - "nan"
  4644. - "nan"
  4645. - intent: Support ticket-577
  4646. examples: |
  4647. - "DEAR SIR GOODS INVOICE NOT SAVE RE - PROBLAM SERIES CALL NO 8871389653"
  4648. - "how to extend all modules series at once in DMS"
  4649. - "nan"
  4650. - "nan"
  4651. - "nan"
  4652. - "nan"
  4653. - intent: Support ticket-578
  4654. examples: |
  4655. - "How to create route plan"
  4656. - "how to create new route and add customers in it"
  4657. - "nan"
  4658. - "nan"
  4659. - "nan"
  4660. - "nan"
  4661. - intent: Support ticket-579
  4662. examples: |
  4663. - "We are entering the email id for K Bhaskar But it shows an error as invalid email id The email id is correct - ie bsdv gfimpex org "
  4664. - "how to create the new user ID and password"
  4665. - "nan"
  4666. - "nan"
  4667. - "nan"
  4668. - "nan"
  4669. - intent: Support ticket-580
  4670. examples: |
  4671. - "route not created"
  4672. - "how to extend all modules series at once in DMS"
  4673. - "nan"
  4674. - "nan"
  4675. - "nan"
  4676. - "nan"
  4677. - intent: Support ticket-581
  4678. examples: |
  4679. - "Add DSR"
  4680. - "how to change manager in DMS"
  4681. - "how to change the customers one DSR to another DSR"
  4682. - "nan"
  4683. - "nan"
  4684. - "nan"
  4685. - intent: Support ticket-582
  4686. examples: |
  4687. - "Happy Namaste We are not able to see Purchase Planning report Please guide Regards Manan Gaba"
  4688. - "How to create the purchase plannig and download the related report in DMS"
  4689. - "nan"
  4690. - "nan"
  4691. - "nan"
  4692. - "nan"
  4693. - intent: Support ticket-583
  4694. examples: |
  4695. - "HOW TO DOWNLOAD GEO TAGGING REPORT "
  4696. - "How to download geo tagging report in DMS "
  4697. - "nan"
  4698. - "nan"
  4699. - "nan"
  4700. - "nan"
  4701. - intent: Support ticket-584
  4702. examples: |
  4703. - "PLS UNLOCK THIS ID IN DMS User id - sse ramesh1 gmail com"
  4704. - "How to unlock my employee login in DMS "
  4705. - "nan"
  4706. - "nan"
  4707. - "nan"
  4708. - "nan"
  4709. - intent: Support ticket-585
  4710. examples: |
  4711. - "Purchase entry issue"
  4712. - "how to extend all modules series at once in DMS"
  4713. - "nan"
  4714. - "nan"
  4715. - "nan"
  4716. - "nan"
  4717. - intent: Support ticket-586
  4718. examples: |
  4719. - "CREATE RETURN NOT ENTERED SERIES EXPIRED PROBLEM 8305595186 HELP"
  4720. - "how to extend all modules series at once in DMS"
  4721. - "nan"
  4722. - "nan"
  4723. - "nan"
  4724. - "nan"
  4725. - intent: Support ticket-587
  4726. examples: |
  4727. - "How to gio tagging"
  4728. - "How to download geo tagging report in DMS "
  4729. - "nan"
  4730. - "nan"
  4731. - "nan"
  4732. - "nan"
  4733. - intent: Support ticket-588
  4734. examples: |
  4735. - "Hello Team When Create new Customer Organization Group CIN number can t change and edit and Sales maneger can t edit "
  4736. - "how to update the CIN number of a customer in DMS "
  4737. - "nan"
  4738. - "nan"
  4739. - "nan"
  4740. - "nan"
  4741. - intent: Support ticket-589
  4742. examples: |
  4743. - "How to Tag customer in GEO tagging through live location that is send by customer"
  4744. - "how to geotag acustomer in DMS"
  4745. - "How to check geo tagging non geo tagging customers in DMS"
  4746. - "nan"
  4747. - "nan"
  4748. - "nan"
  4749. - intent: Support ticket-590
  4750. examples: |
  4751. - "PURCHASE ENTERY NHI HO PA RHI H AND SALES ENTERY KARNE PE SERIES NOT ENTERED"
  4752. - "how to extend all modules series at once in DMS"
  4753. - "nan"
  4754. - "nan"
  4755. - "nan"
  4756. - "nan"
  4757. - intent: Support ticket-591
  4758. examples: |
  4759. - "FACING PROBLEM IN SALES AND PURCHASE"
  4760. - "how to delete the item from DC in DMS "
  4761. - "nan"
  4762. - "nan"
  4763. - "nan"
  4764. - "nan"
  4765. - intent: Support ticket-592
  4766. examples: |
  4767. - "PLEASE CREATE ROUTE SCHUDELE SERIES 7087716665"
  4768. - "how to create series or extend the series dates in all modules"
  4769. - "nan"
  4770. - "nan"
  4771. - "nan"
  4772. - "nan"
  4773. - intent: Support ticket-593
  4774. examples: |
  4775. - "PCI invoice download issue"
  4776. - "how to download pci report by using filters"
  4777. - "nan"
  4778. - "nan"
  4779. - "nan"
  4780. - "nan"
  4781. - intent: Support ticket-594
  4782. examples: |
  4783. - "CREDIT NOTE PROBLEM"
  4784. - "how to create series or extend the series dates in all modules"
  4785. - "nan"
  4786. - "nan"
  4787. - "nan"
  4788. - "nan"
  4789. - intent: Support ticket-595
  4790. examples: |
  4791. - "Link is not coming in mobile So please help 6207925718"
  4792. - "how to create series or extend the series dates in all modules"
  4793. - "nan"
  4794. - "nan"
  4795. - "nan"
  4796. - "nan"
  4797. - intent: Support ticket-596
  4798. examples: |
  4799. - "How to create Route in DMS Error Series format Does not exist Plz Help"
  4800. - "how to create series or extend the series dates in all modules"
  4801. - "nan"
  4802. - "nan"
  4803. - "nan"
  4804. - "nan"
  4805. - intent: Support ticket-597
  4806. examples: |
  4807. - "Reports of Retailer IWS PAYOUT Q1 2023 - RTS RTS ON INVOICE "
  4808. - "nan"
  4809. - "nan"
  4810. - "nan"
  4811. - "nan"
  4812. - "nan"
  4813. - intent: Support ticket-598
  4814. examples: |
  4815. - "hello Bizgaze team I want to create return entry but Series is expired is shown here in Bizgaze please help us to create return invoice "
  4816. - "how to create series or extend the series dates in all modules"
  4817. - "nan"
  4818. - "nan"
  4819. - "nan"
  4820. - "nan"
  4821. - intent: Support ticket-599
  4822. examples: |
  4823. - "when creating purchase order its showing some error like series is expired "
  4824. - "how to create series or extend the series dates in all modules"
  4825. - "nan"
  4826. - "nan"
  4827. - "nan"
  4828. - "nan"
  4829. - intent: Support ticket-600
  4830. examples: |
  4831. - "UNABLE TO RESET AN ACCOUNT S PASSWORD PLS CALL ON THIS NO 9899094563 AS SOON AS POSSIBLE "
  4832. - "How to create login id and password in DMS"
  4833. - "nan"
  4834. - "nan"
  4835. - "nan"
  4836. - "nan"
  4837. - intent: Support ticket-601
  4838. examples: |
  4839. - "Dear team cannot update sales entry showing below Entry Best Regards Pradeep N SS-GRN Team Pon Pure Chemicals Group 73 Bhavani Main road Veerappanchathiram Post Erode - 638004 90802-58339"
  4840. - "nan"
  4841. - "how to create series or extend the series dates in all modules"
  4842. - "nan"
  4843. - "nan"
  4844. - "nan"
  4845. - intent: Support ticket-602
  4846. examples: |
  4847. - "Not able to create new DSR in DMS"
  4848. - "How to create login id and password in DMS"
  4849. - "nan"
  4850. - "nan"
  4851. - "nan"
  4852. - "nan"
  4853. - intent: Support ticket-603
  4854. examples: |
  4855. - "Dear Sir Madam We want to a Report of Geo Tagged Customers how can we get that also need help in Rout Planning"
  4856. - "How to check geo tagging non geo tagging customers in DMS"
  4857. - "nan"
  4858. - "nan"
  4859. - "nan"
  4860. - "nan"
  4861. - intent: Support ticket-604
  4862. examples: |
  4863. - "NEED TO HOW TO CHECK TAGING"
  4864. - "How to check geo tagging non geo tagging customers in DMS"
  4865. - "nan"
  4866. - "nan"
  4867. - "nan"
  4868. - "nan"
  4869. - intent: Support ticket-605
  4870. examples: |
  4871. - "purchase invoice bill amount not match please amount match together pleASE FAST"
  4872. - "How to configure TCS tax in purchase invoice"
  4873. - "nan"
  4874. - "nan"
  4875. - "nan"
  4876. - "nan"
  4877. - intent: Support ticket-606
  4878. examples: |
  4879. - "New Employee Creation Series Error"
  4880. - "nan"
  4881. - "nan"
  4882. - "nan"
  4883. - "nan"
  4884. - "nan"
  4885. - intent: Support ticket-607
  4886. examples: |
  4887. - "As per the ExxonMobil Instruction we have sold the material to THRIVENI EARTHMOVERS PRIVATE LIMITED- Hosur But while we login the order it shows its not our LOB Kindly release hosur territory "
  4888. - "nan"
  4889. - "nan"
  4890. - "nan"
  4891. - "nan"
  4892. - "nan"
  4893. - intent: Support ticket-608
  4894. examples: |
  4895. - "stock issue"
  4896. - "nan"
  4897. - "nan"
  4898. - "nan"
  4899. - "nan"
  4900. - "nan"
  4901. - intent: Support ticket-609
  4902. examples: |
  4903. - "PURCHASE ORDER CREATION"
  4904. - "nan"
  4905. - "nan"
  4906. - "nan"
  4907. - "nan"
  4908. - "nan"
  4909. - intent: Support ticket-610
  4910. examples: |
  4911. - "Error Series is Expired"
  4912. - "nan"
  4913. - "nan"
  4914. - "nan"
  4915. - "nan"
  4916. - "nan"
  4917. - intent: Support ticket-611
  4918. examples: |
  4919. - "ROUTES SCHEDULE SERIES HAS EXPIRED "
  4920. - "nan"
  4921. - "nan"
  4922. - "nan"
  4923. - "nan"
  4924. - "nan"
  4925. - intent: Support ticket-612
  4926. examples: |
  4927. - "UNABLE TO CHANGE PURCHASE DC SERIES FOR NEW FINANCIAL YEAR PLZHELP-9612489539"
  4928. - "nan"
  4929. - "nan"
  4930. - "nan"
  4931. - "nan"
  4932. - "nan"
  4933. - intent: Support ticket-613
  4934. examples: |
  4935. - "HOW TO CREATE ROUTE SCHEDULE PLS EXPLAIN "
  4936. - "nan"
  4937. - "nan"
  4938. - "nan"
  4939. - "nan"
  4940. - "nan"
  4941. - intent: Support ticket-614
  4942. examples: |
  4943. - "Good Evening Sir Madam We contact Exxon Mobil high Authority Mr Pradeep He informed us not possible to alter the last month bill but we can make Return Invoice pls help for this Invoice No GST-077 23-24 Pls Contact No 9791901023"
  4944. - "nan"
  4945. - "nan"
  4946. - "nan"
  4947. - "nan"
  4948. - "nan"
  4949. - intent: Support ticket-615
  4950. examples: |
  4951. - "DSR PABAN ROUTH all customers shift to DSR UDDIPTA MONDAL"
  4952. - "nan"
  4953. - "nan"
  4954. - "nan"
  4955. - "nan"
  4956. - "nan"
  4957. - intent: Support ticket-616
  4958. examples: |
  4959. - "dear team i need help regarding creating emploee routs call me on 7876020192"
  4960. - "nan"
  4961. - "nan"
  4962. - "nan"
  4963. - "nan"
  4964. - "nan"
  4965. - intent: Support ticket-617
  4966. examples: |
  4967. - "Error-Error Series is Expired Series Format Does Not Exist"
  4968. - "nan"
  4969. - "nan"
  4970. - "nan"
  4971. - "nan"
  4972. - "nan"
  4973. - intent: Support ticket-618
  4974. examples: |
  4975. - "Dear All We would like to inform you MHP Q2 2023 Mobil opportunity modules create the new customer volume do not update and showing the some errors in my screen so please rectify the same "
  4976. - "nan"
  4977. - "nan"
  4978. - "nan"
  4979. - "nan"
  4980. - "nan"
  4981. - intent: Support ticket-619
  4982. examples: |
  4983. - "when we create route getting error series is expire "
  4984. - "nan"
  4985. - "nan"
  4986. - "nan"
  4987. - "nan"
  4988. - "nan"
  4989. - intent: Support ticket-620
  4990. examples: |
  4991. - "employee id is not creating"
  4992. - "nan"
  4993. - "nan"
  4994. - "nan"
  4995. - "nan"
  4996. - "nan"
  4997. - intent: Support ticket-621
  4998. examples: |
  4999. - "GRN NOT MADE"
  5000. - "nan"
  5001. - "nan"
  5002. - "nan"
  5003. - "nan"
  5004. - "nan"
  5005. - intent: Support ticket-622
  5006. examples: |
  5007. - "we are not having CREATE BUTTON IN route module"
  5008. - "nan"
  5009. - "nan"
  5010. - "nan"
  5011. - "nan"
  5012. - "nan"
  5013. - intent: Support ticket-623
  5014. examples: |
  5015. - "CHANGE MANAGERS SETTING IS NOT WORKING PROPERLY "
  5016. - "nan"
  5017. - "nan"
  5018. - "nan"
  5019. - "nan"
  5020. - "nan"
  5021. - intent: Support ticket-624
  5022. examples: |
  5023. - "While taking Purchase Order error is coming like Series is Expired Series format doesnot exit Please guide us how to rectify the issue my contact no 7095797888"
  5024. - "nan"
  5025. - "nan"
  5026. - "nan"
  5027. - "nan"
  5028. - "nan"
  5029. - intent: Support ticket-625
  5030. examples: |
  5031. - "new customers created issue"
  5032. - "nan"
  5033. - "nan"
  5034. - "nan"
  5035. - "nan"
  5036. - "nan"
  5037. - intent: Support ticket-626
  5038. examples: |
  5039. - "DSR Route plan issue"
  5040. - "nan"
  5041. - "nan"
  5042. - "nan"
  5043. - "nan"
  5044. - "nan"
  5045. - intent: Support ticket-627
  5046. examples: |
  5047. - "GRN ENTRY NOT MADE"
  5048. - "nan"
  5049. - "nan"
  5050. - "nan"
  5051. - "nan"
  5052. - "nan"
  5053. - intent: Support ticket-628
  5054. examples: |
  5055. - "details uploaded part no-143751"
  5056. - "nan"
  5057. - "nan"
  5058. - "nan"
  5059. - "nan"
  5060. - "nan"
  5061. - intent: Support ticket-629
  5062. examples: |
  5063. - "Customer Allocation to DSRs"
  5064. - "nan"
  5065. - "nan"
  5066. - "nan"
  5067. - "nan"
  5068. - "nan"
  5069. - intent: Support ticket-630
  5070. examples: |
  5071. - "CHANGE MANAGER SETTINGS NOT WORKING PROPERLY "
  5072. - "nan"
  5073. - "nan"
  5074. - "nan"
  5075. - "nan"
  5076. - "nan"
  5077. - intent: Support ticket-631
  5078. examples: |
  5079. - "SERIES ERROR"
  5080. - "nan"
  5081. - "nan"
  5082. - "nan"
  5083. - "nan"
  5084. - "nan"
  5085. - intent: Support ticket-632
  5086. examples: |
  5087. - "regarding GST number in invoice"
  5088. - "nan"
  5089. - "nan"
  5090. - "nan"
  5091. - "nan"
  5092. - "nan"
  5093. - intent: Support ticket-633
  5094. examples: |
  5095. - "Date Series Change"
  5096. - "nan"
  5097. - "nan"
  5098. - "nan"
  5099. - "nan"
  5100. - "nan"
  5101. - intent: Support ticket-634
  5102. examples: |
  5103. - "hi sir Do you have any videos related to the DMS Beat plan "
  5104. - "nan"
  5105. - "nan"
  5106. - "nan"
  5107. - "nan"
  5108. - "nan"
  5109. - intent: Support ticket-635
  5110. examples: |
  5111. - "stock problem reminder 3 time"
  5112. - "nan"
  5113. - "nan"
  5114. - "nan"
  5115. - "nan"
  5116. - "nan"
  5117. - intent: Support ticket-636
  5118. examples: |
  5119. - "NEED HELP IN ENTERING ROUTE SCHEDULE CALL 9845520570"
  5120. - "nan"
  5121. - "nan"
  5122. - "nan"
  5123. - "nan"
  5124. - "nan"
  5125. - intent: Support ticket-637
  5126. examples: |
  5127. - "sales invoice return issue it shows series is expired"
  5128. - "nan"
  5129. - "nan"
  5130. - "nan"
  5131. - "nan"
  5132. - "nan"
  5133. - intent: Support ticket-638
  5134. examples: |
  5135. - "not able to add sales manager"
  5136. - "nan"
  5137. - "nan"
  5138. - "nan"
  5139. - "nan"
  5140. - "nan"
  5141. - intent: Support ticket-639
  5142. examples: |
  5143. - "purchase invoice problem"
  5144. - "nan"
  5145. - "nan"
  5146. - "nan"
  5147. - " "
  5148. - "nan"
  5149. - intent: Support ticket-640
  5150. examples: |
  5151. - "Purchase invoices TCS not configured"
  5152. - "nan"
  5153. - "nan"
  5154. - "nan"
  5155. - "nan"
  5156. - "nan"
  5157. - intent: Support ticket-641
  5158. examples: |
  5159. - "NEED GEO TAGGING REPORT VISIBLE TO ALL"
  5160. - "nan"
  5161. - "nan"
  5162. - "nan"
  5163. - "nan"
  5164. - "nan"
  5165. - intent: Support ticket-642
  5166. examples: |
  5167. - "Sir how to i take H1 Mobil maharaja - MCC MBC sales report "
  5168. - "nan"
  5169. - "How to checking the MBC MCC reports"
  5170. - "How to checking the MCC MBC monthwise and Quaterwise"
  5171. - "nan"
  5172. - "nan"
  5173. - intent: Support ticket-643
  5174. examples: |
  5175. - "I m currently facing problem in the route program Kindly help me by ringing me at 9559551422 "
  5176. - "How to create the routes"
  5177. - "How to explained the process of creating the routes"
  5178. - "nan"
  5179. - "nan"
  5180. - "nan"
  5181. - intent: Support ticket-644
  5182. examples: |
  5183. - "stock reports is not available in month wise"
  5184. - "How to download the stock report"
  5185. - "How to check the stock report"
  5186. - "nan"
  5187. - "nan"
  5188. - "nan"
  5189. - intent: Support ticket-645
  5190. examples: |
  5191. - "GSTIN NUMBER HAS BEEN PUT IN CUSTOMER PROFILE BUT NOT SHOWN IN INVOICE"
  5192. - "How to add GSTIN number"
  5193. - " Explain process of the GSTIN number in address widget"
  5194. - "nan"
  5195. - "nan"
  5196. - "nan"
  5197. - intent: Support ticket-646
  5198. examples: |
  5199. - "wrongly dc items created want to make a separate purchase invoice plz help 9612489539"
  5200. - "how to change wrong dc item"
  5201. - " How to remove the items in GRN"
  5202. - "nan"
  5203. - "nan"
  5204. - "nan"
  5205. - intent: Support ticket-647
  5206. examples: |
  5207. - "showing series expired in mobil opportunity kindly resolve"
  5208. - "explained the process of series"
  5209. - "How to extending the series"
  5210. - "nan"
  5211. - "nan"
  5212. - "nan"
  5213. - intent: Support ticket-648
  5214. examples: |
  5215. - "Please transfer the customers tagged to Mr Albin Thomas EMP002 to Mr Willies Antony"
  5216. - "how to change the sales person name for the customers by using the change Manager Module "
  5217. - "how to change the sales person name"
  5218. - "nan"
  5219. - "nan"
  5220. - "nan"