Urgent, v12 to v8.6 conversion

Hey,
would you please convert the following two files to v8.6 from v12? Thank you!
best,
phymxs
Solved!
Go to Solution.
Attachments:
USBcount_withTJ_4.vi ‏49 KB
timetag and analyse.vi ‏27 KB

Here you go.
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
Attachments:
timetag and analyse.vi ‏24 KB
USBcount_withTJ_4.vi ‏34 KB

Similar Messages

  • URGENT : "max no of 100 conversations exceeded".

    Hi.
    We developed RFC Java iView for SAP R/3.
    This iview connect SAP R/3 and call RFC FM in SAP R/3.
    We got connection error during high load.
    Error is
    "max no of 100 conversations exceeded".
    So, I checked SAPFactory properties using Visual Admin but I think we got enough conenction.
    Here is parameter.
    Expiration : Checked
    Connection Lifetime : 2
    Maximum Connections : 1000
    Cleanup Thread : 10
    Maximum Time to wait for connection : 4
    JEE System has below error :
    #1.5#000F203CC23C002000007C33000050550004145E2C7DAE0A#1148294628636#/System/Server#sap.com/irj#com.sap.portal.connectors.R3#rtst018#54224##hhie01_E01_4224450#rtst018#d888e6e0e97f11da9210000f203cc23c#SAPEngine_Application_Thread[impl:3]_7##0#0#Error#1#com.sap.portal.connectors.R3#Plain###(R3/BW) Failed to get connection. Please contact your admin. #
    #1.5#000F203CC23C00110000883F000050550004145E2C7DB625#1148294628638#/System/Server#sap.com/irj#com.sap.portal.connectors.R3#rtst417#54127####d9c05570e97f11dab72a000f203cc23c#SAPEngine_Application_Thread[impl:3]_16##0#0#Error#1#com.sap.portal.connectors.R3#Plain###(R3/BW) Failed to get connection. Please contact your admin. #
    How can fix this problem ?
    Regards, Arnold.

    Hi Arnold
    When The external RFC/CPIC server cannot open any additioanl connections than u get
    "ERROR max no of 100 conversations exceeded"
    By setting the environment variables CPIC_MAX_CONV the library can manage more parallel connections
    If an RFC server program registers with, for example, 100 threads at the R/3 gateway, 100 connections are initially kept in the server program. Every RFC running on this type of connection creates an additional entry in the connection list of the RFC server program. This means that, under full load, a maximum of 200 entries are possible.
    I have not sure idea about "Maximum Connections" properties for SAPFactory in Connect Service
    regards,
    kaushal

  • Urgent plz help in currency conversions

    hi to all
             wrbtr = sum of dmbtr
    wrbtr = document currency
    dmbtr = local currency
    how can i match these
    there is any function module to convert one to other.
    plz help me in this issue
    take example wrbtr = 20,000
    sum of dmbtr =200
    i am not understanding does i should use a fm or some other to make
    wrbtr = sum of dmbtr
    does the local currency and document currencies r same.
    plz helpme
    Message was edited by: kranthi reddy

    Hi,
      Local currency & document currencies need not be same, and that is the reason function modules are used ( Convert_to_local_currency & Convert_to_foreign_currency ) to convert the amount either to your Local or to Document currency, if they are same there is no need for conversions,
      Can you elaborate on your query related to summing up the values as it is not clear,
    Rgds,

  • Urgent!!!! conversions.......

    Hey can anyone help me in Payroll Conversions.
    All i know about this is loading T tables from legacy data.
    T558B
    T558C
    T5u8C....please help me on this...
    Thankx in advance..

    Hi,
    Sample program to upload T558B table: Similarly you may do for others:
    REPORT ZP558B MESSAGE-ID ZP.
    changed by Hemang to use SSN instead of PERNR
    TABLES :T558B .    " payroll periods for each personnal no
    TABLES :PA0002.    " HR master rec it 00002 - 2 find pernr based on ssn
    PARAMETERS : FT558B LIKE RLGRAP-FILENAME DEFAULT'C:\558b.TXT'.
    DATA: BEGIN OF ITABTT5B OCCURS 0,
       PERNR1(9),    "SSN
       PAYDT1(10) , FPBEG1(10), FPEND1(10).
       INCLUDE STRUCTURE T558B.
    DATA :END OF ITABTT5B.
    DATA: DELIMITER TYPE X VALUE'09', ERR(50).
    PERFORM UPLOAD_T558B USING FT558B ERR.
    PERFORM APPEND.
          FORM UPLOAD_T558B                                             *
    -->  FT558B                                                        *
    -->  ERR                                                           *
    FORM UPLOAD_T558B USING FT558B ERR.
      DATA: BEGIN OF ITAB OCCURS 0,
      FILE1(8192),
       END OF ITAB.
      CALL FUNCTION 'WS_UPLOAD'
           EXPORTING
                FILENAME      = FT558B
                FILETYPE      = 'ASC'
           TABLES
                DATA_TAB      = ITAB
           EXCEPTIONS
                UNKNOWN_ERROR = 7
                OTHERS        = 8.
      PERFORM CHECK_ERROR USING SY-SUBRC ERR.
      DATA : T." Used to store junk (tab) char if any ...
      LOOP AT ITAB.
        SPLIT ITAB-FILE1 AT DELIMITER INTO
    ITABTT5B-PERNR1 ITABTT5B-SEQNR ITABTT5B-PAYTY ITABTT5B-PAYID
    ITABTT5B-PAYDT1 ITABTT5B-PERMO ITABTT5B-PABRJ ITABTT5B-PABRP
    ITABTT5B-FPBEG1 ITABTT5B-FPEND1 T.
    CONCATENATE ITABTT5B-PAYDT1+6(4)
                ITABTT5B-PAYDT1+0(2)
                ITABTT5B-PAYDT1+3(2) INTO ITABTT5B-PAYDT.
    CONCATENATE ITABTT5B-FPBEG1+6(4)
                ITABTT5B-FPBEG1+0(2)
                ITABTT5B-FPBEG1+3(2) INTO ITABTT5B-FPBEG.
    CONCATENATE ITABTT5B-FPEND1+6(4)
                ITABTT5B-FPEND1+0(2)
                ITABTT5B-FPEND1+3(2) INTO ITABTT5B-FPEND.
    IF ITABTT5B-PERNR1 NE SPACE.
        APPEND ITABTT5B.
    ENDIF.
      ENDLOOP.
    ENDFORM.
          FORM APPEND                                                   *
    FORM APPEND.
      LOOP AT ITABTT5B.
        SELECT SINGLE * FROM PA0002 WHERE PERID =  ITABTT5B-PERNR1.
       IF SY-SUBRC NE 0.
          WRITE :/ 'No employee with SSN:',  ITABTT5B-PERNR.
       ELSE.
        T558B-PERNR =  PA0002-PERNR . "  itabtt5b-pernr.
        T558B-SEQNR =  ITABTT5B-SEQNR .
        T558B-PAYTY =  ITABTT5B-PAYTY .
        T558B-PAYID =  ITABTT5B-PAYID.
        T558B-PAYDT =  ITABTT5B-PAYDT .
        T558B-PERMO =  ITABTT5B-PERMO .
        T558B-PABRJ =  ITABTT5B-PABRJ .
        T558B-PABRP =  ITABTT5B-PABRP .
        T558B-FPBEG =  ITABTT5B-FPBEG .
        T558B-FPEND =  ITABTT5B-FPEND .
        IF T558B-PERNR NE '0'.
        INSERT  T558B.
        ENDIF.
        IF SY-SUBRC NE 0.
          WRITE:/ 'unable to insert into table t558b'.
          WRITE T558B-PERNR.
          CONTINUE.
        ENDIF.
        ENDIF.   "select on pa0002 for ssn
      ENDLOOP.
    ENDFORM.
          FORM CHECK_ERROR                                              *
    -->  ERR_CD                                                        *
    -->  STAGE                                                         *
    FORM CHECK_ERROR USING ERR_CD STAGE.
      CASE ERR_CD.
        WHEN 0.
        WHEN OTHERS.
          WRITE:/ 'Error in the process ', STAGE, '. Error -', ERR_CD.
          STOP.
      ENDCASE.
    ENDFORM.
    Regards
    Subramanian

  • Urgent: ORA-04030 from Routing Conversion Validation Program

    Hi, we are running a data conversion program for Oracle Applications which works in the following logic
    1. There is a loader program which uses SQLLoader to load 6.6L records from flat files to custom staging table
    2. There is a Validation program which validates (for business requirements) records available in the custom staging table. Based on the validation results the program updates the Status field (a column of the table) to ERROR or SUCCESS. This program uses pl/sql table types with bulk insert and bulk update. While we run the program for less number of records it works fine, but when the volume of data is high (6.6L) we get the following exception:
    4030ORA-04030: out of process memory when trying to allocate 64544 bytes (sort subheap,sort key)
    As an work around we have used "dbms_session.free_unused_user_memory;" statement after every plsql table.DELETE call. But still we get the issue. Can anyone suggest us whats going wrong? If we use of Global Temp Table in place of pl/sql table will it help?
    Thanks /Santanu

    Hi,
    Did you try the suggested solutions in (Note: 233869.1 - Diagnosing and Resolving ORA-4030 errors) and see if it helps?
    Regards,
    Hussein

  • Xmonad and pidgin conversation windows

    Hi
    Not sure if this is a Pidgin related problem, but I'm trying to get urgencyhook to work with new conversation windows in Pidgin - it doesn't trigger an urgent before I focus the conversation window and send a new message (from another workspace.. text based MSN client).
    So basicly this is what's happening..
    I write "Open new window please.." and a new conversation window is opened on workspace "im" - if I go to the "im" workspace and focus the conversation window, then go back to workspace 3 "code", and type another message.. I receive the urgent notification.
    Anyone had this problem? I would love it to notify when opening a new conversation window. Using the "Message Notification" plugin for Pidgin.

    Incredibly fast.. this post is already on Google hehe.
    Ok, so.. I edited the notify plugin (Message Notification), in src/src/pidgin-2.7.0/pidgin/plugins/ to print a debug message whenever a conersation window was opened, and it does:
    (17:47:30) gtkspell: Failed to setup GtkSpell: enchant error for language: en_US.UTF-8
    (17:47:30) gtkconv: setting active conversation on toolbar 0x983b110
    (17:47:30) gtkconv: setting active conversation on toolbar 0x983b110
    (17:47:30) prefs: /pidgin/conversations/toolbar/wide changed, scheduling save.
    (17:47:31) notify: ***** CONVERSATION CREATED *****
    (17:47:31) prefs: /pidgin/conversations/im/y changed, scheduling save.
    static void
    conv_created(PurpleConversation *conv)
    purple_conversation_set_data(conv, "notify-message-count",
    GINT_TO_POINTER(0));
    purple_debug_misc("notify", "***** CONVERSATION CREATED *****\n");
    /* always attach the signals, notify() will take care of conversation
    * type checking */
    attach_signals(conv);
    Uhm, so.. it should notify, and it's being triggered. The problem must lie somewhere else.

  • Urgent: ORA-04030 from PL/SQL code

    Hi, we are running a data conversion program for Oracle Applications which works in the following logic
    1. There is a loader program which uses SQLLoader to load 6.6L records from flat files to custom staging table
    2. There is a Validation program which validates (for business requirements) records available in the custom staging table. Based on the validation results the program updates the Status field (a column of the table) to ERROR or SUCCESS. This program uses pl/sql table types with bulk insert and bulk update. While we run the program for less number of records it works fine, but when the volume of data is high (6.6L) we get the following exception:
    ORA-04030 (out of process memory when trying to allocate ... bytes).
    As an work around we have used "dbms_session.free_unused_user_memory;" statement after every plsql table.DELETE call. But still we get the issue. Can anyone suggest us whats going wrong? If we use of Global Temp Table in place of pl/sql table will it help?
    Thanks /Santanu

    Duplicate Thread
    Urgent: ORA-04030 from Routing Conversion Validation Program

  • PSE 12 won't convert my PSE11 catalog.

    It keeps coming back with an 'unsuccesful' message. I tried the tips in the çommon issues converting a catalog' on the forum ( repaired catalog/ auto-analyse off etc.)
    but it doesn't help. 
    What can i do next?
    Annemiek

    Work through this help article - Photoshop Elements catalog conversion failure. The log file usually gives you enough detail. For example, my conversion from 12 to 13 failed and the log correctly identified that I had two identically named slide shows in my catalog. Removing one from the v12 catalog allowed the conversion to complete (quite why v12 let me create two identically named items in the first place is not explained ).
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • HT1414 How do I email chat history in whatsapp?

    Hi all, I have noticed there is a function of email chat history in whatsapp and now I have urgent need for saving the conversation. However, no matter how many times i tried to send it from my phone, there's nothing in my email. Please help! Thanks so much!

    Ask whatsapp support. That's not an Apple product.

  • Last field not shown in MONI if its empty during content conversion-urgent

    Hi All,
            I have my input structure like
       <RECORDSET>
          <EMPLOYEE>
             <FIRSTNAME>
             <LASTNAME>
             <PHONENUMBER>
          </EMPLOYEE>
       </RECORDSET>
           I have given my sender Conversion parameters like
       Employee.fieldSeparator=*
       Employee.endSeparator='nl'
       Employee.fieldNames=FIRSTNAME,LASTNAME,PHONENUMBER
    It is working fine.But if the value is empty for any of the field it is showing up with empty tag in MONI but for the Last field i.e.,PHONENUMBER if the value is empty the tag is not being shown in MONI. Please help me in this issue.It is very urgent.

    Hi Dinakar,
    I haven't tried but u can check these parameters and give it a try
    <b>NameA.missingLastfields</b>
    If the inbound structure has less fields than specified in the configuration then the XML outbound structure is created as follows:
    &#9675;       ignore
    Outbound structure only contains the fields in the inbound structure
    &#9675;       add
    Outbound structure contains all fields from the configuration; the fields missing in the inbound structure are empty.
    &#9675;       error
    Conversion is terminated due to the incomplete inbound structure. An error message is displayed.
    &#9679; <b>     NameA.additionalLastFields</b>
    If the inbound structure has more fields than specified in the configuration then the XML outbound structure is created as follows:
    &#9675;       ignore
    Outbound structure only contains the fields in the inbound structure
    &#9675;       error
    Conversion is terminated due to the incomplete inbound structure. An error message is displayed.
    The default value is ignore. If you have defined the NameA.fieldFixedLengths parameter, the default value is error.
    <b>NameA.lastFieldsOptional</b> (obsolete)
    You use this parameter to specify whether the last fields can be omitted (YES) or not (NO) in a comma-separated structure.
    If you do not make an entry, the default value is NO.
    Check for details:
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/frameset.htm
    Sachin

  • Need help urgently with conversion of tiff images(.odm) to pdf files...

    Hi Friends!!
    Currently we are working on a project which involves conversion of tiff image files to Pdf files. We are able to convert .tif files to .pdf files.(We are using iText libraries for this..)
    But the only problem we are facing is ---
    We have some .odm files which are multipage tiff files. But we are unable to convert them into .pdf files.
    Note:- Please note .odm is a proprietary extension given by Optix Document Management and Workflow Systems. We figured out that .odm works as a collection of .tif images.
    I searched a lot on the net but couldn't find any help, so, if anyone has any idea of how to go about doing this please let me know...
    Please email any suggestions to [email protected]
    Thanks in advance for your help,
    Rita

    I'm afraid I can't help much with your problem, but I think I can offer some advice on how to get better, faster answers here at this forum:
    First, don't flag your question as urgent, even if it is for you. Claiming urgency is very likely to be counter-productive: most forum regulars will simply ignore such messages as rude and selfish attempts to elicit immediate and special attention.
    Besides, unless the Symbionese Liberation Army is about to chase you over the edge of a cliff, your problem probably isn't as urgent as you think. :o)
    Second, don't ask people to reply by private email. Most Forum regulars believe solving problems should be a public, transparent process during which a first try at an answer can and should be corrected if someone more knowledgeable notices that it is incomplete or incorrect. Also, they get some of their reward for being respondents from being seen to be competent and knowledgeable by their peers (not to mention the possibility of collecting some of those precious Duke Dollars).
    Good luck!

  • Currency Conversion using RRC1-Urgent!!

    I have a requirement where I need to create a new currency conversion type. The query displays invoices posted in a particular period and their value in USD. The conversion rate gets posted somewhere in the middle of the period.The conversion happens such that the invoices posted before the date on which the rate was posted pick the previous period's rate, which those posted after that date use the new rate.
    Business requires all invoices falling in a period to use the rate posted in that period and to use the previous month's rate only when the new rate is not available. Can someone let me know what variable time ref. I am supposed to use to acheive this.Any kind of response will be greatly appreciated as this is pretty urgent.
    Thanks
    Akhila.

    Hi Akhila,
    I did not want to say, that the currency rates have to be maintained at a certain date. What I wanted to know is, if the <b>validity date</b> could be influenced as this would be the simpliest solution.
    Nevertheless, what you need is a currency conversion type, that has a variable time reference and is based on 0CALDAY (or another appropriate time InfoObject). Check the period definiton for the time reference. Maybe, "End Month" (respectively "End of Period", ...) could solve the problem. As you probably know, all this has to be done in transaction RRC2.
    If this does not help, it could be useful to describe the currency conversion type's definition as well as a description what validity date is stored in table TCURR.
    Kind regards,
    Stefan

  • Procedure to restart cancelled BDLS (logical system conversion) !! Urgent

    Hello Experts,
    I need immediate help. I started the BDLS (logical system name conversion) and it was running for about 3 days. It was about 70% complete. But because the users could not afford downtime, I cancelled the BDLS job. When I tried to restart BDLS later, it is giving an error "Logical system name already exists". Kindly note that we are on R3 4.6C environment with CRM 4.0. The BDLS conversion is on R3 4.6C QA which was refreshed from R3 4.6C prod.
    My question is
    1- Is there any way to restart BDLS on R3 4.6C? If so, what is the procedure?
    2- The BDLS was 70% complete, before it was cancelled. So it created a new logical system name. Is it possible to delete this new logical system name without any problems?
    3- Because BDLS converted 70% of the tables from old logical system name to new logical system name. There might be data inconsistency.
    3a- Is there a way to reset all the converted tables to old logical system name?
    3b- Is there a report or program or a procedure to reset the BDLS?
    4- Will this state of having 70% of tables with new logical system name and 30% of tables having old logical system name create any problems for the data transfers and for the business?
    Kindly help me in this regard as this is a very urgent issue. Points to be awarded for any kind of small help.

    Thanks a ton Srikishan. I will do the same as you have said.
    A couple of more questions.
    1- Do I have to start this immediately now, in the morning hours, asking all the users to get disconnected or schedule it later, during the night time or on the weekend.
    Will this current state of having 70% of tables with new logical system name and 30% of tables having old logical system name create any problems for the business?
    2- If this there a way ( a program, a procedure) to reset changes done by BDLS?
    Kindly note that due to the database being large, BDLS is taking 3 days. So I cannot do this during the week days (during business hours), I will have to reschedule this during the weekend.
    Please let me know. Thanks.

  • Urgent : Timezone conversion issue

    Hi,
    I am having an issue in timezone conversion.Im trying to convert a date type value to server timzone before insert into table. Im writing the conversion code in validateEntity(). Im using OANLSServices methods for conversion.Since i have to pass java.util.Date to this convertTimezone() as first parameter(date to be converted),im converting the reqd date which is in oracle Date type to java util Date type. Function is returing java.util.date type, which is again converted to oracle Date type. then im passing this value to the setMethod, ie., setJoiningDate(Date ) in my case.
    the code is compiled with 0 errors. But wen i run the page and after entering date value and click save button , its throwing some exception like "oracle.jbo.ValidationException: JBO-28200: Validation threshold limit reached. Invalid Entities still in cache"
    and in the debug console, this code in the validateEntity() is executed 10 times. First time it is converting the date time value to date only format, then same this is executed 9 more times. Can anyone help to resolve this issue? Its very urgent.
    Thanks
    Harsha

    Harsha,
    Use this code and try again...!
    oracle.jbo.domain.Date join = getJoiningDate();
    // to convert oracle Date to Java util Date
    java.sql.Date joinSql =(java.sql.Date)join.dateValue();
    java.util.Date jdateUtil =
    getOADBTransaction().getOANLSServices().convertTimezone(joinSql,
    getOADBTransaction().getOANLSServices().getUserTimeZoneCode(),
    getOADBTransaction().getOANLSServices().getServerTimeZoneCode());
    // to convert back to oracle Date
    java.sql.Date jdateSql = new java.sql.Date(jdateUtil.getTime());
    oracle.jbo.domain.Date jdate = new oracle.jbo.domain.Date(jdateSql);
    setJoiningDate(jdate);
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • URGENT :::: Prepared Statement : Invalid Conversion Error

    Hi,
    I have prepared statement to update a database record. It is working fine but sometime it throws follow. SQLException. I checked the data I'm passing to the prepared statement. Everything works fine on the desktop but sometime it throws the foolow. exception on the websphere server.
    Error = SQL ERROR -99999 [IBM][CLI Driver] CLI0102E Invalid conversion. SQLSTATE=07006 In Method = performBulkOperation Of Class = com.bbh.actionworld.bulksql.BulkProcessing
    Its an urgent problem. Could you please help me ?
    thanks in advance.

    Hi
    I am using a prepared statement to insert records into an RDBMS. I am using JDK 1.4.1. I use setTime to set the date fields.
    My statement is
    pstmtAddFC.setTime(15, Time.valueOf("00:00:00"),
    Funcs.getCalendar(mydate));
    Where getCalendar sets the calandar to the date specified in mydate.
    I am using the JDBC:ODBC driver to connect to the database.
    This works fine with Oracle but gives
    java.SQL.Exception: [IBM][CLI Driver] CLI0102E Invalid Conversion. SQL STATE =07006
    Any suggestions? Thanks
    Regards
    Lakshmi

Maybe you are looking for

  • Oracle EPM 11.1.1: Business Rules issue

    Hi All, I have installed Oracle EPM 11.1.1 and I have created a planning application. However when I logon to Analytical Administration console and try to create a business rule I am facing the following issue: 1. When I try to select Planning Applic

  • Is there any way I can use photoshop on 2 computers?

    I use photoshop cs6 on my imac. but I recently got a laptop. I would like to be able to use it on both. How can I?

  • Original File transfer from G4 to new G5

    About to buy G5 20" this week - Apple Store says they can do file transfer from my imac G4 to new G5 for me at time of purchase, but cannot transfer any 3rd party apps (Photoshop, Ill, DreamW, Acrobat, Word, etc.). However in users manual it looks li

  • Spry Slideshow Error

    I am using Dreamweaver CS5.5 from the 5.5 Master Collection This has been addressed before, but I didn't quite understand the fix (and it seemed like a lot of other people didn't as well).  So I am re-posting this question. I am using a Spry Slidesho

  • Creative Rhomba 128Mb prob

    Hi i had almost the same problem last time i posted on this forum... My MP3 Creative Rhomba 28Mb is not recognized by the PC. It CAN see other things that uses the same USB so it's not the USB thats causing the problem. This is what it says when i st