Dump: ASSERT condition failed - While creating followup to Package quote

Hi,
I am trying to create follow up (Service contract) document to Package Quotation. But, I am endedup with dump in Function Module saying : "ASSERT Condition Failed". And this is happening only in preproduction. In development system, it is working fine. I really do not understand the reason.
last week it worked fine ... but suddenly this error came up.
Please help me out to find the reason and solution.
Thanks,
Sandeep

Hi Arun,
Please check the following in regards to the company code issue:
1. Go to transaction PPOME and search for your Top Org unit,
2. For that org unit, go to the tab Account Assignment.
3. Fill the field Company Code with appropriate value and save it
This should resolve the issue in regards to the message of the company code. The dump refers to the table V_T077D. Please check your number range settings for the customer account groups related to students table V_T077D. Once the necessary customizing is maintained, the problem  should get solved.
Good luck.
Rob

Similar Messages

  • How to manual maintain TAX condition value while creating sales order

    Hi
    I am creating one Tax condition suppose JLST without access sequence .
    while creating sales order I am manually maintain the % value of TAX. suppose it is 1%
    then I see It show some value in TAX .
    save that sales order & creating delivery document for that but when I create Invoice its show error.
    " Tax code  in procedure CMTAXP is invalid ".
    I know the configuration only for Tax condition with vk11 condition record .
    BUT now I want to maintain TAX condition at the time of creating sales order.
    so I remove the access sequence of that condition .
    but It shows tax code error while billing.
    My main question is that If i maintain condition record while creating sales order then how i can assign Tax code .
    Can it is possible ?
    if yes then How?
    please help me.
    thank you

    Hi,
    The "straight-forward" answer for Tax Code creation is contact the FI consultant. He shall help you, by creating Tax codes.
    I have tested, with creating a tax cond type (copy of MWST) & manually entering values. I can create Sorder, Dlv and Bill but I cannot create an Accounting document. That is because of every line (amount) a Tax code is necessary.
    I THINK, you can NOT have manually filled tax codes; access sequence is needed to get the tax value (%) and the Tax code from the condition record.
    There is lot of material on the web to understand Tax classification, code etc. etc. See a useful link below -
    http://www.sapgeek.net/2010/04/sd-determines-tax-code/
    In short Tax code is a must and take the help of your FI consultant for the configuration of the same.
    BTW - Tax code is already made created for MWST, therefore I suggested that you can use MWST. Furthermore, you can change the values corresponding to Tax codes in FTXP.
    But if you are a beginner in these things, better take help.

  • Failed while creating virtual Ethernet switch. Failed to connect Ethernet switch port

    Hello Folks
    I am completely stuck with the configuration of my virtual networks. I have one logical switch left to add to one of my Hyper-V 2012 R2 hosts when I started getting the error below when I try to add logical switches to either Hyper-V Host. I have been using
    the document. 'Hybrid Cloud with NVGRE (Cloud OS)' to implement the virtual networking. Basically using the exact configuration that is in the document. I have added the PA Logical Network and the Network adapters and added the logical switch for it to my
    hyper-v 2012 R2 host and everything was fine. I am now trying to add my ISCSI Logical Switch to the host and this is the error I get. My other Hyper-V host I get this error for any logical switch I am trying to add. Can someone help me with this error. I haven't
    been able to find any information about it.
    Also a some quick info on tracing an error like this so I can figure out what is causing it.
    Thsi is my configuration so far
    So as far as I know everything is peachy untill the error below. Dead stop now
    Error (12700)
    VMM cannot complete the host operation on the 08-NY-VHOST01.accounts.ccac-ont.ca server because of the error: Failed while creating virtual Ethernet switch.
    Failed to connect Ethernet switch port (switch name = '******', port name = '88C16766-ED02-4AC0-8CD7-660AC9D424DD', adapter GUID = '{FAF431D8-0124-4E40-BB3B-9234BAA02973}'): The system cannot find the file specified. (0x80070002).
    Unknown error (0x800b)
    Thank you for your time
    Christopher
    Christopher Scannell

    notice your GUID?  you may want to consider ensuring that is the same GUID associated in your database.  Sometimes during data corruption theres a smidge of a chance your sql database kind of either pulls old guids esp if this was reverted to snapshot
    without it being powered off etc.  
    I would try that first.  then i would consider if you get to configure that with your current liscense associated with the host.  I would need way more info to help any further

  • "backup failed while creating the backup folder"

    Time machine fails backup.
    Backup volume is a 1TB USB External.
    Message appears: "backup failed while creating the backup folder"
    However whwn enter time machine is entered, there is displayed many-many backup depictions.

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • Video Furnace: Failed while creating player controls...

    I need some help figuring out how to get Video Furnace to work on my computer. It had run very easily before; I was on campus, and I clicked on the icon, it came up, and played smoothly, but I can't get it to work any longer. It keeps saying: The Audio device is unavailable or busy. Playback will continue without audio. After that message, Another error message pops up saying: Error, Failed while creating player controls. Then the Instream quits.
    I used my roommate's computer to access the video I was supposed to watch and ir worked fine on hers; she has the same exact computer as me, and I was in the same room, only a couple of feet away. I was thinking maybe I messed up my audio settings or soemthing? I don't know what to do. Anyone have any suggestions?
    Thanks.

    Kumar
    Instead of creating a player and a processor from one datasource you can use javax.media.control.FrameGrabbingControl to grab frames from the video stream. To do this you need the following code
    * grabs a frame's buffer from the web cam / device
    * @returns A frames buffer
    public Buffer grabFrameBuffer ( )
    if ( player != null )
    FrameGrabbingControl fgc = (FrameGrabbingControl)player.getControl ( "javax.media.control.FrameGrabbingControl" );
    if ( fgc != null )
    return ( fgc.grabFrame() );
    else
    System.err.println ("Error : FrameGrabbingControl is null");
    return ( null );
    else
    System.err.println ("Error : Player is null");
    return ( null );
    * grabs a frame's buffer, as an image, from the web cam / device
    * @returns A frames buffer as an image
    public Image grabFrameImage ( )
    Buffer buffer = grabFrameBuffer();
    if ( buffer != null )
    // Convert it to an image
    BufferToImage btoi = new BufferToImage ( (VideoFormat)buffer.getFormat() );
    if ( btoi != null )
    Image image = btoi.createImage ( buffer );
    if ( image != null )
    return ( image );
    else
    System.err.println ("Error : BufferToImage cannot convert buffer");
    return ( null );
    else
    System.err.println ("Error : cannot create BufferToImage instance");
    return ( null );
    else
    System.out.println ("Error : Buffer grabbed is null");
    return ( null );
    The first method takes frame grabbing control of your player which you have already created from the datasource of the camera and it grabs a frame, returns it as a buffer, then calls the second methos which converts the buffer to an image.
    It is very straight forward and I was kicking myself when I figured you could do it this way - I had been weeks playing around with the player and processor from one datasource.
    hope this helps!

  • Assert condition failed when saving freight unit planning in transportation cockpit

    Hi all,
    I can successful complete Transportation Proposal and Optimizer Planning for freight Unit in Transportation cockpit. But when I am trying to save the freight Unit in Transportation cockpit, system is giving me dump "ERROR: The ASSERT condition was violated. (termination: RABAX_STATE)"
    ST22 showing  /SCMTMS/CL_BUFVAR_DISPATCHER==CP      Assertion failed
    Details of Active calls/Event in ST22
    35 METHOD       /SCMTMS/CL_BUFVAR_DISPATCHER==CP    /SCMTMS/CL_BUFVAR_DISPATCHER==CM005   116
        /SCMTMS/CL_BUFVAR_DISPATCHER=>/BOBF/IF_FRW_BUFFER~MODIFY
    34 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM00K  1173
        /BOBF/CL_FRW=>DO_MODIFY
    33 METHOD       /BOBF/CL_FRW_INT_ACCESS=======CP    /BOBF/CL_FRW_INT_ACCESS=======CM002    45
        /BOBF/CL_FRW_INT_ACCESS=>END_MODIFY
    32 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM00E   861
        /BOBF/CL_FRW=>DO_DETERMINATIONS
    31 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM01C   274
        /BOBF/CL_FRW=>/BOBF/IF_FRW_SERVICE_LAYER~FINALIZE
    30 METHOD       /BOBF/CL_LIB_DELEGATION_BOPF==CP    /BOBF/CL_LIB_DELEGATION_BOPF==CM00E    12
        /BOBF/CL_LIB_DELEGATION_BOPF=>/BOBF/IF_FRW_DELEGATION~FINALIZE
    29 METHOD       /SCMTMS/CL_BUFVAR_DODELEGATIONCP    /SCMTMS/CL_BUFVAR_DODELEGATIONCM004     6
        /SCMTMS/CL_BUFVAR_DODELEGATION=>/BOBF/IF_FRW_DELEGATION~FINALIZE
    28 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM01C   246
        /BOBF/CL_FRW=>/BOBF/IF_FRW_SERVICE_LAYER~FINALIZE
    27 METHOD       /BOBF/CL_TRA_SERVICE_MGR======CP    /BOBF/CL_TRA_SERVICE_MGR======CM00P    23
        /BOBF/CL_TRA_SERVICE_MGR=>/BOBF/IF_TRA_SERV_MGR_TRANSACT~FINALIZE
    26 METHOD       /BOBF/CL_TRA_TRANSACTION_MGR==CP    /BOBF/CL_TRA_TRANSACTION_MGR==CM001    60
        /BOBF/CL_TRA_TRANSACTION_MGR=>FINALIZE
    25 METHOD       /BOBF/CL_TRA_TRANSACTION_MGR==CP    /BOBF/CL_TRA_TRANSACTION_MGR==CM00S    63
        /BOBF/CL_TRA_TRANSACTION_MGR=>/BOBF/IF_TRA_TRANSACTION_MGR~SAVE
    24 METHOD       /BOFU/CL_FBI_CONTROLLER_NEW===CP    /BOFU/CL_FBI_CONTROLLER_NEW===CM00D    22
        /BOFU/CL_FBI_CONTROLLER_NEW=>IWCI_IF_FPM_TRANSACTION~SAVE
    23 METHOD       /SCMTMS/CL_UI_CONTROLLER_PLN==CP    /SCMTMS/CL_UI_CONTROLLER_PLN==CM00L    63
        /SCMTMS/CL_UI_CONTROLLER_PLN=>SAVE_PLANNING
    22 METHOD       /SCMTMS/CL_UI_CONTROLLER_PLN==CP    /SCMTMS/CL_UI_CONTROLLER_PLN==CM00N    41
        /SCMTMS/CL_UI_CONTROLLER_PLN=>HANDLE_ACTIONS
    21 METHOD       /SCMTMS/CL_UI_CONTROLLER_PLN==CP    /SCMTMS/CL_UI_CONTROLLER_PLN==CM00A    16
        /SCMTMS/CL_UI_CONTROLLER_PLN=>IWCI_IF_FPM_APP_CONTROLLER~AFTER_PROCESS_EVENT
    20 METHOD       /1BCWDY/03N7LCDLX3EFC4K580SF==CP    /1BCWDY/B_03N7LCDLX3EFC4K580YR        689
        CL_COMPONENTCONTROLLER_CTR=>AFTER_PROCESS_EVENT
        Web Dynpro Component          /BOFU/WDC_FBI_CONTROLLER
        Controller                    COMPONENTCONTROLLER
    19 METHOD       /1BCWDY/03N7LCDLX3EFC4K580SF==CP    /1BCWDY/B_03N7LCDLX3EFC4K580YR        119
        CLF_COMPONENTCONTROLLER_CTR=>IWCI_IF_FPM_APP_CONTROLLER~AFTER_PROCESS_EVENT
        Web Dynpro Component          /BOFU/WDC_FBI_CONTROLLER
        Controller                    COMPONENTCONTROLLER
    18 METHOD       CL_FPM========================CP    CL_FPM========================CM00G   101
        CL_FPM=>CALL_UIBB_PROCESS_EVENT
    17 METHOD       CL_FPM========================CP    CL_FPM========================CM005    46
        CL_FPM=>PROCESS_EVENT
    16 METHOD       CL_FPM========================CP    CL_FPM========================CM00C    33
        CL_FPM=>RUN_EVENT_LOOP
    15 METHOD       CL_FPM========================CP    CL_FPM========================CM002     5
        CL_FPM=>IF_FPM~RAISE_EVENT
    14 METHOD       /1BCWDY/03N7LCDLX3EFC3O22W8A==CP    /1BCWDY/B_03N7LCDLX3EFC3O22XGJ       1412
         CL_PAGE_HEADER_CTR=>ONACTIONACTION
         Web Dynpro Component          FPM_OVP_COMPONENT
         Controller                    PAGE_HEADER
      13 METHOD       /1BCWDY/03N7LCDLX3EFC3O22W8A==CP    /1BCWDY/B_03N7LCDLX3EFC3O22XGJ        581
         CLF_PAGE_HEADER_CTR=>IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER
         Web Dynpro Component          FPM_OVP_COMPONENT
         Controller                    PAGE_HEADER
      12 METHOD       CL_WDR_DELEGATING_VIEW========CP    CL_WDR_DELEGATING_VIEW========CM006     6
         CL_WDR_DELEGATING_VIEW=>INVOKE_EVENTHANDLER
      11 METHOD       CL_WDR_ACTION=================CP    CL_WDR_ACTION=================CM00A    38
         CL_WDR_ACTION=>IF_WDR_ACTION~FIRE
      10 METHOD       CL_WDR_WINDOW_PHASE_MODEL=====CP    CL_WDR_WINDOW_PHASE_MODEL=====CM00U    95
         CL_WDR_WINDOW_PHASE_MODEL=>DO_HANDLE_ACTION_EVENTS
       9 METHOD       CL_WDR_WINDOW_PHASE_MODEL=====CP    CL_WDR_WINDOW_PHASE_MODEL=====CM002    95
         CL_WDR_WINDOW_PHASE_MODEL=>PROCESS_REQUEST
       8 METHOD       CL_WDR_WINDOW=================CP    CL_WDR_WINDOW=================CM00V    12
         CL_WDR_WINDOW=>PROCESS_REQUEST
       7 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00I    77
         CL_WDR_MAIN_TASK=>EXECUTE
       6 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00U     6
         CL_WDR_MAIN_TASK=>IF_WDR_RUNTIME~EXECUTE
       5 METHOD       CL_WDR_CLIENT_ABSTRACT_HTTP===CP    CL_WDR_CLIENT_ABSTRACT_HTTP===CM01C   114
         CL_WDR_CLIENT_ABSTRACT_HTTP=>HANDLE_REQUEST
       4 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00J    85
         CL_WDR_MAIN_TASK=>IF_HTTP_EXTENSION~HANDLE_REQUEST
       3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM00I   627
         CL_HTTP_SERVER=>EXECUTE_REQUEST
       2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                     1218
         HTTP_DISPATCH_REQUEST
       1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13
         %_HTTP_START
    Any help will be appreciated
    Thanks and regards
    Shambhu Sarkar

    Hi Shambhu,
          When i see the assert,i feel there is some problem at the determination. Whether you have implemented any custom determination of your own? 
          No issues, Place the break-point at the assert and check the call stack and find the which determination is that?
    Thanks,
    Dinesh

  • OBIEE install fails while creating a domain

    Hi,
    I am trying to install OBIEE 11.1.1.3 on linux 64. I selected the Enterprise install option. The installer gives error while creating a domain during the configuration process.
    BI Configuration Log
    Config Action BI Configuration started
    Creating Domain
    Error
    null
    Step Creating Domain failed
    Configuration Action 'Creating Domain' has failed. Please check logs for details.
    The log file is as follows..
    [2010-09-29T14:45:33.319-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Assigning Port: 7002 to: DOMAIN_PORT
    [2010-09-29T14:45:33.422-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Assigning Port: 9556 to: NODE_MANAGER_PORT
    [2010-09-29T14:45:33.422-05:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Setting valueOf(DOMAIN_PORT) to:7002. Value obtained from:USER
    [2010-09-29T14:45:33.422-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Domain port set to: 7002
    [2010-09-29T14:45:33.422-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Nodemanager port set to: 9556
    [2010-09-29T14:45:33.446-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Starting initial node manager configuration...
    [2010-09-29T14:45:33.446-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Found listening port from node manager properties: null
    [2010-09-29T14:45:33.446-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Unable to reuse node manager - port is null
    [2010-09-29T14:45:33.446-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] No reusable node manager found.
    [2010-09-29T14:45:33.446-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Completed initial node manager configuration.
    [2010-09-29T14:45:33.448-05:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 38] [ecid: 0000IhV1njD27Ud5Tf0Fyc1CcstI00000S,0] Assigning Port: 9556 to: NODE_MANAGER_PORT
    Can anybody tell what may be wrong. I verified that the port 9556 was free.

    Hello George,
    Did you figured out how to solve this problem?. I have been trying to install OBIEE 11g all morning and that's the exact error that I'm getting from the log file:
    Assigning Port: 7001 to: DOMAIN_PORT
    [2010-09-29T11:16:14.842-06:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] Assigning Port: 9556 to: NODE_MANAGER_PORT
    [2010-09-29T11:16:14.842-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] Setting valueOf(DOMAIN_PORT) to:7001. Value obtained from:USER
    [2010-09-29T11:16:14.842-06:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] Domain port set to: 7001
    [2010-09-29T11:16:14.842-06:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] Nodemanager port set to: 9556
    [2010-09-29T11:16:14.914-06:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] Starting initial node manager configuration...
    [2010-09-29T11:16:14.915-06:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] Found listening port from node manager properties: null
    [2010-09-29T11:16:14.915-06:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] Unable to reuse node manager - port is null
    [2010-09-29T11:16:14.915-06:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] No reusable node manager found.
    [2010-09-29T11:16:14.915-06:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] Completed initial node manager configuration.
    [2010-09-29T11:16:14.915-06:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 26] [ecid: 0000IhUVavHFW7WFLzmJOA1Ccq_j00000H,0] Assigning Port: 9556 to: NODE_MANAGER_PORT
    Please help on this issue.
    Thanks.
    Pablo.

  • Dump Error while Creating the Info Package

    Hi,
    I have created Customized ODS and used Generic data sources.I have loaded full Upload to ODS. Created Info Packages for Init delta and Delta for delta loading. I have ran Full Upload and while I am trying to run Init, I am getting the error.
    While I am trying to open the Info Package, I am getting Dump error message.
    Dump error Message :
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).
    While i am trying to Create New Info Package, the systems gives the Dump on the System
    Please help on this issue.
    Thanks,
    Siva.

    Hi,
    Actually, when we want to have delta loads in future, then we can just have one infopackage with init delta infopackage, so that when it runs for the first time, it pulls all the records and from next time onwards it will pull the delta records only.
    But as you have done the full load with infopackage, now just create a delta infopackage, no need of init delta infopackage, this is the reason, its giving dump.
    Hope it has given some insight.

  • Use of Condition update while creating Condition Records

    Hi Experts,
    I have to maintain MRP for a product which will be applicable for only 1 particular order. after which system should pick up old MRP.
    By using CONDITION UPDATE feature , i have tried to do it , but once maintained , its always picking new MRP for every order.
    (If it being a record where only new price to be defaulted in one order and no need to create 2nd order , this is ok ., but not in my case)
    Can any one suggest me how to go with this
    Thanks in advance,
    Jignesh

    Hi,
    This can be done using the CONDITION UPDATE
    In the condition type check the CONDITION UPDATE AND SAVE IT
    While creating the CONDITION RECORDS, maintain the values and click ont he ADDITIONAL DATA (F7) then maintain the value in the field MAXIMUM NUMBER OF ORDERS , PUT The sales order as 1.
    Then try
    Please revert if you need further details
    thanks,
    santosh

  • Error while creating a setup package .

    Hi ALL,
    We are trying to create a setup package (SP20 client)  for our application
    after assinging the device configurations their roles and conditions to the Hierarchy Group which we created It gives the following error while creation of the setup  package
    Error
    0050  tc.mobile.admin.bl  113101  20080222
    Retrieving device id failed.
    However we tried to dig up for it in help.sap.com and forum we could not resolve the  error .
    Please suggests the neccessary solution,Its urgent.
    Thanks & Regards
    Aditi Vyas

    HI
    This problem is already resolved in SP20.  Kindly make use of the latest patch of NWMADMIN and NWMClient and the error should get resolved.
    Best regards
    Sivakumar

  • Error while creating procedure and package

    Hi,
    I am getting an error while creating an procedure
    create or replace procedure mke_test (mke_gender varchar2) is
    begin
    declare global temporary table mag_hotline_glob
    INDIVIDUAL_ID NUMBER,
    ONE_MONTH NUMBER,
    THREE_MONTH NUMBER,
    SIX_MONTH NUMBER,
    TWELVE_MONTH NUMBER,
    CHILDREN_PRES VARCHAR2(1 BYTE)
    ) with replace on commit preserve rows not logged;
    begin
    insert into mag_hotline_glob
    select * from magazine_gender;
    end;
    end;
    can anybody plz suggest

    It's a total mess. You need to read the documentation first.
    Create your table separately
    CREATE global temporary table mag_hotline_glob(INDIVIDUAL_ID NUMBER,
                                                ONE_MONTH NUMBER,
                                                THREE_MONTH NUMBER,
                                                SIX_MONTH NUMBER,
                                                TWELVE_MONTH NUMBER,
                                                CHILDREN_PRES VARCHAR2(1 BYTE)) with replace on commit preserve rows not logged;Then use the procedure (I don't know why, this INSERT statement you can fire yourself)
    create or replace procedure mke_test(mke_gender varchar2) is
    begin
        insert into mag_hotline_glob
          select * from magazine_gender;
    end;If you want to create the GTT inside the procedure(should be avoided) then Use EXECUTE IMMEDIATE.
    By the way, where are you using the IN parameter ? It' unnecessary.

  • RMAN script failed while creating Data Guard 11g

    Hi Friends,
    I am creating Physical Standby (11g) using RMAN (ACTIVE) on windows using the doc : Step by Step Guide on Creating Physical Standby Using RMAN DUPLICATE...FROM ACTIVE DATABASE [ID 1075908.1]
    The folder structure on Primary DB and on Physical Standby is totally different.
    while executing RMAN script i got errors for lot of locations and i specified the proper location in RMAN script itself (ex set diagnostic_dest = 'c:\app\' , set db_recovery_file_dest='C:\app\flash_recovery_area')
    Location of control files on Primary DB:
    D:\oradata\MESSTG\CONTROL01.CTL
    D:\oradata\flash_recovery\messtg\MESSTG\CONTROL02.CTL
    Location of control files (planned) on Physical Standby DB:
    C:\app\oradata\MESSTDBY\CONTROL01.CTL
    C:\app\flash_recovery_area\MESSTDBY\CONTROL02.CTL
    How to specify control file location of Physical standby in set control_files?
    Also i have 2 control files on Primary DB so do i need to specify both the control files , if so how?
    I tried different combination in RMAN script but all are failed:
    set control_files='D:\oradata\MESSTG\CONTROL01.CTL','C:\app\oradata\MESSTDBY\CONTROL01.CTL'
    RMAN Error is :
    while using set control_files=: C:\app\oradata\MESSTDBY\CONTROL01.CTL
    contents of Memory Script:
    backup as copy current controlfile for standby auxiliary format 'D:\ORADATA\MESSTG\CONTROL01.CTL';
    restore clone controlfile to 'C:\APP\ORADATA\MESSTDBY\CONTROL01.CTL' from
    'D:\ORADATA\MESSTG\CONTROL01.CTL';
    executing Memory Script
    Starting backup at 16-APR-13
    channel prmy1: starting datafile copy
    copying standby control file
    released channel: prmy1
    released channel: prmy2
    released channel: prmy3
    released channel: prmy4
    released channel: stby
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 04/16/2013 14:18:41
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of backup command on prmy1 channel at 04/16/2013 14:18:41
    ORA-17628: Oracle error 19505 returned by remote Oracle server
    RMAN>
    Error 2)
    while using set control_files='D:\oradata\MESSTG\CONTROL01.CTL','C:\app\oradata\MESSTDBY\CONTROL01.CTL'
    contents of Memory Script:
    backup as copy current controlfile for standby auxiliary format 'D:\ORADATA\MESSTG\CONTROL01.CTL';
    executing Memory Script
    Starting backup at 16-APR-13
    channel prmy1: starting datafile copy
    copying standby control file
    released channel: prmy1
    released channel: prmy2
    released channel: prmy3
    released channel: prmy4
    released channel: stby
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 04/16/2013 13:22:33
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of backup command on prmy1 channel at 04/16/2013 13:22:33
    ORA-17628: Oracle error 19505 returned by remote Oracle server
    RMAN>
    Regards,
    DB

    Hi,
    Can you paste here you rman script ?
    I think following script can help you.
    duplicate target database for standby
    from  active database
    spfile
      set "control_files"="d:\oradata\<standbydbuniquename>\CONTROL01.CTL"
      set "db_name"="<DBNAME>"
      set "db_unique_name"="<STANBYD DBA UNIQUENAME>"
      set "db_file_name_convert"="C:\app\oracle\oradata\<dbname>","d:\oradata\<standbydbuniquename>"
      set "log_file_name_convert"="C:\app\oracle\oradata\<dbname>","d:\oradata\<standbydbuniquename>"
      set "db_recovery_file_dest"="D:\fast_recovery_area"
    nofilenamecheck;C:\app\oracle\oradata\<dbname> - it is primary database dafiles location
    D:\oradata\<standbydbuniquename> - it is standby database datafile location.
    Don't forget creation of diagnostinc dests.
    Regards
    Mahir M. Quluzade

  • Getting error CJS-00084 SQL Statement or script failed while creating a DB

    Hi All,
    I ma trying to install IDES CRM 4.0 with Oracle DB and process went fine till the point of central instance installation. I am at the final step of installing the database instance and got an error while it is performing different steps of it.
    At the step CREATE ORACLE DATABASE, i got the below error message:
    CJS-00084  SQL statement or script failed. DIAGNOSIS: Error message: ORA-01092: ORACLE instance terminated. Disconnection forced
    Can someone help me to resolve this?
    Thanks
    Vijay

    -> did you follow all steps correctly? for example did you say NO when runinstaller asks for database creation?
    -> which operating system are you on?
    GreetZ, AH

  • The connection has failed while creating a New Repository using Oracle BI 11g Administration Tool

    hi
    In the BI Administration Tool when i try to create a “New Repository…” faced The connection has failed I try all of these solutions but dident work..
    1-configured my “System DSN"
    2-enter “TNS_ADMIN” for the “Variable Name” field and for the “Variable Value” enter the location of my OBIEE
    3-copy the sqlnet and tnsnames.ora files into E:\obiee11gtmt\Oracle_BI1\network\admin and E:\obiee11gtmt\oracle_common\network\admin
    4- put this in DSN with connection type OCI 10g/11g (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = IP Addr)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = ORCL) ))
    please help me
    regard

    1.Place tnsnames.ora file in the following paths,
    E:\obiee11gtmt\oracle_common\network\
    E:\obiee11gtmt\Oracle_BI1\network\admin
    2.Navigate to
    E:\obiee11gtmt\instances\instance1\bifoundation\OracleBIApplication\coreapplication\setup\
    Open user.sh file in a notepad
    Set Tns_names paths as shown below with your tnsnames.ora file’s location,
    set TNS_ADMIN=C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN
    The above path is of your installed Database tnsnames.ora file
    I guess you didnt do this step. This will solve your issue.
    Restart all the services
    If helpful, please mark the answer.
    Srikanth

  • PDFMaker Office 2010 fails while creating the PDF

    I have a Window 7 laptopn with Office 2010 Adobe Acrobat 8.2.5. Slect create PDF button on tool bar and process starts but hangs while "onverting to PDF". Error occurs in MS Word, Excel & Powerpoint. System has worked fine up unitl a week ago. PDF creation in MS IE 8 have never worked but the Office suite ahs always worked.
    Tried rebooting, disbaling and reenabling the PDFMaker ADD-IN in office, downloaded alll the lated Adobe updates.
    Anyone any suggestions ?

    Hello there,
    I'm sorry you're having trouble. Unfortunately, this forum is exclusively for questions about Acrobat.com (www.acrobat.com); we're not able to help with questions about problems with other Adobe products and services. Here are some links that may be more helpful:
    Acrobat Help and Support:
    www.adobe.com/support/acrobat
    Acrobat Users' moderated forum:
    www.acrobatusers.com/forum
    I recommend posting this question to the Acrobat Users' forum, where there are many helpful and knowledgeable participants. I'm sorry not to have more specific advice for you! Best of luck.
    Kind regards,
    Rebecca

Maybe you are looking for

  • How to compare the data in a highscore file(.txt)  for a game?

    As mention above,i would like to check the highscore everytime the game has finished,and updates it, what classes should be used? FileReader, FileWriter, or Properties? If so, how the codes is likely to be? Thanks a lot.

  • Crystal Reports 2008 Trial crashes; crw32.exe error; any fix?

    I downloaded the trial for Crystal Reports 2008 and I can open the application fine, but when I go to create a report and click on the u201CCreate New Connectionu201D for the database I get a Just-in-time error for crw32.exe and my application shuts

  • Draw polygon in applet

    HI, I want to be able to draw polygon using java applet. I have code to draw poly in an applet but I am wondering if the java tool can draw directly on html image not on image inside of applet. Please help Ying

  • Printing black as a 'dropout' color (and not overprinting)

    How do I set up a solid drop shadow on type without having the black shadow overprint a color beneath it? I have it overprinting a red background, and you can see a slight tint of red in the black drop shadow. Thanks.

  • Printing Invoices in Background Jobs

    Hello, We have an o/p type that is processed each time a billing document is created. The o/p type prints the billing document as soon as it is saved. When we have a billing due list program run in background the printouts are waiting in the Spool an