Parameters with comments

Hi,
I want to create a check box with some long text and also need to do validations
based on the one of the input fld.
for example
there is a fld in the selection screen,
paramaeters: xyz type c (will accept y or n) only.
here the checkbox should come with soem long text.
this check box need to take the value if the above xyz value if 'n'  only.
Please provide me the code if possible.
Thanks in advance

Hi,
i hope this can u help u.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(10) LB1.
PARAMETERS A AS CHECKBOX,
                       AA(10).
SELECTION-SCREEN COMMENT 30(10) LB2.
PARAMETERS B AS CHECKBOX.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN ULINE.
WRITE: A, NAME.
INITIALIZATION.
LB1 = ‘ENTER NUM’.
LB2 = ‘ENTER NAME’.
IF AA = 'Y'.
  WRITE:/ 'CORRECT'.
ENDIF.
reward points,if it is useful.
Otherwise tl me ur full requirement,so that i can help u.
Thank you,
chandu.

Similar Messages

  • Displaying 2 parameters with descriptions in same line of Selection-Screen

    Hi All,
    I want to know how can we display 2 parameters with descriptions in same line of Selection-Screen.
    Means in selection screen first we will give comment as
    <b>Material no</b> then <b>parameter box as MARA-MATNR</b>, In the same line description as <b>Plant</b> then <b>parameter box as T001W-WERKS</b>.
    Material No - BOX - Plant - BOX.
    Can any body tell me how can we do it.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    Hi shaik,
    1. define two TEXT-SYMBOLS :
    001     Material
    002     Plant
    and Activate
    2. use this code (just copy paste)
    REPORT abc LINE-SIZE 80.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(10) text-001 FOR FIELD p_matnr.
    PARAMETERS : p_matnr TYPE mara-matnr.
    SELECTION-SCREEN COMMENT 35(10)  text-002 FOR FIELD p_werks.
    PARAMETERS: p_werks TYPE t001w-werks.
    SELECTION-SCREEN END OF LINE.
    regards,
    amit m.

  • TS1717 I have updated to version 11 of itunes and now it wont open comes up with comment saying it is not installed correctly or corrupt. Help

    I have updated to version 11 of itunes and now it wont open comes up with comment saying it is not installed correctly or corrupt. Help

    A complete uninstall/reinstall is worth a crack with that one:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7

  • How can I view all comments in a Pages doc and print the doc with comments?

    It seems that we can no longer view comments in the margin of a document.  It is also not possible to print the document with comments visible.  Anyone else having this problem?  Pages 09 Help does not even offer an up-to-date explanation.  "Show Comments" only shows color shading.  The option “Show Comments and Changes Pane" does not even exist.  How can I get the comments to print???

    You will have to wait for Apple to fix this deficiency in a forthcoming update to Pages v5. Or, you could use Pages ’09 v4.3, if originally installed before the v5 upgrade, and located in /Applications/iWork '09.
    Otherwise, use another solution (e.g. Office for Mac 2011, LibreOffice).

  • I have upgraded to Pages 5.0.1 and now I cannot print or pass along "comments" in the text of a document. I previously was able to convert the Pages document, with comments, to a "Word" document so that others could view the edited text. How do I do that?

    I have upgraded to Pages 5.0.1 and now I cannot print or pass along "comments" in the text of a document. I previously was able to convert the Pages document, with comments, to a "Word" document so that others could view the edited text. How do I do that?

    When you installed Pages v5, it automatically moved the older Pages ’09 v4.3 into /Applications/iWork '09 folder. If you want normal comment interoperability, you are advised to resume using the older version of Pages. Newer, is certainly not better with Pages v5.

  • Print with Comments shuts down Adobe Acrobat 9.5

    When I select Print with Comments or Summarize Comments, I see a pop-up window reading "Adobe Acrobat 9.5 has stopped working. Windows is checking for solution..." It doesn't matter what options I select for printing the comments. It happens every time. Any suggestions?

    Liebe(r) Mylenium,
    vielen Dank für den Hinweis auf DDE!
    Leider kann aich weder in der Firewall noch im Virenscanner irgnd einen Hinweis finden. Auch in den jeweiligen Protokollen kann ich nichts über eine Blockierung finden, die irgend etwas mit dem Problem zu tun haben scheint. Und in der Registry die richtigen Einträge zu identifizieren, zu analysieren und ggf. zu bearbeiten geht über meine Kenntnisse zu Windows doch eindeutig hinaus. Ich möchte das System eigentlich ja "nur" benutzen.
    Ich habe jetzt einen anderen Ansatz aufgegriffen und schlichtweg die ganze CS4 de- und dann wieder neu installiert (Acrobat allein reichte nicht). Jetzt funktioniert wieder alles. Zwar bin ich jetzt wieder bei Acrobat 9.0 pro, aber das reicht für meine Zwecke. Ich sehe nur mit etwas gemischten Gefühlen dem vorhersehbaren Versuch entgegen, dass Acrobat sich selbst wieder auf v.9.5 updaten möchte. Ich muss sehen, dass ich das verhindere, dann habe ich vielleicht eine dauerhafte Chance. Immerhin hat das Programm ja unter Windows XP einige Jahre lang einwandfrei getan.
    Noch mals besten Dank für die Hilfestellung!
    Beste Grüße, Wolfgang

  • BUG in Oracle SQL Developer 3.0.04 on the "generating DLL" with comments?

    I'm newbie on oracle, but I think that I found out a bug in Oracle SQL Developer version 3.0.04 on the "generating DLL" tool using "comments".
    I will describe the steps that I gave:
    I created a view, but after I test it I had to change my “where” condition, so I comment the old code and then I wrote the new “where” condition below. After I done that I tried to look at the sql code of my view using “generating DLL” tool, but oracle sql developer only shown me half of the code, a lot of code were missing. Then I began with some test trying to understand what happen and I notice that if I put an invalid sql code in my comment the generating DLL start working with no problems, for example(pseudo-code):
    (COMMENT WITH VALID SQL CODE the "Generating SQL" don't work:)
    CREATE OR REPLACE VIEW <user>.<view_name> ( <column1>,<column2> )
    AS
    SELECT column1, column2
    FROM table1
    INNER JOIN
    (SELECT
    FROM table2
    INNER JOIN .....
    INNER JOIN ....
    --where time_stamp = (select max(time_stamp) from .....)
    WHERE time_stamp >= TRUNC(sysdate)
    ) t1 ON t1.ID = ....
    AND ..... >= TRUNC(sysdate)
    ORDER BY ....
    Generating DLL returns this(when the error occurs):
    CREATE OR REPLACE VIEW <user>.<view_name> ( <column1>,<column2> )
    AS
    (COMMENT WITH VALID SQL CODE the "Generating SQL" work with no problems:)
    CREATE OR REPLACE VIEW <user>.<view_name> ( <column1>,<column2> )
    AS
    SELECT column1, column2
    FROM table1
    INNER JOIN
    (SELECT
    FROM table2
    INNER JOIN .....
    INNER JOIN ....
    --where
    WHERE time_stamp >= TRUNC(sysdate)
    ) t1 ON t1.ID = ....
    AND ..... >= TRUNC(sysdate)
    ORDER BY ....
    I believe that "Generating DLL" tool have some problem with the comments, I also used /*...*/ to comment but the problem is still active.
    I notice as well that if I started to add some more comments along the code, the conditions migth change, so I think the problem is related with "comments" code.
    Would you mind telling me if this is a real bug or if I'm doing anything wrong.
    Thank you in advance,
    Rodrigo Campos
    Edited by: 894886 on 3/Nov/2011 5:29

    Hi Rodrigo,
    Thank you for reporting this. The only bug I see currently logged on a comment affecting the generated View DDL involves ending the last line of the definition with a comment, which treats the ending semi-colon (even if on a different line) as part of the comment. That is actually related to a low-priority bug against an Oracle database API.
    Unfortunately, your pseudo-code is a bit complex. Trying a few quick, simpler tests against the standard HR schema did not reproduce the issue. I tried INNER JOIN, and nested SELECTs. It would help greatly if you could provide a test case compilable against one of the standard schema, like HR or SCOTT.
    Regards,
    Gary
    SQL Developer Team

  • Acrobat Pro 9 with comments crashes

    I'm having problems with consistant crashes from acrobat files marked with comments. They are PDF files that have been sent to several users and commented on.
    Crashes when InDesign CS4 (6.0.2) is open and go back and forth between InDesign and Acrobat Pro 9 (9.1.2). Got a sense that it is related to the comments list or markings on the page. Below is error note from MacOS auto form (OSX 10.5.7):
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000c6eb986b
    Crashed Thread:  0
    Any thoughts or processes I should try?
    Thanks.

    thanks for the push to getting a cache cleaner -- tried and will see if it keeps the problem in hand.
    d.

  • Issue printing combined document with comment summary.

    I am having an issue generating the correct output for printing a comment summary with connector lines.  I started off with three duplicate documents, all of which had been commented on by different individuals.  The documents and comments were combined and I attempted to print the comment summary with connector lines.  I noticed that at the bottom of the first page, where there should have been a comment, there was only the name of the person who had commented and then the standard line "Comments continued on next page" but the person's comment was not there on page 2.  Its as if only their response is being cut off but you can still see their name, along with the date and time of the comment.
    I sent the issue over to someone I know who has Adobe Acrobat Pro X and they did not have the same issue.  I am not able to upgrade to V.X yet so if there's anyway to correct this or if I am doing something wrong, could someone please respond and let me know?  I combine documents and print with comment summaries on a regular basis.
    Thank you

    Hi Alejandro,
    thanks a lot for your reply, but I am afraid this does not have anything to do with that.
    I have checked the option that you mention and it was checked. Besides, I am using now Web Intelligence Rich Client, so that option should not be a problem.
    I don't really know what it is, it seems to be a bug or maybe the alert are not supposed to be printed.
    I would appreciate any idea that could help.
    Thanks a lot

  • Script to extract pages with comments

    I know that what I would like to do is probably quite simple. I'm trying to automatically take a source document, and extract all pages with comments to a new document.  Ideally, I would have multiple versions of this script for different purposes.  I used to be a business analyst years ago, but it's been years since I've written any code, and even back then I used SQL almost exclusively--it's been about 12 years since I've written any code other than SQL queries, and back then it was highschool projects written in C++ before OOP was really a big thing.  I'd attempt to read documentation myself and figure it out, but I really don't even know where to start -- my CS knowledge at this point is pretty much only conceptual.  Whenever I have a similar VBscript problem using MS software, usually all I do is find an existing function and modify one or two lines to meet my needs, so I've never really had to learn how the scripts I've used work.  I just tinker with existing stuff to get what I need.  My past coding experience does give me an idea is to the general algorithm that I think would work.  To show that I really tried with this one, I paste my guess as to how I would code this below: 
    1)     Create For loop for source doc.
    2)     Create FOR loop for new doc
    3)     Analyze page in source doc
    4)     IF source page has any comments or highlighting THEN somehow note that page and increment "new doc" counter
    5)     Increment source doc counter
    6)     Repeat 3-5 until all pages in source doc have been analyzed
    7)     Create new file
    8)     Extract pages noted during step 4 to new file.
    If someone could help me create the above script, I would probably be smart enough to get it to meet my needs.  What I'd really like are two versions of that script.  If asking for the community to simply provide me with code is not a cool thing to do, could someone link me to a good tutorial and/or existing scripts so I could try and figure it out myself?
    1)     One that extracts only pages with text comments (using the typewriter tool).
    2)     One that extracts pages with highlights or text comments.

    In the second to last line of my OP I meant "using the 'Add text comment' tool" not "using the typewriter tool".

  • Query parameters with the same name and different values

    According to HTTP, multiple query or post parameters with the
    same name and different values are permitted. They are transfered
    over the wire in the following format -
    name1=val1&name1=val2&name1=val3
    The problem is that I can't see anyway of assigning multiple
    parameters with the same name and different values to the request
    object of mx.rpc.http.HTTPService. I have tried using the
    flash.utils.Dictionary object as it does strict key comparison but
    that doesn't work too. I have tried setting an array of values to a
    property of the request object but that sends the request to the
    server in the following format -
    name1=val1,val2,val3
    The java servlet engines throw exceptions when they see this.
    Any help would be greatly appreciated.

    If you're not on 8.1.4 move there. 8.1.3 had limitations in the wsrp
    release.
    wrote:
    I have an html select box that contains several values, and multiple
    selection is enabled. When my code runs as a remote portlet, the
    following is showing up in the soap monitor when I select multiple
    values and submit the form:
    <urn:interactionParams>
    <urn:portletStateChange>cloneBeforeWrite</urn:portletStateChange>
    <urn:interactionState>_action=addEmployeesToGroup</urn:interactionState>
    <urn:formParameters
    name="P62005wlw-select_key:{actionForm.selectedEmployees}OldValue">
    <urn:value>true</urn:value>
    </urn:formParameters>
    <urn:formParameters
    name="P62005wlw-select_key:{actionForm.selectedEmployees}">
    <urn:value>beatest1</urn:value>
    </urn:formParameters>
    In this case, I selected beatest1 and beatest2, but only beatest1 comes
    through to the remote portlet. Is this a known bug, and, if so, is
    there a patch or workaround available?
    Thanks in advance,
    Andy

  • PDF with comments crashing, using InDesign CS3

    I'm using OS10.6 and switching back and forth between Acrobat Pro 9.3.4 and InDesign CS3 5.0.4.  I have Firefox running too, as well as Bridge and Word.
    The PDF was originally made by me.  I email it to my client and she adds comments using her Windows PC - I don't know any more details.  She then Saves As and emails back to me.
    I then open the PDF with comments and start to work through them, making amendments in InDesign, and then marking the comment with a checkmark.  The PDF seems to randomly crash - sometimes it will work fine for a while, sometimes it just won't and crashes each time I open it.  As a result of this random crashing, I'm saving after every comment I process to keep track of what comments I've done.  (EDIT) Sometimes after the crash none of the comments are checked, despite me checking them and saving the file.  V frustrating and time consuming.
    Any ideas??  Thanks.
    Message was edited by: agreen01

    There is a feature in interactive PDF called Show/Hide fields which may or may not give you what you want. You can create a button of an image or other object which will make another object (button) appear. Do a Google search on "Show Hide Field InDesign Tutorial"

  • How to embed scanned pdf's of drawings with comments into Word?

    Hello, 
    I have a unique problem which I would like some help with.  I believe the solution lies within concerting a pdf to a Word format but to date I have had no success. 
    I have pdf's of scanned E-size drawings which I have marked up with comments (highlights, textboxes, etc...) which I would like to embed in a Word document WITH the comments.  So far my Word conversions have resulted in useless unreadable Word files.  Any thoughts? 
    If I can embed these files within Word it would preserve the resolution.  If I use the snapshot tool on the E-size drawing and put it on a letter size page in the Word doc it becomed unreadable. 
    Thanks 
    I am using Adobe Acrobat Standard ver 8.2.2 with Office 2007

    For the graphics portion you can use the export graphics option in Acrobat. That will save each scanned page (as long as no OCR was done) as a graphic that can be imported to WORD. You can also save as a TIFF or such. For including the markup that might be more useful. In that case, each page is saved as a graphic. I would recommend TIFF and you should have an options at the bottom of the save as screen to set the resolution. Again, import these into WORD.
    I am only mentioning these processes since you basically have graphics and saving to WORD you indicate does not work (though I am not sure why).

  • We created a pdf document with comments and hyperlinks. On iPad, comments/hyperlinks disappear.

    Using Acrobat Pro 9, we created a pdf with comments and hyperlinks to be shared with a large community on the iPad, through a server. Once the document is opened on the iPad, all the comments and hyperlinks disappear. Are we missing a tool on the iPad or is there a different way to create this file? Thank you.

    Is everyone on the iPad using the latest version of Adobe Reader mobile for iOS (10.6 at the moment)? You can see all the comments (including drawing markups) as well as view the notes attached to text markup with this version.

  • Passing multiple URL parameters with same name

    Hi,
    I have a question which is not entirely related to Java. But although its related HTTP calls, so I thought I might get some ideas here.
    Background:
    I am making HTTP URL call from SAP ABAP code. Its pretty much similar to Java (creating URL connection, setting HTTP headers, connecting, receiving response and everything)
    For example,
    http://service_server:8080/a7/extension.services.SearchRequirements.a7x?RequestStatus=CR&RequestStatus=RR
    Now, this service_server runs a query to database where it uses both these values of "RequestStatus" to form 'OR' condition for a field.
    Issue:
    When I run this URL from browser, it shows XML response containing results for both values. In short, this is the ideal response.
    (I am using getParameterValues(string) at service_server to read multiple values for same parameter)
    But when I see response in SAP system, I see that it is returning data for only one value of 'RequestStatus'.
    I checked the logs of service_server, and I see that it has received only one parameter, not two.
    Question:
    It seems like SAP systems web server is truncating both parameters with same name and passing just one of them to outside server(??)
    Is there any configuration at Web Server side or any HTTP headers to be set so as to avoid this?
    Can anybody suggest something on this?

    I managed to resolve this issue by using HTTP 'Post' method to send the data.
    CALL METHOD CL_HTTP_CLIENT=>CREATE_BY_URL
        EXPORTING
          URL                = L_URL
        IMPORTING
          CLIENT             = L_HTTP_CLIENT
        EXCEPTIONS
          ARGUMENT_NOT_FOUND = 1
          PLUGIN_NOT_ACTIVE  = 2
          INTERNAL_ERROR     = 3
          OTHERS             = 4 .
    "STEP-2 :  AUTHENTICATE HTTP CLIENT
    CALL METHOD L_HTTP_CLIENT->AUTHENTICATE
      EXPORTING
        USERNAME             = 'name'
        PASSWORD             = 'password'.
    "STEP-3 :  SET HTTP HEADERS
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_HEADER_FIELD
          EXPORTING NAME  = 'Accept'
                    VALUE = 'text/xml'.
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_HEADER_FIELD
        EXPORTING NAME  = '~request_method'
                   VALUE = 'POST' .
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_CONTENT_TYPE
        EXPORTING CONTENT_TYPE  = 'application/x-www-form-urlencoded' .
    "SETTING REQUEST DATA FOR 'POST' METHOD
    IF L_PARAMS_STRING IS NOT INITIAL.
       CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
         EXPORTING
             TEXT   = L_PARAMS_STRING
         IMPORTING
               BUFFER = L_PARAMS_XSTRING
         EXCEPTIONS
            FAILED = 1
            OTHERS = 2.
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_DATA
        EXPORTING DATA  = L_PARAMS_XSTRING  .
    ENDIF.
    "STEP-4 :  SEND HTTP REQUEST
      CALL METHOD L_HTTP_CLIENT->SEND
        EXCEPTIONS
          HTTP_COMMUNICATION_FAILURE = 1
          HTTP_INVALID_STATE         = 2.
    "STEP-5 :  GET HTTP RESPONSE
        CALL METHOD L_HTTP_CLIENT->RECEIVE
          EXCEPTIONS
            HTTP_COMMUNICATION_FAILURE = 1
            HTTP_INVALID_STATE         = 2
            HTTP_PROCESSING_FAILED     = 3.
    "STEP-6 :  READ RESPONSE DATA
    CALL METHOD L_HTTP_CLIENT->RESPONSE->GET_CDATA
            RECEIVING DATA = L_RESULT .
    "STEP-7 : CLOSE CONNECTION
    CALL METHOD L_HTTP_CLIENT->CLOSE
      EXCEPTIONS
        HTTP_INVALID_STATE = 1
        OTHERS             = 2   .
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for