Removing or Hiding 'ROW DETAILS'

Hi
For our SAP B1 solution in entering Sales Orders, we have  fixed through various Price Lists. In the front end, we have the Price column visible but inactive through form settings. However, the problem we recently noticed was that anyone could Right Click > Go to Row details and change the price to whatever.
Is there anyway to block a persons ability to go to either Row Details or to make the price column inactive over there. The 'Form Setting' button does not work in Row details
We are using B1 2007A PL42
Thanks for your help.
~ moiz

I think we have improved on the query and it seems to work fine now. Ill post it over here for everyone's reference soon.
Edit: Here is the query we used
IF @transaction_type IN ('A','U') AND (@Object_type = '15')
BEGIN
IF EXISTS ( SELECT     dbo.ITM1.Price, dbo.ITM1.ItemCode, dbo.ITM1.PriceList, dbo.ODLN.CardCode, dbo.ODLN.CardName
FROM         dbo.DLN1 INNER JOIN
                      dbo.ODLN ON dbo.DLN1.DocEntry = dbo.ODLN.DocEntry INNER JOIN
                      dbo.ITM1 INNER JOIN
                      dbo.OCRD ON dbo.ITM1.PriceList = dbo.OCRD.ListNum ON dbo.ODLN.CardCode = dbo.OCRD.CardCode
                           where DLN1.PriceBefDi<>dbo.ITM1.Price and DLN1.itemcode=dbo.ITM1.itemcode and odln.usersign=32 AND ODLN.docentry = @list_of_cols_val_tab_del)
BEGIN
SELECT @Error = 5, @error_message ='Mandatory field [Price List] missing.'
END
-- Select the return values
select @error, @error_message
end
It checks against the user assigned Price List and gives error if price is different. The query also grants exemption to user whose usersign is 32 (a Manager in our case)
Hope it could help other people too!
Edited by: Moiz Aly Manji on May 30, 2009 6:17 PM

Similar Messages

  • Help with remove reversed duplicate rows?

    Hi:
    I have an application where I need to remove reversed duplicate rows, such as this:
    select 'A' x, 'B' y from dual
    union all
    select 'C', 'D' from dual
    union all
    select 'B','A' from dual;
    Output is:
    X Y
    A B
    C D
    B A
    What I need is to remove the 'B A' row because it already exists in reverse form as 'A B'. It does not matter which row is kept, 'A B' or 'B A'. Just one of them needs to be removed and the other needs to stay.
    Note that the actual query to generate the data is a little more involved, but I can use a with clause to make it an inline view. I'm hoping that the actual mechanics are not relevant. If that is not the case, please let me know and I'll post more details about the actual query.
    Any ideas?

      WITH T AS
    ( SELECT  'HOUSE' x, 'HOUSE' y FROM DUAL UNION ALL
    SELECT 'HOUSE', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'JME4Q08' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'JMEM' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'PGCM' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'PGCU' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'VEL' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'XXX08' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'PGCM' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'PGCU' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'VEL' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'XXX08' FROM DUAL UNION ALL
    SELECT 'JMEM', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'JMEM', 'JMEM' FROM DUAL UNION ALL
    SELECT 'JMEM', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'JMEM', 'PGCM' FROM DUAL UNION ALL
    SELECT 'JMEM', 'PGCU' FROM DUAL UNION ALL
    SELECT 'JMEM', 'VEL' FROM DUAL UNION ALL
    SELECT 'JMEM', 'XXX08' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'PGCM' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'PGCU' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'VEL' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'XXX08' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'JMEM' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'XXX08' FROM DUAL UNION ALL
    SELECT 'PGCM', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'PGCM', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'PGCM', 'JMEM' FROM DUAL UNION ALL
    SELECT 'PGCM', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'PGCM', 'PGCM' FROM DUAL UNION ALL
    SELECT 'PGCM', 'XXX08' FROM DUAL UNION ALL
    SELECT 'PGCU', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'PGCU', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'PGCU', 'JMEM' FROM DUAL UNION ALL
    SELECT 'PGCU', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'PGCU', 'PGCU' FROM DUAL UNION ALL
    SELECT 'PGCU', 'XXX08' FROM DUAL UNION ALL
    SELECT 'VEL', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'VEL', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'VEL', 'JMEM' FROM DUAL UNION ALL
    SELECT 'VEL', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'VEL', 'VEL' FROM DUAL UNION ALL
    SELECT 'VEL', 'XXX08' FROM DUAL )
    SELECT x, y
    FROM   (SELECT x, y, row_number() over (partition by least(x,y), greatest(x,y) order by rownum) rn
            FROM   t)
    WHERE  rn = 1
    HOUSE,HOUSE
    HOUSE,JME0609U
    HOUSE,JME4Q08
    HOUSE,JMEM
    HOUSE,MATCH2
    HOUSE,MATCH3
    HOUSE,PGCM
    HOUSE,PGCU
    HOUSE,VEL
    HOUSE,XXX08
    JME0609U,JME0609U
    JME0609U,MATCH3
    JME0609U,PGCM
    JME0609U,PGCU
    JME0609U,VEL
    JME0609U,XXX08
    JMEM,JMEM
    JMEM,MATCH3
    JMEM,PGCM
    JMEM,PGCU
    JMEM,VEL
    JMEM,XXX08
    MATCH2,MATCH2
    MATCH2,MATCH3
    MATCH2,PGCM
    MATCH2,PGCU
    MATCH2,VEL
    MATCH2,XXX08
    MATCH3,MATCH3
    MATCH3,XXX08
    PGCM,PGCM
    PGCM,XXX08
    PGCU,PGCU
    PGCU,XXX08
    VEL,VEL
    VEL,XXX08

  • Incoming payment rows details in Crystal report

    Hi Xperts
    I want to create Payment Advice print layout in Crystal Report.  Can anybody tell me which table is related Incoming payment Row wise details in SAP.
    I need following Details in SAP (Row Details)
    Document No,  Document Date, Document Total
    Any body help me out regarding this
    Thanks
    Balaji

    Hi Balaji,
    Check this link.
    [Crystal Generic samples from SAP|https://websmp204.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000635012009E&]
    It consists of most of all the documents in SAP.
    Hope this helps.
    Regards,
    Bala

  • Hiding rows in Web report

    I am currently hiding an entire row via ABAP classes using 'style="display:none"' however there is a thick gridline where the hiding row is. Has anyone encountered this before and is there a better way to hide rows? I have hidden columns using 'style="display:none"' and the report looks ok, but hiding rows this way leaves thick gridlines where the rows use to be.
    mark

    It seems the problem is the method for c_cell_td_extend will only hide the <TD>, but the <TR> will still exist, thus the gridline displaying in the report. does anyone know of a way to clear the <TR> as well for web templates?
    mark
    Message was edited by:
            Mark Siongco

  • How do you remove your credit card details on iOS8?

    Can someone Help me on how to remove your credit card details for the App Store, it won't let me update anything without making me put my credit card details in

    See step 2 under "Change your payment information on a Mac or PC":
    Change or remove your payment information from your iTunes Store account (Apple ID) - Apple Support

  • I can't remove my credit card details from Apple ID

    Hey guys
    I can't seem to remove my previous card details from my Apple ID, it keeps requesting me to enter the security code for that previous credit card.
    My card was stolen from me so I have no idea whats the CVS code anymore. But you are not giving me an option to change a new credit card in that section. This is causing my iPhone's App store to keep disabling the Apple ID. This is my 4 password change today trying to fix this problem.

    It happens on Mac App Store & iPhone App store as well.
    So clearly the problem is on my Apple ID..
    I've changed my credit card details on my Apple ID but it doesn't reflect onto my phone when I login after restarting the phone. Even if i sign out.
    When it reaches the part where I would need to verify my phone after entering my password. It just keeps requesting for my password and never shows me anything.
    If I click update apps it'll just disable my account. Even on my Mac App store same thing happening.

  • HT1918 Hi, I have registered at apple site, and i have submitted the credit card information, they deducted some ammount without my permission, why they did that? how can i remove my credit card details from that site or deactivate my account?

    Hi, I have registered at apple site, and i have submitted the credit card information, they deducted some ammount without my permission, why they did that? how can i remove my credit card details from that site or deactivate my account?

    From that HT3702 page :
    If you update your billing information, the iTunes Store or Mac App Store will place an authorization hold on your payment card account, usually in the amount of 1 USD or the local currency equivalent, to verify your account information.
    You might see authorization requests on your online statement. These requests aren't actual charges; they are tests to confirm that your payment card account is active and has available funds to accommodate transactions. Authorization holds are removed by your financial institution shortly after your purchase clears. The time it takes to remove authorization requests varies by financial institution.
    The number of days that it takes to diappear varies by bank, but it's usually a few days - though with the weekend coming up it might take an extra day or two

  • HT1918 How do I remove my credit card details from my Apple Account?

    How do I remove my credit card details from my Apple Account?  I do not like the fact that Apple does not provide a clear and simple option to 'Delete a payment card', I definitely do not think this is legal.
    I ask this question because I recently received a spam-like message from Apple asking me to log in and update my account.  I went in and did that, but I would like to remove credit card details from the account and it is horribly stubborn about holding onto my credit card details.

    Hi there
    Thankyou for the latter responses from ssschmidt and limnos - as it happens I figured this out by myself.  Yes, it appears that Apple will not let you delete an account UNTIL YOU HAVE VALIDATED THE CARD DETAILS.  That it, until you have given them all of your credit card details - even down to the 3 digit validation number.  Only once you have provided this information does the 'Payment type - NONE' appear.
    I figure however, that you can just put any 3 digits in, ie, it doesn't need to be your actual 3 pin code, for the system to let you pass to the NONE option.
    As I said before, I still think this ***** the big one.  Apple should not be insisting on getting customers' bank details in this way - especially since there are these PHISHING emails floating around which look extremely like official Apple communications.  It was the receipt of one such email that alerted me to this issue in the first place - thanks Limnos, I didn't respond :-)
    This is the first time I've used this 'user to user' set up for a query like this, and I totally think it's ridiculous. This information should be readily available from Apple - no wonder their profit levels are so astromical!
    Happy Mondays y'all!
    m

  • HT3702 How to remove my credit card details from the I pad

    My son has done in app purchases without my knowledge so I want to remove my credit card details from it how do I do it

    You can use Restrictions to block in-app purchases.
    How to Get Apps From the App Store Without a Credit Card
    http://ipadhelp.com/ipad-help/how-to-get-free-apps-from-the-app-store-without-a- credit-card/
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    http://support.apple.com/kb/ht2534
    If None is not available - On your computer launch iTunes and click "iTunes Store" in the left navigation pane. Click the "down arrow" next to your name at the top right side of the page and click "Account." Enter your username and password and click "View Account" to log into your account information. Next to your Payment Type, click "Edit." Select the "None" button and click "Done." Confirm that your card has been removed by returning to the Apple account information screen. Under Payment Type, it should say that there is no credit card on file.
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/HT1918
    iTunes Store Accepted Forms of Payment
    http://support.apple.com/kb/HT5552
     Cheers, Tom

  • HT1689 how do i remove my credit card details

    Please can you tell me if I am unable to completely remove my credit card details from my account?  If so, how do I do it?  Thank you.

    See the three previous discussions  on the right side of this page under the heading "More Like This" with your same question.

  • HT1918 how can i remove my credit card details from the iphone

    I fed my friends credit card details on my iPhone to purchase some apps, but whenever i am buying anything now on, the system does not prompt and the amount gets deducted from my friends account. Need to know how to remove the credit card details from the account.

    From that HT3702 page :
    If you update your billing information, the iTunes Store or Mac App Store will place an authorization hold on your payment card account, usually in the amount of 1 USD or the local currency equivalent, to verify your account information.
    You might see authorization requests on your online statement. These requests aren't actual charges; they are tests to confirm that your payment card account is active and has available funds to accommodate transactions. Authorization holds are removed by your financial institution shortly after your purchase clears. The time it takes to remove authorization requests varies by financial institution.
    The number of days that it takes to diappear varies by bank, but it's usually a few days - though with the weekend coming up it might take an extra day or two

  • HT5622 How do I remove my credit card detail from my account

    How do I remove my credit card detail from my account?

    Hey Michaelcruddace!
    Here is an article that can help answer this question for you:
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/ht1918
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • How do I remove my credit card details from my apple account?

    How do I remove my credit card details from my apple account?

    On your computer's iTunes you should be able to edit your payment info by going into the Store > View Account menu option and logging into your account, and on your account's details page there should be a payment link.  If you are doing it on your iPad then tap on your id in Settings > iTunes & App Store and tap on 'View Apple ID' on the popup and log into your account  - that should also give you a payments link on your account's page.
    Changing payment info : http://support.apple.com/kb/HT1918
    If you don't get the 'none' option on your account then do you owe iTunes anything or have any pre-orders/subscriptions due : http://support.apple.com/kb/TS5366 ?

  • How do I remove my credit card details from iTunes? In order to use my iTunes gift cards!

    How do I remove my credit card details from my iTunes, I order to use my iTunes gift card? Every time I try to buy something on iTunes it asks for my credit card details instead of using the voucher.

    Click "iTunes Store" in the left sidebar and under Quick Links (on the right) click Redeem. Your account will automatically use up the gift card money as you purchase your next consecutive items.
    In other words, it won't charge your credit card until the money runs out. When the money runs out it will go back to charging the credit card.

  • How to populate the selected row details of table in the next view?

    hi,
    Im having a table, on selecting a particular row of a table by clicking on a radio button. i need that row details to be passed on(populated) to the next view when i navigate to that view by clicking on a button?
    Thanks & Regards,
    Suresh

    Hi Suresh,
    Your scenario is simple. Just follow the ex as shown below
    (Assuming you want default selection view provided by table itself.)
    1>Create 2 views (Ex:A and B)
    2>Create a Context with a node and attributes(For Ex:Person as node and Fname and Last Name as attributes
    2>In A view create a table with F name and L Name(map to context as well) and a action button to navigate to B view when you selected a particualr row o.k
    3>In B view, create a TextView with mapping to LastName(or all the data if you want from input selection) from the context
    If you want you can add back action button from B view to A view for easy navigation.
    4>Execute the application and select any row in the table appeared, press next action button,you can see that the selected row details will be shown in second(B) view.
    If you do the above example, I think you can easily find the solution for navigation issue.. try it out.
    In case if you are not able to ...let me know..I have that example.
    Hope that helps
    Regards
    Praveen

Maybe you are looking for

  • Sap fico  EBS  Account symbol in Assignment not replaceable

    Hi Exports am i  faceting  below given issue please  help me Internal trans.1002 : Account symbol in Assignment not replaceable  Internal trans.1001 : Account symbol in Assignment not replaceable  please find the attached copy also help me pls thanks

  • Retrieving shape measurements with an action

    Hi, I am looking to retrieve shape information from a layer automaticly and save the info to a text file if possible. For example. In an image I will be using a protractor to find the base angle of my picture using laser levels in the image.         

  • Where is TutWD_KMBrowser_Init.zip?

    Hello, In the document "Using Knowledge Management Functionality in Web Dynpro Applications" (available from SDN), it says to download the template WebDynpro app in a file called TutWD_KMBrowser_Init.zip also from SDN, but the file is not where indic

  • Issue with Classifying Items in Web Apps

    I've been classifying items in Web Apps for our site in order to activate them to appear live. I just entered some content as a Web App item, classified it, and it is still tagged as "inactive." I'm also not able to remove the classification from a W

  • ActiveX Filtering in Internet Explorer

    If you have completed the steps in our Enabling Flash Player in Internet Explorer 9 FAQ and continue to have problems seeing Flash content, please see the following video and instructions to learn how to disable ActiveX Filtering. Please click here f