Logic is correct or not

data : begin of it_zmm_isslip occurs 0.
        include structure zmm_isslip.
data : flag(1).
data : end of it_zmm_isslip.
controls : tab201 type tableview using screen '0100'.
data: ok_code type sy-ucomm,
      save_ok like ok_code.
selection-screen begin of block skk with frame title text-011.
selection-screen skip 1.
parameters : DJAHR1 like ZMM_ISSLIP-DJAHR obligatory default '2008'.
select-options: belnr1 for ZMM_ISSLIP-belnr.
select-options: werks1 for ZMM_ISSLIP-werks.
select-options: KOSTL1 for ZMM_ISSLIP-kostl.
select-options: ANLN11 for ZMM_ISSLIP-anln1.
select-options: AUFNR1 for ZMM_ISSLIP-aufnr.
selection-screen skip 1.
selection-screen end of block skk.
data : len type i.
AT SELECTION-SCREEN.
   clear : belnr1,werks1,kostl1,anln11,aufnr1.
    refresh : belnr1,werks1,kostl1,anln11,aufnr1.
start-of-selection.
    perform select_release_data.

Hi,
Here code is wrong.
AT SELECTION-SCREEN.
clear : belnr1,werks1,kostl1,anln11,aufnr1.
refresh : belnr1,werks1,kostl1,anln11,aufnr1.
At selection-screen  will trigger after entering the data in selection screen. whatever the entered values are there in selection screen you are clearing here.So no input data will be available for selection query.

Similar Messages

  • Inner Join of 3 tables is correct or not?

    Hi Guys ,
                 I have a requirement where i have to join 3 tables i  dont know whether the inner Join which i wrote for 3 tables is correct or not.I am not getting any Syntax error but whether the logci below which i wrote gets all the records or not.
    The Requirement is
    "c.     Select the BOL Number entered in the screen and query the table LIKP with the BOL number in the field LIKP-BOLNR.  Gather the list of ALL delivery documents (LIKP-VBELN) that is outputted.
    d.     Query the list of the delivery documents obtained into the table VBFA in the field VBFA- VBELV.  From the output that is displayed, select the Follow-On Document Field (VBFA-VBELN) for that item whose Subsequent Document Category (VBFA- VBTYP_N) is R and the Movement Type (VBFA- BWART) is 641.  Get the Follow-On document number for each of the above Delivery Document number.
    e.     Query the table EKBE with the Follow On document obtained above in the field Material Document (EKBE- BELNR).  Perform this activity for each of the follow on document obtained above.  Get the resultant Purchase Order (EKBE-EBELN) and Item Number (EKBE-EBELP) from the query.  After querying will all the Follow-On Documents, get the unique list of PO number and Item Number.
    The logic which i wrote is
                    Begin of t_PoolSTO_out,
                  BOLNR type LIKP-BOLNR,
                  EBELN type EKBE-EBELN,
                  EBELP type EKBE-EBELP,
                  VBELN type LIKP-VBELN,
                  VBELNV type VBFA-VBELN,
             End of t_PoolSTO_out.
          Data: i_PoolSTO type Standard table of t_PoolSTO_out.
      Select
            a~BOLNR
            c~EBELN
            c~EBELP
            a~VBELN
            b~VBELN
            from LIKP as a
            Inner Join VBFA as b on aVBELN = bVBELV
            Inner Join EKBE as c on bVBELN = cBELNR
            into Table i_PoolSTO
            Where a~BOLNR in S_LBLNE and
                  b~VBTYP_N = 'R' and
                  b~BWART = '641'.
              My doubt is whether the logic works or not i Mean does i getall the rrecords based on the requirement.?
                      If not please tell any alternative logic?
    Thanks,
    Gopi Anne.

    Hi Gopi,
    Your code is Good.
    But try to avoid Inner join with more number of Tables ...because this is a performance issue..
    try to use..
    select (primary key fields mainly,other fields) from LIKP into itab where bolnr in p_bolnr(paramater).
    next try to use for all entries option..
    select (primary key fields mainly,other fields) from VBFA for all entries in itab where (give the condition)....
    simillarly do for the other select ....ok this will try to reduce the performance issue....
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

  • OCI Catalog for Vendor problem : Logical system for catalog not maintained

    We have set up an OCI catalog with on of our vendors. This works fine untill we transfer shopping basket data from Vendor sysem into our SRM-system (SRM5.0). Then data is not being transfered and Vendor Webshop screen remains 'open'.
    in SLG1 i have found an error "Logical system for catalog not maintained. Inform system administrator'
    Anyone an idea what the cause of this error can be or what we need to check ?
    Thanks in advance

    Hi,
    I have not seen that error before. However, I think it may have to do with the LOGICAL_SYSTEM OCI field. Can you check if your punch-out catalog vendor is populating that field? Also, check if you have the correct BP# populated in the catalog configuration and the LOGICAL SYSTEM Field on the define External Webservices is blank.
    SG

  • Logic for correcting strings with different barckets

    can any one tell me the simple logic for correcting strings with different barckets
    suppose say for eg.
    (<{abc}>defgh) should evaluate to TRUE
    (<{abc>} should evaluate to FALSE
    Things to check is
    1. number of opening brace and closing brace
    2. Their position are correct or not
    If the above two conditions are met than it is TRUE else FALSE
    i guess string function with decode and lenght function or case should do but bit difficult to develop this logic in with sql
    Thanks,
    AAK

    Hi,
    Here is non REGEXP_REPLACE version ( Unfotunately dont have 10G to feel the power of REGEXP_REPLACE.
    SQL> ed
    Wrote file afiedt.buf
      1  SELECT DECODE(SUM(CASE
      2                    WHEN Left = '(' AND Right =')' THEN 0+Count_Bracket
      3                    WHEN Left = '<' AND Right ='>' THEN 0+Count_Bracket
      4                    WHEN Left = '{' AND Right ='}' THEN 0+Count_Bracket
      5                    WHEN Left = '[' AND Right =']' THEN 0+Count_Bracket
      6                    ELSE
      7                       1
      8                    END
      9                    )
    10         ,0,'Valid','Invalid')
    11  FROM
    12  (
    13     SELECT SUBSTR(str,(len+1 - level),1) Left, SUBSTR(str,(len + level),1) Right, MOD(LENGTH(str),2)
    14     FROM
    15     (
    16      SELECT
    17         REPLACE(translate('&exp','abcdefgh','        '),' ') str,
    18         LENGTH(REPLACE(translate('&exp','abcdefgh','        '),' '))/2 len
    19      FROM DUAL
    20    )
    21    CONNECT BY LEVEL <= LEN
    22* )
    SQL> /
    Enter value for exp: (<{abc>} )
    old  17:        REPLACE(translate('&exp','abcdefgh','        '),' ') str,
    new  17:        REPLACE(translate('(<{abc>} )','abcdefgh','        '),' ') str,
    Enter value for exp: (<{abc>} )
    old  18:        LENGTH(REPLACE(translate('&exp','abcdefgh','        '),' '))/2 len
    new  18:        LENGTH(REPLACE(translate('(<{abc>} )','abcdefgh','        '),' '))/2 len
    DECODE(
    Invalid
    SQL>
    SQL> /
    Enter value for exp: <{[()]}>
    old  17:        REPLACE(translate('&exp','abcdefgh','        '),' ') str,
    new  17:        REPLACE(translate('<{[()]}>','abcdefgh','        '),' ') str,
    Enter value for exp: <{[()]}>
    old  18:        LENGTH(REPLACE(translate('&exp','abcdefgh','        '),' '))/2 len
    new  18:        LENGTH(REPLACE(translate('<{[()]}>','abcdefgh','        '),' '))/2 len
    DECODE(
    Valid
    SQL>
    SQL> /
    Enter value for exp: ([{<>}])
    old  17:        REPLACE(translate('&exp','abcdefgh','        '),' ') str,
    new  17:        REPLACE(translate('([{<>}])','abcdefgh','        '),' ') str,
    Enter value for exp: ([{<>}])
    old  18:        LENGTH(REPLACE(translate('&exp','abcdefgh','        '),' '))/2 len
    new  18:        LENGTH(REPLACE(translate('([{<>}])','abcdefgh','        '),' '))/2 len
    DECODE(
    Valid
    SQL>
    SQL> /
    Enter value for exp: (<{abc}>defgh)
    old  17:        REPLACE(translate('&exp','abcdefgh','        '),' ') str,
    new  17:        REPLACE(translate('(<{abc}>defgh)','abcdefgh','        '),' ') str,
    Enter value for exp: (<{abc}>defgh)
    old  18:        LENGTH(REPLACE(translate('&exp','abcdefgh','        '),' '))/2 len
    new  18:        LENGTH(REPLACE(translate('(<{abc}>defgh)','abcdefgh','        '),' '))/2 len
    DECODE(
    Valid
    SQL> Note: Only thing needs to care is " translate('<{[()]}>','abcdefgh',' ') " if string has some additional characters please include here.
    Regards

  • Syntax for logical OR,AND and not equal to

    Hi All,
    In the rtf template we are in need of using logical OR,AND and not equal to .
    <?choose:?><?when:(M= 0 & N=1) | (M= 1 & N=0)?>
    <?end when?>
    <?choose:?><?when:(M!= 0 & N=!1)?>
    <?end when?>
    <?otherwise:?><?end otherwise?><?end choose?>
    Is the syntax used above is correct?
    Thanks in Advance

    Hi,
    Been a while since I look at this sort of thing, but from what I can remember, here goes:
    When you specify an element name in your XML you are actually specifying some XPath. This means you need to use XPath syntax in your <?when....?> clause.
    I think you would need to re-write your statements as follows:
    <?choose:?>
    <?when:(M=0 and N=1) or (M=1 and N=0)?>
    <? end when?>
    <?when:not(M=0 and N=1)?>
    <?end when?>
    <?otherwise:?>
    <?end otherwise?>
    <?end choose?>
    I hope this helps you.
    Regards,
    Cj

  • Logical system name has not been assigned to

    Hi, Expert
    I m trying to transferr DATA from ECC to APO . when I configured my ECC and APO systems according the SCM 210, but I still meet the error like this
    logical system name has not been assigned to
    syste: user:
    Function/Q/SAPAPO/CIF_PRODUCT_INBOUND
    text: logical system name has not been assigned to
    my ECC is ECC6.0,and APO 7.0
    Can u help me,Thank u. I m waiting the solution on desk
    Rockey
    Edited by: Xinyou Dong on Jun 2, 2011 9:11 AM

    Hi,
    I think you dont have partner profile created.
    Try to create one with the RFC which is connecting ECC and APO.
    Thanks,
    Deepthi

  • I cannot get my Bose speakers to work.  They are plugged correctly and not in the headset jack

    I have a new iMac 21.5 inch Led. 16.9 widescreen computer.  I purchased Bose speakers.  They are set up correctly and plugged in the back of the monitor in the correct slot (not headset slot) and I cannot get sound through  the Bose speakers.  I have tried the speakers on another computer and they work properly.  Can you help?

    Hi. If the speakers are using a standard 3.5mm plug, they need to be plugged into the headphone jack. Please clarify which jack you are using.
    Stedman

  • Input Tax code from logical partner LS but not from indiv vendor partner LI

    Hi,
    Find that tax code at vendor invoice is being taken from logical partner (LS) , but not from the individual vendor partner number (LI) . Bothe the partners are maintained in WE20 , OBCA , OBCD & OMRY.
    Like to know the reason / setting to pick up tax code from logical partner (tax rates are same in both cases).
    With regards,
    Mrinal

    Hi Dove,
    I think you can use a substitution for field Bank Type at Item Level (TCODE OBBH). This would fill your bank type when you post the document in FI, then you won't have problems in F110.
    Hope that helps.Cheers.
    Ignacio.

  • An eligible Logic Pro version was not found in the Applications folder. This update requires Logic Pro version 9.0 or higher.

    Get this error when trying to install Logic patch 9.1.4 to my machine.
    An eligible Logic Pro version was not found in the Applications folder. This update requires Logic Pro version 9.0 or higher.

    Thx, but i had already read that and tried it: did not work.
    Got it fixed now by reinstalling Logic Studio 9 from DVD.
    That indeed creates the Logic Pro folder in Applications - something I had tried earlier by simply moving my existing Logic folder. This means the Logic 9.1.5 update does not simply check a folder name: there must be another entry/registry entry it checks. Reinstalling Logic Studio from scratch solved it for me.
    After reinstalling thought Lion forgot my Focusrite Saffire 40, so no DAW. Solved that by reading a forum entry on beta drivers.
    So I am happy, music creation wise.
    Left for me is to solve the X Mail application saying it does not run under Lion!
    Model Name:          Mac mini
      Model Identifier:          Macmini3,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.26 GHz
      Number of Processors:          1
      Total Number of Cores:          2
      L2 Cache:          3 MB
      Memory:          2 GB
      Bus Speed:          1.07 GHz

  • I installed Lion OS X and Logic Pro won't run. I downloaded the 9.1.5 update: "An Eligible Logic Pro Version Was Not Found in the Applications Folder.  This Update require Logic Pro Version 9.0 or higher".  I have Logic Pro Version 9.1.1 installed.

    I installed Lion OS X and Logic Pro won't run. I downloaded the 9.1.5 update: "An Eligible Logic Pro Version Was Not Found in the Applications Folder.  This Update require Logic Pro Version 9.0 or higher".  I have Logic Pro Version 9.1.1 installed.
    I even pulled the dmg file into the Logic Studio folder in my applications directory and it still does not recognize it.  What do I do now?

    Niel:  Thanks. 
    For others benefit, here is what happened.
    I had installed Logic Studio 9.1 some time ago.......not knowing what all the programs were nor what they did, I created a "Logic Studio" subfolder in my applications folder and put all Logic Studio programs into it so I'd know where they were and could review each at my leisure over time.
    My assumption now is that when the updater looks for the Logic Pro program, it looks only in the applications folder.  It seems lame that it would not also look in the subfolders of the applications folder, but that apparently IS the way it works.  Because my Logic Pro program was located in the "Logic Studio" subfolder, the updater just didn't see it..hence the error message I received when I tried to update. 
    Solution:  I moved all the Logic Studio programs out of the subfolder and now they reside in the applications folder. Ran the 9.1.5 updater and it worked like a charm. 

  • After effects color corrected clip not showing correctly in Premiere

    Hello all,
    I have recently made a short film with a few effects in Premiere and After effects CS4.  I have used the Dynamic Link to accomplish this.  I have added color correction with Color Finesse in After effects.  The problem is I some of the color correction is not showing up in Premiere once it has finished.  Some of them are adjustment layers and some are not and the ones that are showing up are diverse like that as well.  I have rendered the footage and rendered the premiere time line, it fixes it at first but won't build a DVD the right way then the fixes just seem to disappear when scrolling through the timeline.
    Is anyone else haveing this problem?
    Do you think it's something wrong that an update will fix?
    Maybe a new codec?

    Describe the exect DL steps you took.

  • Logic randomly playing midi notes.  How do I turn it off?

    When i solo a track logic triggers a midi note. same with mute and selecting and pretty much every button and menu in logic triggers a midi note or CC. What is going on here? My midi keyboard keeps playing notes cuz logic keep triggering them.
    Solo plays a F1
    Mute plays a E1
    Record plays a C2
    selecting a track plays a D4
    Everything triggers a midi note or CC.  it's bugging me a messing up my sessions.  Pleases help me.

    Andrew_to wrote:
    This is happening to me to. Everytime I open logic to work on something new, the midi instrument just keeps looping C2 over and over again. What gives?
    Is it C2 or C-2?

  • TS3276 I am not able to Mobile Me email account to connect with iCloud or my Apple Mail program. Don't know if my settings are correct or not. Can anyone help me with this please?

    I am not able to Mobile Me email account to connect with iCloud or my Apple Mail program. Don't know if my settings are correct or not. Can anyone help me with this please?

    http://support.apple.com/kb/HT5922
    If you want to mirror your desktop, see:
    http://support.apple.com/kb/HT5404
    Regards.

  • Hey guys ! I use logic pro ... not logic proX ... and i want to record my drums with 4 mics. I got a mixer with also 4 inputs ( Behringer Xenyx QX 1202USB ) But in my Logic i can't take the third input !?!? i can only choose 1 and 2 .... Please Help :)

    hey guys ! I use logic pro ... not logic proX ... and i want to record my drums with 4 mics. I got a mixer with also 4 inputs ( Behringer Xenyx QX 1202USB ) But in my Logic i can't take the third input !?!? i can only choose 1 and 2 .... Please Help

    Friedrich sp wrote:
    Can you send me a mixer wich can do that, please ?
    Who do you think I am? Santa Claus?
    What you need is not a mixer, but an audio interface with at least 4 mic inputs. There is a lot of choice there, but you should indicate a budget. You can go from, say, € 300 to € thousands, if you want.
    Roland UA 1010
    Focusrite Scarlett 18i8
    However, there are other options (like multi-out mixer plus multi in interface, or standalone mic preamps plus interface with 4 inputs, etc). I have little experience using these however so I really cannot say much about which one(s) to get. The two mentioned above both have four mic preamps, but they are by no means the only way to do it.
    The cheapest solution I can think of is to get a second 1204USB, plug it in, and in OS X create an Aggregate device (=the two are being merged into 'one virtual' interface with two discrete stereo (= four discrete mono) inputs. Disadvantage: you keep the same (limited) soundquality of the 16 bits convertors. Getting any of the interfaces mentioned earlier will also mean you'll make the significant step up from 16 to 24 bits sound.

  • ORA-16821: logical standby database dictionary not yet loaded

    Dear all,
    I have a dataguard architecture with a primary and a standby database (for reporting stuffs). Since I upgraded physical standby to logical standby, I receive this error !
    ORA-16821: logical standby database dictionary not yet loaded
    If someone has an idea, should be great !!
    Thanks
    oldschool

    Hi,
    Ok I applied :
    SQL> ALTER DATABASE STOP LOGICAL STANDBY APPLY;
    Database altered.
    SQL> alter database start logical standby apply immediate;
    Database altered.
    SQL>
    And now I received this :
    ORA-16825: Fast-Start Failover and other errors or warnings detected for the database
    Cause: The broker has detected multiple errors or warnings for the database. At least one of the detected errors or warnings may prevent a Fast-Start Failover from occurring.
    Action: Check the StatusReport monitorable property of the database specified.
    What does it mean to check the status report.....
    I found this about monitorable status report !!
    DGMGRL> show database 'M3RPT' 'StatusReport';
    STATUS REPORT
    INSTANCE_NAME SEVERITY ERROR_TEXT
    * WARNING ORA-16821: logical standby database dictionary not yet loaded
    DGMGRL>
    What can I do ?
    Thanks a lot
    oldschool
    Edited by: oldschool on Jun 4, 2009 2:37 AM

Maybe you are looking for

  • Custom logging, multiple apps in one file, different from server.log

    I have several applications running on my integration server. I would like to log from these apps to a single file (different file from server.log) I tried to use custom log4j logging, but there's a problem with the RollingFileAppender. Whenever a fi

  • Sending email by HTML

    Hi have been using the following script successfully which produces a plain text email in my drafts folder for Microsoft Entourage: set strRecipientAddr to "[email protected]" -- 'To:' recipient. set strRecipientName to "email" set tContent to "Dear

  • Adobe Premier Pro - Getting Started

    Hi There i am new to Adobe and Adobe Premier Pro - I want to edit GoPro videos, i have Adobe Creative Cloud and i have installed Premiere Pro CS6, where do  i find the software so that i can start editing, the only thing on my desktop is Adobe Creati

  • Premiere CS3, problema con codecs

    Hola, al iniciar Premiere Pro CS3 me dice que es necesario instalar codecs que no vienen con la versión trial. Le doy a aceptar y la instalación de codecs falla recordándome dicha necesidad de instalar codecs cada vez que abro premiere. Como puedo in

  • New to CUPS - really quick question

    Hello,      I've been working on implementing CUPS and integrating it with LDAP.  It seems to be working so far, am able to authenticate with AD credentials into Personal Communicator.  I'm running version 7 in the lab.  I find that I can log into it