Which details to use while renewing subscription?

Hi,
I have a Subscription that needs to be renewed. Last time I bank deposit ZAR 117.04 in the month of April for 3 months. How should I make the payment now? The instructions clearly says that the payment reference number can only be used once. Currency rates have changed since I made the deposit. Should I use the order number if I'm making a bank deposit? I am lost here. 
Help Please. Need to make a deposit today. 
Thanks.

Hi,
For creating Profit centre using LSMW bapi method.
You need to give this values in the 1st step of LSMW.
Business Object       BUS0015
Method                    CREATE                                    Create
Message Type         PROFITCENTER_CREATE          Create profit center
Basic Type              PROFITCENTER_CREATE01      Create Profit Center
In We20 port creation use process code as BAPI
Regards,
Shan

Similar Messages

  • In app purchase to work after 6 months using Auto renewable subscription

    How to start the in app purchase to work after 6 months using Auto renewable subscription. And is it possible to track the apple id used for in app purchase

    Hi Mimanshu,
    Thanks for your reply but i've already created an auto renewable subscription and a Multi Issue with i-Tunes Subscription Multi Issue with i-Tunes Subscription and the product id of the subscription in DPS App Builder and enable Newstand for the app. I tested in sandbox environment and looks good.
    The problem is when i try to upload the binary gives me the same message. I've to submit this urgent because my client want to have this in app store in December.
    Thanks in advance.
    Regards
    Pedro

  • Which FM to use while creating a Profit Center using LSMW BAPI

    Which FM to use while creating a Profit Center using LSMW using BAPI: BUS0015

    Hi,
    For creating Profit centre using LSMW bapi method.
    You need to give this values in the 1st step of LSMW.
    Business Object       BUS0015
    Method                    CREATE                                    Create
    Message Type         PROFITCENTER_CREATE          Create profit center
    Basic Type              PROFITCENTER_CREATE01      Create Profit Center
    In We20 port creation use process code as BAPI
    Regards,
    Shan

  • RAW + JPG in Adobe Lightroom. Which one is used while Heavily editing ( Developing ) ?

    Considering JPGs do not endure the heavy editing ( Developing ) or for sure they end up badly damaged, do I have to separate my CR2s from JPGs in lightroom ?
    How Lightroom knows that it should apply the " Developing " operations to the RAW copy of the file and ignore the JPG - if that's at all what it does ?

    Actually, Lightroom treats JPGs quite tenderly. It never re-saves them. All edits are kept in "parametric" form and only applied when you export, but that only happens once and does practically no damage.
    When you import both raw and JPG, if you have the preference set to treat them separately, you can edit them separately. If the preference is set the other way, the JPG is never touched and simply gets moved along with the raw image if you move it using Lightroom.
    Hal

  • What oKey to use while creating KeyAssociatedFilter

    I just wanted to confirm which object to use while creating the KeyAssociatedFilter.
    The OID class which implements the KeyAssociation interface or the object returned by the getAssociatedKey() method overritten by the OID class.
    MyOID myOid = new MyOID(propCode, typeCode);
    A.     Filter keyFilter = new KeyAssociatedFilter(allFilter, myOid);
    OR
    B.     Filter keyFilter = new KeyAssociatedFilter(allFilter, myOid.getAssociated);
    Which one is correct - A or B.
    Pls confirm.
    thanks & regards
    - G.

    Hi G,
    As a matter of fact, both approaches are correct. However, I would prefer (A), since it is simpler and does not require for MyOID class to implement the KeyAssociation interface, so if you later decide to implement partitioning strategy via a custom com.tangosol.net.partition.KeyAssociator implementation, your code would still compile and work correctly.
    Regards,
    Gene

  • I use to have a cc membership which I discontinued and I reinstalled cs6 and now I can not open cs6 without the renew subscription window poping up. How can I still use cs6?

    I use to have a cc membership which I discontinued and I reinstalled cs6 and now I can not open cs6 without the renew subscription window poping up. How can I still use cs6?

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • How do you know which fields are mandatory while uploading PO using BAPI.

    How do you know which fields are mandatory while uploading PO data using BAPI. in a structure how do you know which fields are mandatory.
    and also, where how do you check that, the BAPI function module is executed.
    Thanks in Advance.
    Naveen.

    hi
    hope it will help you.
    Reward if help.
    REPORT zpo_bapi_purchord_tej.
    DATA DECLARATIONS *
    TYPE-POOLS slis.
    TYPES: BEGIN OF ty_table,
    v_legacy(8),
    vendor TYPE bapimepoheader-vendor,
    purch_org TYPE bapimepoheader-purch_org,
    pur_group TYPE bapimepoheader-pur_group,
    material TYPE bapimepoitem-material,
    quantity(13),
    delivery_date TYPE bapimeposchedule-delivery_date,
    net_price(23),
    plant TYPE bapimepoitem-plant,
    END OF ty_table.
    TYPES: BEGIN OF ty_alv,
    v_legs(8),
    success(10),
    v_legf(8),
    END OF ty_alv.
    TYPES: BEGIN OF ty_alv1,
    v_legf1(8),
    v_msg(500),
    END OF ty_alv1.
    *-----Work area declarations.
    DATA: x_table TYPE ty_table,
    x_header TYPE bapimepoheader,
    x_headerx TYPE bapimepoheaderx,
    x_item TYPE bapimepoitem,
    x_itemx TYPE bapimepoitemx,
    x_sched TYPE bapimeposchedule,
    x_schedx TYPE bapimeposchedulx,
    x_commatable(255),
    x_alv TYPE ty_alv,
    x_alv1 TYPE ty_alv1,
    x_alv2 TYPE ty_alv1.
    *-----Internal table declarations.
    DATA: it_table TYPE TABLE OF ty_table,
    it_commatable LIKE TABLE OF x_commatable,
    it_item TYPE TABLE OF bapimepoitem,
    it_itemx TYPE TABLE OF bapimepoitemx,
    it_sched TYPE TABLE OF bapimeposchedule,
    it_schedx TYPE TABLE OF bapimeposchedulx,
    it_alv TYPE TABLE OF ty_alv,
    it_alv1 TYPE TABLE OF ty_alv1,
    it_alv2 TYPE TABLE OF ty_alv1.
    DATA: po_number TYPE bapimepoheader-po_number,
    x_return TYPE bapiret2,
    it_return TYPE TABLE OF bapiret2,
    v_file TYPE string,
    v_temp(8),
    v_succsount TYPE i VALUE 0,
    v_failcount TYPE i VALUE 0,
    v_total TYPE i.
    DATA: v_temp1(5) TYPE n VALUE 0.
    DATA: x_event TYPE slis_t_event,
    x_fieldcat TYPE slis_t_fieldcat_alv,
    x_list_header TYPE slis_t_listheader,
    x_event1 LIKE LINE OF x_event,
    x_layout1 TYPE slis_layout_alv,
    x_variant1 TYPE disvariant,
    x_repid2 LIKE sy-repid.
    DATA : it_fieldcat TYPE TABLE OF slis_t_fieldcat_alv.
    SELECTION-SCREEN *
    SELECTION-SCREEN BEGIN OF BLOCK v_b1 WITH FRAME.
    *-----To fetch the flat file.
    PARAMETERS: p_file TYPE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK v_b1.
    AT SELECTION-SCREEN *
    AT SELECTION-SCREEN.
    IF p_file IS INITIAL.
    MESSAGE text-001 TYPE 'E'.
    ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    *-----To use F4 help to find file path.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    IMPORTING
    file_name = p_file.
    v_file = p_file.
    START-OF-SELECTION *
    START-OF-SELECTION.
    PERFORM gui_upload.
    LOOP AT it_table INTO x_table.
    PERFORM header_details.
    v_temp = x_table-v_legacy.
    LOOP AT it_table INTO x_table WHERE v_legacy = v_temp.
    PERFORM lineitem.
    PERFORM schedule.
    ENDLOOP.
    DELETE it_table WHERE v_legacy = v_temp.
    PERFORM bapicall.
    MOVE po_number TO x_alv-success.
    APPEND x_alv TO it_alv.
    CLEAR x_alv.
    *-----To clear the item details in internal table after the operation for a header.
    REFRESH: it_item,
    it_itemx,
    it_sched,
    it_schedx.
    CLEAR: v_temp1.
    ENDLOOP.
    v_total = v_succsount + v_failcount.
    PERFORM display_alv.
    FORM GUI_UPLOAD *
    FORM gui_upload .
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = v_file
    filetype = 'ASC'
    TABLES
    data_tab = it_commatable
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17
    IF sy-subrc = 0.
    *-----To fetch the comma seperated flat file into an internal table.
    LOOP AT it_commatable INTO x_commatable.
    IF x_commatable IS NOT INITIAL.
    SPLIT x_commatable AT ',' INTO
    x_table-v_legacy
    x_table-vendor
    x_table-purch_org
    x_table-pur_group
    x_table-material
    x_table-quantity
    x_table-delivery_date
    x_table-net_price
    x_table-plant.
    APPEND x_table TO it_table.
    ENDIF.
    CLEAR x_table.
    ENDLOOP.
    ENDIF.
    ENDFORM. " gui_upload
    FORM HEADER_DETAILS *
    FORM header_details .
    MOVE 'NB' TO x_header-doc_type.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = x_table-vendor
    IMPORTING
    output = x_table-vendor
    MOVE x_table-vendor TO x_header-vendor.
    MOVE x_table-purch_org TO x_header-purch_org.
    MOVE x_table-pur_group TO x_header-pur_group.
    x_headerx-doc_type = 'X'.
    x_headerx-vendor = 'X'.
    x_headerx-purch_org = 'X'.
    x_headerx-pur_group = 'X'.
    ENDFORM. " header_details
    FORM LINEITEM *
    FORM lineitem .
    v_temp1 = v_temp1 + 10.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = v_temp1
    IMPORTING
    output = v_temp1.
    MOVE v_temp1 TO x_item-po_item.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = x_table-material
    IMPORTING
    output = x_table-material.
    MOVE x_table-material TO x_item-material.
    MOVE x_table-quantity TO x_item-quantity.
    MOVE x_table-net_price TO x_item-net_price.
    MOVE x_table-plant TO x_item-plant.
    x_itemx-po_item = v_temp1.
    x_itemx-material = 'X'.
    x_itemx-quantity = 'X'.
    x_itemx-net_price = 'X'.
    x_itemx-plant = 'X'.
    APPEND x_item TO it_item.
    APPEND x_itemx TO it_itemx.
    CLEAR: x_item, x_itemx.
    ENDFORM. " lineitem1
    FORM SCHEDULE *
    FORM schedule .
    MOVE x_table-delivery_date TO x_sched-delivery_date.
    MOVE v_temp1 TO x_sched-po_item.
    x_schedx-delivery_date = 'X'.
    x_schedx-po_item = v_temp1.
    APPEND x_sched TO it_sched.
    APPEND x_schedx TO it_schedx.
    CLEAR: x_sched, x_schedx.
    ENDFORM. " schedule
    FORM BAPICALL *
    FORM bapicall .
    CALL FUNCTION 'BAPI_PO_CREATE1'
    EXPORTING
    poheader = x_header
    poheaderx = x_headerx
    IMPORTING
    exppurchaseorder = po_number
    TABLES
    return = it_return
    poitem = it_item
    poitemx = it_itemx
    poschedule = it_sched
    poschedulex = it_schedx.
    IF po_number IS NOT INITIAL.
    v_succsount = v_succsount + 1.
    MOVE x_table-v_legacy TO x_alv-v_legs.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    ELSE.
    v_failcount = v_failcount + 1.
    MOVE x_table-v_legacy TO x_alv-v_legf.
    MOVE x_table-v_legacy TO x_alv1-v_legf1.
    LOOP AT it_return INTO x_return.
    IF x_alv1-v_msg IS INITIAL.
    MOVE x_return-message TO x_alv1-v_msg.
    ELSE.
    CONCATENATE x_alv1-v_msg x_return-message INTO x_alv1-v_msg SEPARATED BY space.
    ENDIF.
    ENDLOOP.
    APPEND x_alv1 TO it_alv1.
    CLEAR x_alv1.
    ENDIF.
    ENDFORM. " bapicall
    FORM DISPLAY_ALV *
    FORM display_alv .
    PERFORM x_list_header.
    PERFORM build_fieldcat CHANGING x_fieldcat.
    x_repid2 = sy-repid.
    x_event1-name = 'TOP_OF_PAGE'.
    x_event1-form = 'TOP_OF_PAGE'.
    APPEND x_event1 TO x_event.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = x_repid2
    is_layout = x_layout1
    it_fieldcat = x_fieldcat
    i_callback_user_command = 'USER_COMMAND'
    i_callback_top_of_page = 'TOP_OF_PAGE'
    i_save = 'A'
    is_variant = x_variant1
    it_events = x_event
    TABLES
    t_outtab = it_alv
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDFORM. " display_master_data
    FORM USER_COMMAND *
    FORM user_command USING ucomm LIKE sy-ucomm selfield
    TYPE slis_selfield.
    READ TABLE it_alv INTO x_alv INDEX selfield-tabindex.
    CLEAR : x_alv2,it_alv2[].
    LOOP AT it_alv1 INTO x_alv1 WHERE v_legf1 = x_alv-v_legf.
    x_alv2 = x_alv1.
    APPEND x_alv2 TO it_alv2 .
    ENDLOOP.
    DATA : it_fieldcat TYPE slis_t_fieldcat_alv.
    DATA : x3_fieldcat LIKE LINE OF it_fieldcat.
    CLEAR : x3_fieldcat,it_fieldcat[].
    CLEAR x3_fieldcat.
    x3_fieldcat-col_pos = '1'.
    x3_fieldcat-fieldname = 'V_LEGF1'.
    x3_fieldcat-reptext_ddic = text-111.
    x3_fieldcat-ref_tabname = 'IT_ALV2'.
    APPEND x3_fieldcat TO it_fieldcat.
    CLEAR x3_fieldcat.
    CLEAR x3_fieldcat.
    x3_fieldcat-col_pos = '1'.
    x3_fieldcat-fieldname = 'V_MSG'.
    x3_fieldcat-reptext_ddic = text-112.
    x3_fieldcat-ref_tabname = 'IT_ALV2'.
    APPEND x3_fieldcat TO it_fieldcat.
    CLEAR x3_fieldcat.
    x_layout1-colwidth_optimize = 'X'.
    x_layout1-zebra = 'X'.
    IF it_alv2[] IS NOT INITIAL.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = x_repid2
    is_layout = x_layout1
    it_fieldcat = it_fieldcat
    i_save = 'A'
    i_callback_top_of_page = 'TOP'
    is_variant = x_variant1
    it_events = x_event
    TABLES
    t_outtab = it_alv2
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    ENDIF.
    ENDFORM.
    FORM USER_COMMAND *
    FORM top.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    it_list_commentary = 'Commentry'.
    ENDFORM.
    FORM BUILD_FIELDCAT *
    FORM build_fieldcat CHANGING et_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: x1_fieldcat TYPE slis_fieldcat_alv.
    CLEAR x1_fieldcat.
    x1_fieldcat-col_pos = '1'.
    x1_fieldcat-fieldname = 'V_LEGS'.
    x1_fieldcat-reptext_ddic = text-108.
    x1_fieldcat-ref_tabname = 'IT_ALV'.
    APPEND x1_fieldcat TO et_fieldcat.
    CLEAR x1_fieldcat.
    x1_fieldcat-col_pos = '2'.
    x1_fieldcat-fieldname = 'SUCCESS'.
    x1_fieldcat-key = 'X'.
    x1_fieldcat-reptext_ddic = text-109.
    x1_fieldcat-ref_tabname = 'IT_ALV'.
    APPEND x1_fieldcat TO et_fieldcat.
    CLEAR x1_fieldcat.
    x1_fieldcat-col_pos = '3'.
    x1_fieldcat-fieldname = 'V_LEGF'.
    x1_fieldcat-key = 'X'.
    x1_fieldcat-reptext_ddic = text-110.
    x1_fieldcat-ref_tabname = 'IT_ALV'.
    APPEND x1_fieldcat TO et_fieldcat.
    CLEAR x1_fieldcat.
    ENDFORM. " build_fieldcat
    FORM BUILD_LIST_HEADER *
    FORM x_list_header.
    DATA: x_list_header1 TYPE slis_listheader.
    *-----List Header: type H
    CLEAR x_list_header1 .
    x_list_header1-typ = 'H'.
    x_list_header1-info = text-105.
    APPEND x_list_header1 TO x_list_header.
    *-----List Key: type S
    x_list_header1-typ = 'S'.
    x_list_header1-key = text-106.
    x_list_header1-info = v_total.
    APPEND x_list_header1 TO x_list_header.
    *-----List Key: Type S
    CLEAR x_list_header1 .
    x_list_header1-typ = 'S'.
    x_list_header1-key = text-107.
    x_list_header1-info = v_succsount.
    APPEND x_list_header1 TO x_list_header.
    ENDFORM. " build_list_header
    FORM TOP_OF_PAGE *
    FORM top_of_page.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    it_list_commentary = x_list_header.
    ENDFORM. " TOP_OF_PAGE

  • WIth multiple subscriptions which does Skype use f...

    I have 3 subscriptions - unlimited world, UK 60 minutes,and Thailand 60 minutes. Skype seems to have started to use unlimited World first, even when I am phoning UK or Thailand, which means that sometimes if I want to call other countries in the world subscription I have no spare minutes left. It would make more sense if Skype used the UK subscription when I am calling the UK and the Thailand Subscription when I am calling Thailand - but this isn't what is happening. Any advice please? Thanka.

    I am about to relocate and will be calling both landlines and mobiles in Australia, so this issue also seems to affect me.
    I want to buy the "unlimited landlines Australia" or "Unlimited World" subscriptions, plus the 400 minutes "mobiles & landlines Australia" subscription so I hope that in the year since your enquiry, Skype got smarter.

  • Got new credit card , updated card detail but adobe said i need to renew subscription ... but my subscription only expires end of nert month .. Ps does not want to open .

    got new credit card , updated card detail but adobe said i need to renew subscription ... but my subscription only expires end of nert month .. Ps does not want to open .

    Unfortunately, only Adobe customer service can assist you with your issue. These are user forums; you are not addressing Adobe here.
    Click on the link below, and after that click on "Still need Help? Contact us."
    Then on the next page, click Chat
    There is also a phone option. 1 (800) 833-6687
    http://helpx.adobe.com/contact.html?step=PHXS_downloading-installing-setting-up_licensing- activation

  • I HAVE JUST UPDATED MY PAYMENT DETAILS AND IT HAS BEEN ACCEPTED BUT EVERYTIME I GO TO OPEN PHOTOSHOP IT SAYS RENEW SUBSCRIPTION AND TAKES ME TO AN ERROR PAGE! ANYONE KNOW HOW i CAN GET IT WORKING?

    i HAVE JUST UPDATED MY PAYMNET DETAILS AND THEY HAVE BEEN ACCEPTED AND ME CARD HAS BEEN CHARGED BUT EVERY TIME I OPEN PHOTOSHOP IT SAYS RENEW SUBSCRIPTION AND TAKES ME TO AN ERROR PAGE! HELP!

    go to support and start a chat.. They will sort you out quickly. Actually, it works quite nice with support-chat.
    Not always a native english speaker (The Chat Agent) and a small amount of lingual misunderstandings here and there but all in all,
    the agent was able to sort me out after 30 minutes of chatting...
    IHTH

  • The software update to 7.1 on my iphone 5 is 214 mb, while via itunes it's 1.27 gb. what's the difference, which should i use?

    the software update to ios 7.1 on my iphone 5 is 214 mb (settings>>general>>software update), while the update via itunes it's 1.27 gb. what's the difference, and which should i use?

    My preferred method is to do the Update using iTunes on my Computer.
    You will Prompted to Transfer any Content from the Device.
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    Note:
    Always Backup before you update
    How to BackUp  >  http://support.apple.com/kb/ht1766
    What gets Backed Up
    iTunes http://support.apple.com/kb/ht4946
    iCloud http://support.apple.com/kb/PH2584

  • Trying to cancel subscription. I get to the manage link for service or product for which I want to cancel the subscription. There's no Renewal Status field. Please help

    Trying to cancel subscription. I get to the manage link for service or product for which I want to cancel the subscription. There's no Renewal Status field. Please help

    Hi elizabetht49548035,
    I see that you have an Acrobat Pro subscription. To cancel that, please Contact Customer Care. Choose Acrobat from the top drop-down menu, and then choose Membership, Account, and Payment. Click the blue "Still Need Help?" button at the bottom of the page to find both phone and chat options.
    Best,
    Sara

  • Re AD002357145UK I have just subscribed to Adobe Send. I am sure that v revently I used Adobe Send Now for free. Is that still possible (which means I could cancel AdobeSendNow subscription) or do I have to subscribe to Adobe Send to carry out file transf

    Re AD002357145UK I have just subscribed to Adobe Send. I am sure that v revently I used Adobe Send Now for free. Is that still possible (which means I could cancel AdobeSendNow subscription) or do I have to subscribe to Adobe Send to carry out file transfer. Incidentally I have Adobe Creative Suite. Thanks. Nadim Othman

    [topic moved to Adobe Send forum]

  • I see two directories named mozilla and firefox in my ubuntu laptop. May i know which direcotry files firefox uses while running ?

    I see two directories in my ubuntu laptop /usr/lib path.
    1.mozilla
    2.firefox
    May i know the reason behind this ? Which directory files do firefox uses ?I am trying to make webx work in ubuntu. Need to know which directory firefox access so that i can define the corresponding soft links in correct directory.
    Thanks
    Ravi Kiran

    You may have installed Firefox before and not realized it.
    What files are inside these directories?
    I can't say which one Firefox uses because it all depends on how it was installed.

  • How can I determine which codec to use?

    I'm using PE7 on a PC. I have HD video shot with a Canon. Each video - there are six of them - is less than five minutes. After I finished editing, I uploaded them to youtube and emailed a link to my client, but my client complained that they were out of focus. I explained that it was the compression that youtube uses, and that I'd render them to disk for him to look at.
    Trouble is, I can't figure out which codec to use. All I know is that I want clear, sharp video, suitable for posting on the net. These are scientific videos, showing some chemical processes involving gasoline with ethanol and water.
    Can someone point me in the right direction?
    TIA

    I guess I need to explain better. The HD videos I'm editing will not end up on youtube, but will be posted on a government agency's website. I originally posted them on youtube just so the client could take a look without me having to attempt to email large video files or burn to disk, since the client is in a different location from me.
    The area of video editing and production that I'm the least knowledgeable - and therefore the most insecure - is when I attempt to render and save a video. Every video project I go through the same frustration of having a project that I'm happy with, but having a final product that either 1) does not look at all sharp or 2) results in a file size which is too large. In this case, since the final video files will be posted online, they need to be small enough for viewing over the net while maintaining enough sharpeness and quality that the video does not look out of focus.
    If you take a look at this video, for example: http://www.youtube.com/watch?v=t_X0IKPJrng you can see why my client thought it was out of focus. However, I know that the original footage is very sharp.This link is only temporary, as I've already been told that the agency I work for will not allow them to be posted on youtube.
    So, my question is, when I'm rendering and saving a video project from PE7, how do I know what settings to use for the highest quality, yet smallest file size? The manual does not go into much detail about the pros and cons of various codecs, nor does it say much about what settings do what. It's like Adobe expects me to already know this information.
    Is the problem with the video above simply that youtube compresses the videos I upload? Is Vimeo a better site to upload videos and maintain sharpness? In PE7, is there a way to set it up to upload to Vimeo, or should I render and save as an MP2 or MP4 file and then manually upload?
    Surely there's a site which goes into much greater details about the various settings I can use in PE, and how those settings affect the final viewing product.
    Thanks a lot for your help. I realize my questions show an extreme lack of experience, but that's why I'm here, right?

Maybe you are looking for