IN PRODCUTION ORDER,REAMRKS FILED IS SET AS MANDATORY USING STORED PROCEDURE..HOW TO REMOVE IT?

IN PRODCUTION ORDER,REAMRKS FILED IS SET AS MANDATORY USING STORED PROCEDURE..HOW TO REMOVE IT?

Hi,
Please try to simply your subject of posting. It is not necessary your subject and body of discussion should be same.
Yes possible to remove under SQL management studio provided you have authorization to access.
Thanks & Regards,
Nagarajan

Similar Messages

  • In my pc iam using fire fox now it is asking please check procky setting i am using 13.0 how can i solve this problem

    in my pc iam using fire fox now it is asking please check procky setting i am using 13.0 how can i solve this problem

    Firefox, please update to Firefox 31. [[Update Firefox to the latest version]] 13 is not supported anymore.
    After that, [[Advanced settings for accessibility, browsing, system defaults, network, updates, and encryption]]

  • How to use stored procedure which returns result set in OBIEE

    Hi,
    I hav one stored procedure (one parameter) which returns a result set. Can we use this stored procedure in OBIEE? If so, how we hav to use.
    I know we hav the Evaluate function but not sure whether I can use for my SP which returns result set. Is there any other way where I can use my SP?
    Pls help me in solving this.
    Thanks

    Hi Radha,
    If you want to cache the results in the Oracle BI Server, you should check that option. When you run a query the Oracle BI Server will get its results from the cache, based on the persistence time you define. If the cache is expired, the Oracle BI Server will go to the database to get the results.
    If you want to use caching, you should enable caching in the nqsconfig.ini file.
    Cheers,
    Daan Bakboord

  • How to set database location for stored procedure

    Post Author: Pavel
    CA Forum: Data Connectivity and SQL
    I've already found out that setting location is not only my problem, but I can't understand the correct decision. We using CR to create reports, accessing the data in MSSQL by ODBC.
    Previously (up to version 8) I set location directly, editing the "Table" field in "Set Location" form. Command after report creation was:
    Proc(DBNAME.dbo.PROCEDURE_NAME;1)
    I erased "DBNAME.dbo.", so the correct command was
    Proc(PROCEDURE_NAME;1)
    After that, the report can run on any database name, any ODBC datasource with any owner name of procedure.
    Now we had to upgdate to CR 11 Developer Edition.
    Here I can't erase database location. But when I change database location to ODBC datasource for another database, the properties of stored procedure "Catalog" and "Owner" remain the same as they initiated when report was created! So, when report runs, it call
    exec OLD_DB_NAME.dbo.PROCEURE_NAME;1 ....
    So, the report doesn't work on customer database, because it has different name.
    How can I erase any database location in the report?We run reports using API from Gupta Team Developer applications, may be it is possible to set database location by API before running report?
    Plese help, any tips are usefull.

    Post Author: Pavel
    CA Forum: Data Connectivity and SQL
    When I set location to another database (i.e. another ODBC datasource) by clicking Update button, "Catalog" property is not changing! It remains unaltered. I had to remove procedure from report and then add procedure from another database, so there was a lot of formatting fileds after that.
    This is not a right decision. I didn't solved current problem, I only temporary patched it.
    The correct desision is to set location programmatically from application.But function PEGetNthTableLocation returns empty strings in CR11, or I incorectly declared this function (from CR8.5):
    BOOL CRPE_API PEGetNthTableLocation ( short printJob,  //handle to print job short tableN,  //number of table struct PETableLocation FAR *location     //structure pointer);typedef struct PETableLocation {    WORD StructSize;    char Location [PE_TABLE_LOCATION_LEN]; //256    char SubLocation[PE_TABLE_LOCATION_LEN]; //256    char ConnectBuffer[PE_CONNECTION_BUFFER_LEN]; //512} PETableLocation;

  • Match is downloading songs even when Music is set to not use cellular. How is this possible?

    I have turned off cellular data for my Music but when I'm driving in my car, songs are playing that I have not downloaded to my phone. Then, when I look at the library on my phone and try to delete these songs, they won't delete.  I own the songs and they are in my Match cloud but I'm 1) getting charged data usage and 2) somehow stuck with songs on my phone that I don't necessarily want on there.
    I took the phone into a store and they couldn't figure it out either. They said I had somehow downloaded these songs when I synced to a device in my home. I'm not sure how that is possible when I'm driving down the road. My current phone has never been plugged into any device to sync. This was happening on a 5S that I just took in for service replacement and is happening now on the new 5S that they gave me as a replacement phone. Very Frustrating!!

    What makes it worse is that the user made linux touchpad drivers for synaptic touchpads does let you define the phyiscal touch area.  So in linux you could easily shrink the area so the touch area does not include the buttons.
    There is no technical reason why the windows driver cannot support this. Just add a tab to the menu for touch area and let people define it with a box just like the current driver allows you to set touch zones.  Then the feature is universal and it would work for any future variation of physical buttons and touchpad area.
    I personally am in awe of how they could make a touch pad where the physical buttons double as touch area and not notice that you need a way to exclude the buttons from the touch area if you actually want to use them.  Why did they make physical buttons that you cannot use?  Do they not test this stuff?

  • Character set error comming in  stored procedure

    i am writing these SQL lines when execute these giving me error
    SQL Lines
    SELECT DocDate,
    NVL(SMTransType.Description, '<Not Provided>') DESCRIPTION,
    CASE
    WHEN DocType = 'GRN' THEN ( SELECT GrnNo
    FROM IVGrnMst
    WHERE ID = DocID )
    END "ReceiptNo",
    CASE
    WHEN DocType = 'PUR' THEN ( SELECT PrNo ---- its data type VARCHAR2(50)
    FROM IVPurReturnMst
    WHERE ID = DocID )
    WHEN DocType = 'SCP' THEN ( SELECT ConsumptionCode --its data type NVARCHAR2(50)*
    FROM IvStoreConsumptionMst
    WHERE ConsumptionId = DocID )
    END "IssueNo"
    FROM IVStockRegister Stock INNER JOIN
    SMTransType
    ON Stock.DocType = SMTransType.Code;
    SQL SQL Error: ORA-12704: character set mismatch
    12704. 00000 - "character set mismatch"

    are you sure your SELECTs on in the case after when return single value?
    try this, please
    SELECT DocDate,
      NVL(SMTransType.Description, '<Not Provided>') DESCRIPTION,
      CASE
        WHEN DocType = 'GRN'
        THEN
          ( SELECT MIN(GrnNo) FROM IVGrnMst WHERE ID = DocID
      END "ReceiptNo",
      CASE
        WHEN DocType = 'PUR'
        THEN
          (SELECT MIN(PrNo) ---- its data type VARCHAR2(50)
          FROM IVPurReturnMst
          WHERE ID = DocID
        WHEN DocType = 'SCP'
        THEN
          (SELECT MIN(ConsumptionCode) --its data type NVARCHAR2(50)
          FROM IvStoreConsumptionMst
          WHERE ConsumptionId = DocID
      END "IssueNo"
    FROM IVStockRegister Stock
    INNER JOIN SMTransType
    ON Stock.DocType = SMTransType.Code;

  • SQL Adapter Crashes with large XML set returned by SQL stored procedure

    Hello everyone. I'm running BizTalk Server 2009 32 bit on Windows Server 2008 R2 with 8 GB of memory.
    I have a Receive Port with the Transport Type being SQL and the Receive Pipeline being XML Receive.
    I have a Send Port which processes the XML from this Receive Port and creates an HIPAA 834 file.
    Once a large file is created (approximately 1.6 GB in XML format, 32 MB in EDI form), a second file 1.7 GB fails to create.
    I get the following error in the Event Viewer:
    Event Type: Warning
    Event Source: BizTalk Server 2009
    Event Category: (1)
    Event ID: 5740
    Date:  10/28/2014
    Time:  7:15:31 PM
    User:  N/A
    The adapter "SQL" raised an error message. Details "HRESULT="0x80004005" Description="Unspecified error"
    Is there a way to change some BizTalk server settings to help in the processing of this large XML set without the SQL adapter crashing?
    Paul

    Could you check Sql Profiler to trace or determine if you are facing deadlock?
    Is your Adapter running under 64 bits?
    Have you studied the possibility of using SqlBulkInser Adapter?
    http://blogs.objectsharp.com/post/2005/10/23/Processing-a-Large-Flat-File-Message-with-BizTalk-and-the-SqlBulkInsert-Adapter.aspx

  • Setting page items from Stored Procedure/Package

    Hi,
    Can anyone tell me if it is possible to set the values of page items from stored pl/sql code. I have some reasonably complex biz logic that I want to package and store in the database (not just call an anonymous pl/sql block through a page process). However within that stored code I want to set items on my page based on input parameters, other items on the page or calculations eg.
    I want to do something like:
    :P6_INT_ACC_START_DT := p_bony_auction_dt + 1;
    when trying to compile this code I get invalid bind variable error
    I also tried:
    V('P6_INT_ACC_START_DT') := p_bony_auction_dt + 1;
    but got invalid use of V function error
    Any ideas?
    Thanks, Robert

    Call apex_util.set_session_state:
    apex_util.set_session_state(p_name => 'P6_INT_ACC_START_DT', p_value => p_bony_auction_dt + 1);
    ...although be aware of date-to-varchar2 conversion and use date format masks explicitly.
    Scott

  • Setting Date value in stored procedure via jdbc

    I have a stored procedure where one of the parameters is a date value. I am trying to invoke this through jdbc with a CallableStatement. I am creating a java.sql.Date object and passing that to setDate() on the CallableStatement. When I execute the statement, Oracle always uses 00:00 for the time (hh:mm). Why can't Oracle interpret a java.sql.Date and get both the date and time values? Do I need to somehow call the Oracle function to_date(stringvalue, "yyyy-mm-dd hh:mm") to create an Oracle date value and if so how would I execute that from java through jdbc? My guess is that I can't. Any thoughts would be appreciated.

    ok this is the package header:
    create or replace package get_outvalue_test is
    type rec is record (time archive.time%type,
    value archive%type);
    type value_tab is table of rec index by binary_integer;
    procedure get_value(p_returnvalue IN OUT value_tab);
    end;
    package body :
    create or replace package body get_outvalue_test is
    procedure get_value(p_returnvalue IN OUT value_tab)
    is
    ii number;
    cursor valselect is
    select time,value from archive where u_id=5666
    and time=:block.date_item ; -- this is the return date from LOV
    begin
    open valselect;
    ii:=1
    loop
    fetch valselect into
    p_returnvalue(ii).time;
    p_returnvalue(ii).value;
    exite when valselect %notfound;
    ii:=ii+1;
    end loop;
    end;
    end;
    this is the error when i compile the package body :
    MIssing IN or OUT parameter at index
    i hope itis cleare and easy .

  • Setting default values with stored procedures

    I have a form that has Start Date and End Date text fields
    that I want to use to colect parameters to send to another page.
    How do I make these default to the first and last day of the
    current year? I know how to use the DATEADD and DATEDIFF functions
    to get the dates but when the value gets to the page it is 0. My
    data is stored in an SQL server.
    CREATE PROCEDURE [dbo].[sp_FirstDayOfCurrentYear] AS
    SELECT DATEADD(yy, DATEDIFF(yy,0,GETDATE()),0)
    GO
    When I run the in the SQL Query Analyzer it returns
    2006-01-01 00:00:00.000
    The command on the asp page is
    Type = Stored Procedure
    SQL = dbo.sp_FirstDayOfCurrentYear
    Variables: Name = @RETURN_VALUE Type = Integer Direction =
    RETURN_VALUE The remainder are blank.

    You'll need to edit the DW-generated code so your parameter
    is Empty instead
    of whatever default DW assigns (usually "" if you leave
    default blank).
    "mtsonic1971" <[email protected]> wrote in
    message
    news:e7rj9j$132$[email protected]..
    >I have a form that has Start Date and End Date text
    fields that I want to
    >use
    > to colect parameters to send to another page. How do I
    make these default
    > to
    > the first and last day of the current year? I know how
    to use the DATEADD
    > and
    > DATEDIFF functions to get the dates but when the value
    gets to the page it
    > is
    > 0. My data is stored in an SQL server.
    >
    > CREATE PROCEDURE [dbo].[sp_FirstDayOfCurrentYear] AS
    >
    > SELECT DATEADD(yy, DATEDIFF(yy,0,GETDATE()),0)
    > GO
    >
    > When I run the in the SQL Query Analyzer it returns
    2006-01-01
    > 00:00:00.000
    >
    > The command on the asp page is
    > Type = Stored Procedure
    > SQL = dbo.sp_FirstDayOfCurrentYear
    > Variables: Name = @RETURN_VALUE Type = Integer Direction
    = RETURN_VALUE
    > The
    > remainder are blank.
    >

  • Stored Procedure Result Sets in Reports 6.0

    Please help.
    I have successfully managed to write a PL/SQL procedure using
    the EXEC_SQL package in the Oracle to retrieve the return set
    from a SYBASE stored procedure (very similar to the example in
    the HELP documentation).
    I would like to incorporate this output into a report using the
    Oracle Reports Server 6.0 but I am not sure how to do this. If
    anyone has any clues as to how this can be accomplished (PL/SQL
    tables, reference cursors, beads or ribbons [only kidding]) then
    I would be most grateful.
    Thank you.
    Andrew.
    null

    Andrew McSherry (guest) wrote:
    : Please help.
    : I have successfully managed to write a PL/SQL procedure using
    : the EXEC_SQL package in the Oracle to retrieve the return set
    : from a SYBASE stored procedure (very similar to the example in
    : the HELP documentation).
    : I would like to incorporate this output into a report using the
    : Oracle Reports Server 6.0 but I am not sure how to do this. If
    : anyone has any clues as to how this can be accomplished (PL/SQL
    : tables, reference cursors, beads or ribbons [only kidding])
    then
    : I would be most grateful.
    : Thank you.
    : Andrew.
    I would like to suggest the following procedures:
    1. Create a Oracle work table for the Result Set and
    Modify your pl/sql to insert the result set into
    Oracle work table.
    2. Place your pl/sql procedure in Oracle Reports
    Triggers (i.e. Before Report or After parameter
    form)
    3. Define the Data Model using the oracle work table in
    Oracle Reports.
    Peter Ng
    null

  • Division field Set as mandatory but it is effecting to other fields in sale

    Hi all.
    I want to set division field as mandatory field at material master creation..
    I have made Division(MARA-SPART) as required option for MM01 in field selection.
    But the problem is, if I set Division as mandatory simultaneously Setup time,base quantity,shipping process time, in Sales:General view are set as mandatory automatically..
    How can i set only division as mandatory at Basic view in material creation..
    plz help me..
    thanks and regards
    ramesh reddy

    In OMSR change the  Field sel. group  for MARA-SPART to new no. say 210 , Use this Field sel. group (210)  in OMS9 to achieve your requirement.

  • Result Sets and Stored Procedure

    In advance one question in general - since I never know: What actually is a result set???
    Is it a cursor with a direct connection to the server-side database-data ? Or is it just a copy of the results once "loaded" by the query and delivered by the Server to the client ???
    Second: I have a Stored Procedure on a MS SQL Server 2000
    I try to call the stored procedure via jdbc. The last query in the Stored Proc is a query relying on local temporary tables. If I execute the stored procedure by my java-class, i get a
    java.sql.SQLException: [Microsoft][SQLServer JDBC Driver]No ResultSet set was produced.
    The usual "Select, Update and Insert-stuff" works fine with JDBC.
    Stored Procedures WITHOUT resultset work fine too.
    But this one just refuses to give me the results.
    Executing the same stored procedure in 'MS SQL-QUERYANALYZER' gives me my expected results.
    Any ideas?
    Sven

    In advance one question in general - since I never
    know: What actually is a result set???
    Is it a cursor with a direct connection to the
    server-side database-data ? Or is it just a copy of
    the results once "loaded" by the query and delivered
    by the Server to the client ???The first one, more or less. It relies on the connection to retrieve the results, .. if the connection is lost, so is the data in the ResultSet.
    Second: I have a Stored Procedure on a *MS SQL Server
    2000*
    I try to call the stored procedure via jdbc. The last
    query in the Stored Proc is a query relying on local
    temporary tables. If I execute the stored procedure by
    my java-class, i get a
    java.sql.SQLException: [Microsoft][SQLServer JDBC
    Driver]No ResultSet set was produced.Have you tried a basic stored procedure that should return a ResultSet?.. maybe one that doesn't rely on the temporary tables? You may want to also check with the support for the driver you're using since that's really where the ability to use stored procedures resides.

  • XML result set storage and stored procedures

    Hi,
    Is there an alternative way to store and process a large data result set from an XML document without using temporary tables in an Oracle DB? If so, how can this be implemented using stored procedures?
    Additional Info:
    I am planning to use a directory server as my data source and returning an XML document to the store procedure that executes a query to this server. I read somewhere that table variables can be used as an alternative, however it is not the desired option when you have large result sets due to potential performance issues. Any guidance you can provide would be appreciated. Thanks

    You could have a go with XML functions, but probably, because you mentioned "large data result set", you will have to deal with it programmatically. I have read once good examples in a book called "Building Oracle XML Applications" from Steve Muench (http://www.oreilly.com/catalog/orxmlapp/), but it is a little bit dated. Nevertheless a book from Steve is worth while.

  • Material Avaliability check in Prodcution Order

    Greetings,,,,,,,,,,,
                              I have two productin order , one for finsih material and other for semi finish material.
    when i check materila availibilty of semifinsh prodcution order (co02), i m getting mising part overview and missing list .
    Now when i check mateial availibilty for finish product , then sytem shows the msage that "all cehck for material are avialable "
    But still there is no semi finish material is in stock , it has to be still to produce..so it is shortage for finish production order and it should come in missing product list.
    How to do it ??? why system for finish produciton order showing that all materila are check for availibilty instead of missing part list of semifinish .
    Availability check for finish product is 02
    Availability check for Semi finish product is 02
    Availability check for semifinish component is 01
    Edited by: SAP PP on Dec 23, 2008 11:32 AM

    Dear SAP PP,
    Availability check is doing right according to std settings for 02 for  FERT material. Because system is considering planned/production order is the stock which is going to come to the stock and will  be available for the FERT material order. Halb is dependent requirement for the FERT.
    This setting we have defined in the OPJK for checking group(01/02) and checking rule(PP) combination. In inword and outword movements include all planned orders and include all production orders X has been maintained. That means it is considering planned and prod. order qty which will be available for the parent material.
    If u remove the X from those two parameters, u will also get missing parts for the FERT material. But according to std. it is not advisable for testing u can do this.
    I hope u r clear
    sree

Maybe you are looking for

  • Total Text Display at the end of the ALV

    Hi, I want to display the text 'TOTAL' in my ALV at the end of my report.I am pasting my code, So please any one help me in this issue. *& Report  ZFIR0011_O2C_TAX_GL_SUMMARY REPORT  zfir0011_o2c_tax_gl_summary. TYPE-POOLS slis. TABLES: faglflexa. Co

  • Unicode issue (# in FILE) URGENT

    Hi, I am uploading a file with GUI_UPLOAD and downloading this file again on the SAP Server with OPEN DATASET IN BINARY MODE / TRANSFER / CLOSEDATA SET on a UNICODE system. When I look in AL11 to the downloaded file I see a lot of # (#<#?#x#m#l# #v#e

  • How do I copy over "Created By" & "Modified By" field values to a new library, using PowerShell?

    I have a site that was migrated from SP 2007 to 2013, using a docave tool...this works fine and everything seems to be okay. However I now have to move documents from one Library to a new one, along with all associated metadata. I have a PowerShell s

  • Export and import LineGroups in CUCM 6.1

    Hello, I need to modify Linegroups in a CUCM 6.1, and like many, I need to do it through BAT, but I have not got the option in CUCM 6.1 (I have fount it in newer versions: 7.X, 8.X and 9.X) In the help in the CUCM webpage you can found info that you

  • Where is page information stored in DB or can I add a portlet dynamically?

    I want to add a protlet to a page dynamically. I assume if I can find where pages are stored, I can look there for a hint. Does anyone know where they are stored? Or how do I add a protlet to a page dynamically? I suppose I could use a dynamic page,