Employee Portal and Service Module

DynamicUser
Member Posts: 177
HI
Is it possible to create service orders through Employee Portal in standard cronus database ? Or we have to do the customization in Employee Portal?
Is it possible to create service orders through Employee Portal in standard cronus database ? Or we have to do the customization in Employee Portal?
0
Comments
-
You need to do correct setup of EP in NAV (create new group, cards etc.)0
-
When I click on Insert Line it gives me error
Navision error (10500): You cannot enter 'ERROR' in Integer. The cursor
is in front of the invalid character.
I am doing customization on EP Insert Line Data Mgt. For Service Module.
Anyone face this kind of error?0 -
remember from my previous employer that is was not that easy to use the emp. portal for this... much coding was necessary...0
-
You can set up any table in NAV to be accessed in EP, as long as the information can be displayed in any one of the standard EP web parts. If you need more functionality, you have to create your own web part.0
-
Please suggest me I paste whole code. Please suggest me in this regard.
LineRecordRef.OPEN(DATABASE::"Service Item Line",FALSE);
// Init the Record
LineRecordRef.INIT;
// Set the Primarykey Fields
LineFieldRef := LineRecordRef.FIELD(ServiceItemLine.FIELDNO("Document Type"));
EPSupportFunctions.ModifylFieldRefOnInsert(DATABASE::"Service Item Line",ServiceItemLine.FIELDNO("Document Type"),
EPDecodeXML.GetValueByFieldIDFromHeadData(XMLDocInHead,ServiceItemLine.FIELDNO("Document Type")),
LineFieldRef);
DocumentType := LineFieldRef.VALUE;
EPSupportFunctions.CreateTempHeadFilterTable(ServiceItemLine.FIELDNO("Document Type"),
EPFormatFunctions.OptionToText(DocumentType),GUID);
LineFieldRef := LineRecordRef.FIELD(ServiceItemLine.FIELDNO("Customer No."));
EPSupportFunctions.ModifylFieldRefOnInsert(DATABASE::"Service Item Line",ServiceItemLine.FIELDNO("Customer No."),
EPDecodeXML.GetValueByFieldIDFromHeadData(XMLDocInHead,ServiceItemLine.FIELDNO("Customer No.")),
LineFieldRef);
LineFieldRef := LineRecordRef.FIELD(ServiceItemLine.FIELDNO("Document No."));
EPSupportFunctions.ModifylFieldRefOnInsert(DATABASE::"Service Item Line",ServiceItemLine.FIELDNO("Document No."),
EPDecodeXML.GetValueByFieldIDFromHeadData(XMLDocInHead,ServiceItemLine.FIELDNO("Document No.")),
LineFieldRef);
DocumentNo := LineFieldRef.VALUE;
EPSupportFunctions.CreateTempHeadFilterTable(ServiceItemLine.FIELDNO("Document No."),
DocumentNo,GUID);
// Get Line Number
LineRecordRef2.OPEN(DATABASE::"Service Item Line",FALSE);
LineRecordRef2Filter := STRSUBSTNO('WHERE(1=CONST(%1),3=CONST(%2))',DocumentType,DocumentNo);
LineRecordRef2.SETVIEW(LineRecordRef2Filter);
IF LineRecordRef2.FIND('+') THEN BEGIN
LineFieldRef2 := LineRecordRef2.FIELD(ServiceItemLine.FIELDNO("Line No."));
NextLineNo := LineFieldRef2.VALUE;
NextLineNo := NextLineNo + 10000;
END ELSE BEGIN
NextLineNo := 10000;
END;
LineRecordRef2.CLOSE;
LineFieldRef := LineRecordRef.FIELD(ServiceItemLine.FIELDNO("Line No."));
LineFieldRef.VALUE(NextLineNo);
LineRecordRef.INSERT(TRUE);
// Insert Head Key fields for Answer
EPSupportFunctions.CreateTempHeadFilterKeys(ServiceItemLine.FIELDNO("Document Type"),GUID);
EPSupportFunctions.CreateTempHeadFilterKeys(ServiceItemLine.FIELDNO("Document No."),GUID);
When I Click on save button of lines it is giving me error.
Server error in "/" Application
"Objects reference not set to an instance of objects"
Please guide me I am great pain.0 -
This error comes when I click on insert line.
The Service Header does not exist. Identification fields and values: Document Type='Quote',No.='SO000017' Document Type: Quote, No.: SO000017
Any one face this error.0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions