Data View with customized command buttons

I would like to show data from a table in browse window and place customized command buttons such as search key, filter, etc.
Please advise.

What you describe is a form. And you don't want a browse window, but a grid inside this form. The only thing you set in a grid in the first degree is the recordsource, and then it will display the same data view as a browse.
The rest of your idea can be placed into the same form as controls, textboxes, buttons, etc. and you might make use of the idea sketched by Alaa Mukhtar.
In the second degree, right click on controls you put on a form while designing it with the form designer, and you can get a help via a builder you get offered in the context menu.
Bye, Olaf.
Olaf Doschke - TMN Systemberatung GmbH
http://www.tmn-systemberatung.de

Similar Messages

  • Not able to save date column with custom date format. in OBIEE 11g

    Hi,
    I have migrated one report from OBIEE 10g to 11g. There is a date column with customized date format(i.e. Default format is 'dd-MMM-yyyy' and I have used 'MMM-yyyy').
    But when I use this custom format and try to save the report in 11g its giving this below error.
    ''Catalog object privilege validation failed for user to path /shared/ALM BI/Finacial Results/History Income Statement Detail.
    You do not currently have sufficient privileges to save a report or dashboard page that contains HTML markup.
    This HTML might be present in column headings, table headings, text views, narrative views, the print header,
    or the print footer and must be removed before saving.''
    Please let me know what changes I need to do for this.
    Regards,
    Ambika Nanda.

    Hi ,
    privilage issues...check the security settings once..
    Thanks,
    Ananth

  • How to create a navigation bar with custom made buttons?

    I'm used to work with a similar program as Muse. In there we can create a single button and link them together into a navigation bar. I have tried all sorts of tutorials but none of them is discussing this possibility.
    To summorize. The idea is to create a button in photoshop and to use this as a theme to build a navigation bar. Possible or not and how? Thanks for assistance. Rgds Rufin

    Hi Brad,
    Thanks for your reply.
    No, not really. I used to work with XARA up till now. And being an Adobe Cloud user I think it a bit silly using two different systems. In XARA I can create a custom button and turn them into a navbar. For your information I include a few links to sites I created with Xara and I would like to know if I can create the same type of navbars with Abobe Muse. I already found out that all the other functions are available and some work a lot better in Muse, but I’m stuck on the navbar issue. I know I can create a button in Adobe PS and use it in Muse. But I didn’t manage to figure out how to create a navbar in Muse on basis of a button created in PS.
    www.restaurant-cedric.be or www.discoamigo.com or www.radioparadijs.be
    Grtz,
    Rufin
    LOGO-RUFIN'S-REISBUREAU-outlook
    Koningslaan 36 – b31
    8300 Knokke – Heist
    Tel: 050621052
    Fax: 050621072
    e-mail:  <mailto:[email protected]> [email protected]
    <http://www.rufins.be/> http://www.rufins.be
    <http://www.travelcoop.be/> travelcoop_logo_2013[1]  <http://ferventreisagent.be/rufins-reisbureau> klein logo
    Van: Brad Lawryk
    Verzonden: zondag 12 oktober 2014 19:40
    Aan: RUFIN DUWEL
    Onderwerp:  How to create a navigation bar with custom made buttons?
    How to create a navigation bar with custom made buttons?
    created by Brad Lawryk <https://forums.adobe.com/people/Brad+Lawryk>  in Help with using Adobe Muse CC - View the full discussion <https://forums.adobe.com/message/6817739#6817739>

  • Report with the command button

    Hi folks,
    i had got a set of selection screen in my report to populate the data to a Transparent Table, before saving the record we need to display the exact record to the user for conformation.
    how we archive this one with the normal report.
    Reg,
    Hariharan

    Hi Hariharan,
    Check the logic below.
    Create a PF status with a push button in the tool bar(SAVE).
    Just WRITE the below statement and double click on 123 it will ask for GUI status creation.
    SET PF-STATUS '123'.
    Press yes. Now In Application tool bar option press + sign it will show u like items 1-7 items 8-14... Give ur text in any one. It will create a push button.
    Now display ur report out put. When the user press save now it will ask for saving to data base or not? If the user press yes then it will update else it will not. Just copy paste this code in a sample programu will understand.
    SET PF-STATUS '123'.
    DATA: l_answer TYPE c.
    WRITE 'text'.
    AT USER-COMMAND.
    CHECK sy-ucomm EQ 'SAVE_TO'. "This is the name given in PF status.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
      EXPORTING
      TITLEBAR                    = ' '
      DIAGNOSE_OBJECT             = ' '
        text_question               = 'Want to save the data to data base?'
      TEXT_BUTTON_1               = 'Ja'(001)
      ICON_BUTTON_1               = ' '
      TEXT_BUTTON_2               = 'Nein'(002)
      ICON_BUTTON_2               = ' '
      DEFAULT_BUTTON              = '1'
      DISPLAY_CANCEL_BUTTON       = 'X'
      USERDEFINED_F1_HELP         = ' '
      START_COLUMN                = 25
      START_ROW                   = 6
      POPUP_TYPE                  =
    IMPORTING
       ANSWER                      = l_answer
    TABLES
      PARAMETER                   =
    EXCEPTIONS
       TEXT_NOT_FOUND              = 1
       OTHERS                      = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF l_answer EQ 1.
    Update the databse.
    ELSE.
    Dont update'
    ENDIF.
    Thanks,
    Vinod.
    Edited by: Vinod Kumar Vemuru on Mar 21, 2008 5:19 PM
    Edited by: Vinod Kumar Vemuru on Mar 21, 2008 5:22 PM

  • Issue with custom toolbar button in alv and leave screen

    Hi,
    in one subscreen (say screen 100)i have an alv with custom ADD  toolbar button..so in the user_command event handler ,i call a antoher screen(dialogue)..like if i click on ADD button ,it should display dialogue screen(say 200) and after entering input in dialogue screen i click on CONINUE to retrun to screen 100..problem is for the first time i click on ADD button its working fine ,succesffyuly returned to screen 100...but for the second time i click on add button , i have to click on twice the CONTINUE button to retrun to screen 100..when debuggin i found the user_command event routin is executin twice ..any solution..
    Thanks,
    srini

    Apparently handler is set for every new ALV instance. This you get by executing CREATE OBJECT alv... every time PBO is raised. Ensure you are executing this statement only once duirng program lifetime. Then the system will match event handler only with one ALV instance (executing it once).
    if r_alv is not bound.
       CREATE OBJECT r_alv ...
       SET HANDLER ...
    endif.
    Regards
    Marcin

  • JSP Data table - Rendering for command buttons.

    Hi All,
    We are designing a JSP page where results from table have to be thrown on a data table. (h:dataTable)
    Based on one column value on the data table, we need to render a command button for each row of data table.
    For example, I select the employees from a table and throw it on data table.
    Only for those employees where address is not present, I need to enable an "Update address" command button.
    (Command button "Update address" is also part of data table.)
    Is it possible to accomplish this on a data table?
    If so how should we code the "rendered" tag of the command button in data table.
    Any help would be greatly appreciated.
    Thanks.

    Sounds like the JSF forum would be a closer alignment, but in general
    - retrieve your information from the database into a list of Employee beans.
    - Have your h:dataTable use the list of Employee beans as a datasource
    - have the rendered attribute of your update button depend on the value of employee.address maybe #{empty employee.address}
    cheers,
    evnafets

  • File Uploading with two command button

    Hi all,
    After a long I return back.
    I am having a JSP page with some mandatory fields and one attach document field.
    I am using JSF framework so for file upload i used the tag <t:inputfileupload>, for compulsion fields I used the attribute required = true.
    My problem is,
    If i attach the file and click attach button before filling mandatory fields the action method is not called. Only after filling the mandatory fields the action method is called. What may be the reason for this?
    Is there any example for file uploading with in form and it has two separate command buttons?

    DHURAI wrote:
    Hi all,
    After a long I return back.
    I am having a JSP page with some mandatory fields and one attach document field.
    I am using JSF framework so for file upload i used the tag <t:inputfileupload>, for compulsion fields I used the attribute required = true.
    My problem is,
    If i attach the file and click attach button before filling mandatory fields the action method is not called. Only after filling the mandatory fields the action method is called. What may be the reason for this?My guess: you get validation errors, but you don't have a <h:messages/> in your JSF page so you don't see the error yourself. If you check your log files it will most likely be mentioned there.

  • Ae 13.1can't pan in viewer with mouse wheel button !!!!!!

    one of the bad things in ae 13.1 is that you can't pan in viewer with mouse wheel button

    In all honesty though, even if fixing this kind of bug would create a new one, its not a bug that should be ignored. Its a major one imo (fix this bug and create a new one, I would personally take my chances). I remember after effects had a bug in a recent update, were audio always was set to low quality when you export, which was very annoying, and it wasn't fixed for months! This bug is worse, and happily I read this thread before updating so Im staying away for now, I hope it won't take months to fix this one.
    It makes sense and Im really happy to hear a chunk of the AE team is working on optimizing the code.Though I think they should devote more people to that. AE is such an old program that I assume those working with keying or other of the features that have been updated lately, they bought a better plugin for it allready. I would much rather have NO updates for a year if that means the program would become more stable, faster and in the future they would not need to patch up layers and layers of old code, as you say....and from what I remember the response from the community was pretty much the same from every single one when it was asked in public what people wanted in the future updates....a faster program. THe content of AE is all ready great, and you can get plugins for pretty much everything you need...except optimization and an up to date software that uses the computer to the maximum potential. 

  • Requery Condition with custom save button.

    Hi,
    I've set the 'Requery Condition' for my group equal to 'After Commit' and it doesn't seem to refresh my page when I do a commit using a custom button bound to my method in the managed bean.
    Do I need to do anything extra in my bean where I am committing the record in order to make the 'Requery Condition' work on my group ?
    Thanks,
    Shishir

    Hi,
    It depends on your version of JHeadstart what is happening with the Save functionality. In general, you should 'copy' whatever JHeadstart is doing.
    In my 10.1.3 version, it executes the action 'Commit' and the actionListener '#{bindings.Commit.execute}'. So indeed, try to execute the Commit binding as HJHorst told you, which should cause the onCommit functionality in the JHeadstart PageLifecycle class to fire and set the #{jhsAfterCommit} we were talking about before.
    Take a look at the JhsPageLifecycle class, onCommit function and you know what I will mean. This class 'captures' commit functionality, which will not be captured if you simply call getDBTransaction().commit().
    Regards
    Evert-Jan de Bruin

  • Case Associated View with Custom entity

    Hi,
    I am working on MS CRM 2011 and I have a custom entity called "Card" which is related to the Case entity N:1 (referential).
    This relationship created a left navigation link on the "Card" entity displaying the view "Case Associated View". However when I click on it, none of the related cases appear obviously because it is a referential and not parental relationship
    and the relationship behavior cannot be changed to "Parental". This view works only on some built-in entities such as "Contact".
    I am trying to find a supported solution to display all the associated cases on the above Custom entity.
    Any help is appreciated.
    Regards,
    Joe Mouawad.

    Display related child records in Grid has got nothing to do with relationship type. Whether it is parental or refrential the records should be shown in the grid. While configuring grid on the form you get the option to select related record and select Active
    case view. Please resetting those settings. Publist Customization and retest.
    Regards Faisal

  • Remote data retrive with tar command

    Hi all,
    I want to extract data from the tape drive attached to remote hosts, but while extracting the data I get the error something like this:
    read : Not enough space
    0+0 record in
    0+0 record out
    The command to extract is
    # rsh remotehost dd if=/dev/rmt/0 | tar xvf -
    where remotehost is the remote hostname where tape drive is attached.
    Had anyone faced the problem like this. I will be thankful if anyone assist me.
    Best Regards,
    Bikash

    "not enough space" means that the space allocated by the process reading the tape was not sufficient to hold the data coming from tape. This basically means that the default block size chosen was too small. You need to increase the block size on the reader. Since you're reading with 'dd', you do it there.
    dd if=/dev/rmt/0 ibs=32k
    or 64k, or 128k, or whatever... Just keep making it bigger until you don't get that error. A size of 64k or 128k is very common. Significantly larger is uncommon.
    Darren

  • Has the options for custom command buttons and scripts been removed from speedgrade?

    I run alot of framecyclerDI machines and am looking to upgrade them but i cant seem to find any method of adding command bars and buttons like you could in the iridas versions of speedgrade i also cant see a way of executing any external scripts which for me is a big issue as i have a hell of alot of pipeline scripts that the artist could execute.... any ideas or have i just missed somthing ?.......(would love it if they added a python sdk)

    Hi Dennis,
    Thanks for replying,
    Its actually more the other way getting speed grade to control outher things.
    i.e
    take the in and out points and send the track to a dcp creator
    rendering and sending anotated frames directly into my databases notes system
    taking the shotname and seeing if theres is a new version avaliable and pull it from the server to the local machine drive/cache
    Theres a load more..but you get the idea .. using the buttons to execute these commands in the interface made these functions editor friendly...
    I can get round some of the issues by reading from the autosave.ircp and setting up a PYQT GUI but that seems like a bit of a hack.
    I understand the reasons to keep the UI uniform (editors dont like it when you move buttons) but Im suprised these options got removed as intergrating software into pre-existing pipelines would seem to be a selling point for any software..
    Are there any plans in the roadmap for speedgrade that would help me in the future?
    S.P.F

  • No data received with wget command on Solaris 10

    Dear All,
    When I use the 'ping' command is can ping to the server normally but when I try to use the 'wget' command to retrieve data from Server is cannot get anything.
    I got the error message as bellow
    ./wget no-check-certificate private-key=/cert/data.pem --certificate=/cert/data.crt "https://server1.com.kh/data/?action=datano;datano=aaaa" -O-
    --14:17:17-- https://server1.com.kh/data/?action=datano;datano=aaaa
    => `-'
    Resolving server1.com.kh... 172.16.20.46
    Connecting to server1.com.kh|172.16.20.46|:443... connected.
    WARNING: Certificate verification error for server1.com.kh: self signed certificate in certificate chain
    HTTP request sent, awaiting response... No data received.
    Retrying.
    Please kindly give any idea for this.
    Thanks and regards,
    Heng

    What do you actually want to do?
    1. connect to a https url and ignore whether the returned certificate is valid or not?
    ./wget --no-check-certificate "https://server1.com.kh/data/?action=datano;datano=aaaa"
    2. connect to https url and only connect if the returned certificate is valid and/or in your truststore?
    ./wget --ca-directory=/cert "https://server1.com.kh/data/?action=datano;datano=aaaa"
    3. connect to https url and provide your own client certificate to authenticate to server?
    ./wget private-key=/cert/data.pem certificate=/cert/data.crt "https://server1.com.kh/data/?action=datano;datano=aaaa"
    4. something else...?

  • Customer Master data creation with customized number range

    Dear all,
    Can somebody know how to create the customized number range for customers like first 2 digits represents Sales organization and next 2 digit should represent circle,next 2 distribution chaneel and last 4 digits shold be the running number.
    Looking for solution..
    Thanks & Regards,
    Murali.

    Hi,
    In your case you need to define as following
    Step No: 01.
    01.Sales Orgination with 0001 to 0099.
    02.Regions with 00 to 99.
    03.Distribustion Channel with 00 to 99
    Step No:02.
    Define PDP with the diffrent account groups defined for diffrent Sales Org, Regions & DC's.
    Step : No: 03.
    As per the above configs go to TCode for Number range for accounts groups in  XDN1. Say Example as
    XX--- From:1010100000 to: 1010109999. Note the possiable numbers are 0000 to 9999 only.
    10 is sales Org, 10 is Region & 10 is DC's.
    This is one of the way to do. The other way is to develo Z table and to use the user exit / new progarme to identify the requried number range with reference to Sales Org, Regions & DC's
    Hope this is fine with your requrment.
    Bye & enjoy SAP.
    Koganti.

  • Command Button colors corrupt after switching back and forth from design view.

    I would say my experience level with Access is "getting there."
    I therefore don't thing I'm making a newbish mistake.
    Has anyone else noticed this?  As it's bugging me quite badly.
    1.  A command button has had it's color formatted (pressed, hover, etc. nothing fancy)
    2.  It works fine.
    3.  In my navigation form, if I switch to design view, then select a given sub-form... like "customers" - and switch back out of design view, to form view - then without fail, all customized command buttons within that sub forms' color will 'corrupt'
    ie, change.
    4. Closing and reopening the navigation form (ie, my main menu) restores it, but the same thing will happen should I go back to design view for the sub form.
    5.  Finally - this behaviour does not happen when switching back and forth between views on the original form that isn't a sub form in the navigation form.  (Ie,. the main 'customers' form). 
    Can any clever folk give me a solution? :(
    Thanks,  
    Eric Rowlands
    EDIT - My apologies, I am using Access 2013 for a desktop database.

    1) We will need to understand whether the issue is seen on any sample database.
    2) IS this seen only on your system, we would need to check on other system also
    3) If the issue is seen in all system & issue is not seen in the sample database then this could be database specific issue
    4) As per my understanding the issue is consistent, we would need to find what is the VBA code or which code is used while designing this form.
    5) We would need to see if the issue is seen only on that particular navigation form?
    6) Is the button gets corrupt I mean to say non-usable once it get discolored ?
    7) What is your end goal just in case if you are able to work on your database i.e. when working on the navigation form without going in design view is issue still seen there ?
    8) Since when are you experiencing this issue ?
    9) If possible please provide me the environment details of your system & Access application, whether the issue is seen only in access 2010 can we check in access 2007 or in access 2013.
    I would really appreciate if you can answers the above questions this will really help us to isolate the issue further
    in terms of technical troubleshooting after answering the above question I might come up with another question so that we can do extensive isolating the issue so the if required we can involve the developer also.

Maybe you are looking for

  • Problem Reading pdf files sent thru e-mail

    I saved some software output prints to pdf files (software has option for saving to pdf) and e-mailed to a co-worker.  I can see and print fine from my hard drive but recipient got only dots on the pages.  Should have been numbers and text.  I have A

  • Please Apple, let us keep pages as it was...

    Installing mavericks brings pages 5.0 along somehow. PAGES 5.0 IS A TOTAL DISASTER. Worst, you can't do anything about it! I have several computers i use in office, home, all shynced, made the mistake of updating to Mavericks and pages come along on

  • Terminate Message processing From UDF/mapping

    i think u will be checking the condition first if its false then u will be raising alert. wat u can do is when the condition fails u set the flag to false and send the output of UDF to ifwithoutelse statement and becuase of which ur mapping will not

  • Logic & EW Goliath

    Is anyone using Goliath successfully in Logic? When I change presets in Goliath it crashes logic quite often. Sometimes just opening Goliath crashes it. This problem's been consistent with all versions of the PLAY engine in Logic 7.0, 7.1, & 7.2.x on

  • Unable to use Automator scripts

    Ever since migrating to Leopard 10.5.1 from Tiger, I have not been able to use any of my Automator scripts. They don't work. I did create a script to rename my files and every time I use it I constantly get an Applescript error -1700. What's going on