How to block a record.

hi
1)
i heard about blocking a record in the DAtaBase.
may i know how to do this...
2)
i am working into plsql developer at backend. my project using front end as .Net and back end as Oracle 10g...
when i am creating SP's at database side, i am giving input and output to Front end peoples...this is the way.
now my problem is.. SP giving correct output at front end.. while deploying my modules at client side, they didnt get result..???
a) front end peoples have checked their code, it was correct.
b) at backend output is coming correctly, and data is valid in database,
But at client side we didnt get output for one particular field (ListItem)..???

The question is so vague.
One thing I understand. If you are getting an output on the backend test (pl/sql developer or some other IDE), and you are not getting the output on the front end (.NET in this case), then, obviously there is a difference in the environments.
Your (along with your front-end developers) trick is to find what the difference in the env's is. You can put some debugging in the code to make sure the procedure is even getting called from the front end... Good luck.

Similar Messages

  • How to clear a record of control block

    i have one control block with 2 items and the Max. records displayed property is set to 10.I have populated 5 records and now i want to clear one record, but the clear_record statement does not seem to be working. How to clear a record in a control block. Please help me out in this doubt of mine.

    You have probably moved focus to another block. You have to go_block and maybe go_record before using clear_block.

  • How to Save Multiple Records In Data Block

    Hi All,
    I Have Two Blocks --> Control Block,Database Block
    Please Any Idea How to Save Multiple Records In Data Block when User changed Data in Control Block.
    Thanks For Your Help
    Sa

    Now i have to use each record of control block(ctl_blk) as where condition in data base block(dat_blk)and display 10 records from database table.>
    Do you want this coordination to be automatic/synchronized or only when the user clicks a button or something else to signal the coordination? Your answer here will dicate which trigger to put your code in.
    As to the coordination part, as the user selects a record in the Control Block (CB), you will need to take the Key information and modify the Data Block's (DB) "DEFAULT_WHER E" block property. The logical place to put this code is the CB When-New-Record-Instance (WNRI) trigger. You code will look something like the following:
    /* Sample WNRI trigger */
    /* This sample assumes you do not have a default value in the BLOCK WHER E property */
    DECLARE
       v_tmp_dw    VARCHAR2(250);
    BEGIN
       v_tmp_dw := ' DB_Key_Column1 = '||:CONTROL.Key_Column1||' AND DB_Key_Column2 = '||:CONTROL.Key_Column_2;
       Set_Block_Property('DATA_BLOCK', DEFAULT_WHER E, v_tmp_df);
       /* If you want auto coordination to occur, do the following */
       Go_Block('DATA_BLOCK');
       Execute_Query;
       /* Now, return to the Control Block */
       Go_Block('CONTROL_BLOCK');
    END;
    The Control block items are assigned with values in Form level (Key_exeqry).If your CD is populated from a single table, it would be better to create a Master - Detail relationship (as Abdetu) describes.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How to block an order if the price is too low?

    Hello,
    My problem is :
    How to block an order if the price is too low?
    I created a new type of condition ZMIN and an access by material.
    When the net price is below the minimum price the system must position the order on incomplete document for error of price.
    Thank you in advance.
    Frédéric Blaise
    e-Kenz S.A.

    Hello,
    you can enter a lower limit in the condition record:
    Lower limit of the condition rate/amount
    Indicates whether, during document processing, the system checks if manual changes fall short of the lower limit allowed for the corresponding condition record.
    Use
    When you maintain the scales in a condition record, the system checks whether the scale value falls below the lower limit.
    Or you can use the flag 'conditon update'.
    Condition update
    Controls whether limit values are relevant for pricing.
    E.g.: you can make the use of a particular condition record in the document dependent on a specified total value.
    This total value can be specified in the condition record.
    I hope that the information are helpful.
    With best regards
    Claudia Neudeck

  • How to block attachment deletion in a DMS document

    Hi gurus,
    Does anybody knows how to block some users to delete the attachment in some DMS types? Is there any configuration that can be done to control this?
    Many thanks!
    Renan

    Hi Renan,
    in the standard each user who is able to edit the document info record (enter CV02N) is able to delete the attached originals.
    However a user is not able to delete originals if the document is set to a status of status type 'S' (locked status). Within this kind of status it is not possible to delete originals and change some other document data.
    So you can also try to create a authorization profile where some users are only allowed to enter document info records with a non-locked status. So you avoid that some users are able to enter document info records which are not set to a locked status.
    For this please see the WIKI page under https://www.sdn.sap.com/irj/sdn/wiki?path=/display/plm/caDMS-AuthorizationObjects where you will find all the existing DMS authorization objects.
    Maybe object C_DRAW_TCS or C_DRAW_TCD could be useful for this issue.
    Best regards,
    Christoph
    P.S.: Please reward points for useful information

  • How to Block the GRN,

    Dear Experts
                       How to block the GRN, to avoid the excess inventory for the particular  material.

    Hi Raja
    I assume that you are referring to stopping GRN of goods with resepect to the PO qty
    In that case If you want to stop the GR of more goods than the quantity ordered, you can use delivery
    tolerance settings in either material master data or purchase info record data.
    Regards
    Vikrant

  • How can i populate records using LOV value in form 6i

    Create a form based on the following output use EMP Table
    Create a non Database Block i.e Control Block----> Dept No
    Create a Database Block -EMP
    Create an LOV for the Dept no from dept table.
    For the Current Dept No . Populate the Employee Records
    How can i populate records using LOV value????
    thanks

    How can i populate records using LOV value in form 6i Start by posting in the correct forum: {forum:id=82}
    (Seriously: after making all your previous posts in the Forms forum, how do you end up posting in this one? Is it because the Forms forum has changed category?)

  • How can i populate records using LOV value

    Create a form based on the following output use EMP Table
    Create a non Database Block i.e Control Block----> Dept No
    Create a Database Block -EMP
    Create an LOV for the Dept no from dept table.
    For the Current Dept No . Populate the Employee Records
    How can i populate records using LOV value????
    thanks

    Hi maddyd2k
    How can i populate records using LOV valueIt's not clear what u r trying to do create, create then want to...
    1.Pls Create a non-db item db set to > no named DEPT_NAME
    2. when creating the LOV assign the DEPT_NAME FROM DEPT table to that displayed item and u have also to assign the Dept No selected to the Dept No in the emp block
    To populate or display DEPT_NAME after Query - the If i got ur problem then - u need to cretae a Post-Query Trigger then use the following...
    BEGIN
    SELECT DEPT_NAME
    INTO :CONTROL_BLOCK.DEPT_NAME
    FROM DEPT
    WHERE Dept No = :Dept No;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN NULL;
    WHEN OTHERS THEN (ERRTXT);
    END;Hope this helps...
    Regards,
    Abdetu...

  • How to color the records in a tabular form

    hi,
    i am using oracle 10g forms
    how to change the color of records on conditional basis in a tabular form display.
    thanks

    Well i give u item level to apply it in the whole record including...
    emp , ename & sal
    any way to do it block level u can use Current Record Attribute Property block level but if u programatically do it as mentioned u can have a lock on something resemble to ur case pls have a look at Craig's Oracle Stuff How to Select Multiple Records in a block using Record Groups just to exclude the idea u want to develop.
    Hope this helps...
    Regards,
    Amatu Allah

  • How to block sale order

    Hi
         Can anybody clarify me how to block sale order at material level (One sale order for no. of materials).  While searching for it got solution using XD05 Tcode which blocks at customer level. For my scenario one customer having more than one material.  How to block it?
    Regards,
    K.V.Manikandan

    HI,
    Listing and exclusion functionality are used to block customer for particular material which is readily available in standard SAP.Use standard exclusion type B001 and create condition record for all customer material combination for which you want to block the customer,
    Path: Spro-IMG-Sales and distribution-basc function-listing and exclusion:
    Second way:  You can also block particular customer at sales area level by assign 01 at sales org level against field "DChain-spec. status'
    This will resolve your problem if you want to block the material for particular customer.
    Regards
    Jitendra singh

  • How to block adds on iPad air

    How to block add ON IPAD AIR

    You can use the Camera app : open the app, slide/drag the Video / Photo / Square options on the right-hand side of it so that 'Video' lines up with the yellow dot next to them, and you should then be able to take a video in the app by pressing the round button above those options to start recording, and tap it again to stop.

  • How to block mobile devices connected to internal Wi-Fi networks on Lync 2013

    How to block mobile devices connected to internal Wi-Fi networks on Lync 2013.
    we don't have lyncdiscoverinternal.contoso.com and lyncdiscover.contoso.com in internal DNS record, all mobile users are connecting from Internet, and we want it to be that way.
    So if I create the lyncdiscoverinternal.contoso.com record for Windows desktop clients autodiscover, how do I block internal mobile users from connecting to Lync??
    Praveen | MCSE Messaging 2003

    Hi Praveen,
    Based on my experience, one way to achieve this purpose you need to use the Reverse Proxy that is integrate with a Firewall (e.g. TMG 2010 , F5, etc…).
    Please have a look at the following picture.
    In Lync Server 2013,
    both the internal Mobility Service URL and the external Mobility Service URL are associated with the external Web Services FQDN.
     From the above picture, if you use a reverse proxy that is
    separate from the firewall, then the hairpin will be created,
     and cause the mobile client which connected to the internal Wifi will be able to
     access the external interface of the Reverse Proxy.
    In this situation, the mobile client which from Internet will not be effected.
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to block popups in bdc

    hi all,
    how to block popups in bdc.?
    thanks.

    Hi
    popups which are coming is for u to guidee u that wat exactlt you hv recorded
    still if u want to change anything or any screen processing
    you can change in program...
    anf run the BDCin backgroud
    it uploads the data and want gives any screen...
    HTH
    <REMOVED BY MODERATOR>
    regrds
    rajan
    Edited by: Alvaro Tejada Galindo on Apr 10, 2008 4:48 PM

  • How to lock the record in the Form

    .How to lock the record
    That is In my customized form if user query the record in one of our Customized form and the system automatically should prevent by quering the same record by other user for the same form .The message to be displayed as locked by another user .
    For example in standard form the same option is available.
    Form Name:GMEBCHED.FMB
    Module:ORACLE PROCESS MANUFACTURING(OPM)
    Could you pls help us how to implement the same for our Customized form .
    Appricaiate your help .
    Regards,
    Radha krishnan

    Hi,
    I tried to put the code under Post-Query trigger. Since user can input the selection criteria in the form. After the form open, after I input the "Update user" ID (this is in the non-base table block), the oracle message prompt: FRM-40653: Record not reserved for update or delete. Try again later..
    So, is there any method to solve it?
    Thanks a lot.
    Regards.

  • How to block a partner customer from transaction posting

    Dear Experts,
    Please suggest/advice how to block a partner customer from transaction posting,As we have two customer categories defined 1.Parent customer 2.Child customer.One parent customer has several child customers and they are assigned in partner function part of the child master record.We have defined the parent customers for reporting purpose only,not for any transactions to be done.
    So please suggest how can we block those parent codes from being transacted directly.We wan them only for reporting purpose.
    Can we do the restriction on account group level or we have to make a validation for this.
    Please advice.
    Regards
    Partha

    Dear Partha,
    You need to Block customer against posting -> Transaction FD05 (you can choose foe selected company or for all)
    You can block also directly the invoice/payment in the document
    Or define some tolerance limits and system block automatically
    Let me know if it is not clear
    Thanks
    Tarek

Maybe you are looking for

  • Redirect 302 doesn't work

    I need to do a redirect 302, I made this script but it is doesn't work. I modified a script, I include inside it a redirect 302. Could you tell me what is wrong? .. ... .. Over this script there is othr code. .. .. . IF Request.QueryString("id") = "o

  • After i enter a website it appears a security question when i say for it to allow the webpage appears out of normal, what to do?

    when i'm entenring a page like facebook the security question appears, i press ad exception and then the page appears nothing like normal, it apears like someone copyed every text and put in Word.

  • RAC Database

    Hello, While installing RAC database binaries , Following error was reported into installation logs and installation hang. INFO: ORACLE_HOME = /u01/oracle/app/oracle/product/11.2.0 INFO: PATH = /usr/bin:/usr/ccs/bin:/usr/kerberos/bin:/usr/local/bin:/

  • Why won't Logic work in 64 bit?

    Hello, I recently upgraded to a Mac Pro, Quad Core 2 x 2.66 gHz. I'm running Snow Leopard and Logic 9.1.1. Shouldn't Logic now run in 64 bit mode? Do I need to set something up in the preferences?

  • Unnecessary extra space automatically added in a 2-col. index

    I am composing an index of topics for a volume of articles. The problem is that InDesign automatically adds an extra space here and there after an individual entry. The best way to describe the situation is to show a screenshot, I think: http://www.a