Dear Supporter's
We are facing the problem while importing the different documents of same object name's of different documents type's(either pdf's or xls,etc..........)
we are creating custom object type it's having attribute (mw_customer_name,mw_quotation_no,mw_customer_id)
we can import document any where but it's finally move to corresponing folder path
we are override the doSave () in my TBO
in My tbo we are collect the user input attribute values when user import the document form the DA or WebTop ,
my tbo like this
doSave()
{
super.doSave();// y i am calling doSave method is to collect the attribute values based on this values we need to create the folder Strecture
my Business logic here
}
My logic Here is:
1)Collect the Attribute values and saved int in the local Valibles with the help of super.doSave()
2)we are creating the folder Strecture
3)we are moving the files' from source path to corresponding destination folder path based on the user input values
in the third point we must meet some codintions
those are
at the timeof importing our object name is XYZ .***
change the object name like this(this.serObjectName("Quotation-Q+<mw_quotation_no>");
now actual problem is:if that corresponing path haveing same object name we should create a version of the exising document but i did it's successfully
we can import document any where but it's finally move to corresponing folder path
after
now the porblme is after importing the document it's creating version of the exising documents and at the same time it's also creating original file when i try to importing
now i don't want the original file
i don't want that original file
Could you please help me out
tell me the senario i will follow