GetYear help for a complete noob

Hey.
I'm creating a sql data set for my data model that goes like this:
select     "Credit Memo"."Cm Fecha Creacion" as "Cm Fecha Creacion",
     "Medidas CM (Nivel RF)"."Cm Monto Total" as "Cm Monto Total",
     "Medidas RF (Nivel RF)"."Rf Monto Total" as "Rf Monto Total"
from     "SAG"."Medidas RF (Nivel RF)" "Medidas RF (Nivel RF)",
     "SAG"."Medidas CM (Nivel RF)" "Medidas CM (Nivel RF)",     
     "SAG"."Credit Memo" "Credit Memo"
where YEAR("Credit Memo"."Cm Fecha Creacion") = YEAR(:p_year)
but i get into 2 errors when doing this.
1)When saving the data set The YEAR(:p_year) errors out
2)If I put where YEAR("Credit Memo"."Cm Fecha Creacion") = :p_year (no year function on the right side)
it saves but when running the xml data samle I get "parsing error"
I've went thought this forum. And i got to post recommending function like <?xdoxslt:get_year(‘2000-04-08’, $_XDOLOCALE)?>.
I have no clue where I can put them, its clear that SQL editor is not the place, right?.
Is there any XML editor for my data sets. Is the "code" view intended for this? How could I use it in that case?
Thanks!

Hi LD.
Thanks for the reply.  My MacBook won't even recognise the Time Capsule, I've messed about with the netowrk settings too much I think. 
I'm really really stuck.

Similar Messages

  • Time Capsule help for a complete noob to MacBook

    Hi everyone
    This is been killing me for about 2 months.  Currently living in an annex down the end of my girlfriends fathers garden.  The wifi doesn't reach so I got a Time Capsule so I could use it as a router.
    We've got a cable and it's run from the Time Capsule, down the garden, into the house and plugged into router in the house.
    That's where I'm now stuck.  I've messed about with it and now my Macbook AirPort won't even recognise my Time Capsule.
    This really needs to be in moron terms as I'm clueless.  I've spent all this money and can't get it to do what I wanted it to do.
    Any help is appreciated, so thanks in advance.

    Hi LD.
    Thanks for the reply.  My MacBook won't even recognise the Time Capsule, I've messed about with the netowrk settings too much I think. 
    I'm really really stuck.

  • Help for a complete numpty

    I'm hoping that some kind soul will take pity on me before I tear the last remaining strands of hair from my head. I've read lots of posts on this very helpful forum and have tried various things, but am now so confused that I think I need to try and clear my head and start from the very beginning.
    I live in Cyprus where, three years ago, wireless modems were non-existant. So, I purchased a WRT300N Broadband Router and a WRE54G Range Expander and like magic, I suddenly had wireless capability all over the house and garden by connecting the router to the ISP's modem, and by siting the Range Expander downstairs.
    Six months ago, the modem stopped working and was replaced by a new one - with wireless functionality. So, I stopped using the WRT300N and just plugged the Range Expander in downstairs whenever I wanted wi-fi on the ground floor. However, that didn't work too well as I kept getting a red light. For the past week, I have been trying to "fix" things, or at least investigate whether or not the Range Expander is broken.
    Today has been a nightmare. Tried installing the WRT300N which I thought I had (lights all working etc) but there's no little Linksys icon appearing in the bottom right of my monitor so is it really installed? And if not, why not? Did all the right things as per the guides with no problems.
    Range Expander won't get past "Site Survey Failed" no matter what I do although I haven't yet tried jumping on it - came close a few times though.
    First dim-witted question; will the Range Expander work without the WRT300N? Could it be configured to work directly with the modem, bypassing the WRT300N?
    Second dim-witted question: are there certain modems that the WRT300N doesn't work with? Perhaps I have one of them?
    Thank you in advance to anyone who has the patience to take me on - this could be a long process....................

    WRE54G will not work without the Router..Check this compatibility link for WRE54G.
    WRT300N will work with all the modem,if the modem has Ethernet Port. 

  • Help for a CF noob

    I want to write a toggle color switch into a CF page with a
    data table on it
    something like this PHP -
    <tr<? $toggle=!$toggle; echo($toggle?' class="even"':'
    class="odd"'; ?>>
    What would that look like in CF?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================

    That's cool. I may do that, then! Thankee....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Tom Muck" <[email protected]> wrote in
    message
    news:[email protected]...
    >A little javascript would do it too:
    >
    > <script>
    > function colorTable() {
    > var tableRows =
    >
    document.getElementById('mytable').getElementsByTagName('tr');
    > for(var i=0; i<tableRows.length; i++) {
    > tableRows
    .className = (i%2==0) ? 'even':'odd';
    > }
    > }
    > </script>
    >
    > onload="colorTable()"
    >
    > Tom
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> 50 or so pages, each with 200 - 1000 rows? I don't
    think so.
    >>
    >> But this will do the trick, I believe.
    >>
    >> <cfset toggle = toggle + 1><tr
    class="#IIF(toggle MOD 2, DE('odd'),
    >> DE('even'))#">
    >>
    >>
    >> --
    >> Murray --- ICQ 71997575
    >> Adobe Community Expert
    >> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >> ==================
    >>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >> ==================
    >>
    >>
    >> "Tom Muck" <[email protected]> wrote
    in message
    >> news:[email protected]...
    >>> Does this table have hundreds or thousands of
    rows? Much easier to apply
    >>> class="even" to every other row wtih ctrl>y.
    It would take about two
    >>> minutes to do a few hundred rows.
    >>>
    >>> Tom
    >>>
    >>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>>I am doing a 'table-wide' find and replace,
    finding <tr> and replacing
    >>>>with <tr<?php ... ?>>.
    >>>>
    >>>> It works fine in PHP. I just need to know
    how to do the same in CF.
    >>>>
    >>>> --
    >>>> Murray --- ICQ 71997575
    >>>> Adobe Community Expert
    >>>> (If you *MUST* email me, don't LAUGH when
    you do so!)
    >>>> ==================
    >>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>> ==================
    >>>>
    >>>>
    >>>> "Tom Muck"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>>
    >>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> The heck you say.
    >>>>>>
    >>>>>> I've done this many times in PHP -
    >>>>>>
    >>>>>> $toggle=!$toggle;
    echo($toggle?"odd":"even");
    >>>>>
    >>>>> The heck you say. That does absolutely
    nothing unless it's in a
    >>>>> loop...or unless you copy/paste into
    every row. If you are doing that,
    >>>>> then this code is identical:
    >>>>>
    >>>>> class="odd"
    >>>>> class="even"
    >>>>>
    >>>>> Tom
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Help for a complete beginner!

    Hello,
    I want to apologize in advance for how little I know on this topic, and about programming together. I am not asking for myself, but to give some advice to a young family member of mine. He works with a company that uses a ColdFusion website, and we were speaking the other day about how the company is looking to eventually hire a new ColdFusion programmer.
    Here is the problem for my nephew: he doesn't have any programming experience. He is very computer savvy for a young guy, and he is very interested in going after this, but he told me he doesn't know where to begin. I took the obvious course and said "aren't there such things as ColdFusion classes?" but he seems to think it is not so simple as that - like you can't just jump in as a total beginner into working with ColdFusion?
    So I thought I would do a little research. If you were just starting out, and were looking to eventually develop and program a coldfusion website, how would you start? What steps would you take (the more detailed the better)? Someone told me "he should start out by learning HTML", but if you could even break that down more - how would you go about learning HTML? If you have any more questions for me about my nephew, i'd be happy to answer them.
    Thanks!

    Learning HTML would be a good start in contextualising how web pages work, and therefore what ColdFusion code will be needing to do.
    FInding HTML tutorials is easy: just google "introduction to HTML" or "HTML tutorial" or something.  If you prefer printed books, there'll be a bunch of those available too (search Amazon).  I do not know which books are considered good or bad in this context, but the user comments and votes should be a good indication.
    As for learning ColdFusion, just leaping into a course might not be the best bet for your newphew.  Way back when I did the ColdFusion Fasttrack course without ever having used (or seen) CFML before, and found it easy, but I did have a background of doing the odd bit of programming, so I was at least familiar with basic principles.  If he doesn't have any pre-existing programming knowledge, it might not be the best way to start.
    The only printed CF book of note (that I'm aware of) is the CFWACK.  I've not looked at one for years, and cannot remember whether it's intended as a learning tool, or just as a reference.  Someone else can perhaps comment on that.
    There are a bunch of matches for "coldfusion tutorials" on Google, of varying age and quality: they're probably worth looking at though.
    If I was learning a new language, I'd just use online tutorials.  If I was going to be learning programming, though, I'd go do a general programming course (like at the local polytech or college or whatever) first.  The principles behind programming are more important than the language, IMO.
    Of course if he dives into CF and has questions to ask, he can always ask them here.
    Adam

  • Some SQL Help for a Complete Beginner

    ...........

    Use ROLLUP then
    SQL> select id,
      2         case when grouping(id)=1 and grouping(pro_name)=1 then 'Total' else pro_name end pro_name
      3         sum(quantity) quantity
      4    from product
      5   group by rollup(id, pro_name)
      6  having (grouping(id)=0 and grouping(pro_name)=0)
      7      or (grouping(id)=1 and grouping(pro_name)=1)
      8  /
    ID    PRO_NAME               QUANTITY
    11011 Socket Type 3                20
    11110 Wrench Type 2                44
    11111 Bolt Type 1                  40
    22022 Hammer                       30
    22220 Wrench Type 3                44
    22222 Bolt Type 2                  40
    33330 Wrench Type 4                44
    33333 Bolt Type 3                  40
    44440 Nut Type 1                   80
    44444 Bolt Type 4                  40
    55550 Nut Type 2                   80
    55555 Nail Type 1                 400
    66660 Nut Type 3                   80
    66666 Nail Type 2                 400
    77770 Nut Type 4                   80
    77777 Nail Type 3                 400
    88880 Socket Type 1                20
    88888 Nail Type 4                 400
    99990 Socket Type 2                20
    99999 Wrench Type 1                44
          Total                      2346
    21 rows selected.Your price field is CHAR data type. You cant use it with quantity field which is a NUMBER data type.
    The basic structure of your table is wrong you need to modify it.
    Edited by: Karthick_Arp on May 8, 2009 11:47 PM

  • 100% Noob - Need Help for basic setup of Cisco 2504 and 1600 AP

    Hello,
    I am completely noob in (cisco) networking.
    I have to setup a basic but secure wireless network.
    I have a cisco 2504 and 2 APs 1600 + a random switch
    I have 4 ports on the controller.
    I want to keep the 1st port on the network for the controller management, plug my internet box on the 3rd port, and my switch on the 4th port. Then the AP will be on the switch.
    I am able to make something working when everythings are plugged on the switch, plugged in the first port (default management port).But this is not what I want.
    First thing, Is that possible ?
    1st port : office network
    2nd port : empty
    3rd port : Internet Box
    4th port : Switch + all APs
    Then, if that is possible, how should i configure the controller to make that work ? I am completely lost in the menus.
    I dont need a perfect configuration, just something simple and working.
    1 SSID, 10 DHCP addresses, block wireless users trying  to go on the office network.
    If anyone could help my doing that, It would be very nice.
    Thank you.

    You basically need two SSIDs one for corporate users and second for guests .check the link with  step by step config and brief details .
    http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wireless-vlan/70937-guest-internal-wlan.html

  • Please help a complete noob get started...

    Hi all, new here. I have decided that I would like to be an Oracle DBA. I have always wanted to learn some type of networking, however I admit to being a complete noob to the subject. However, I do have a few really basic questions that I hope I can find some answers to. It may be best if I just number them. (I am in the Dallas/Fort worth Area) Here we go..
    1. What kind of place might a typical oracle DBA work at? A hospital? Or is it more like those giant skyscrapers you see in the city?
    2. How long does it typically take to get certified? This is granted, of course, that you don't fail your classes and have to retake them.
    3. Is there a way I can take the "classes" for the certification online, and possibly test online?
    4. We all get jobs to make money. Being a dad with a family, I have to say that I can't really afford to aim low. What kind of salary might an oracle dba earn?
    5. Is and oracle job something that can be found in some of the smaller towns/suburbs? Or is this something that is kind of scarce?

    user8772743 wrote:
    Well thanks for all the replies guys. Although being such a noob, I have to admit that I did not understand a good portion of them lol. Im pretty computer savvy, but so far I have really been more into hardware. I guess you could call me a hardware enthusiast. I love overclocking and bios modding and gaming.
    But on to my next question. I have noticed, after some searching and looking at some of the links you guys provided, that people in oracle seem to be paid pretty well as a general rule. Just a quick search revealed a few oracle DBA jobs that the starting pay was anywhere from $90k-110K. My question is this: Why does the pay seem to be so much higher than some of the other certifications, such as CCNA? (a cisco cert) Is it because the job is currently in high demand? Just curious I guess. Of course it's part of the reason I want to get into oracle, but i guess im just new... but it still strikes me as strange that there is such a drastic difference between it and some of the other certifications.
    Edited by: user8772743 on Aug 28, 2009 9:14 PMAn employer looking for a DBA will usually be looking for far more than the certification, they'll be looking for evidence of experience, judgement, rigour, responsibility knowledge and a host of other characteristics and an ability to take on new challenges.
    Also a CCNA is an entry level cicso certification, though they do have CCENT which is a little lower. You need to be getting to CCIE to be a little higher.
    From where you are at the moment you might consider a self taught microlight pilot wanting to become an airline pilot on 737s. Would he, after all the training, find that the rigourous and sometimes monotonous drag of a luton to Glasgow shuttle is not really what one wanted.
    I usually like to see little steps first. But you want the big step to the big pay league for iminimum effort ... I guess its possilble ... but ......
    I think because of your current love of hardware you might be better suited to study one the following certifications first
    You may wish to remain with microsoft or whether to get linux experience. I would start with Fedora or Ubuntu, I actually find Ubuntu more fun but less mainstream.
    MSCT
    CCENT (or CCNA)
    LINUX+ or something from CompTIA
    If you want to get into databases and an entry level database certification then a Sun MYSQL CMA is a consideration as an entry level study. Its disdvantages are its unlikely to help you get a job and the SQL syntax is different to Oracle.
    If you can complete before 30th september then a Sun Openoffice Writer Certification is a cheap option (if you can pass it).
    Sometimes looking for evening classes close to where you are might be a better option to channel your efforts on a whats available rather than what I want basis.
    If you are really looking for an online course then try something like: [http://www.ed2go.com/cgi-bin/ed2go/newofferings.cgi?dept=CP] I cannot personnally verify if this particular vendor is useless, bad, cheap or whatever. Some online courses are certainly not to be recomended. Anyway [www.certguard.com] knows about this and while not within certguard remit does not say anything bad about it.
    Quality is probably not great and possibly not up to date but wider width and quite cheap are from [http://www.vtc.com/] .. this is positively cleared at about time of this post by [www.certguard.com] as certification safe. You can look at some lessons here perhaps to decide what you want to get into. If seriously getting into a certification you've be better get something to supplement; but for learning proably okay.
    You can actually do the oracle courses from Oracle online ... but they are quite expensive : [www.oracle.com/education]
    Rgds - bigdelboy.

  • I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    http://www.apple.com/support/itunes/contact/

  • Need help for understanding the behaviour of these 2 queries....

    Hi,
    I need your help for understanding the behaviour of following two queries.
    The requirement is to repeat the values of the column in a table random no of times.
    Eg. A table xyz is like -
    create table xyz as
    select 'A' || rownum my_col
    from all_objects
    where rownum < 6;
    my_col
    A1
    A2
    A3
    A4
    A5
    I want to repeat each of these values (A1, A2,...A5) multiple times - randomly decide. I have written the following query..
    with x as (select my_col, trunc(dbms_random.value(1,6)) repeat from xyz),
    y as (select level lvl from dual connect by level < 6)
    select my_col, lvl
    from x, y
    where lvl <= repeat
    order by my_col, lvl
    It gives output like
    my_col lvl
    A1     1
    A1     3
    A1     5
    A2     1
    A2     3
    A2     5
    A3     1
    A3     3
    A3     5
    A4     1
    A4     3
    A4     5
    A5     1
    A5     3
    A5     5
    Here in the output, I am not getting rows like
    A1     2
    A1     4
    A2     2
    A2     4
    Also, it has generated the same set of records for all the values (A1, A2,...,A5).
    Now, if I store the randomly-decided value in the table like ---
    create table xyz as
    select 'A' || rownum my_col, trunc(dbms_random.value(1,6)) repeat
    from all_objects
    where rownum < 6;
    my_col repeat
    A1     4
    A2     1
    A3     5
    A4     2
    A5     2
    And then run the query,
    with x as (select my_col, repeat from xyz),
    y as (select level lvl from dual connect by level < 6)
    select my_col, lvl
    from x, y
    where lvl <= repeat
    order by my_col, lvl
    I will get the output, exactly what I want ---
    my_col ....lvl
    A1     1
    A1     2
    A1     3
    A1     4
    A2     1
    A3     1
    A3     2
    A3     3
    A3     4
    A3     5
    A4     1
    A4     2
    A5     1
    A5     2
    Why the first approach do not generate such output?
    How can I get such a result without storing the repeat values?

    If I've understood your requirement, the below will achieve it:
    SQL> create table test(test varchar2(10));
    Table created.
    SQL> insert into test values('&test');
    Enter value for test: bob
    old   1: insert into test values('&test')
    new   1: insert into test values('bob')
    1 row created.
    SQL> insert into test values('&test');
    Enter value for test: terry
    old   1: insert into test values('&test')
    new   1: insert into test values('terry')
    1 row created.
    SQL> insert into test values('&test');
    Enter value for test: steve
    old   1: insert into test values('&test')
    new   1: insert into test values('steve')
    1 row created.
    SQL> insert into test values('&test');
    Enter value for test: roger
    old   1: insert into test values('&test')
    new   1: insert into test values('roger')
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select lpad(test,(ceil(dbms_random.value*10))*length(test),test) from test;
    LPAD(TEST,(CEIL(DBMS_RANDOM.VALUE*10))*LENGTH(TEST),TEST)
    bobbobbobbobbobbobbobbobbobbob
    terryterry
    stevestevesteve
    rogerrogerrogerrogerrogerrogerrogerrogerrogerYou can alter the value of 10 in the SQL if you want the potential for a higher number of names.
    Andy

  • Need some help in creating Search Help for standard screen/field

    I need some help in adding a search-help to a standard screen-field.
    Transaction Code - PP01,
    Plan Version - Current Plan (PLVAR = '01'),
    Object Type - Position ( OTYPE = 'S'),
    Click on Infotype Name - Object ( Infotype 1000) and Create.
    I need to add search help to fields Object Abbr (P1000-SHORT) / Object Name (P1000-STEXT).
    I want to create one custom table with fields, Position Abb, Position Name, Job. Position Abb should be Primary Key. And when object type is Position (S), I should be able to press F4 for Object Abb/Object Name fields and should return Position Abbr and Position Name.
    I specify again, I have to add a new search help to standard screen/field and not to enhance it.
    This is HR specific transaction. If someone has done similar thing with some other transation, please let me know.
    There is no existing search help for these fields. If sm1 ever tried or has an idea how to add new search help to a standard screen/field.
    It's urgent.
    Thanks in advace. Suitable answers will be rewarded

    Hi Pradeep,
    Please have a look into the below site which might be useful
    Enhancing a Standard Search Help
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/daeda0d7-0701-0010-8caa-
    edc983384237
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee93446011d189700000e8322d00/frameset.htm
    A search help exit is a function module for making the input help process described by the search help more flexible than possible with the standard version.
    This function module must have the same interface as function module F4IF_SHLP_EXIT_EXAMPLE. The search help exit may also have further optional parameters (in particular any EXPORTING parameters).
    A search help exit is called at certain timepoints in the input help process.
    Note: The source text and long documentation of the above-specified function module (including the long documentation about the parameters) contain information about using search help exits.
    Function modules are provided in the function library for operations that are frequently executed in search help exits. The names of these function modules begin with the prefix F4UT_. These function modules can either be used directly as search help exits or used within other search help exits. You can find precise instructions for use in the long documentation for the corresponding function module.
    During the input help process, a number of timepoints are defined that each define the beginning of an important operation of the input help process.
    If the input help process is defined with a search help having a search help exit, this search help exit is called at each of these timepoints. If required, the search help exit can also influence the process and even determine that the process should be continued at a different timepoint.
    timepoints
    The following timepoints are defined:
    1. SELONE
    Call before selecting an elementary search help. The possible elementary search helps are already in SHLP_TAB. This timepoint can be used in a search help exit of a collective search help to restrict the selection possibilities for the elementary search helps.
    Entries that are deleted from SHLP_TAB in this step are not offered in the elementary search help selection. If there is only one entry remaining in SHLP_TAB, the dialog box for selecting elementary search helps is skipped. You may not change the next timepoint.
    The timepoint is not accessed again if another elementary search help is to be selected during the dialog.
    2. PRESEL1
    After selecting an elementary search help. Table INTERFACE has not yet been copied to table SELOPT at this timepoint in the definition of the search help (type SHLP_DESCR_T). This means that you can still influence the attachment of the search help to the screen here. (Table INTERFACE contains the information about how the search help parameters are related to the screen fields).
    3. PRESEL
    Before sending the dialog box for restricting values. This timepoint is suitable for predefining the value restriction or for completely suppressing or copying the dialog.
    4. SELECT
    Before selecting the values. If you do not want the default selection, you should copy this timepoint with a search help exit. DISP should be set as the next timepoint.
    5. DISP
    Before displaying the hit list. This timepoint is suitable for restricting the values to be displayed, e.g. depending on authorizations.
    6. RETURN (usually as return value for the next timepoint)
    The RETURN timepoint should be returned as the next step if a single hit was selected in a search help exit.
    It can make sense to change the F4 flow at this timepoint if control of the process sequence of the Transaction should depend on the selected value (typical example: setting SET/GET parameters). However, you should note that the process will then depend on whether a value was entered manually or with an input help.
    7. RETTOP
    You only go to this timepoint if the input help is controlled by a collective search help. It directly follows the timepoint RETURN. The search help exit of the collective search help, however, is called at timepoint RETTOP.
    8. EXIT (only for return as next timepoint)
    The EXIT timepoint should be returned as the next step if the user had the opportunity to terminate the dialog within the search help exit.
    9. CREATE
    The CREATE timepoint is only accessed if the user selects the function "Create new values". This function is only available if field CUSTTAB of the control string CALLCONTROL was given a value not equal to SPACE earlier on.
    The name of the (customizing) table to be maintained is normally entered there. The next step returned after CREATE should be SELECT so that the newly entered value can be selected and then displayed.
    10. APP1, APP2, APP3
    If further pushbuttons are introduced in the hit list with function module F4UT_LIST_EXIT, these timepoints are introduced. They are accessed when the user presses the corresponding pushbutton.
    Note: If the F4 help is controlled by a collective search help, the search help exit of the collective search help is called at timepoints SELONE and RETTOP. (RETTOP only if the user selects a value.) At all other timepoints the search help exit of the selected elementary search help is called.
    If the F4 help is controlled by an elementary search help, timepoint RETTOP is not executed. The search help exit of the elementary search help is called at timepoint SELONE (at the
    F4IF_SHLP_EXIT_EXAMPLE
    This module has been created as an example for the interface and design of Search help exits in Search help.
    All the interface parameters defined here are mandatory for a function module to be used as a search help exit, because the calling program does not know which parameters are actually used internally.
    A search help exit is called repeatedly in connection with several
    events during the F4 process. The relevant step of the process is passed on in the CALLCONTROL step. If the module is intended to perform only a few modifications before the step, CALLCONTROL-STEP should remain unchanged.
    However, if the step is performed completely by the module, the following step must be returned in CALLCONTROL-STEP.
    The module must react with an immediate EXIT to all steps that it does not know or does not want to handle.
    Hope this info will help you.
    ***Reward points if found useful
    Regards,
    Naresh

  • I've had trouble with my Macbook since the first month I bought it. I've replaced the hard drive 3 to 4 times. Now some programs won't work or shut off by itself. Is it possible to ask for a complete exchange of products?

    I've had trouble with my Macbook since the first month I bought it. I've replaced the hard drive 3 to 4 times. Now some programs won't work or shut off by itself. Is it possible to ask for a complete exchange of products?

    This may help you: http://store.apple.com/us/help/returns_refund
    It would appear that you can ask for an exchange but it doesn't specify any time frame... Hopefully someone more knowledgeable can add to this.
    By the way, if you've replaced the drive so many times, perhaps there's something else going on elsewhere.

  • Find collective Search Help for partner function at runtime

    Hi experts,
    I have a screen very similar to VF05. When I enter the partner function, the corresponding field for the partner function, I want a collective search help to open.
    If I enter the partner function - Employee responsible, then the search help PERM has to be called or for partner function Payer, I want the search help DEBI to be called. Can anyone let me know how can I get the related partner functions, without hardcoding for every partner function. Something similar to the VF05 report.
    Warm Regards,
    Abdullah

    Hi,
    Collective search helps:- Combination of elementary search helps. When we need to fetch data based on multiple selection criteriau2019s. More than one tables are Selection from multiple tables
    Steps for creating collective search help.
    1) Enter the search help name and click on create.
    2) Choose Collective search help radio button option as the search help type.
    3) Enter the search help parameters.
    Note that there is no selection method to be entered for a collective search help.
    4) Instead of the selection method, we enter the included search helps for the collective search help.
    5)We need to assign parameters for each of the included search helps.
    6) Complete the parameter assignment by clicking on the push button.
    7) Collective search help offers the user to obtain F4 help using any of the included search helps.
    Hope this helps u.
    thanks

  • F4 help for Standard Screen

    Hi folks,
              I have to keep F4 help for field 'Goods Receipt' in the stnadard TCode MIGO. Do we need to use any Exit or is there any other way to do so like configuration settings in SPRO...Pls suggest me how can i acheive that one..
                Thanks,
                Shyam.

    Hi Shyam,
    you have to do from the EXIT only
    Enhancement/ Business Add-in            Description
    Enhancement
    MB_CF001                                Customer Function Exit in the Case of Updating a Mat. Doc.
    MBCF0011                                Read from RESB and RKPF for print list in  MB26
    MBCF0010                                Customer exit: Create reservation BAPI_RESERVATION_CREATE1
    MBCF0009                                Filling the storage location field
    MBCF0007                                Customer function exit: Updating a reservation
    MBCF0006                                Customer function for WBS element
    MBCF0005                                Material document item for goods receipt/issue slip
    MBCF0002                                Customer function exit: Segment text in material doc. item
    Business Add-in
    MB_DOCUMENT_UPDATE                      BADI when updating material document: MSEG and MKPF
    MB_DOC_BADI_INTERNAL                    BAdIs During Creation of a Material Document (SAP Internal)
    MB_ME_CSGMT_BADI_SAP                    BAdI: Consignment Processing - Stock Transfer
    MB_MIGO_ITEM_BADI                       BAdI in MIGO for Changing Item Data
    MB_PHYSINV_INTERNAL                     Connection: Core Inventory and Retail AddOn
    MB_QUAN_CHECK_BADI                      BAdI: Item Data at Time of Quantity Check
    MB_RESERVATION_BADI                     MB21/MB22: Check and Complete Dialog Data
    MB_RESERVATION_SCR                      Screen BAdI for Retrofit DFPS
    MB_RESERVATION_UPCHD                    BAdI for Creation and Changing of Manual Reservations
    MB_RES_BAPI_CHANGE                      BAdI: Execution of Changes to Reservation Fields
    MB_RES_BAPI_CREATE1                     BAdI: Adoption of Customer's Own Fields as Reserv. Fields
    MB_RES_BAPI_DETAIL1                     BAdI: Display of Customer's Own Fields in Reservations
    MB_STOR_LOC_BADI_GTS                    BADI to Check and Change Storage Location (GTS Fct. Only)
    MB_MIGO_BADI                            BAdI in MIGO for External Detail Subscreens
    MB_DOCUMENT_BADI_SAP                    BADI for Creation and Changing of a Material Document
    ARC_MM_EBAN_CHECK                       BAdI: Enhancement of Archivability Check (MM_EBAN)
    ARC_MM_EBAN_PRECHECK                    BAdI: Enhancement of Archivability Check (MM_EBAN)
    ARC_MM_EBAN_WRITE                       BAdI: Enhancement of Scope of Archiving (MM_EBAN)
    ARC_MM_EINA_CHECK                       BAdI: Enhancement of Archivability Check (MM_EINA)
    ARC_MM_EINA_WRITE                       BAdI: Enhancement of Scope of Archiving (MM_EINA)
    ARC_MM_INVBEL_CHECK                     BAdI: Enhancement of Archivability Check (MM_INVBEL)
    ARC_MM_INVBEL_WRITE                     BAdI: Enhancement of Scope of Archiving (MM_INVBEL)
    ARC_MM_MATBEL_CHECK                     Prüfung ADD-ON-spezifischer Kriterien für MM_MATBEL
    ARC_MM_MATBEL_WRITE                     Check Add-On-Specific Data for MM_MATBEL
    MB_CHECK_LINE_BADI                      BAdI: Check Line Before Copying to the Blocking Tables
    MB_CIN_LMBMBU04                         posting of gr
    MB_CIN_MM07MFB7                         BAdI for India Version exit in include MM07MFB7
    MB_CIN_MM07MFB7_QTY                     Proposal of quantity from Excise invoice in GR
    MB_DOCUMENT_BADI                        BAdIs During Creation of a Material Document
    No.of Exits:          8
    No.of BADis:         29
    Hope these things use ful to you.
    Thanks!

  • Dynamic search help for one field of the SM30 generated maintenance view

    Hi experts,
    I have one Z* table with three fields. For that table I have generated maintenance dialog in SE55 so I can now run the maintenance in SM30. My requirement is: as soon as a user enters a value for the first field, the search help for the second field should be depended on the value in the first field. Let's say when user entered value 01 into the first field then the search help for the second field should be S_HLP01. For other values entered into the first screen the search help for the second field should be S_HLP02. Both search helps are standard (the names differ).
    Is there any change how to achieve this without making completely new dynpro transaction?

    Hi ,
    You can try it this way.
    pass your match-code( search help to function ) HELP_VALUES_GET_WITH_MATCHCODE and get the value and update it in  your screen field.
    But you have to modify the flow logic in POV event. it would be better if you create your own transaction because once the maintenance is regenerated your modified flow logic will vanish

Maybe you are looking for

  • Flash Crashing Browsers on Macbook Air

    A couple of days ago my bowsers started crashing with the message that a Flash Plugin has cuased an error. It happens on both Safari and FireFox. I have tried the Flash uninstaller. but when I reinstall the same thing happens. I have tried uninstalli

  • Chinese Characters in Spool converted to Junk characters in PDF

    Hi, I have spool generated from Script , the Spool shows me Chinese Characters.When I am trying to convert the Spool to PDF using Program RSTXPDFT4 , the PDF contains Junk Characters instead of Chinese Characters.Please let me know how to get the cor

  • Could not able to execute FTP commands in windows server machines 2012/ windows server 2008.

    Could not able to execute FTP commands in windows server machines 2012/ windows server 2008. From windows server 2012 and windows server 2008, Opened port 20,21,22 in firewall bidirectionally. After Establishing connection by passing credentials  230

  • Installing oracle 10gr2 and applying 10.2.0.3 patchset on sun sparc 64bit

    dear all, im planning to install oracle 10gr2 on sun solaris sparc(64bit). kindly provide the steps specific to configuring kernal parameters. details: On Solaris 10 sparc 64-bit uname -r 5.10 provide the steps to configure the kernal parameters with

  • Table_from_block functionality

    Is there any way to copy the contents of a data block in Forms50 into a PL/SQL table without opening a cursor and requerying the database using the block's default where clause? Thanks null