Number Oriented VS Name Oriented - Report .tdr

Hello everyone,
Me and my colleagues have an issue in generating Diadem .tdr reports.
Our script does this sequence of operations:
1)File load
2)Channel operations
3)File save (TDM)
4)Report save (TDR)
The problem is: after the computations, if I load the TDM and then the TDR, very often the curves are in wrong order.
For example: in the report number one I should have, for channel 10SILL****00AC**, in the first YAxis the acceleration, in the second the velocity, in the third the displacement.
Sometimes I find in the first YAxis the displacement, in the second the acceleration, and maybe in the third I find velocity from another channel.
I have tried to use both PicDefByIdent=0 and PicDefByIdent=1 to switch from number-oriented to name-oriented mode, but it doesn't work the same.
Is there a way to force diadem to load always the same channel in the same curve?
Thanks in advance to NI team.
Solved!
Go to Solution.

Many thanks Philip,
now I can switch between the two modes without errors.
My approach is different however:
Call GraphObjOpen("2DAxis1")
                        Call GraphObjNew("2D-Curve","Curve"+str(CurveCount))  'Creates a new curve
                        Call GraphObjOpen("Curve"+str(CurveCount))            'Opens curve object
                          D2CAxisPairNo = 1
                          D2CCHNY          =CNo(Test_Number_01_vect(cnt)+"_1"+str(Dummy_Pos_)+"HEAD0000"+ISO_Dummy_Type_+"ACXA")    'Defines y-channel
                          D2CURVECOLOR     ="red"
                          D2CurveLineType = CurveType(cnt)
                        Call GraphObjClose("Curve"+str(CurveCount))
              Call GraphObjClose("2DAxis1")
I've decided to use only the channel number, in number-oriented mode.
And before saving the .tdm i call a chnrenumber(), so that when I reload it in a second moment, the number and the order of the channels remains the same and I can open the .TDR, having always the correct curves represented.
My problem infact was that when I reloaded the TDM and the TDR, in name oriented mode, Diadem put wrong curves in the graphs. Now, with number oriented mode, writing only channel number in the graphs and saving after channel renumbering, every time I reload TDM and TDR I find the correct curves.

Similar Messages

  • Display Asset super number & asset super name field in AR02 report

    Hi Expert,
    Customer requirement is to display asset super number & asset super name field in AR02 report. When we execute the Asset History Sheet report, we are not able to display these to field (Asset super number & asset super name). If any option available regarding this to add these field in layout, please assist.
    You can see in below screen shot
    AR02
    Thanks & Regards
    Rajesh

    Hi Raj,
    You can create your own sorting varaint which you choose at the time of report execution. Currently you have chosen 0001.
    Define your own varaint In OAVI and define the field you reuire for output select in AR02 , it will show the field in layout.
    Hope it would help you.
    Regards
    Pankaj P

  • Crystal Reports Server 2008 - CMC Login Error - Bad Port Number in CMS Name

    This post is similar to previous post: Error: Bad port number in CMS name fe80:0:0:0:152f:77a:382d:6d8e:6400 null - which remains unanswered.
    In this case, I have installed a full licensed version of CRS 2008 on Windows Server 2008. I'm using Tomcat 5.5 and IIS 7.0.
    The error we get when trying to log into the server using SERVERNAME:6400 (the default), is:
    u2022Error: Bad port number in CMS name fe80:0:0:0:6509:bde9:93bf:f9de:6400 null
    We neglected to install IIS prior to installing CRS, so when we realized our error, we installed IIS and then uninstalled/reinstalled CRS 2008.
    Prior to reinstalling CRS, the CMC allowed us to login with no problem, which leads me to suspect that CRS may not have uninstalled cleanly.
    Can anyone help me to understand what causes this error, and what steps can be taken to resolve it?

    Hi,
    Try to check the port number 6400 is assigned properly to CMS. Please make sure that its not assigned to any other Products.
    Thanks,
    SK.

  • Names in report painter

    Hi,
    Can anyone explain where & how the vendor name is mapped in report painter?
    I want to derive the vendor name in report S_AC0_52000888 (report:8A4-0012) from Name 3 & Name 4 which is updated in Vendor master.
    I have checked this report it has been given the characterisitic as Vendor with variable from table GLPCOP-LIFNR (Account Number of Vendor or Cr)
    I am surprised to see that it has been given vendor account number field but still report output is displayed with vendor name (Name1).
    Regards
    SMP

    Hi ,
    Please Execute the Transacrion S_AC0_52000888  and then  see below Screen
    Now click on lead column and see below screen
    Many Thanks

  • View Customer number field in the FBL3N report

    Hi All,
    Is it possible to view the Customer Number Field in the FBL3N report??
    Please revert asap.
    Rgds,
    Kunal Vichare
    Moderator: Please, search SDN

    Hello
    Please find the process for adding additional field in FBL3N
    SPRO->FA->GLA->GL->Line Item->Display line item with ALV->Define Special Fields for finding and sort data
    Added the additional field for Customer account number.
    Table   Field name   Field lable
    BSEG   KUNNR         Customer
    Thanks
    Kameshwar Rao

  • How many number of times a particular report was executed

    Hi..My requirement is to find how many number of times a report/tcode was executed in a particular period of time.I tried using STAD,STAT AND ST03 ..but i am not able to find how many number of times the particular report was executed ..is there any other tcode or table or FM ..that would solve this problem..its bti urgent..wud reward points for all useful answers could u let me know under what name or field int eh out put this particular info that i am looking for wud be displayed?

    Hi,
    The following code i found from this forum, may this will help you.
    * internal tables for use counter
    data: begin of list occurs 5.
            include structure sapwlserv.
    data: end of list.
    data: begin of applicat occurs 0.
            include structure sapwlustcx.
    data: end of applicat.
    data: begin of applica_ occurs 0.
            include structure sapwlustcx.
    data: end of applica_.
    data: begin of applicau occurs 0,
            entry_id like sapwlustcx-entry_id,
            account  like sapwlustcx-account,
            count    like sapwlustcx-count,
        : end of applicau.
    data: wa_applicau like applicau.
    *&      Form  MONI
    form moni.
      data: l_host like  sapwlserv-hostshort.
      m_start = p_usedt.
    *** get server
      call function 'SAPWL_SERVLIST_GET_LIST'
           tables
                list = list.
      do.
        loop at list.
    *** loop on server
          check not list-instshort is initial.
          l_host = list-instshort.
    *** get statistics per month and server
          perform workload using m_start l_host.
        endloop.
        add 31 to m_start.
        if m_start > sy-datum.
          exit.
        endif.
      enddo.
      sort applica_ by entry_id.
      sort applicau by entry_id count descending.
    endform.                               " MONI
    *&      Form  WORKLOAD
    form workload using    p_start like sy-datum
                             p_host  like  sapwlserv-hostshort.
      refresh: applica_.
    *** read application statistic from MONI
      call function 'SAPWL_WORKLOAD_GET_STATISTIC'
           exporting
                periodtype                 = 'M'
                hostid                     = p_host
                startdate                  = p_start
                only_application_statistic = 'X'
           tables
                application_statistic      = applica_
           exceptions
                unknown_periodtype         = 1
                no_data_found              = 2
                others                     = 3.
      sort applica_ by entry_id account.
      loop at applica_  where entry_id(1) ge 'Y'.             "#EC PORTABLE
        clear wa_applicau-entry_id.
        wa_applicau-entry_id(25) = applica_-entry_id.
        wa_applicau-account      = applica_-account.
        wa_applicau-count        = applica_-count.
        collect wa_applicau into applicau.
      endloop.
      sort applicau by entry_id count descending.
      applica_-ttype    = space.
      applica_-account  = space.
      modify applica_ transporting ttype account
             where ttype ne space.
    *** collect only enhancements statistic
      if p_temp = 'X'.
        loop at applica_.
          applica_-entry_id+25(48) = space.
          collect applica_ into applicat.
        endloop.
      else.
        loop at applica_ where entry_id(1) ge 'Y'.            "#EC PORTABLE
          applica_-entry_id+25(48) = space.
          collect applica_ into applicat.
        endloop.
      endif.
    endform.                               " WORKLOAD
    aRs
    Points are always welcome

  • Invalid serial number and product name in g50

    I just buy my laptop this last december and in bios it says that i had an invalid serial number and product name
    what should i do to make it valid?
    my friend said that it has an effect in chipsets and it bluescreened 4 times when win7 is the installed os and twice in win8.1
    how to fix this?
    Thanks in Advance

    hi joedcomandante,
    Welcome to the Lenovo Forums.
    Just to verify, did you get the Invalid Serial Number and Product Name issue out of the box or you got this after you sent the unit for service?
    Usually, when the motherboard is replaced, the Serial Number and Product Name is flashed into the BIOS and the EC (Embedded Controller) is updated. If you got the issue after sending the unit for service, I recommend you contact lenovo and report your findings as these information needs to be reflashed into the system.
    As for the BSOD, were you able to get the exact error code?
    Bug Check Code Reference
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Discoverer Report: How to find Business Area name from Report Name.

    Hi
    I opened a report in Disco Desktop 4 -> Resonsibiolity --> Report Name.
    So I know Report name but don’t know which Business Area it belongs to.
    How to find Business Area Name from Report Name?
    Cheers
    Vijay

    Hi,
    There is no relationship between reports and business areas. Each report can be built from many folders. Each folder can be in many business areas.
    However you can try the following SQL which may give you the result you want for an v5 EUL. You will have to modify for Discoverer 4 EUL:
    select distinct doc_name, obj.obj_name folder_name, bas.ba_name
    from eul_us.eul5_documents doc
    , eul_us.eul5_elem_xrefs xref
    , eul_us.eul5_expressions exp
    , eul_us.eul5_objs obj
    , eul_us.eul5_ba_obj_links bol
    , eul_us.eul5_bas bas
    where xref.ex_from_id = doc.doc_id
    and doc.doc_name = &your_report
    and xref.ex_to_id = exp.exp_id
    and obj.obj_id = exp.it_obj_id
    and bol.bol_obj_id = obj.obj_id
    and bas.ba_id = bol.bol_ba_id
    Rod West

  • Why can't I see usernames and/or mahcine names in reports?

    We are demoing the 650 web content filter, and really like them for the blocking, but for some reason we aren't seeing the usernames or machine names in reports, only IP addresses of the users machines. Did I set this up wrong? I set it for authentication using ntlmssp, but I dont know if it is working correctly... Can someone help please? Thanks! John Truxton

    John,
    If the WSA knows the username, it will be logged in the reports. It's possible that you are matching rules that do not require authentication or perhaps the authentication isn't working correctly?
    Check the access logs to verify that the usernames are present.
    If authentication isn't working or if the names are present in the access logs, it's recommended that you contact support for a deeper analysis of the issue.

  • How to find name of report if I know name of instance and location of instance in Output File Store

    Hello all,
    can somebody help me to find name of the report if I know name of report instance and also location of instance in Output File Store. It should be done via Query Builder.
    It is ...rpt file as output from Crystal Reports. I tried few commands in Query Builder but usually they finished with timeout error.
    Could you help me and send specific command? Or way how to change timeout of Query Builder?
    Thanks.
    matus

    Hello all,
    We finally found solution.
    We knew that file is located on path .../Output/a_145/009/002/133521/~ce10c.....9332.rtf
    This file has more than 2 GB. We tried to find which report is related and provide necessary actions.
    As I mentioned we still failed due to timeout error - There was an error retrieving data from the server: CMS operation timed out after 9 minutes.
    So we tried to use our testing environment. We started there QueryBuilder and there we successfully tested that we found details about files from FileStore /like Name of the report in Launch Pad, CUID, ...
    SELECT SI_NAME, SI_CUID, SI_FILES FROM CI_INFOOBJECTS WHERE SI_FILES.SI_PATH = 'frs://Input/a_148/020/000/5268/'
    or
    SELECT * FROM CI_INFOOBJECTS WHERE SI_FILES.SI_PATH = 'frs://Input/ a_148/020/000/5268/'
    Best regards,
    matus

  • How to add increment number to file name properly

    Hi, all:
    I have a simple question. As shown in the attached code, I need to add an increment number to file name and save the file. The problem is, if you run the code and put something like ".dat" in the extension name, you will see a blank space between the number and the dot in the file name. What should I do to eliminate the blank space? I can't specify the format of the file name since the file name would vary from case to case.
    Thanks a lot for any suggestion and correction in advance.
    Attachments:
    temp.vi ‏11 KB

    Hi,
    Please take a look to the attached VI. I hope that I understood what you really want.
    I've replaced the Vi: Format into string with Number to Decimal String plus a Concatenate String. 
    Now, this is working for me, I don't get a space anymore.  If something is wrong, please let me know.
    Regards,
    Paul
    Attachments:
    temp_back.vi ‏11 KB

  • Display the total number of rows for the report in OBIEE 11g

    Hi, In obiee 11g, the pagination will be 1-25. Is there any possiblity in obiee to show the total rows count next to pagination. Ex: if the result contains 120 rows. it should display after the pagination
    Records 1-25. Total of Records : 120
    Is there any way we can display the total number of rows for the report.
    Kindly help me.. Its very urgent requirement.
    MAny Thank in advacne

    Check this http://obiee100.blogspot.com/2011/07/display-total-number-of-records-in.html
    and
    http://docs.oracle.com/cd/E28280_01/bi.1111/e10544/appsql.htm#CHDCDIDA
    You have to go something like as suggested in previous link.
    Mark as correct/helpful

  • BP number in GL Line Item Report

    Hello Gurus,
    Is there a way to view BP number in GL Line Item Report FBL3N ? I went through the dynamic selection, but didn't see any option for BP. My client wants to see BP info in certain GL accounts without referring back to treasury transactions.
    Thanks in advance,
    Pal

    Hi,
    Unfortunately, there is no standard linkage to BP in FI document postings.  You can see the customer number if there is one and then link it to the BP.  But in case you want to see it at the G/L item level, then 1 thing you can do is have a custom code through BADI_TRM_ACC and fill the BP number to assignment or reference field.  This way you can check it in the accounting document item.
    Regards,
    Ravi

  • How to assign a unique number to the name column of a document set?

    How can I assign a unique number to the name column of a document set preferably with workflows? (Perhaps this number can increase by one each time a new document set is created)
    When a user attempts to create a new document set, this unique number should be already there as the name of the document set.
    (However, It seems that access and edit the Name column is more tricky than the other columns)

    Hi,
    To use document ID instead of Name column, you can
    Modify View and hide Name column. Then make Document ID to display at the left column.
    By default, document ID will be assigned to both document items and document sets. You may
    experience delay before you can see document ID assigned to existing document items and document sets because the scheduled document ID assignment timer jobs haven't finished yet.
    Miles LI TechNet Community Support

  • Specific part number of decription/name of adapter required to use my iPad Air to my PNY High Performance 64GB High Speed microSDXC Class 10 UHS-1 up to 40MB/sec Flash Memory Card -P-SDUX64U1-GE-A

    Specific part number or decription/name of adapter required to use my iPad Air to a PNY High Performance 64GB High Speed microSDXC Class 10 UHS-1 up to 40MB/sec Flash Memory Card -P-SDUX64U1-GE-A

    I think you need this.

Maybe you are looking for

  • How to get rid of an Apple ID that does not belong to me

    I purchased a 6 plus.  I know and frequently use my apple ID and password as well as my I cloud ID and password.  I set up my new phone with no problem but I noticed something strange.  I kept getting a pop up with an apple ID prefilled waiting for a

  • Payment Advise note program RFFOAVIS

    Hi How do i debug payment advice note program to see if spool is produced? Thanks Rendani

  • Any information of releasing E-business Suite R13 in near future?

    Can any body give me information about releasing E-business Suite R13 in near future? Regards, Subir Paul India

  • Latest nvidia drive upgrade crashes gnome-shell

    Hi, After latest nvidia upgrade: [2015-04-22 22:25] [PACMAN] Running 'pacman -Syu' [2015-04-22 22:25] [PACMAN] synchronizing package lists [2015-04-22 22:25] [PACMAN] starting full system upgrade [2015-04-22 22:26] [ALPM] transaction started [2015-04

  • Create a date filter..

    I'm trying to create a report with two filters: Year and Date to... So the user can select Year: 2008 Date to: 2008-08-01 And in the report must be filter by date between first day of the year filter and Date to... So I will add a filter view and for