Sap mm - pls help

hi,
i have the follwing error
: Posting only poassible in period  2005/01 and 2004/12 in company code MD1
i  have done like ...  mmpv
  to compay code  - md 1
company code   - md 1
and   - 02  / 2005    to 12 / 2009   - this is right
it showing error - what i do - pls help - step by step 
thx
ali

Hi
It seems you are working on IDES system ... So for practice the best thing for u is ...
Before you start IDES change ur system time to 1/1/2005 ..... now start ur IDES system .... and do all posting in 1/2005 ...
Dont worry .... since u r just practicing it doesnt matter if u wrking in present date or old date.
If u still wana change ur IDES posting date to present date then ... MMPV alone wont help
There are many other settings which you need to change .... mere wastage of time ....
And in live system ..... none of these issues will trouble u ever ...
Anyways go to MMPV... enter your co code .... then period as 2 and year 2005 then execute ...... since your last period is 1/2005 ... do check it once more in MMRV .... do this again n again till 7/2009 ....
Then start listing your other problems

Similar Messages

  • SAP Enhancements - pls help

    Can any one suggest some scenarios where email notifications can be incorporated?
    Please give some ideas for small enhancements in SAP 4.6C.

    Sujith,
    just refer:
    /people/sunil.ojha5/blog/2008/01/18/how-to-get-notificationapproval-email-id-with-from-z-table
    SAP on IBM i
    Amit.

  • Sync Message Error. Pls help very urgent.

    Hi,
    When I ma sending sync messages in XI I am getting error
    <SAP:Code area="PERSIST">MSG_NOT_FOUND</SAP:Code>
    <SAP:P1>4871E583B6C24C3CE1000000AC140A3B</SAP:P1>
      <SAP:P2>PE_ADAPTER</SAP:P2>
    Pls help.

    Http sender  and Http Receiver so no adapter is used..

  • Pls Help me with steps to add data from xml file to SAP B1 through B1iSN.

    Pls Help me with steps to add data from xml file to SAP B1 through B1iSN. I  am getting stuck in xsl transformation. not able to understand where the mapping code needs to be added.
    Pls explain me the steps for adding data from xml to B1 quotation step by step.
    thanks and regards
    Priya

    Hi,
    Have you checked this: https://sap.na.pgiconnect.com/p45508295/?launcher=false&fcsContent=true&pbMode=normal ?
    Thanks,
    Gordon

  • I am new to SAP i dont know even basics also pls help me to learn

    I want use SAP in qlikview pls  help me
    thanks in  advance

    HI Kumar,
    This forum is specially for SAP BI application not for qlikview, for SAP BI Please refer below tutorial links
    Official Product Tutorials – SAP BI Suite
    http://scn.sap.com/docs/DOC-7725
    Official Product Tutorials – SAP BusinessObjects Web Intelligence
    http://scn.sap.com/docs/DOC-7819
    Official Product Tutorials – SAP Crystal Reports 2011 / 2013
    http://scn.sap.com/docs/DOC-8514
    Official Product Tutorials – SAP BusinessObjects Crystal Reports for Enterprise
    http://scn.sap.com/docs/DOC-8013
    Official Product Tutorials – SAP BusinessObjects Dashboards
    http://scn.sap.com/docs/DOC-7946
    Thanks,
    Daya

  • Pls help on SAP-note

    Moderator message: please use a meaningful informative subject in future
    Dear Friends,
    When we running one Plant maintaince transaction we have the problem in Unit measure coloumn
    "Internal unit PC, language EN is not maintained"
    And in unit measures column '********' is printing, to solve we found two notes but those are not compatible for versions, we are using ECC 6.o version, Basis component is 7.0
    Pls help on this
    Regards
    Jagadeeshwar.B
    Edited by: Matt on Dec 1, 2008 2:20 PM

    Can you ensure that OSS notes 988317 and 917500 along with the pre-requisites have been applied? These notes address the problem you are facing.
    - Gurr

  • Download ALV to EXcel- Urgent pls help me

    Please help me in this...
    I have an ALV report around 120 column. The report is displayed perfectly on screen. But when I use the Export option to download as an excel file, some data is missing in SAP No field
    For example
    My report output is like this
    sap No    Name    Jobdes.   Dept
    00021     AAA      clerk1      FI
    00022     BBB      clerk1      FI
    00023     CCC      clerk1      FI
    00024     DDD      clerk1      FI
    00025     EEE      clerk1      FI
    00026     FFF      clerk1       FI
    Excel output is
    sap No    Name    Jobdes.   Dept
    00021     AAA      clerk1      FI
    Blank     BBB      clerk1      FI
    Blank     CCC      clerk1      FI
    Blank     DDD      clerk1      FI
    00025     EEE      clerk1      FI
    Blank    FFF      clerk1       FI
    Pls help me

    Hi Kumar,
              Pls try the below Function Modules to download the data to excel.
    ALSM_EXCEL_TO_INTERNAL_TABLE
    KCD_EXCEL_OLE_TO_INT_CONVERT – Uploads data directly from Excel sheet
    RH_START_EXCEL_WITH_DATA – Starts Excel with contents of an internal table
    or the below links also might help you.
    For uploading Excel to Internal Table??????
    Data from Excel sheet to my internal table
    Check the following link:
    http://www.sap-img.com/abap/upload-direct-excel.htm
    or even the below code might be helpful.
    Multiple excel sheets generation in a workbook
    CREATE OBJECT EXCEL 'EXCEL.SHEET'.
    GET PROPERTY OF EXCEL 'Application' = APPLICATION.
    SET PROPERTY OF APPLICATION 'Visible' = 1.
    CALL METHOD OF APPLICATION 'Workbooks' = BOOKS.
    CALL METHOD OF BOOKS 'Add' = BOOK.
    CALL METHOD OF BOOK 'WORKSHEETS' = SHEET.
    CALL METHOD OF SHEET 'ADD'.
    Fill all the sheets with relavant data
    PERFORM SHEET1 TABLES ITAB1.
    PERFORM SHEET2 TABLES ITAB2.
    PERFORM SHEET3 TABLES ITAB3.
    PERFORM SHEET4 TABLES ITAB4.
    Quit the excel after use
    CALL METHOD OF EXCEL 'QUIT'.
    FREE OBJECT: COLUMN,SHEET,BOOK,BOOKS,APPLICATION,EXCEL. "NO FLUSH.
    CLEAR V_SHEET.
    FORM FILL_CELL USING ROW COL VAL.
    CALL METHOD OF SHEET 'cells' = CELL NO FLUSH
    EXPORTING #1 = ROW #2 = COL.
    SET PROPERTY OF CELL 'value' = VAL.
    FREE OBJECT CELL NO FLUSH.
    ENDFORM. " FILL_CELL
    FORM SHEET1 TABLES ITAB1 STRUCTURE ITAB1.
    V_SHEET = Sheet Name.
    V_NO = V_NO + 1.
    CALL METHOD OF BOOK 'worksheets' = SHEET NO FLUSH EXPORTING #1 = V_NO.
    SET PROPERTY OF SHEET 'Name' = V_SHEET NO FLUSH.
    PERFORM FILL_SHEET1 TABLES ITAB1 USING V_NO V_SHEET.
    CALL METHOD OF SHEET 'Columns' = COLUMN.
    FREE OBJECT SHEET.
    CALL METHOD OF COLUMN 'Autofit'.
    FREE OBJECT COLUMN.
    ENDFORM.
    Repeat above procedure for all sheets you want to add
    FORM FILL_SHEET1
    TABLES ITAB1 STRUCTURE ITAB1
    USING V_NO V_SHEET.
    ROW = 1.
    PERFORM FILL_CELL USING ROW 1 'Column1 Name'.
    PERFORM FILL_CELL USING ROW 2 'Column2 Name'.
    PERFORM FILL_CELL USING ROW 3 'Column3 Name'.
    ROW = ROW + 1.
    LOOP AT ITAB1.
    PERFORM FILL_CELL USING ROW 1 ITAB1-Column1.
    PERFORM FILL_CELL USING ROW 2 ITAB1-Column2.
    PERFORM FILL_CELL USING ROW 3 ITAB1-Column3.
    ROW = ROW + 1.
    ENDLOOP.
    ENDFORM.
    Repeat above procedure for all sheets you want to add
    Try this also
    TYPE-POOLS: truxs.
    DATA: it_raw TYPE truxs_t_text_data.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    field_name = 'P_FILE'
    IMPORTING
    file_name = p_file.
    Upload Excel file
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
    EXPORTING
    I_FIELD_SEPERATOR =
    i_line_header = 'X'
    i_tab_raw_data = it_raw
    i_filename = p_file
    TABLES
    i_tab_converted_data = i_XCEL[]
    EXCEPTIONS
    conversion_failed = 1
    OTHERS = 2.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Pls reward if useful.
    THanks,
    Sirisha

  • Security deposit handling in crm: pls help !!

    hi,
         can anyone tell me how to handle security deposit management in sap-crm like how to view details of cash and non-cash deposits enterd though ECC/ISU system.
    Pls help me.

    Hi David
    security deposit
    You can specify a default value for the cash security deposit for each product. You can use transaction COMMPR01 to determine this default value. You can use the process framework to change this value, for example to adjust it according to the risk class. To do this, proceed as follows:
    Choose  Industry-Specific Solutions  Utilities Industry  Settings for User Interface  Transaction Processing  Processes  Define Processes  in Customizing for Customer Relationship Management.
    Create a new process definition by copying the process definition CONTRACT_START.
    Choose class CL_CRM_IU_PR_CNTR_START_SECDEP as the process class. This class contains a sample implementation.
    Copy the process profile DEFAULT and assign the new process definition here.
    Create a new user role and assign the function profile IUPROCESS here. You can select the process profile created in the previous step from the input help.
    In this implementation, the system calculates the security deposit amount as follows:
    Risk class  New security deposit value
    No default risk           80% of default value
    Low default risk         90 % of default value
    Medium default risk   100 % of default value
    High default risk         110 % of default value
    Very high default risk  120 % of default value
    For further information, see the Implementation Guide (IMG) for Customer Relationship Management on the process framework under  Industry-Specific Solutions  Utilities Industry  Settings for User Interface  Transaction Processing  Processes  Define Processes .
    Reward points if helpful to u
    Cheers
    Manohar

  • Crawl error-- error in attaching child docs!! pls help!!

    hi,
    am getting this error when crawling . can anyone provide some clues??
    Error in attaching to container node Crawler Start Node to get child documents and containers: IDispatch error #19876 (0x80044fa4): [SOAP fault: faultcode='soap:Server' faultstring='System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> Plumtree.Remote.NoLongerExistsException: Channel: ***/***/***/*** at CmsCrawler.CWSContainer.AttachToContainer(String sContainerLocation, ChildRequestHint oHint, String Locale) in C:\***\***\***\****\****\CWSContainer.cs:line 118at com.plumtree.remote.crawler.NativeContainerProvider.AttachToContainer(String sContainerLocation, Int32 nHint, String Locale)at com.plumtree.remote.crawler.xp.XPContainerProvider.AttachToContainer(String sContainerLocation, Int32 nHint, String Locale)at Plumtree.Remote.Crawler.Soap.ContainerProviderSoapBinding.AttachToContainer(String ContainerLocation, String Locale, Int32 ChildRequestHint)--- End of inner exception stack trace ---']
    I uninstalled and reinstalled .net framework and tried crawling again but of no use. it gives the same error no matter i try on different cms postings.
    Has anyone faced the same problem bfore? pls help.
    Regards

    Hi,
    Goto SM59 and check if both the RFC destination are fine. Also go to SLDAPICUST transcation and see you have given proper SLD URL, USER and pass.
    Check this link
    http://help.sap.com/saphelp_nw04/helpdata/en/78/20244134a56532e10000000a1550b0/content.htm
    Also try to follow the steps in the document attached this note:
    817920 - XI Readiness Check
    Thanks
    Swarup

  • Select query. pls help

    Hi all
    i am new to abap
    I have the following requirement.
    kindly help me how to write the select queries to achieve it.
    its urgent
    pls help me
    thanks in advance
    In June of year 1, new budget prices must be determined for the following year (year 2). The budget prices for year 2 are calculated out of the average contract prices in the first 5 months of year 1 (January – May). The average contract price will then (outside the system) be corrected with an index. To calculate new prices for Campina Netherlands, a report is needed to show all materials with current budget price, volumes and contract prices during the first five months of year 1
    The purchasing assistant creates an excel file per Material type, based on the Budget pricelist out of SAP.
    Purchasers check the file on:
    &#61485;     being correct,
    &#61485;     materials marked for deletion in SAP
    &#61485;     changes to be made in data
    The new prices, calculated based ion the output of the SAP Budget pricelist, are sent to controlling in june year 1.
    On the 1st of January year 2 the new budget prices are inserted in SAP as the new standard price / budget price.
    the fields for display are as follows
    <b>table</b>               <b>  field<b>[/b</b>]             <b>   description</b>
    ekko                        ekorg                              pur org
    ekpo                        matnr                              mat no
    makt                        maktx                            mat des
    cawn                       zunspsc                         unspsc code
    mbew                      stprs                              standard price
    mbew                      peinh                               price unit
    mara                        meins                            base unit of measure
    s012                        menge                            purchsed amount of mat
                                                                         in month 1
    s012                       menge                            purchsed amount of mat
                                                                         in month 2
    s012                       menge                            purchsed amount of mat
                                                                         in month 3
    s012                       menge                            purchsed amount of mat
                                                                         in month 4
    s012                       menge                            purchsed amount of mat
                                                                         in month 5
    ekpo                      netpr                               net price on date criteria 1
    ekpo                      peinh                              price unit
    ekpo                      bprme                             order price unit
    ekpo                      netpr                               net price on date criteria 2
    ekpo                      peinh                              price unit
    ekpo                      bprme                             order price unit
    ekpo                      netpr                               net price on date criteria 3
    ekpo                      peinh                              price unit
    ekpo                      bprme                             order price unit
    ekpo                      netpr                               net price on date criteria 4
    ekpo                      peinh                              price unit
    ekpo                      bprme                             order price unit
    ekpo                      netpr                               net price on date criteria 5
    ekpo                      peinh                              price unit
    ekpo                      bprme                             order price unit

    Hi,
    DATA: begin of i_ekpo,
               menge........
               netpr............
               date ..........
              end of i_ekpo.
    Select menge netpr date
              from ekpo
              into table i_ekpo
             where ....
    if sy-subrc = 0.
    LOOP AT i_ekpo.
    v_month = i_ekpo-date+4(2).
    CASE v_month.
    WHEN '01'
      itab-menge1 = i_ekpo-menge.
      itab-menge5 = i_ekpo-menge.
      itab-netpr1 = i_ekpo-netpr.
      itab-netpr5 = i_ekpo-netpr.
    WHEN '02'.
      itab-menge1 = i_ekpo-menge.
      itab-menge5 = i_ekpo-menge.
      itab-netpr1 = i_ekpo-netpr.
      itab-netpr5 = i_ekpo-netpr.
    WHEN '03'.
      itab-menge1 = i_ekpo-menge.
      itab-menge5 = i_ekpo-menge.
      itab-netpr1 = i_ekpo-netpr.
      itab-netpr5 = i_ekpo-netpr.
    WHEN '12'.
      itab-menge1 = i_ekpo-menge.
      itab-menge5 = i_ekpo-menge.
      itab-netpr1 = i_ekpo-netpr.
      itab-netpr5 = i_ekpo-netpr.
    ENDCASE.
    APPEND itab.
    ENDLOOP.
    Please be more specific with some sample outputs how is should be.

  • I want to learn HR ABAP Pls help

    Hi all
    I want to learn hr abap but sites like sap-img and sap.com and atomhr doesnt help to start .Once we know basic concepts then we can continue But to kicj off its difficult.Tried all main sites but no use
    Pls help if you have any good material.
    is it called HR abap or SAP hr?
    is info types starting with 0001 or is it with p0002???
    which is the one?
    George

    Hi,
    Chek these links:
    Re: Find Storage location with respect to Plant
    http://help.sap.com/saphelp_47x200/helpdata/en/4f/d5275f575e11d189270000e8322f96/content.htm
    http://www.sapdevelopment.co.uk/hr/hrhome.htm
    http://www.sap-img.com/human/hr-faq.htm
    http://www.hernangn.com.ar/sap.htm
    http://www.planetsap.com/hr_abap_main_page.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/25/37e0343734cf72e10000009b38f83b/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/8c/38e0343734cf72e10000009b38f83b/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/d4/6afde6358e11d6b48900010220c65f/frameset.htm
    http://www.sap-img.com/human/hr-faq.htm
    http://www.hernangn.com.ar/sap.htm
    http://www.sapgenie.com/mysap/mysap_hr.htm
    Best Regards,
    Anjali

  • Can i use output of one report in another report?? Pls help!

    Hi Gurus,
    I have a requirement where in i execute Report_1, inside that report_1, there is a pushbutton,
    when i click on that, it executes Report_2.
    My Report_2 creates some output xml and displays it too.
    What i want is, i want to keep this output (xml) coming from report_2 and use it in my report_1
    for further processing.  Is it possible???
    I donot know how it may work:
    Approach1: Is it possible to take this output from report_2, place it in some sap directory server
    as some file which is accessible for that session or client and then call it from report_1
    Approach2: a tedious approach, to download this file using function modules, and then in report_1,
    i can upload that file using the file path.???
    Is there any other way? Is approach_1 possible. Coz i think that would be easier.
    Pls help.
    Thanks a lot,
    Rashmi

    Hi Rashmi,
    to best of my knowledge you are getting the data in to an internal table.
    if this is right you can save this data either in ABAP or SAP memory
    using EXPORT IMPORT or
             SPA/GPA
    this way you can use one program data in another.
    hope this will serve your purpse.
    Regards
    Ramchander Rao.K

  • File to File Scenario with Secure Connection. Pls help urgent

    Hello All,
    I tried a lot to get a link/blog that expalin full scenario
    for File to File Scenario with Secure Connection
    Kindly let me know if somebody have link/doc for it
    that describe all the steps to do configuring this scenario.
    What is difference in simple words between
    FTPS and SFTP.
    Pls help it is urgent as I require for Project work urgently.
    Regards

    hi rich
    go through these links
    FTPs connection failed - error ".. certificate rejected by ChainVerifier"
    Re: What is SFTP, FTI channels
    http://help.sap.com/saphelp_erp2005/helpdata/en/e3/94007075cae04f930cc4c034e411e1/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/frameset.htm
    FTPS implementation question.
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/0e16bfd7b021aee10000000a1553f6/frameset.htm
    Server certificate rejected by ChainVerifier:FTPS server(Points Guaranteed)
    /people/krishna.moorthyp/blog/2007/07/31/sftp-vs-ftps-in-sap-pi
    File adapter
    thanks
    Kunaal

  • Sap isu-utility help find

    Hi,
    i am new to  industry specific solution utility,now i need to download help file for that.can anybody pls tell me how to do it?
    thanks,
    raman

    Hi Radharaman,
    In utilities you have lots of areas like
    device management
    waste and recycle management
    energy data management
    customer service...etc
    Please refer to the following link for full data on SAP utilities:
    http://help.sap.com/saphelp_utilities472/helpdata/EN/c6/4dce68eafc11d18a030000e829fbbd/frameset.htm
    Hope it helps!!
    Thanks!
    Preethi

  • Error in Dictionary DC deployment (URGENT Pls help)

    Hi experts,
    I am getting following error while deploying the Dictionary DC.
    I made changes in one database table (changing field length, added new columns).
    It got builtr successfully but deployment is giving errror, hence aborted.
    This is the trace m getting:-
    Pls pls help as soon as possible...
    May 5, 2008 4:38:28 PM Info: Starting: Update: Selected development component 'BshopDic'/'asianpaints.com'/'J2E_BODYSHOP_D'/'20080505171925' updates currently deployed development component 'BshopDic'/'asianpaints.com'/'J2E_BODYSHOP_D'/'20080505170547'.
    May 5, 2008 4:38:40 PM Info: <!LOGHEADERSTART/>
    May 5, 2008 4:38:40 PM Info: <!HELPManual modification of the header may cause parsing problem!/>
    May 5, 2008 4:38:40 PM Info: <!LOGGINGVERSIONhttp://1.5.3.7186 - 630/>
    May 5, 2008 4:38:40 PM Info: <!NAME[/usr/sap/J2E/JC00/SDM/program/log/jddilog20080505163828.log]/>
    May 5, 2008 4:38:40 PM Info: <!PATTERNhttp://jddilog20080505163828.log/>
    May 5, 2008 4:38:40 PM Info: <!FORMATTERhttp://com.sap.dictionary.database.dbs.DbTraceFormatter(%s %m %-30l %24d)/>
    May 5, 2008 4:38:40 PM Info: <!ENCODINGISO8859_1/>
    May 5, 2008 4:38:40 PM Info: <!LOGHEADEREND/>
    May 5, 2008 4:38:40 PM Info: 16:38:28 2008-05-05 dbs-Info: <<<<<<<<<<<<<< Table Deployment >>>>>>>>>>>>>
    May 5, 2008 4:38:40 PM Info: 16:38:28 2008-05-05 dbs-Info:
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: <<< Analyze table BC_DDDBRTH >>>
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: predefined action is: >>>null<<<
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: No action required for table
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: <<< Analyze table BC_DDDBTABLERT >>>
    May 5, 2008 4:38:40 PM Info: 1
    6:38:29 2008-05-05 dbs-Info: predefined action is: >>>null<<<
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: No action required for table
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: <<< Analyze table BC_DDDBRTH >>>
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: predefined action is: >>>null<<<
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: No action required for table
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: <<< Analyze table BC_DDDBRTX >>>
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: predefined action is: >>>null<<<
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: No action required for table
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: >>> Analyze tables from archive in database ORACLE
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: Next archive object : dbtables/BIT_AUTONUMBER.gdbtable
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: <<< Analyze table BIT_AUTONUMBER >>>
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: predefined action is: >>>null<<<
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: Action: CONVERT
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: Table has to be converted
    May 5, 2008 4:38:40 PM Info:
    May 5, 2008 4:38:40 PM Info: E R R O R ******* (DbModificationManager)
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Error: Table BIT_AUTONUMBER: Conversion currently not possible
    May 5, 2008 4:38:40 PM Info:
    May 5, 2008 4:38:40 PM Info: E R R O R ******* (DbModificationManager)
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Error: Table BIT_AUTONUMBER: Conversion currently not possible
    May 5, 2008 4:38:40 PM Info: 16:38:29 2008-05-05 dbs-Info: Next archive object : dbtables/BIT_BRAND.gdbtable

    Hi,
    It looks like the conversion of datatype is making issues.
    Either existing values are not complaint with the size changes you made.
    To resolve this either you remove the existing records and deploy.
    Take a backup of records and reimport later with default values to the newly added cols if they are not null.
    Regards
    Ayyapparaj

Maybe you are looking for

  • Preview Mail attachment

    Is there a way to see an image preview when attaching? I thought I saw it before but now it's an icon. 10.3.9 Thanks. Sorry, I just noticed this is Tiger Dual 2.3/G5 23" Display Mac OS X (10.4.5) 4.5 G RAM

  • DLSw redundancy problem

    | | ****** ******** | | * *--CPA1--*7206-1*--| ******** | *IBM * ******** |--*7206-3*--| * * | ******** | *HOST* | | * * ******** |--******** | * *--CPA2--*7206-2*--| *7206-4*--| ****** ******** | ******** | | | 7206-1 and 7206-2 manage the the conne

  • IPad is only works with changer , when I unplug it's not working

    My iPad 3 is only works with changer  when I unplug it's not working and not connecting to the PC even please some help?

  • Broken Charger In iBook

    The other i realized that my charger got stuck inside of my iBook g3 and i was wondering what is the specific name or serial number for the charging port (the thing you place your charger into) and on average how much would it be to fix it and to buy

  • Re.Time Machine Question

    Hi I have bought a Seagate 2TB Backup Plus drive to use with Time Machine which I bought from the Apple Online Store. Following the instructions on the Apple website, I plugged the machine in, went through the set up process and ticked the 'show in m