In CM01 selection screen, what is the meaning of "Operator"

Hello,
(1) In CM01 selection screen, there are 3 fields with column heading "Operator". There is no documentation available for those fields. Can someone help me understand what is the meaning and use of those 3 fields. Thanks.
(2) We are in the process of writing a wrapper program for CM01 - so that we have more detailed selection options and also download to Excel. Any help/suggestion for this is welcomed. Thanks.
- Chetan

Hi Chetan
the operator field is just to select your input values and it has these following options
and has no significance on the report
=     equal to
<>     not equal to
>     Greater than
>=     greater than/equal to
<     less than
<=     less than/equal to
EQ     equal to
NE     not equal to
GT     Greater than
GE     greater than/equal to
LT     less than
LE     less than/equal to
CP     contains pattern
NP     does not contain pattern
regarding downloading the report to excel file, it is a standard functionality and any ABAP developer should be able to add it to your report and if you plan to add some additional fields to make your report more details, you need to do some enhance ment and build a custom report depending on what you want to add
if helpful please reward your points

Similar Messages

  • My ipod touch 4 has frozen with multicoloured lines on the screen, what does that mean?

    my ipod touch has frozen with multicoloured horizontal lines on the screen, what does this mean??

    - Try here:
    iOS: Not responding or does not turn on
    - If not successful and yu can't furrly turn the iPod off, let the battery fuly drain. After charging for at least an hour try again
    - If not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • Could you tell me what's the meaning of the logfile-path and log-level?

    we are running an productive xml database. but it is not stable now. Sometime it would report resource conflict error while you access xmldb via http protocol. I read the database logs and listener logs, but no abnormal message could be found. So, I want to find more information from the xmldb logs. While I run select DBMS_XDB.cfg_get().getclobval() from dual, I found that there are several logfile-path and log-level tags and I guess that these would be xmldb logs. Does anyone know what's the meaning of these tags?

    I wondered about that one often too. I didn't have a chance yet to investigate (but maybe Mark will elaborate a little here), my guess is that it / or will be a possibility to enable tracing regarding the protocols or servlets.
    Though It look like if you enable it it will trace to the XML file defined in the xdbconfig.xml. I also guess that (because there is also a XSD counterpart) that one could create an resource that streams the errors into a XDB ftp or http or ... xmltype table based on these settings.
    This would be great because it would mature the protocol server regarding functionality. You could enable the tracing and see what happens. Until now the documentation doesn't give much extra insight...
    <!-- FTP specific -->
    <element name="ftpconfig">
    <complexType><sequence>
    <element name="ftp-port" type="unsignedShort" default="2100"/>
    <element name="ftp-listener" type="string"/>
    <element name="ftp-protocol" type="string"/>
    <element name="logfile-path" type="string" default="/sys/log/ftplog.xml"/>
    <element name="log-level" type="unsignedInt" default="0"/>
    <element name="session-timeout" type="unsignedInt" default="6000"/>
    <element name="buffer-size" default="8192">
    <simpleType>
    <restriction base="unsignedInt">
    <minInclusive value="1024"/> <!-- 1KB -->
    <maxInclusive value="1048496"/> <!-- 1MB -->
    </restriction>
    </simpleType>
    </element>
    <element name="ftp-welcome-message" type="string" minOccurs="0"
    maxOccurs="1"/>
    </sequence></complexType>
    </element>
    <!-- HTTP specific -->
    <element name="httpconfig">
    <complexType><sequence>
    <element name="http-port" type="unsignedShort" default="8080"/>
    <element name="http-listener" type="string"/>
    <element name="http-protocol" type="string"/>
    <element name="max-http-headers" type="unsignedInt" default="64"/>
    <element name="max-header-size" type="unsignedInt" default="4096"/>
    <element name="max-request-body" type="unsignedInt" default="2000000000"
    minOccurs="1"/>
    <element name="session-timeout" type="unsignedInt" default="6000"/>
    <element name="server-name" type="string"/>
    <element name="logfile-path" type="string"
    default="/sys/log/httplog.xml"/>
    <element name="log-level" type="unsignedInt" default="0"/>
    <element name="servlet-realm" type="string" minOccurs="0"/>
    ...etc...

  • What's the meaning of local PO, reservation?

    Hi ,
    I am new to SRM. I have small doubts. Please clarify these..
    1. Create the sc with 4 line items like this:
    i. line item one will be selected from the catalogue and will create a backend PO
    ii. line item two will be selected from the catalogue and will create a local PO
    iii.line item three will be entered manually and will create a backend PO
    iv. line item four will be a product that was replicated earlier and will create a reservation in the backend.
    I have to create a this type of SC.
    My doubt is:
    i. How i will come to know for this  SC,  PO will create in backend or PO will create in local??
    What is the meaning of local PO??
    ii. What's the meaning of reservation??
    As per my knowledge if it is a stock item resevations created. but i am not understanding exactly.
    Please explain me. I know these are very basic, but i am not understanding.
    Thanks,
    Visu

    This may be better posted in a different forum.
    I think in your case local = SRM, Backend = ERP (R/3, ECC).
    Reservation in this context is a step before PO, you can create a reservation to simulate values, it can later be converted into a PO.

  • Drop down box for the selection screen field of the classical report

    Hi all.
    i want to have the drop down list to choose from, for the region(table:zbwcntry-field:zregion1) on the selection screen.
    what is to be added to the code for this requirement.Also,please note that this is the classical report.
    thanks for this answered.

    hi,
    data  : gv_name  TYPE vrm_id,        " used for vrm id
               gv_repid TYPE sy-repid,      " used to hold program name
    work area to provide drop down list
    DATA :  gs_value TYPE vrm_value,
    Internal table to provide drop down list
    DATA :  gt_values TYPE vrm_values,
    PARAMETER : p_run(12) TYPE c AS LISTBOX VISIBLE LENGTH 12
                                     DEFAULT 'DEFAULT' OBLIGATORY,
    CONSTANTS : gc_run(5) TYPE c VALUE 'P_RUN',    "constant for run mode
    gv_name = gc_run.
      gs_value-key = gc_v1.
      gs_value-text = text-010.
      APPEND gs_value TO gt_values.
      gs_value-key = gc_v2.
      gs_value-text = text-011.
      APPEND gs_value TO gt_values.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = gv_name
          values          = gt_values
        EXCEPTIONS
          id_illegal_name = 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.
    Hope this is helpful.
    Rgds.,
    subash

  • What is the meaning od general modification field in the obyc t-code.

    hi there gurus,
    can any one tell me what is the meaning of the general modification file din the obyc t-code,
    i wana know wht is that is used for n etc

    No -
    When I select 'flag message' I get a stylized flag in that column.
    These dashes are placed there by the mail application, not by me. They show up in some messages and not in others.
    Please don't just guess at the answer.
    G4 AGP Mac OS 9.2.x

  • What is the meaning of the oracle service  "SERVICE=orclXDB"  ?

    Hi See below.
    What is the meaning of the oracle service "SERVICE=orclXDB" ?
    SQL> r
    1 select name,
    2 value
    3 from v$parameter
    4 where upper(name) in (
    5 'DISPATCHERS',
    6 'MAX_DISPATCHERS',
    7 'SHARED_SERVERS',
    8 'MAX_SHARED_SERVERS',
    9 'CIRCUITS',
    10 'SHARED_SERVER_SESSIONS',
    11 'LARGE_POOL_SIZE',
    12 'SESSIONS'
    13* )
    NAME VALUE
    sessions 170
    large_pool_size 0
    dispatchers (PROTOCOL=TCP) (SERVICE=orclXDB)
    shared_servers 1
    max_shared_servers
    max_dispatchers
    circuits
    shared_server_sessions
    8 rows selected.
    SQL>
    SQL> select * from v$services;
    SERVICE_ID NAME NAME_HASH NETWORK_NAME
    5 orclXDB 3468872077 orclXDB
    6 orcl 2392458149 orcl
    1 SYS$BACKGROUND 165959219
    2 SYS$USERS 3427055676
    SQL>

    Hi Siva,
    don't you remember Re: Net service name and service ? :-)

  • Hi, when setting Safari, what is the meaning of "Open New Tabs in Background"? Thank you.

    hi, when setting Safari, what is the meaning of "Open New Tabs in Background"? Thank you.

    Previously, whenever you wanted to open a new browser window in mobile Safari, or whenever you tapped a link from within another app, Safari created a new page.
    But in IOS 5 things have changed, you now have 'open new tabs in background, a great feature.
    On any browser window that you have selected in Safari or any linked windows, you open Safari on iPad/iTouch or iPhone you have tabbed browser windows and can go to any of the sites without having to open up a new safari window.
    It saves you time.

  • What is the @ mean here?

    select count(*) from proddta.fz15002@oneworld, proddta.fz15001@oneworld, proddta.f0101_aec_nonhr_view@oneworld where fz15001.jhz15doisy = 'R1'...............................
    I know proddta is schema name, and fz15002 and fz15001 are table names.
    I am wondering what is the @ mean here? and what is the oneworld supposed to be here?
    Thanks

    user8117130 wrote:
    I know proddta is schema name, and fz15002 and fz15001 are table names.
    I am wondering what is the @ mean here? and what is the oneworld supposed to be here?
    select * from user_db_links where db_link = 'ONEWORLD'

  • What is the meaning of the black line in the Layer 2 View?

    In the layer 2 View,there are many black line indicate "Ethernet 100M",what is the meaning?Does it mean the device is an end device that connected PC only?

    Since there has been no response to your post, it appears to be either too complex or too rare an issue for other forum members to assist you. If you don't get a suitable response to your post, you may wish to review our resources at the online Technical Assistance Center (http://www.cisco.com/tac) or speak with a TAC engineer. You can open a TAC case online at http://www.cisco.com/tac/caseopen
    If anyone else in the forum has some advice, please reply to this thread.
    Thank you for posting.

  • MM - PO - what is the meaning of this button?

    Dear friends,
    Could anybody help me with one question.
    There is a strange button in a Purchasing Order on the Account Assignment tab page on this screenshot (it is marked with red color).
    Screenshot below
    http://content.foto.mail.ru/mail/raiden87/81/i-84.jpg
    What is the meaning of this button? When it is used for?
    I hope that anybody knows the meaning =)

    hi raiden,
    as for as i have gone through the issue I have come to know that:
    If you want to use multiple account assignment for a line item in PO then at that moment you will have to first press the "repeat on " button. only after that multiple account button will be active that is just before your "repeat on " button.
    Steps:
    1:Save your PO.
    2:Go to transaction code ME22N to change the PO.
    (Here you will firstly see that the multiple a/c assignment button is firsty gray.It will become active only after when you press the "repeat on" button).
    I hope It will be helpfull for you.
    regards,
    Aslam Ansari.

  • So I have an iPad with the smart cover, and it's usually supposed to turn on the iPad when u open it, but it's no doing that for me. Nor is it turning off without pressing the button. What is the meaning of this?

    So I have an iPad with the smart cover, and it's usually supposed to turn on and off the iPad when u open it and close it, but it's not turning on for me. Nor is it turning off without pressing the button. What is the meaning of this?what caused it to be this way? Is there someway that I could fix it?

    Wait a sec did this just start?
    You set up the smart cover function in settings (you did that, right?) so, if you did that and it's failed you make an appointment at your nearest Genius Bar now.

  • What is the meaning of this column in the pricing  procedure?

    Dear Gurus,
    What is the meaning of this column in the pricing procedure?
    thanks..

    subtotal field : Subtotal field is used to pass the value to some other field in PO .
    for ex: using value 9 you pass the value to field komp-brtwr. so that this can be used in  any other routine in the pricing procedure.
    requirement field: if there is a scenario that condition type should come in pricing on some condition like vendor country is india. in that case use create the requirment and attached this requirement.in this requirment you put logic and set the sy-subrc value 4 or 0.

  • What is the meaning of e system- jvm:infop=25a84f41,a='7.1.0.746',0='9.50.0.80',h=e000f03

    what is the meaning of e system- jvm:infop=25a84f41,a='7.1.0.746',0='9.50.0.80',h=e000f03 when i press alt+L+G+L+G on my bb 9220 i have that situation,but when i press alt+L+G+L+G on the other device i come different situation.what i must to do?

    deepspace wrote:
    i2b converts form int tot byte.
    If you don't use this instruction, the int will probably simply be chopped off at 1 byte.
    The casting does this:
    Narrowing Conversions: when an integer type is cast to another integer type of a smaller n number of bits, all but the n lowest-order bits, will be truncated.
    Yes, if instructions that yields integer results, such as iload_<n>*, are not proceeded with an i2b* instruction then the bastore* instruction, for example, would truncate the 32bit word into 8bits. But what option is there anyway? Maybe not proceeding an instruction, such as iload_<n>*, with i2b* will cause the bastore* instruction to forcibly compress a 32bit word into an 8bit byte?
    Please, if you would look at the output of the programs, that I discussed earlier in this post, you would notice the results are exactly the same, regardless to if the iload_<n>* instruction is proceeded with i2b* or not; it is analogous to the NOP*, No Operation, instruction used by microprocessors; however, conversely, the i2bmnemonic implies it actually performs a function. This is why I was questioning the pragmatic* reasoning behind it's usage. I just want to understand what is happening!
    I have posted this question to 3 different developer sites, including java.sun.com/j2se forums, and HAVE YET to get a DEFINITIVE* answer. All I get is the obvious answer but that is my problem, isn't it OBVIOUS* that 32bits must be truncated to 8bits to fit into a byte? I could understand if i2* transformed the 32bit word in some way but as evidence by the programs I posted earlier this is not the case. The values I passed to thoses methods ranged from -255 to 255, inclusive!!! Should I use values ranging from java.lang.Integer.*MIN_VALUE* to java.lang.Integer.*MAX_VALUE*, inclusive, instead?
    h4.
    Please read the posting and look at the output and you will understand my conundrum
    -----

  • What is the meaning of "i" in apple products?

    what is the meaning of "i" in apple products? i means "my" or any other answers?
    iOS means iphone Operating System
    so , iphone means my phone , internet phone or any other meanings?
    Can any one please clear my doubt?
    Thank you.

    http://www.quora.com/What-is-the-history-of-the-i-prefix-in-Apple-product-names
    Cheers
    Pete

Maybe you are looking for