Designer/control item   :CG$CTRL.CGU$SYSDATE

Good morning!
Any lead as to why form generator does not included the
control block CG$CTRL (which is part of the template) and it's generator items (CG$US...CG$DT...)in the generated form...?
designer 6.5.91.0.10 with headstart template package 2.1.2
Message was edited by:
mictur
Message was edited by:
mictur

THERE ARE SOME BUILT INS NOT ALLOWED TO BE USED IN ENTER-QUERY-MODE LIKE GO_BLOCK, GO_ITEM, LIST_VALUES, SOME OF THEM COULD BE PART OF THE LOV. THIS IS THE DEFAULT BEHAVIOR OF QUERY-MODE WITH NAVIGABLE BUILT INS.

Similar Messages

  • 11.5.10 : LOT나 SERIAL CONTROL ITEM을 ROI 통해 RECEIPT 하는 방법은?

    제품 : MFG_INV
    작성날짜 : 2006-05-18
    11.5.10: LOT나 SERIAL CONTROL ITEM을 ROI 통해 RECEIPT 하는 방법은?
    ==============================================================
    PURPOSE
    Receiving Open Interface(ROI)에서 Lot나 Serial 정보를 위해 사용하는
    interface tables은 무엇인지 알아본다.
    Explanation
    Serial 및 Lot을 control 하는 item을 Receiving Open Interface(ROI)를 통
    해 Delivery, Correction, Return 작업을 하기 위해서는 기존에 사용하던
    rcv_headers_interface,rcv_transactions_interface table 외에 아래 두
    tables에도 data가 입력되어져야 합니다.
    mtl_transaction_lots_interface,
    mtl_transaction_serial_numbers_interface
    이 주목할 만한 변경은 새로운 ROI functionality를 충족하기 위해 11.5.10,
    SCM_PF.J/11i.PRC_PF.J 에서 만들어졌다.
    많은 dependencies 때문에 이 새로운 ROI functionality는 이전 version을
    위한 backport는 불가능하다.
    Example
    1.Serial Controlled item인 경우 :
    INSERT INTO MTL_SERIAL_NUMBERS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    FM_SERIAL_NUMBER,
    TO_SERIAL_NUMBER,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'sr000016',
    'sr000016',
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    2. Lot Controlled item 인 경우 :
    INSERT INTO MTL_TRANSACTION_LOTS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    LOT_NUMBER,
    TRANSACTION_QUANTITY,
    PRIMARY_QUANTITY,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'lt2002',
    1,
    1,
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    3. Serial과 Lot Controlled item인 경우:
    INSERT INTO MTL_SERIAL_NUMBERS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    FM_SERIAL_NUMBER,
    TO_SERIAL_NUMBER,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'sr000016',
    'sr000016',
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    INSERT INTO MTL_TRANSACTION_LOTS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    LOT_NUMBER,
    TRANSACTION_QUANTITY,
    PRIMARY_QUANTITY,
    SERIAL_TRANSACTION_TEMP_ID, --link to mtl_serial_numbers_interface
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'lt2002',
    1,
    1,
    MTL_MATERIAL_TRANSACTIONS_S.CURRVAL, --link to mtl_serial_numbers_interface
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    Reference Documents
    Note 301281.1

  • Issue in lot controlled items reservation API

    Hi,
    When I am going to reserved the lot controlled item thru following API, it is giving an error message.  Can anyone help me to resolve this issue as it is not showing an detail error message .
    Following is the Error message :
    =======================================================
    Calling INV_RESERVATION_PUB.Create_Reservation API
    =======================================================
    Return Status: E-INV
    Error Message :INV
    =======================================================
    Following API we are using for the same:
    DECLARE
            -- Common Declarations
            l_api_version         NUMBER      := 1.0;
            l_init_msg_list       VARCHAR2(2) := FND_API.G_TRUE;
            x_return_status       VARCHAR2(2);
            x_msg_count           NUMBER      := 0;
            x_msg_data            VARCHAR2(255);
            l_row_cnt        NUMBER := 1;
            -- API specific declarations
            l_rsv_rec                   INV_RESERVATION_GLOBAL.MTL_RESERVATION_REC_TYPE;
            l_serial_number             INV_RESERVATION_GLOBAL.SERIAL_NUMBER_TBL_TYPE;  
            l_partial_reservation_flag  VARCHAR2(2) := FND_API.G_FALSE;
            l_force_reservation_flag    VARCHAR2(2) := FND_API.G_FALSE;
            l_validation_flag           VARCHAR2(2) := FND_API.G_TRUE; 
            l_partial_reservation_exists BOOLEAN := FALSE;       
            x_serial_number             INV_RESERVATION_GLOBAL.SERIAL_NUMBER_TBL_TYPE;
            x_quantity_reserved         NUMBER := 0;
            x_reservation_id            NUMBER := 0;
    BEGIN
            FND_GLOBAL.APPS_INITIALIZE(  user_id      => 5707,
                                         resp_id      => 50158,
                                         resp_appl_id => 401);
            -- Initialize the variables
                  l_rsv_rec.organization_id               :=   51; --NULL; --itm.organization_id;
                  l_rsv_rec.inventory_item_id             :=   52587;--NULL; --itm.inventory_item_id;
                  l_rsv_rec.requirement_date              :=   NULL; --sysdate + 3;
                  l_rsv_rec.demand_source_type_id         :=   INV_RESERVATION_GLOBAL.G_SOURCE_TYPE_INV;
                  l_rsv_rec.supply_source_type_id         :=   INV_RESERVATION_GLOBAL.G_SOURCE_TYPE_INV;
                  l_rsv_rec.demand_source_name            :=   NULL; --'RSV_ITM_SRL_'||itm.segment1;
                  l_rsv_rec.primary_reservation_quantity  :=   100; --NULL; --l_primary_reservation_qty;
                  l_rsv_rec.primary_uom_code              :=   'MTR'; --NULL; --itm.primary_uom_code;
                  l_rsv_rec.subinventory_code             :=   NULL; --l_subinventory_code;
                  l_rsv_rec.demand_source_header_id       :=   306842; --NULL ;
                  l_rsv_rec.demand_source_line_id         :=   2288893; --NULL ;        
                  l_rsv_rec.reservation_uom_code          :=   'MTR' ;
                  l_rsv_rec.reservation_quantity          :=   100; --NULL ;
                  l_rsv_rec.supply_source_header_id       :=   NULL ;
                  l_rsv_rec.supply_source_line_id         :=   NULL ;
                  l_rsv_rec.supply_source_name            :=   NULL ;
                  l_rsv_rec.supply_source_line_detail     :=   NULL ;
                  l_rsv_rec.lot_number                    :=   'ABC100'; --NULL ;
                  --l_rsv_rec.serial_number                 :=   NULL ;
                  l_rsv_rec.ship_ready_flag               :=   NULL ;
                  l_rsv_rec.attribute15                   :=   NULL ;
                  l_rsv_rec.attribute14                   :=   NULL ;       
                  l_rsv_rec.attribute13                   :=   NULL ;
                  l_rsv_rec.attribute12                   :=   NULL ;
                  l_rsv_rec.attribute11                   :=   NULL ; 
                  l_rsv_rec.attribute10                   :=   NULL ;
                  l_rsv_rec.attribute9                    :=   NULL ;     
                  l_rsv_rec.attribute8                    :=   NULL ; 
                  l_rsv_rec.attribute7                    :=   NULL ;
                  l_rsv_rec.attribute6                    :=   NULL ; 
                  l_rsv_rec.attribute5                    :=   NULL ;      
                  l_rsv_rec.attribute4                    :=   NULL ;  
                  l_rsv_rec.attribute3                    :=   NULL ;
                  l_rsv_rec.attribute2                    :=   NULL ;  
                  l_rsv_rec.attribute1                    :=   NULL ;  
                  l_rsv_rec.attribute_category            :=   NULL ;
                  l_rsv_rec.lpn_id                        :=   NULL ;
                  l_rsv_rec.pick_slip_number              :=   NULL ;
                  l_rsv_rec.lot_number_id                 :=   NULL ;
                  l_rsv_rec.locator_id                    :=   NULL ;
                  l_rsv_rec.subinventory_id               :=   NULL ;
                  l_rsv_rec.revision                      :=   NULL ;
                  l_rsv_rec.external_source_line_id       :=   NULL ;     
                  l_rsv_rec.external_source_code          :=   NULL ;     
                  l_rsv_rec.autodetail_group_id           :=   NULL ;    
                  l_rsv_rec.reservation_uom_id            :=   NULL ;    
                  l_rsv_rec.primary_uom_id                :=   NULL ;   
                  l_rsv_rec.demand_source_delivery        :=   NULL ; 
                  -- call API to create reservation
                 DBMS_OUTPUT.PUT_LINE('=======================================================');
                 DBMS_OUTPUT.PUT_LINE('Calling INV_RESERVATION_PUB.Create_Reservation API');       
                 INV_RESERVATION_PUB.Create_Reservation(
                          P_API_VERSION_NUMBER     => l_api_version  
                        , P_INIT_MSG_LST         => l_init_msg_list
                        , P_RSV_REC             => l_rsv_rec           
                        , P_SERIAL_NUMBER         => l_serial_number           
                        , P_PARTIAL_RESERVATION_FLAG => l_partial_reservation_flag
                        , P_FORCE_RESERVATION_FLAG     => l_force_reservation_flag  
                        , P_PARTIAL_RSV_EXISTS     => l_partial_reservation_exists
                        , P_VALIDATION_FLAG         => l_validation_flag     
                        , X_SERIAL_NUMBER         => x_serial_number             
                        , X_RETURN_STATUS         => x_return_status
                        , X_MSG_COUNT         => x_msg_count   
                        , X_MSG_DATA              => x_msg_data              
                        , X_QUANTITY_RESERVED     => x_quantity_reserved
                        , X_RESERVATION_ID         => x_reservation_id);           
                 DBMS_OUTPUT.PUT_LINE('=======================================================');
                 DBMS_OUTPUT.PUT_LINE('Return Status: '||x_return_status||'-'||x_msg_data);
                 IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
                    DBMS_OUTPUT.PUT_LINE('Error Message :'||x_msg_data);
                 END IF;
                 IF (x_return_status = FND_API.G_RET_STS_SUCCESS) THEN
                     DBMS_OUTPUT.PUT_LINE('Reservation ID :'||x_reservation_id||' Quantity Reserved:'||x_quantity_reserved);
                     COMMIT;
                 END IF;
                 DBMS_OUTPUT.PUT_LINE('=======================================================');
    EXCEPTION
            WHEN OTHERS THEN
              DBMS_OUTPUT.PUT_LINE('Exception Occured :');
              DBMS_OUTPUT.PUT_LINE(SQLCODE ||':'||SQLERRM);
              DBMS_OUTPUT.PUT_LINE('=======================================================');
    END;
    regards & thanks in advance
    sanjay

    Hi,
    SAP does availability check based on IM stock and not on WM stock.
    So I dont think there are any such reports available that shows WM stock with considering delivery and sales order quantity.
    regards,

  • 11.5.10 ROI를 통해 SERIAL AND LOT CONTROLLED ITEMS을 처리하는 방법

    제품: Applications
    작성날짜 : 2006-05-30
    11.5.10 ROI를 통해 SERIAL AND LOT CONTROLLED ITEMS을 처리하는 방법
    ========================================================
    PURPOSE
    11.5.10 Receiving Open Interface(ROI)를 통해 Serial and Lot Controlled Items을 처리하기 위해 어떤 interface table들이 사용되는지에 대해 기술함.
    Explanation
    the Receiving Open Interface (ROI)를 통해 Serial and Lot Controlled Items에 대한 Delivery, Correction, Return등의 process를 수행하기 위해서는 다음 table들에 data가 존재하여야 합니다.
    - rcv_headers_interface
    - rcv_transactions_interface
    - mtl_transaction_lots_interface
    - mtl_transaction_serial_numbers_interface
    <참고>
    이와 같은 기능은 11.5.10/11i.SCM_PF.J/11i.PRC_PF.J 에서 제공되는 신기능으로써 이전 version으로의 backport는 불가능합니다.
    Example
    1) If Item is Serial Controlled only:
    INSERT INTO MTL_SERIAL_NUMBERS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    FM_SERIAL_NUMBER,
    TO_SERIAL_NUMBER,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'sr000016',
    'sr000016',
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    2) If Item is Lot Controlled only:
    INSERT INTO MTL_TRANSACTION_LOTS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    LOT_NUMBER,
    TRANSACTION_QUANTITY,
    PRIMARY_QUANTITY,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'lt2002',
    1,
    1,
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    3) If Item is both Serial and Lot Controlled:
    INSERT INTO MTL_SERIAL_NUMBERS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    FM_SERIAL_NUMBER,
    TO_SERIAL_NUMBER,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'sr000016',
    'sr000016',
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    INSERT INTO MTL_TRANSACTION_LOTS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    LOT_NUMBER,
    TRANSACTION_QUANTITY,
    PRIMARY_QUANTITY,
    SERIAL_TRANSACTION_TEMP_ID, --link to mtl_serial_numbers_interface
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,
    sysdate,
    1,
    sysdate,
    1,
    1,
    'lt2002',
    1,
    1,
    MTL_MATERIAL_TRANSACTIONS_S.CURRVAL, --link to mtl_serial_numbers_interface
    'RCV',
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL); --same as
    rcv_transactions_interface.interface_transaction_id
    Reference Documents
    Note#301281.1

    hi
    enable Readahead from systemd
    https://wiki.archlinux.org/index.php/Systemd#Readahead
    # systemctl enable systemd-readahead-collect systemd-readahead-replay

  • Expiring Lot-Controlled items and open orders/deliveries

    <h5> Hi,
    We are writing a custom program to block lot-controlled items which are near expiry. The custom program query LQUA-VERME (available stock) field to determine the qty it can block. However, the LQUA-VERME field does not take open orders and open deliveries into consideration. For example, for an item, the available stock in the warehouse (LQUA-VERME) is 20. But there are 5 open deliveries and 5 open sales orders. So in reality, the custom program should block only 10 units. Is there a SD table/field which has consolidated open deliveries and open orders qty we can look at? Or available stock in WM after considering open deliveries and open orders? <h5>
    Thank you.

    Hi,
    SAP does availability check based on IM stock and not on WM stock.
    So I dont think there are any such reports available that shows WM stock with considering delivery and sales order quantity.
    regards,

  • Report Designer Control - Redistribution Issue

    Hi:
    I use Report Designer Control(RDC) in my program to allow user to modify reports.  I made a build and installed the build but when I try to access report designer from program I am getting the error about license. 
    "This system does not have a valid license, or the evaluation  copy of the license has expired. Please contact Business Objects to obtain a Report Design Control license."
    I do have valid KeyCode for RDC and i am supplying the same for the merge module too.
    My Development Environment
    Operating System            :     Windows XP (SP 2)
    IDE                                 :     VS 2005 Professional
    Crystal Reports                :      XI Release 2 Developer
    Deployment Software        :      InstallShield 12 Premier
    Can anyone please tell me why I am getting above message, I can able to distribute Report Designer Control with Crystal Reports 9 version without any problems, but it is not working with Crystal Reports XI.
    Thanks in Advance,
    Sriram.

    Hello,
    The Report Designer Component (RDC) was never designed to work in Visual Studios .NET.  This is because the RDC is an ActiveX COM component and Microsoft has been moving away from ActiveX.
    It is also my experience that RCAPI applications - "to allow user to modify reports" - will not work in a Visual Studios application.
    It is possible you're getting your error if you had an original CR XI (v11.0) keycode and upgraded to CR XI R2 (v11.5).  Original CR XI (v11.0) keycodes will not work. CR XI (v11.0) keycodes do not "unlock" RCAPI functionality in CR XI R2 (v11.5).  If you upgraded from CR XI (v11.0) to CR XI R2 (v11.5) you likely have an original CR XI (v11.0) keycode.  You will need to get a new CR XI R2 keycode from Business Objects.  You can contact the Customer Care team by email - customercareamericas @ businessobjects.com (rebuild the email address) - or by phone - 800-877-2340, option 5.  If they need additional information you can ask them to contact me.  I'm on the Developer Support team and they should be able to contact me internally.
    If you have an original CR XI R2 (v11.5) keycode please make sure to update to at least Service Pack 2 and download updated RDC merge modules from the [Business Objects Software Download Page|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm].
    Please remember that even if you get a new, original CR XI R2 keycode, and/or update your merge modules  you may still not be able to get your VS2005 RCAPI RDC application working.
    Sincerely,
    Dan Kelleher

  • Consignment stock - consumption advice for lot controlled item

    Consignment stock - consumption advice for lot controlled item
    Just have a look at consignment stock processing in 11.5.10. One question I have is how a supplier receives a consumption advice. I try to print the blanket release and I cant. Also from all I can see I cant see where on the consumption advice the lot numbers/serial numbers used are indicated.
    Can anyone help?

    Hi,
    SAP does availability check based on IM stock and not on WM stock.
    So I dont think there are any such reports available that shows WM stock with considering delivery and sales order quantity.
    regards,

  • Need to Stop Serial/Lot control item to be automatically picked

    Hi,
    I have an requirement for auto (schedule pick release). But customer wants that only non serial/lot controlled items will be auto picked. But Lot Controlled and Serial Controlled (At Receipt) items will not be picked automatically. How I can achieved that ?
    Thanks for your help.
    Regards,
    Amit

    Hi Sayantan,
    You do have a couple of options depending on what release of the apps you're on and how you set the Inv Org parameter Allocate Serial Numbers.
    From 11.5.10 on, a potential new value can be set for this parameter (available also on 11.5.8 and 9 via backport patch). The parameter governs the way serial numbers are allocated at Pick Release.
    Previously, the values available for this parameter were just a basic “No” (the default value) or “Yes” (whereby Oracle would auto-suggest, in a non-intelligent way, available serial numbers at the time of pick release). The new value available is “Yes – User-defined” which allows some custom logic to be applied to the serial number allocation.
    With the value set to “Yes – User-defined”, Oracle checks for any custom code in the INVSRSTB.pls stub/custom hook when a pick release is launched. (Inv_Detail_Serial_Pub.Get_User_Serial_Numbers)
    Regards,
    Jon
    P.S. Also take a look at *Auto Pick Confirm Flag Does Not Work For Serial Items If Allocate Serial Number is Set to'Yes User Defeined' [ID 337964.1]* on MOS.

  • Urgent : Handling of serial control items

    Hi All,
    I had developed a concurrent program to automate the process of updating the quantity on hand and average cost whenever a new inventory org is created.
    My code is inserting data in mtl_transactions_interface table and after that the Interface manager is taking care of things.
    But there are items which are not getting picked from mtl_transactions_interface table and the error is 'For this transaction row the serial records are missing’. Can anyone please advise how to handle the serial control items and what is the specific check needed for these. If anyone has the code for this it would be of great help.
    I need this on an urgent basis. Any help will be really appreciated.
    Regards,
    Shruti

    Hi All,
    We have a requirement wherein whenever a new inventory org is created the quantity on hand needs to be moved & average cost need to be copied from an existing org to a new org with in Oracle. This is currently a manual process and we are automating the same.
    For this we are populating the MTL_TRANSACTIONS_INTERFACE table.
    The process works fine for normal items but whenever we use this for a serialized item (populating the MTL_TRANSACTIONS_INTERFACE and MTL_SERIAL_NUMBERS_INTERFACE , it gives the errors
    ‘Invalid status in STD_GRP’
    ‘SubInv does not match’
    in the MTL_TRANSACTIONS_INTERFACE table.
    If anybody has come across this or has any idea about this please provide some pointers. It would be really helpful as its getting very urgent now.
    Regards,
    Shruti

  • Premiere Pro CC 5 支援 Blackmagic Design Control Panel.

    我在去年試用2014 Premiere Pro CC時.可以使用我之前安裝的Blackmagic Design Control Panel. 但今年初向Adobe 購買2014 Premiere Pro CC使用時.卻發現編輯無法使用Blackmagic Design Control Panel來預覽畫面.此問題一直困擾著我.

    Hi Piero,
    Here's a few ideas you can try.
    1. Place your Blackmagic card in slot 2
    2. Set your OS system sound to Built-in or Line out audio
    3. Set your buffer size to 1024
    4. If those settings fail to help you can place the 9.7.3 plugins into the CC folder. Here's how:
    Mac:
    Copy from:
    /Library/Application Support/Adobe/Common/Plug-ins/CS6/MediaCore
    Paste to:
    /Library/Application Support/Adobe/Common/Plug-ins/7.0/MediaCore
    Hope that is helpful. Let us know how it goes.
    Peter Garaway
    Adobe
    Premiere Pro

  • Embeddable Crystal Reports Designer Control and Visual FoxPro

    Post Author: PaulBtci
    CA Forum: Other
    Hello everyone, I have a problem adding CRXI Embeddable Crystal Reports Designer Control in the run-time. When the following line is being executed, an "Insert Object" dialog pops up. ThisForm.AddObject( "oleDesigner", "olecontrol", "CrystalReports.EmbeddableCrystalReportsDesignerCtrl" ) The control, however, is available in the list, and when selected is added to the form. The above problem does not exist when I add ActiveX ReportViewer. Can anyone help me with this issue? Any help is greatly appreciated. Thanks, Paul

    Good morning,
    I am using  "Embeddable Crystal Reports Designer Control"  Crystal Report 11 with Visual Basic 6.0.
    There is some way for disable the tab "preview the main report"? THis is including in "Embeddable Crystal Reports Designer Control"
    or
    There is some way for update the tab "preview the main report" loaded after other report? Because, the preview is not refresh.
    Thanks
    Buenos días,
    Les comento, estoy utilizando el control "Embeddable Crystal Reports Designer Control" (CRDesignerCtrl11_5) del Crystal Report 11 en un proyecto de Visual Basic 6.0
    Cuando cargo un reporte dos veces, se presenta la "vista previa de informe principal".  Sin embargo cuando vuelvo a cargar otro reporte no se actualiza la "vista previa de informe principal" sino que se queda con la información cargada anteriormente.
    Quisiera saber si existe una forma de acceder al control para actualizar la "vista previa de informe principal", ya que a pesar de dar clic derecho y elegir actualizar no toma los datos del nuevo reporte cargado.
    Y si es posible en todo caso desabilitar la "vista previa de informe principal" o hacerlo invisible para que únicamente se presente la pestaña de "Informe Principal".
    De antemano agradezco su ayuda.

  • Designer Control Problem

    Hey Guys
    I am having a problem and hope you can help to fix it up
    Here is the code i use to open a new Report Using RDC XI with VB6
    Set m_Report = Nothing
    Set m_Report = m_Application.NewReport
    CRDesignerCtrl1.ReportObject = m_Report
    The Above Statements work fine when New Report is created for the first time.
    The Problem is at run time, when i create another new Report (Using Statements above mentioned) Designer Control automaticaly opens its Preview Window tab "Main Report Preview", which was hidden earlier
    As I am using My own Viewrer Control, I don't want this Tab to be opened. I have searched a lot but yet to find any help
    Kindly let me know what can i do TO NOT LET IT OPEN
    Your Cooperation will be very much appreciated!

    Hi Abdul,
    Please don't post multiple times it's the exact same questions as : Designer Control automaticaly opens its Preview Window
    Thanks
    Don

  • Designer Control automaticaly opens its Preview Window

    Hey Guys
    I am having a problem and hope you can help to fix it up
    Here is the code i use to open a new Report Using RDC XI with VB6
    Set m_Report = Nothing
    Set m_Report = m_Application.NewReport
    CRDesignerCtrl1.ReportObject = m_Report
    The Above Statements work fine when New Report is created for the first time.
    The Problem is at run time, when i create another new Report (Using Statements above mentioned) Designer Control automaticaly opens its Preview Window tab "Main Report Preview".
    As I am using My own Viewrer Control, I don't want this Tab to be opened. I have searched a lot but yet to find any help
    Kindly let me know what can i do TO NOT LET IT OPEN
    Your Cooperation will be very much appreciated!

    Thank Ludek for your responce..
    Let me explain code
    Referecnes Added:
    Crystal Reports Active X Designer Design And Run-Time Library 11.5
    Embedable Crystal report Designer Control libaray 11.5
    Crystal Active X Report viewere Library 11.5
    Code
    Dim m_Application As New CRAXDDRT.Application
    Dim m_Report As CRAXDDRT.Report
    ' Code Executed for new Report Button
    Set m_Report = Nothing
    Set m_Report = m_Application.NewReport
    CRDesignerCtrl1.ReportObject = m_Report
    '  Set the report source.
    CRViewer1.ReportSource = m_Report
    '  Set the viewer to view the report.
    CRViewer1.ViewReport
    CRViewer1.Zoom 1
    When this code is executed for the 1st time (If i click New Report Button) It works fine. but if I click New Report button again  "Main Report Preview" tab of Embedable Designer Controls opens automatically. This tab is opened precisely for execution of this statement
    CRDesignerCtrl1.ReportObject = m_Report
    More to add, if i click New Report Button again, it raises error "Index out of range".
    If hope this explain my situation, if there is anything else, let me know.
    Your help will very much be appreciated!
    Abdul Rehman

  • How can I use Embeddable Report Designer Control

    Hi, I found that there is an Embeddable Report Designer Control (CRAXDDRT) which end user could open and edit report runtime (rpt file)
    would you please help me use this control in c#.net
    I have Crystal report 2008
    thank you

    You can not use that in .NET and also there is no craxddrt in CR 2008 as there is no COM SDK for CR 2008.
    Currently there is no .NET equivalent to that dll.
    Jason

  • Embeddable Report Designer Control with Windows 7

    I have a couple of questions.
    I am using Crystal Report XI in both Vb6 and VS2005. I am using the COM controls in both. The CRViewer and the Embeddable Report Designer Control. This has been working in XP fine. Not so good in Vista or Windows 7. I am upgrading to Crystal Reports XI R2 Sp6. For viewing reports in VB6 and VS2005 this working fine.
    I know that the Embeddable designer no longer exists in future Crystal Report versions or in the .net versions.
    In VS2005 the Embeddable Report Designer Control does not work in windows 7.
    Is there anything new that needs to be in the code then in the previous versions? What do I need to do to make the Embeddable Report Designer Control work with windows 7 correctly?
    Also I will need the merge modules for Crystal Reports XI R2 Sp6 for both the .net and RDC. Are they avalible?
    I need to be able to modify reports within the application. My clients have to be able modify existing reports to match state and federal laws and rules.

    Crystal Reports XI R2 Sp6 supports WIN 7, so it should work, though as far as I am concerned, the Embeddable Report Designer Control was always flaky. Also, it may be possible (perhaps even likely) that the RDC components were not tested by QA on WIN 7.
    What is the actual issue you are seeing? (errors, behavior, etc.)
    Are you seeing the issue on a development computer or after you deploy the runtime? I am assuming this is your dev box as you are asking about CR XI SP6 msm files, but I have to be sure.
    If at all possible, do not use the RDC in .NET. The RDC was never tested in .NET and thus is not supported. It may work, but using the Embeddable Report Designer Control in .NET gives me the creeps...
    See if you can get this to work in VB 6 first. If not, you at least have an escalation path for a fix. You do not have an escalation path with RDC in .NET. Please note that if a fix is accepted by R&D, the usual time frame for release of a fix is 6+ months.
    For the future, you will have to look into using the RAS report creation APIs in .NET. This will give you similar report creation abilities at runtime as the Embeddable Report Designer.
    Ludek

Maybe you are looking for

  • Batch rename files preserving the original file name in metadata

    How can I batch rename files while preserving the original file name in metadata? (Don't want the old file name as part of the new file name) (Adobe CS Bridge can do this with some success, but I don't want to be dependant on this software. Results a

  • Mail problems-can't click reply and more

    When I first got my Imac I transfer all data from my older machine running OS X. Mail worked just fine for a couple of weeks then it started having the same problem I have now. I tried rebuilding and throwing away the preference but no luck so I gave

  • A workflow is sending the same email notification twice

    A workflow is sending the same email notification twice. Not every notification, but this happening only a few times randomly.  The double sent emails are arriving together , have the same date and time. I've checked the workflow and found that there

  • Maximum size of PSA

    What is the maximum size of PSA ? How many records could it accomodate at maximum ?

  • Variants

    Dear All, I have one report with one of the  filed p_period in the selection screen. The input to this field is month and year as 008.2007. I save one variant ZVARIANT in the period is 006.2007 Now my requirement the period in the variant has to chan