Encrypt the data and make the model unusable

hi, having to distribute the 3d animations made ​​with sap, I would like to be sure that the data contained in the CAD models exported (. rh. vds pdf 3d) can not be used to reconstruct the model. How can I encrypt the data and make the model unusable?
thanks

Max,
There are other forms of file-based protection offered for mobile devices (SAP Afaria) and by other software vendors to secure the end deliverable (e.g. Adobe for 3D PDFs).   In addition, SAP's partner NextLabs offers a very comprehensive solution to automate the security of your sensitive information and even provide expiration dating.
In addition to file protection, 3D Visual Enterprise includes a function to obfuscate the geometry itself thereby making reverse engineering almost impossible.   The "Randomize Objects" function can be used to randomly skew the vertices of the model by small amounts.  It keeps the normals correct, however, so that the object still looks smooth. This in turn makes precise measurements extremely difficult.
Regards,
Ken

Similar Messages

  • Combine the output and make the sum by article

    In our company we have a lot of small orders (the customer orders every day the same articles) ->
    we make just one bill at the end of the month.
    Most customers don't wont the detail (to much paper) and therefore we have for the bill the possibility to just make the total bill (total per article...).
    so we design the two print program (global bill) and (detail bill) to output RD00,
    when we create a "Credit notes" for such a bill, we will get a  huge amount of paper (output type = BA00) -> so the question was if there was a standard program to combine the output and make the sum by article...
    Thanks.

    A custom print program is what u need, what u can do is create a report program which takes input all the articles ( a range thru selection screen wud do) and then calculate their sum or whatevr according to ur requirement and collate them into an internal table and output a script form thru the report itself, so no need to attach output type and all that.
    кu03B1ятu03B9к

  • Every time I create a new row, I want a certain cell to display the date and time the row was created.  How do I do that?

    =NOW() updates the date and time continuously, I don't want to do that.  I just want the date and time in that cell to stay the same after that row is created.  Seems like this would be easy, but I can't figure it out.

    My preferred scheme is a variant of Barry's proposal 2
    create the new row
    select the cell in which you want to insert the date
    type the shortcut dedicated to one of the four "Insert date" services delivered with WordService from Devon Technologies (FREE)
    On a French keyboard, only one of the default shortcuts apply : cmd % which inserts the long date.
    But we may edit these shortcuts.
    Yvan KOENIG (VALLAURIS, France) mercredi 6 juillet 2011 15:12:16 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Based on the data Convert the datatype and make the wrong date as NULL

    Hi,
    In the below scenario we are inserting some time related fields in Temp table.But its data type is varchar. Once data loading is finished in the temp table (Data is loading by source team SQOOP and they are unable to load if the source datatype is having
    Date or datetime) we have to alter the column datatypes. somehow, some character data in inserted in date columns (look at into 3rd insert statement). while altering the table it is failing. Can we do any alternative for this (Means if any varchar data that
    is non convertible to date can we make as null)
    INSERT INTO ##TEMP_TEST
    SELECT '2014-09-30','2017-10-06','Nov  6 2014  6:11AM','Nov  6 2014  6:11AM'
    UNION SELECT '2014-09-29','2017-10-06','Nov  6 2014  6:11AM','Nov  6 2014  6:11AM'
    UNION SELECT '2014-09-28','2017-10-06','Nov  6 2014  6:11AM','Nov  6 2014  6:11AM'
    GO
    INSERT INTO ##TEMP_TEST SELECT NULL,NULL,NULL,NULL 
    GO
    INSERT INTO ##TEMP_TEST SELECT 'A','B','C','D'
    go
    ALTER TABLE ##TEMP_TEST ALTER COLUMN CAREPACK_ST_DT DATE
    GO
    ALTER TABLE ##TEMP_TEST ALTER COLUMN CAREPACK_END_DT DATE
    GO
    ALTER TABLE ##TEMP_TEST ALTER COLUMN INS_GMT_TS DATETIME2
    GO
    ALTER TABLE ##TEMP_TEST ALTER COLUMN UPD_GMT_TS DATETIME2
    GO
    Please let me know.
    Thanks and Regards Rajesh

    Hi ,
    We are using SQL Server 2008 SP3. 
    Thanks and Regards Rajesh
    Then what you can do is to run a set of updates as below
    UPDATE t
    SET CAREPACK_ST_DT = NULL
    FROM ##TEMP_TEST t
    WHERE ISDATE(CAREPACK_ST_DT) = 0
    AND LEN(CAREPACK_ST_DT) < 8
    UPDATE t
    SET CAREPACK_END_DT = NULL
    FROM ##TEMP_TEST t
    WHERE ISDATE(CAREPACK_END_DT) = 0
    AND LEN(CAREPACK_END_DT) < 8
    UPDATE t
    SET INS_GMT_TS = NULL
    FROM ##TEMP_TEST t
    WHERE ISDATE(INS_GMT_TS) = 0
    AND LEN(INS_GMT_TS) < 8
    UPDATE t
    SET UPD_GMT_TS = NULL
    FROM ##TEMP_TEST t
    WHERE ISDATE(UPD_GMT_TS) = 0
    AND LEN(UPD_GMT_TS) < 8
    And then do the date conversion using ALTER statements
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Comparing the Dates and Exclude the Dates with Blank one in BEx Query

    Hi all,
        I have created the Formula Variables ZFV_DATE1 on ZDATE1, ZFV_DATE2 on ZDATE2,
           Calculated KF ZCKF_Date with 'ZV_DATE1 <  ZV_DATE2' and
           Restricted KF ZRKF_DATE on Key Figure ZCKF_DATE & Characteristic ZDELETE = 'X' to find the Count.
    I should exclude if any ZDATE1 or ZDATE2 is Blank in the report. So I kept ZDATE1 & ZDATE2 with Exclude when it is Blank in Filter Section. It is excluding globally all Blank ZDATE1 & ZDATE2, but the Calculated KF logic 'ZV_DATE1 <  ZV_DATE2' is not working. It has 'ZV_DATE1 > ZV_DATE2' records also. Next I moved ZDATE1 & ZDATE2 to Restricted KF ZRKF_DATE to Exclude the Blank dates and the report doesn't show correct results. How could I get the correct results with 'ZV_DATE1 < ZV_DATE2' and any ZDATE1 or ZDATE2 is not Blank.
    Thanks,
    Venkat.

    In that case, you approach seems to be mor or less correct. Restrcit the report using Filters on ZDATE1 and ZDATE2 not equal to Blank. You have mentioned that you have defined the CKF as 'ZFV_DATE1 < ZFV_DATE2'. i am assuming you have used boolean operator here. In this case it would  result in '1' when the condition is true (i.e, when ZFVDATE2 is greater than ZFVDATE1), else it will result in a '0'. Now, in your report, you should create a condition where you only keep the records where this CKF, ZCKF_Date = 1. This would filter out all the ZCKF=0 records, and hence only thiose records with ZFV_DATE1 < ZFV_DATE2 would be shown.
    Regards,
    Satwik

  • How to Check the date and get the latest date?

    Hi Everyone,
    I've an internal table which holding few records which contain date field. How I can check this internal table by getting the record which contain "latest date" only? Kindly advise. Thank you.
    eg:
    I should only get the record which contain lastest date. (eg: I should picked up Record3)
    Table i_test
    Field 1              Field 2(date)
    Record1            20090322
    Record2            20090101
    Record3            20090601
    Moderator message - Please search before asking and do not ask basic questions - post locked
    Edited by: Rob Burbank on Jun 17, 2009 9:21 AM

    Its easy...sort the internal table using the field i.e. date field in DESCENDING manner
    SORT gt_final BY date_field DESCENDING.
    Read the first entry of the internal table..it will have what you require
    READ gt_final INDEX 1.

  • Copying the data and ignoring the Script logic

    Hi,
    I have some data in Actual category for 2010.APR and I would like to COPY the same
    (through DM) to Budget category with my default script logic file.  When I am trying to
    Do the same it is copying the same data into Budget category, ignoring my script logic
    Actually it should increase the value.
    Can anybody help me in this regard.
    Thanks in adv.
    Raghu B.S.

    The problem it is into script logic.
    When you insert records you are inserting records with category Budget.
    But your default script logic is inserting new recotrds just in case if the input has category Actual.
    So you just to do a correction into your script logic to change the statement
    *WHEN CATEGORY
    *IS "ACTUAL"
    with
    *WHEN CATEGORY
    *IS "BUDGET"
    In this way the default script logic will be executed and after the copy you will have also the records generated by script logic.
    Regards
    Sorin Radulescu
    Edited by: Sorin Radulescu on Aug 5, 2010 2:15 PM

  • How can I get the data and store the data dynamically generated?

    When I entered an order, after the information for the order has been filled in, an order number has been generated dynamically. I want to record this number to my databank.
    The questions are, 1\how can I record the order number? 2\How can I write it back to my databank?
    I noticed Openscript_User_100 had asked the similar question, the post is here,
    Openscript - How to save data to Data bank at runtime
    Openscript - How to save data to Data bank at runtime
    Can Openscript_User_100 or somebody else be more specific on how to do that?
    Can I use the forms.textField.storeAttribute to do that? Where can I find the example for forms.textField.storeAttribute?

    Thanks aamat!
    I tried to look for the orderID in the detail pane HTML, I only have a screen shot in the Detail pane (Is this Detail Pane found in View-Details?) I can see the orderID on the screen shot (there is no other tab Screenshot is the only tab) but I cannot select it and replace it with variable.
    The only place I can select the orderID is in the Java Code,somehow the orderId is recorded there. Please see the code below.
    (I changed"[" to "{" in order to show the code correctly)
    beginStep("{11} Sales Orders (15371) - XXXX Customer", 0);
              forms.captureScreenshot(229);
                   think(8.39);
              forms.textField(230, "//forms:textField{(@name='ORDER_SOLD_TO_0')}")
                        .setFocus();
                   think(0.812);
              forms.window(231, "//forms:window{(@name='ORDER')}").selectMenu(
                        "Tools|Scheduling");
         endStep();
    Can you advise further?
    Edited by: DorothyLi on Dec 15, 2009 11:21 AM

  • Validate the Date and display the message

    Hi,
    Deposit Date:[yyyy/MM/dd]
    <td>
    <t:inputCalendar id="dtTo" required="false" value="#{processApplication.depositDate}"
                renderAsPopup="true" popupTodayString="today" popupWeekString="week"
             renderPopupButtonAsImage="true" popupDateFormat="yyyy/MM/dd" size="12"
             maxlength="10"  forceId="true"  popupButtonStyleClass="calendar"
             title="YYYY/MM/DD"    popupButtonImageUrl="../../images/calendar.gif">
    <f:convertDateTime type="date" pattern="yyyy/MM/dd" /></t:inputCalendar>
                                              </td>
                  <td ><h:message for="dtTo" /></font></td> Incase, when the user selects a date that is way back into the future or some date that is in 1900 ...I want to display a confirm dialog box saying " Are you sure of the date selected ? " .
    If yes..go ahead..if no give him another chance to select the date..
    I tried with having onclick in *<t:inputCalendar>* but it is not getting fired.
    Even if it gets fired, how can I check the condition that the Date entered is not the CurrentDate?
    Is there anyother better way to achieve this?
    Any help is appreciated.
    Thanks.

    <t:inputCalendar id="dtTo" required="false"
          value="#{processApplication.depositDate}" onchange="validatePastDate();"
          renderAsPopup="true" popupTodayString="today" popupWeekString="week"
          renderPopupButtonAsImage="true" popupDateFormat="yyyy/MM/dd" size="12"
          maxlength="10"     forceId="true"      popupButtonStyleClass="calendar"
          title="YYYY/MM/DD"     popupButtonImageUrl="../../images/calendar.gif">
    <f:convertDateTime type="date" pattern="yyyy/MM/dd" /></t:inputCalendar>
    function validatePastDate() {
       var ob = document.getElementById('form1:dtTo'); //not sure what you there
    When I looked in the view source of the page...it is using id="dtTo" as its id.
    Thanks.

  • Store an encrypted numeric value and make the unencrypted value visible to just some users in Apex

    I'm looking for a way to store an encypted numeric value in one field in a table (so that it appears encrypted even to a DBA) and to display the unencypted value in Apex forms and interactive reports for some users but not others.
    Any suggestions as to how I could achieve this?
    Thanks in advance.
    Martin

    Try these documents:
    Using Column Masking to Display Sensitive Columns as NULL Values
    Using VPD in an APEX Application
    Securing Stored Data Using Transparent Data Encryption
    The features you request are Database Features.
    You could use DBMS_CRYPTO for data encryption instead of TDE, but you will have to create a package for your insert,update, deletes along with a view that allows decryption based on v('APP_USER').
    Also, you won't be able to search on that column if you use DBMS_CRYPTO.

  • How can I show the date and time on the pictures in iMovie

    I am trying to make a slide show.  The date and time the pictures were taken are the important information that I would like to show in the slide show.  However, I cannot find the way to do that in iMovie. 

    I am trying to make a slide show.  The date and time the pictures were taken are the important information that I would like to show in the slide show.  However, I cannot find the way to do that in iMovie. 

  • When updating to the latest OS X my wife's Mac Book Pro locked at a grey screen with an apple icon and status bar.  Is there any way to recover the data on the laptop and complete the OS install?

    When my wife's Mac Book Pro was being updated to the latest version of OS X the laptop locked up at a grey screen with the Apple icon and status bar.  Is there any way to recover the data and complete the install?  I have not tried anything yet because of the data issue.  I am not sure which OS X version as I did not install the software.

    Used Macs of every description are always available on Ebay and Craigslist and from a plethora of online used-Mac resellers. Apple sells refurbished late-model Macs at 10-20% discounts with a new-computer warranty and the opportunity to extend the warranty with AppleCare.
    http://store.apple.com/us/browse/home/specialdeals/mac

  • My laptop died last night and the date and time was set for 1/1/2000. I went to change the date and time and cannot. For some reason when i pull up system preferences it will not load date and time but will load other stuff. Please help.

    Last night my laptop died and the time and date was reset. I cannot acess date and time preferences to change it and my laptop is acting really weird. My CD drive is broken so there are no options to put in a cd. Please someone help i need my laptop for school and cannot afford another.

    Many system actions will misbehave, given an inaccurate date. Resetting the NVRAM and / or SMC will not fix it, and if the system has a preposterous date you may not be able to open System Preferences to correct it. This dilemma may or may not be addressed in a future OS X update.
    If you cannot open System Preferences you can reset your system date and time using Terminal.
    Please read everything that follows before proceeding. Write them down if necessary because the effects of setting a preposterous system date are unpredictable.
    Quit System Preferences, force quit if necessary: OS X: How to quit an unresponsive application using Force Quit
    Open Terminal - it is in your Utilities folder and looks like this
    You can find Terminal by using the Finder's Go menu and choosing Utilities, then double-click the Terminal icon.
    At the prompt, you will be typing a command resembling the following:
    sudo date mmddhhnnyyyy
    ... but you must substitute the actual date and time in the command that corresponds to the date format used for your location. In other words if your custom is to use a date like 8 February 2014 then reverse the mm and dd values.
    Substitute numerals in the above command according to the following:
    mm = month
    dd = date
    hh = hour (24 hour format)
    nn = minutes past the hour
    yyyy = year
    Each of those values must be two digits except for the year which can be two or four digits. As an example if the current date and time is February 8, 2014 at 9 PM your command will be the following:
    sudo date 020821002014
    or
    sudo date 0208210014
    Either one will work. If you enter nonsensical values the system will attempt to parse the entry correctly.
    To recover from your inability to use System Preferences to set the date and time, the value entered does not have to be precise, it just has to be approximate.
    Enter that command using the actual time and date for your location and in the appropriate format, then press the Return key. Terminal will ask for your Admin Password - the same one you use when you log in to your Mac. Type it and then press the Return key. What you type will not appear, not even with •••• characters.
    To determine if your change was effective just type the date command and press the Return key. Terminal will reply with the date and time. If it appears correct and in the correct format, you should be able to open System Preferences > Date & Time once again. Selecting the "Set time and date automatically" and choosing an appropriate time server will adjust your Mac's system clock to the precise time.

  • Zip the data and send as an email attachment

    Hi,
    I have a requirement where I want to send the log as an email attachment. The log size is very huge about 20MB. When I try to send this log as an excel attachment through FM SO_DOCUMENT_SEND_API1 its throwing an error related to the attachment size. Is there any way to zip the data and send the zipped attachment?
    Any help is really appreciated.
    Thnaks,
    Rajinikanth G

    which might help you getting the file from the pc or you can change the source path and then send it to the following reciptant
    data method1 like sy-ucomm.
    data g_user like soudnamei1.
    data g_user_data like soudatai1.
    data g_owner like soud-usrnam.
    data g_receipients like soos1 occurs 0 with header line.
    data g_document like sood4 .
    data g_header like sood2.
    data g_folmam like sofm2.
    data g_objcnt like soli occurs 0 with header line.
    data g_objhead like soli occurs 0 with header line.
    data g_objpara  like selc occurs 0 with header line.
    data g_objparb  like soop1 occurs 0 with header line.
    data g_attachments like sood5 occurs 0 with header line.
    data g_references like soxrl occurs 0 with header line.
    data g_authority like sofa-usracc.
    data g_ref_document like sood4.
    data g_new_parent like soodk.
    data: begin of g_files occurs 10 ,
      text(4096) type c,
       end of g_files.
    data : fold_number(12) type c,
           fold_yr(2) type c,
           fold_type(3) type c.
    parameters ws_file(4096) type c default 'c:\debugger.txt'.
    Can me any file fromyour pc ....either xls or word or ppt etc ...
    g_user-sapname = sy-uname.
    call function 'SO_USER_READ_API1'
    exporting
       user                            = g_user
       PREPARE_FOR_FOLDER_ACCESS       = ' '
    importing
       user_data                       = g_user_data
    EXCEPTIONS
       USER_NOT_EXIST                  = 1
       PARAMETER_ERROR                 = 2
       X_ERROR                         = 3
       OTHERS                          = 4
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    fold_type = g_user_data-outboxfol+0(3).
    fold_yr = g_user_data-outboxfol+3(2).
    fold_number =  g_user_data-outboxfol+5(12).
    clear g_files.
    refresh : g_objcnt,
      g_objhead,
      g_objpara,
      g_objparb,
      g_receipients,
      g_attachments,
      g_references,
      g_files.
    method1 = 'SAVE'.
    g_document-foltp  = fold_type.
    g_document-folyr   = fold_yr.
    g_document-folno   = fold_number.
    g_document-objtp   = g_user_data-object_typ.
    *g_document-OBJYR   = '27'.
    *g_document-OBJNO   = '000000002365'.
    *g_document-OBJNAM = 'MESSAGE'.
    g_document-objdes   = 'Manohar testing by program'.
    g_document-folrg   = 'O'.
    *g_document-okcode   = 'CHNG'.
    g_document-objlen = '0'.
    g_document-file_ext = 'TXT'.
    g_header-objdes =  'Manohar testing by program'.
    g_header-file_ext = 'TXT'.
    call function 'SO_DOCUMENT_REPOSITORY_MANAGER'
      exporting
        method             = method1
       office_user        = sy-uname
       ref_document       = g_ref_document
       new_parent         =  g_new_parent
    importing
       authority          =  g_authority
    tables
       objcont            = g_objcnt
       objhead            = g_objhead
       objpara            = g_objpara
       objparb            = g_objparb
       recipients         = g_receipients
       attachments        = g_attachments
       references         = g_references
       files              = g_files
      changing
        document           = g_document
       header_data        = g_header
      FOLMEM_DATA        =
      RECEIVE_DATA       =
    File from the pc to send...
    method1 = 'ATTCREATEFROMPC'.
    g_files-text = ws_file.
    append g_files.
    call function 'SO_DOCUMENT_REPOSITORY_MANAGER'
      exporting
        method             = method1
       office_user        = g_owner
       ref_document       = g_ref_document
       new_parent         =  g_new_parent
    importing
       authority          =  g_authority
    tables
       objcont            = g_objcnt
       objhead            = g_objhead
       objpara            = g_objpara
       objparb            = g_objparb
       recipients         = g_receipients
       attachments        = g_attachments
       references         = g_references
       files              = g_files
      changing
        document           = g_document
       header_data        = g_header
    method1 = 'SEND'.
    g_receipients-recnam = 'MK085'.
    g_receipients-recesc = 'B'.
    g_receipients-sndex = 'X'.
    append  g_receipients.
    call function 'SO_DOCUMENT_REPOSITORY_MANAGER'
      exporting
        method             = method1
       office_user        = g_owner
       ref_document       = g_ref_document
       new_parent         =  g_new_parent
    importing
       authority          =  g_authority
    tables
       objcont            = g_objcnt
       objhead            = g_objhead
       objpara            = g_objpara
       objparb            = g_objparb
       recipients         = g_receipients
       attachments        = g_attachments
       references         = g_references
       files              = g_files
      changing
        document           = g_document
       header_data        = g_header.
    this code might help you

  • HOW DO I SET THE DATE AND TIME ON MY HP OFFICEJET 8600

    just bought the HP officejet 8600 all in one printer, and I cant seem to set the date and time for the fax portion of the printer, please help.

    Set the date and timeOn the control panel, touch the Right Arrow ( ), and then touch Setup ( ).Touch the Down Arrow ( ), and then touch Preferences .Touch Date and Time: , and then touch the Up and Down Arrows ( ) to set the month, day, and year.Touch Done , and then touch the Return Arrow ( ) to return to the Preferences menu.Set the language and country/regionIn the Preferences menu, touch Language .Touch your preferred language, and then touch Yes to confirm your choice. The product returns to the Preferences menu.On the Preferences menu, touch Country/Region , and then touch your specific country/region.Touch Yes to confirm your choice, and then touch the Home icon ( ) to return to the main menu.

Maybe you are looking for