247
Points
Questions
16
Answers
34
-
- 1418 views
- 2 answers
- 0 votes
-
- 1719 views
- 1 answers
- 0 votes
-
Hi Manju,
Please check if below queries work for you. You may Join these tables to get all Information.
SELECT ID FROM ITEM WHERE ITEM_NUMBER=’TEST_ITEM’;
RESULT: 6022378
SELECT FILE_ID FROM ATTACHMENT_MAP WHERE PARENT_ID=’6022378′;
RESULT: 6216321
SELECT LOCATIONS,IFS_FILEPATH FROM FILE_INFO WHERE FILE_ID=’6216321′;
RESULT : 13388, 000/061/196/agile9342123.xls
SELECT DESCRIPTION FROM NODETABLE WHERE ID=’13388′;
RESULT: IFS
ACTUAL FILE PATH: BASE STORAGE DIRECTORY OF IFS(CONFIGURED IN JAVA CLIENT) EX : D\Vault
D:Vault\000\061\196\gile9342123.xls
Thank You
- 1011 views
- 1 answers
- 0 votes
-
- 932 views
- 2 answers
- 0 votes
-
- 1397 views
- 3 answers
- 0 votes
-
Hi Feri,
Assign Role having Discover Privilege,Read Privilege ,Modify Privilege on Attributes(Inclusive of all Attributes which needs to be modified) and assign it to PX. In this way, Other users cannot Modify the attributes but attributes can be updated via PX.
Thanks,
Karthik
This answer accepted by fkorei. on December 12, 2019 Earned 15 points.
- 1528 views
- 1 answers
- 0 votes
-
Hi Stortip,
Please find the below details.
- If you are fetching the Item by Iterating the Affected Items Table of a Change, use getReferentIterator() to Iterate the Change Affected Items Table. This would give you the Item with the rev specific to the Change
- If you want to load any rev, use item.setRevision(IChange) or item.setRevision(Change Number). You can get the Revision/Change Details in two ways
a. item.getRevisions()
b. Can get the Information from Change History Tab.
Please refer to SDK and API Documentation for more information .
Let me know if you still face any issues in getting the data.
Thank You,
Karthik
- 1298 views
- 1 answers
- 0 votes
-
- 1428 views
- 3 answers
- 0 votes
-
- 1495 views
- 2 answers
- 0 votes
-
Hi Vaibhav,
Please try the below code.
IChange change=(IChange) session.getObject(IChange.OBJECT_TYPE,”SCO00001″);
ITable affItems=change.getTable(ChangeConstants.TABLE_AFFECTEDITEMS);
session.disableWarning(517);HashMap<Integer,String> map=new HashMap<Integer,String>();
map.put(ChangeConstants.ATT_AFFECTED_ITEMS_SITES, “Site1”);
map.put(ChangeConstants.ATT_AFFECTED_ITEMS_ITEM_NUMBER, “P00001”);
affItems.createRow(map);Regards,
Karthik
- 1539 views
- 1 answers
- 0 votes