PLD How to add Project Name In Trail balance.

Hi,
how to Link to projects code and Project Nalme in Trail balance.....

Hi,
Do you know variable or database field for project name/code? In general, Financial report PLD were designed by SAP by using variables and its very difficult to find and to add it into PLD.
Thanks & Regards,
Nagarajan

Similar Messages

  • How to add project summary programmatically to publishing page.

    Let me know how to add project summary webpart to page in sharepoint 2013.

    Hi,
    Okay,
    check those links to add web part using code, try them and change the parameter to the name of the web part
    http://www.stefangordon.com/add-web-part-to-page-programmatically/
    http://blogs.msdn.com/b/tconte/archive/2007/01/18/programmatically-adding-web-parts-to-a-page.aspx
    http://nikpatel.net/2010/11/09/programmatically-add-the-web-part-on-the-sharepoint-web-part-page/https://manojssharepointblog.wordpress.com/2013/03/27/adding-and-removing-web-parts-programmatically-in-sharepoint/
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/1bc7212c-385d-4a89-9b7e-9d37ee762017/add-webpart-on-sharepoint-page-programmatically?forum=sharepointdevelopmentlegacy
    Kind Regards,
    John Naguib
    Technical Consultant/Architect
    MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation
    Please remember to mark your question as answered if this solves your problem

  • MSRV* Reports: How to add Vendor name?

    howdy gurus!
    Appreciate very much for any guidelines on how to add vendor name in MSRV* reports.
    Cheers,
    Ron

    Thanks for the inputs guys.
    So there's no technique yet to include it (similar to FBL*N and CJI3/KSB1).
    No available note also in SAPNotes.
    I already developed the Z*  report but the key user requests the possiblities in MSRV*.
    Cheers,
    Ron

  • How to add coloum name in a exel sheet download file?

    Dear all,
    I amdownloading a excel sheet from a internal table.I am getting all data correctly.
    but now i want to add coloumn name for each coloumn.
    How can I do it?
    i had try from work area and insert at first index but not get proper result.....
    so if possible plz suggest sampl code also.
    Regards
    Ricky

    Hi Ricky Maheswari,
                                  I will send a sample code for u.check it once.I execute the below code that is executed successfully.
    In my report u have check these things carefully "PEFORM APPEND_HEADER " and SELECT STATEMENT(I use appending table stmt there).Then ur problem will be resolved.
    code:
    *& Report  YBDC_DOWNLOAD_MM01_XLS                                      *
    *& DEVELOPER   : KIRAN KUMAR.G                                         *
    *& PURPOSE     : FETCH DATA FROM DB AND PLACE THEM IN .XLS FILE        *
    *& CREATION DT : 2/12/2007                                             *
    *& REQUEST     : ERPK900035                                            *
    *& NOTE        : MENTION PATH & MENTION FILE.XLS IN THE SELE-SCREEN    *
    REPORT  ybdc_download_mm01_xls  MESSAGE-ID zbdcmsg.
    Tables
    TABLES: mara, "General Material Data
            makt. "Material Descriptions
    Global Variables
    DATA: gv_path TYPE string. "Hold Path Selection Information
    Internal Table
    DATA : BEGIN OF gt_data OCCURS 0,
            matnr(20),   " Material Number
            mbrsh(20),   " Industry Sector
            mtart(20),   " Material Type
            meins(20),   " Base Unit Of Measure
            maktx(20),   " Material Description
           END OF gt_data.
    Selection-Screen
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS : p_file(90).
    SELECTION-SCREEN : END OF BLOCK b1.
    SELECTION-SCREEN : BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    SELECT-OPTIONS : s_matnr FOR mara-matnr,
                     s_mbrsh FOR mara-mbrsh,
                     s_mtart FOR mara-mtart,
                     s_maktx FOR makt-maktx,
                     s_meins FOR mara-meins.
    SELECTION-SCREEN : END OF BLOCK b2.
    Initialization
    INITIALIZATION.
      PERFORM initial.
    Placing A File In The Directory
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      PERFORM path_directory.
    START-OF-SELECTION.
    Append Some Header Information To XLS File
      PERFORM append_header.
    Fetching The Data
      PERFORM fecth_data.
    END-OF-SELECTION.
    GUI_DOWNLOAD
      PERFORM gui_download.
    *&      Form  path_directory
          text
    -->  p1        text
    <--  p2        text
    FORM path_directory .
      CALL METHOD cl_gui_frontend_services=>directory_browse
        EXPORTING
          window_title         = 'Download A File'
          initial_folder       = 'c:/'
        CHANGING
          selected_folder      = gv_path
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 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.
      CALL METHOD cl_gui_cfw=>flush
        EXCEPTIONS
          cntl_system_error = 1
          cntl_error        = 2
          OTHERS            = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      p_file = gv_path.
      CLEAR gv_path.
    ENDFORM.                    " path_directory
    *&      Form  fecth_data
          text
    -->  p1        text
    <--  p2        text
    FORM fecth_data .
      SELECT a~matnr
             a~mbrsh
             a~mtart
             a~meins
             b~maktx
        FROM mara AS a
       INNER JOIN makt AS b ON amatnr = bmatnr
       APPENDING  TABLE gt_data
       WHERE a~matnr IN s_matnr
       AND   a~mbrsh IN s_mbrsh
       AND   a~mtart IN s_mtart
       AND   b~maktx IN s_maktx
       AND   a~meins IN s_meins.
      IF sy-subrc = 0.
        MESSAGE s000.
      ENDIF.
    ENDFORM.                    " fecth_data
    *&      Form  gui_download
          text
    -->  p1        text
    <--  p2        text
    FORM gui_download .
      gv_path = p_file.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
       BIN_FILESIZE                  =
         filename                      = gv_path
         filetype                      = 'ASC'
       APPEND                        = ' '
         write_field_separator         = 'X'
       HEADER                        = '00'
       TRUNC_TRAILING_BLANKS         = ' '
       WRITE_LF                      = 'X'
       COL_SELECT                    = ' '
       COL_SELECT_MASK               = ' '
       DAT_MODE                      = ' '
    IMPORTING
       FILELENGTH                    =
        TABLES
         data_tab                      = gt_data
       EXCEPTIONS
         file_write_error              = 1
         no_batch                      = 2
         gui_refuse_filetransfer       = 3
         invalid_type                  = 4
         no_authority                  = 5
         unknown_error                 = 6
         header_not_allowed            = 7
         separator_not_allowed         = 8
         filesize_not_allowed          = 9
         header_too_long               = 10
         dp_error_create               = 11
         dp_error_send                 = 12
         dp_error_write                = 13
         unknown_dp_error              = 14
         access_denied                 = 15
         dp_out_of_memory              = 16
         disk_full                     = 17
         dp_timeout                    = 18
         file_not_found                = 19
         dataprovider_exception        = 20
         control_flush_error           = 21
         OTHERS                        = 22
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " gui_download
    *&      Form  append_header
          text
    -->  p1        text
    <--  p2        text
    FORM append_header .
      REFRESH : gt_data.
      CLEAR   : gt_data.
      gt_data-matnr = 'MATERIAL NUMBER'.
      gt_data-mbrsh = 'INDUSTRY SECTOR'.
      gt_data-mtart = 'MATERIAL TYPE'.
      gt_data-maktx = 'MATERIAL DESCRIPTION'.
      gt_data-meins = 'BASE UNIT OF MEASURE'.
      APPEND gt_data.
      CLEAR gt_data.
    ENDFORM.                    " append_header
    *&      Form  initial
          text
    -->  p1        text
    <--  p2        text
    FORM initial .
      s_matnr-sign   = 'I'.
      s_matnr-option = 'BT'.
      s_matnr-low    = '800'.
      s_matnr-high   = '100-200'.
      APPEND s_matnr.
      s_mbrsh-sign   = 'I'.
      s_mbrsh-option = 'BT'.
      s_mbrsh-low    = 'M'.
      s_mbrsh-high   = ''.
      APPEND s_mbrsh.
      s_mtart-sign   = 'I'.
      s_mtart-option = 'BT'.
      s_mtart-low    = 'FERT'.
      s_mtart-high   = 'HALB'.
      APPEND s_mtart.
      s_maktx-sign   = 'I'.
      s_maktx-option = 'BT'.
      s_maktx-low    = 'IRON'.
      s_maktx-high   = 'STEEL'.
      APPEND s_maktx.
      s_meins-sign   = 'I'.
      s_meins-option = 'BT'.
      s_meins-low    = 'CM'.
      s_meins-high   = 'KG'.
      APPEND s_meins.
    ENDFORM.                    " initial
    Award points if helpful.
    Kiran Kumar.G
                     Have a Nice Day..

  • How to make project name / no. visible in suppor message?

    Hello,
    When creating a support message (NOTIF_CREATE), I can provide a project name /project number with the message.
    This info is also available, when starting the transaction monitor (CRM_DNO_MONITOR).
    But when looking into the message itself, this information is not available anymore.
    Where can I make this info visible?
    I am assuming, that the project is somehow linked to the support message and that the project is available in principle.
    Can anyone provide me a way how to link / show the project within the support message?
    Thanks and Regards,
    Jan

    HI
    another helpful link i found, but nt sure that clear ur issue
    [Re: Field "Subject" in the web service desk (Incident Management)|Re: Field "Subject" in the web service desk (Incident Management)]
    [Re: User Status profile in Service Desk|Re: User Status profile in Service Desk]
    jansi

  • Add Project Name and description to the Projects Notification Layout in OTL

    Hi,
    I want to add the Project name and description to the OTL Projects Notification Layout. I have tried the following code to change the ldt file.
    BEGIN HXC_LAYOUT_COMPONENTS "Projects Notification Layout - Project Name"
    OWNER = "ORACLE"
    COMPONENT_VALUE = "PROJECTNAME"
    REGION_CODE = "CUS_PROJECT_PROMPT"
    REGION_CODE_APP_SHORT_NAME = "HXC"
    ATTRIBUTE_CODE = "HXC_CUI_PROJECT_NAME"
    ATTRIBUTE_CODE_APP_SHORT_NAME = "HXC"
    SEQUENCE = "181"
    COMPONENT_DEFINITION = "LOV"
    RENDER_TYPE = "WEB"
    PARENT_COMPONENT =
    "Projects Notification Layout - Day building blocks - matrix layout"
    LAST_UPDATE_DATE = "2004/05/24"
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Notification Layout - Project Name"
    OWNER = "ORACLE"
    QUALIFIER_ATTRIBUTE_CATEGORY = "LOV"
    QUALIFIER_ATTRIBUTE1 = "ProjectBaseLOVVO"
    QUALIFIER_ATTRIBUTE2 = "N"
    QUALIFIER_ATTRIBUTE3 = "HXC_CUI_PROJECT_LOV"
    QUALIFIER_ATTRIBUTE4 = "809"
    QUALIFIER_ATTRIBUTE5 = "12"
    QUALIFIER_ATTRIBUTE6 =
    "HxcCuiProjectName|PROJECTNAME-DISPLAY|CRITERIA|N|HxcCuiProjectId|PROJECTNAME|RESULT|N|HxcCuiProjectName|PROJECTNAME-DISPLAY|RESULT|N"
    QUALIFIER_ATTRIBUTE8 = "ProjectName"
    QUALIFIER_ATTRIBUTE9 = "ProjectId#NUMBER"
    QUALIFIER_ATTRIBUTE10 =
    "oracle.apps.hxc.selfservice.timecard.server.ProjectBaseLOVVO"
    QUALIFIER_ATTRIBUTE17 = "OraTableCellText"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "L"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    QUALIFIER_ATTRIBUTE27 = "Attribute8"
    QUALIFIER_ATTRIBUTE28 = "PROJECT_NAME"
    QUALIFIER_ATTRIBUTE30 = "Y"
    LAST_UPDATE_DATE = "2004/05/24"
    END HXC_LAYOUT_COMP_QUALIFIERS
    END HXC_LAYOUT_COMPONENTS
    I have created a segment PROJECT_NAME (attribute8) to the "PROJECTS" context of "OTL Information Types" DFF. Bouce the apache server.
    I am able to get the prompt but unable to get the data in the column.
    Please help.
    Thanks & Regards,
    Munish

    Hi Also have tried with the following ldt code. In this code I have added the projectname field from the PROJECT LOV and tried to get the value of the projectname into the text field.
    BEGIN HXC_LAYOUT_COMPONENTS "Projects Notification Layout - Project"
    OWNER = "ORACLE"
    COMPONENT_VALUE = "PROJECT"
    REGION_CODE = "HXC_CUI_TIMECARD"
    REGION_CODE_APP_SHORT_NAME = "HXC"
    ATTRIBUTE_CODE = "HXC_TIMECARD_PROJECT"
    ATTRIBUTE_CODE_APP_SHORT_NAME = "HXC"
    SEQUENCE = "180"
    COMPONENT_DEFINITION = "LOV"
    RENDER_TYPE = "WEB"
    PARENT_COMPONENT =
    "Projects Notification Layout - Day building blocks - matrix layout"
    LAST_UPDATE_DATE = "2004/05/24"
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Notification Layout - Project"
    OWNER = "ORACLE"
    QUALIFIER_ATTRIBUTE_CATEGORY = "LOV"
    QUALIFIER_ATTRIBUTE1 = "ProjectBaseLOVVO"
    QUALIFIER_ATTRIBUTE2 = "N"
    QUALIFIER_ATTRIBUTE3 = "HXC_CUI_PROJECT_LOV"
    QUALIFIER_ATTRIBUTE4 = "809"
    QUALIFIER_ATTRIBUTE5 = "12"
    QUALIFIER_ATTRIBUTE6 =
    "HxcCuiProjectNumber|PROJECT-DISPLAY|CRITERIA|N|HxcCuiProjectId|PROJECT|RESULT|N|HxcCuiProjectNumber|PROJECT-DISPLAY|RESULT|N|HxcCuiProjectName|PROJNAME|RESULT|N"
    QUALIFIER_ATTRIBUTE8 = "ProjectNumber"
    QUALIFIER_ATTRIBUTE9 = "ProjectId#NUMBER"
    QUALIFIER_ATTRIBUTE10 =
    "oracle.apps.hxc.selfservice.timecard.server.ProjectBaseLOVVO"
    QUALIFIER_ATTRIBUTE17 = "OraTableCellText"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "L"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    QUALIFIER_ATTRIBUTE27 = "Attribute1"
    QUALIFIER_ATTRIBUTE28 = "PROJECT"
    QUALIFIER_ATTRIBUTE30 = "Y"
    LAST_UPDATE_DATE = "2004/05/24"
    END HXC_LAYOUT_COMP_QUALIFIERS
    END HXC_LAYOUT_COMPONENTS
    BEGIN HXC_LAYOUT_COMPONENTS "Projects Notification Layout - Project Name"
    OWNER = "CUSTOM"
    COMPONENT_VALUE = "PROJECTNAME"
    SEQUENCE = "181"
    COMPONENT_DEFINITION = "TEXT_FIELD"
    RENDER_TYPE = "WEB"
    PARENT_COMPONENT = "Projects Notification Layout - Day building blocks - matrix layout"
    REGION_CODE = "CUS_PROJECT_PROMPT"
    REGION_CODE_APP_SHORT_NAME = "HXC"
    ATTRIBUTE_CODE = "HXC_CUI_PROJECT_NAME"
    ATTRIBUTE_CODE_APP_SHORT_NAME = "HXC"
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Notification Layout - Project Name"
    OWNER = "CUSTOM"
    QUALIFIER_ATTRIBUTE_CATEGORY = "TEXT_FIELD"
    QUALIFIER_ATTRIBUTE1 = "N"
    QUALIFIER_ATTRIBUTE2 = "NODISPLAYCACHE"
    QUALIFIER_ATTRIBUTE3 = "10"
    QUALIFIER_ATTRIBUTE4 = "1"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "L"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    QUALIFIER_ATTRIBUTE27 = "Attribute20"
    QUALIFIER_ATTRIBUTE28 = "PROJNAME"
    QUALIFIER_ATTRIBUTE30 = "Y"
    END HXC_LAYOUT_COMP_QUALIFIERS
    END HXC_LAYOUT_COMPONENTS
    But no data is displayed.
    I have also tried with the QUALIFIER_ATTRIBUTE27 = "Attribute8" as the attribute8 is being defined in the PROJECTS context of the "OTL Information Types" DFF.
    Thanks & regards,
    Munish

  • OTL timecard customisation - add Project Name - change DFF???

    Hi,
    In Metalink note 294866.1 it describes a way of adding Project Name to a timecard, and it describes adding a layout component with the following qualifiers to the .ldt file:-
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Timecard Layout - Project Name"
    OWNER = "ORACLE"
    QUALIFIER_ATTRIBUTE_CATEGORY = "TEXT_FIELD"
    QUALIFIER_ATTRIBUTE1 = "N"
    QUALIFIER_ATTRIBUTE2 = "NODISPLAYCACHE"
    QUALIFIER_ATTRIBUTE3 = "10"
    QUALIFIER_ATTRIBUTE4 = "1"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "L"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    QUALIFIER_ATTRIBUTE27 = "Attribute20"
    QUALIFIER_ATTRIBUTE28 = "PROJECTNAME"
    QUALIFIER_ATTRIBUTE30 = "N"
    END HXC_LAYOUT_COMP_QUALIFIERS
    The two Qualifier Attributes 26 and 27 refer to the DFF for "OTL Information Types" - "PROJECTS" context, specifying Attribute20 column of the DFF.
    At the moment we do not have attribute20 defined for this context on the DFF.
    The question I have is that if the change to the layout is to add the Project Name for information purposes for timecard users/approvers etc, should the DFF be changed? Or does it only need changing if there is a need to save the project name in the timestore (or another reason)?
    The Metalink note mentioned doesn't say anything about making a corresponding change to the DFF.
    Regards
    Andy

    Hi,
    In Metalink note 294866.1 it describes a way of adding Project Name to a timecard, and it describes adding a layout component with the following qualifiers to the .ldt file:-
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Timecard Layout - Project Name"
    OWNER = "ORACLE"
    QUALIFIER_ATTRIBUTE_CATEGORY = "TEXT_FIELD"
    QUALIFIER_ATTRIBUTE1 = "N"
    QUALIFIER_ATTRIBUTE2 = "NODISPLAYCACHE"
    QUALIFIER_ATTRIBUTE3 = "10"
    QUALIFIER_ATTRIBUTE4 = "1"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "L"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    QUALIFIER_ATTRIBUTE27 = "Attribute20"
    QUALIFIER_ATTRIBUTE28 = "PROJECTNAME"
    QUALIFIER_ATTRIBUTE30 = "N"
    END HXC_LAYOUT_COMP_QUALIFIERS
    The two Qualifier Attributes 26 and 27 refer to the DFF for "OTL Information Types" - "PROJECTS" context, specifying Attribute20 column of the DFF.
    At the moment we do not have attribute20 defined for this context on the DFF.
    The question I have is that if the change to the layout is to add the Project Name for information purposes for timecard users/approvers etc, should the DFF be changed? Or does it only need changing if there is a need to save the project name in the timestore (or another reason)?
    The Metalink note mentioned doesn't say anything about making a corresponding change to the DFF.
    Regards
    Andy

  • How to add project to website?

    I finished my project in the Beta 2 version, but can't find any tutorials on how to actually add it to my website...?
    Can someone please explain the difference between the "deploy to web" and "run-local" folders (when to use either, or), and also tell me how to add my project into my Dreamweaver site?
    Thanks!

    Thanks much for the responses although I'm still having a hard time understanding exactly what to do. The only instructions on these links are to "upload the entire contents of the deploy-to-web folder to your web server". If one had made their whole site or an entire page using FC, I could see how this would work, but how would I add just one FC component to my page?
    My FC component is a clickable map to be inserted into one of the tabs of a Spry Accordion.
    Which file(s) in the "deploy to web" folder would i insert into the Accordion Panel Content?

  • How to add website name to video with QTX?

    I want to add the name of my website to video clips in such a way that it will be difficult for others to copy the video, remove my website name and republish it without any credit to me. At present I am using QuickTime to 'Save for Web' and then uploading the resultant file (M4V) to my website. The videos are just video blogs so they're not high-tech productions!
    I am running Snow Leopard 10.6.7. I used to have Quicktime Player 7 Pro. I now seem to be running QuickTime Player 10.0
    I cannot find a User Guide to QTP 10. The user guide for QTP7 does refer on page 35 to adding text to a video but a) it refers to a Clipboard I can't find and the menu options don't match what I'm looking at in QTP10; and b) if I can find a way to follow these instructions, how easy will it be for someone to simply download my video file and remove the text anyway?
    I'd appreciate any help or advice you can offer.

    I am running Snow Leopard 10.6.7. I used to have Quicktime Player 7 Pro. I now seem to be running QuickTime Player 10.0... The user guide for QTP7 does refer on page 35 to adding text to a video but a) it refers to a Clipboard I can't find and the menu options
    If you had QT 7 keyed for "Pro" use when you upgraded to OS X.6, then a Snow Leopard versions of the QT 7 Pro player should have been placed in the "Applications/Utilities" folder automatically. Alternately, if you still cannot find QT 7 on your upgraded system, you could try using the free MPEG Streamclip application. In many ways it functions as a QT 7 Pro alternative for conversions, merging files, and such but does not have QT 7 Pro's layering and masking features. However, it does have a built-in text "watermarking" feature in the "Adjustments" window. I.e., instead of using the QT X "Save for Web" option, you would use the MPEG Streamclip "Export to MPEG-4" option and add your "text" watermark before actually performing the export. Alternatively, many QT 7 Pro users add a graphic watermark or logo as a means of identifying their content. If interested, here are a couple of old QT "Quickie" tutorials for adding a graphic logo/watermark:
    Adding a Graphic Logo
    Adding a Graphic Watermark
    how easy will it be for someone to simply download my video file and remove the text anyway?
    If you embed a watermark or logo before exporting your file to its final compression format for posting to your site, then it is virtually impossible to remove totally without editing each frame of your clip at the pixel level. (It would, however, be easy to cover the logo or watermark with an opaque mask.) On the other hand, if you add the logo or watermark, text or graphic, as a post export edit in its own track layer, then it is quite easy to remove it using an application like QT 7 Pro or, in rare cases, by simply copying the main audio/video tracks to a different file container type.

  • How to change project name?

    a existing project have many file,i want to change the project name.how to do?

    Hi Eteam00
    Duplicating a project and changing names is not straight forward particualarly when the design contains an board design with custom IP.  
    http://forums.xilinx.com/t5/Design-Entry/how-to-rename-a-Vivado-project/m-p/642492/highlight/false#M9133
    Regards
    Walter

  • How can add a name to the dictionary

    Everytime I put my daughter's name in a text msg, it suggests other spellings of her name. My crackberry let me add her name spelling to the dictionary? Does the iphone have something similar?

    Names are added by rejecting the autocorrect selection.  If you continue to tap the "x" when autocorrect suggests an alternative spelling it will eventually learn from this and stop trying to correct the spelling.

  • How to add Project 365 to existing Office 365 subscribed through GoDaddy

    We subscribe to Office 365 through our GoDaddy account.  Is there a way to add Project 365 to this subscription?  If not (meaning we have to go through Microsoft) is there a way to merge these accounts?  It appears we would need a different
    sign in to access Project from Office.
    Thanks,

    You should be able to add this as the global administrator. If you go to the App Launcher and select Admin, under Billing, there is a subscription link. Click there. The Add new subscription option is at the top.
    Treb Gatte, Project MVP |
    http://www.tumbleroad.com |
    @TumbleRoad

  • Whit PHOTO how to add a name when I expert one

    I upgrade recently Iphoto whit Photo.
    I need to export many picture. I usually add a name when I use Iphoto. But I didn't find the same option in Photo. So whit about 100 exported picture only the IMG-9999 camera name is boring.
    Tanks for any good help!
    Denis

    what exactly did you mean by adding a name?
    LN

  • Company name in Trail Balance Header

    Dear Gurus,
                      Please guide how to bring company name in header of SAP trial balance report for S_pl0_86000030 and 28. Please mention the t.code if already available. (not F.08) .

    Thanks for your reply.
    We have 2 company codes . 1100Test1 and 2200-Test2.
    Now my query is if I choose 1100 then it should come Test1 and test2 for 2200. Please suggest.

  • How to add Project manager Name on CJ03 screenlayout?

    Right now I am able to see only the project manager ID. How can I add one field which will display the manager name on the screenlayout of CJ03?
    Thanks
    Ruchika

    Hi Ruchika,
    You need to implement Screen Exit in the standard SAP program. The program for CJ03 transaction is 'SAPLCJWB'.
    Follow these instructions to Find the Exit and Implement a new field.
    http://wiki.ittoolbox.com/index.php/Implement_a_screen_exit_to_a_standard_SAP_transaction

Maybe you are looking for

  • Error while configuring DAC

    Hi, I'm getting the following error while trying to configure DAC. MESSAGE:::C:\app\product\11.2.0\dbhome_1\BIN\ocijdbc11.dll: Can't load AMD 64-bit .dll on a IA 32-bit platform EXCEPTION CLASS::: java.lang.UnsatisfiedLinkError java.lang.ClassLoader$

  • Arranging albums in Web Gallery

    Can I change the order in which albums are arranged on my web gallery?

  • JSF Calendar Component Selection Issue

    Hi, I have design a JSF Page using two calendar components, ie Start Date End Date Both of these dates field allow user input but only one of them are on compulsory basis. Start Date is a compulsory , whereas End Date is not. What I notice was if the

  • I need my first page to load blank!

    Howdy One and All, I need the first page to load blank (just a transparent background would do) but at the moment it's loading the first page of text. I want the text to appear when I hit the home button (named: mc.menuBtn1_btn). I'm having a little

  • Openning oracle connection hangs in aspx page

    I have an application(on win2k) which connnects to oracle database(on Solaris machine).Application connects to DB & executes a simple query. As .NET application it works fine. if the same code is copied & pasted in a aspx page, page just hangs. Have