User defined Project Statuses

Dear Dina,
Is it possible to have user defined Project statues in the system like failure/Success like this any??
pls guide me thanks a lot n advance

Hi
Go to Setup menu > Projects > Project Statuses
You can inquiry existing statuses and create user defined new ones.
Dina

Similar Messages

  • User defined PF-STATUS in ALV

    Hi all,
          I am doing an ALV through an user defined pf-status.But when I am using this pf-status I am unable to find the standard application tool bar and remaining also.I have seen some threads regarding this. These threads are giving me the suggestions to copy the standard pf status of ALV into user defined pf status. How to copy this standard pf status to my program.
    Sathish Reddy.

    First of all you must copy STANDART status from any ALV example in SLIS Development Class into your report.
    You can change this status Properties. (Functions, Buttons)
    And you must add this form to Active Your Status in ALV.
    *&      Form  set_pf_status
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form set_pf_status using rt_extab type slis_t_extab.
      set pf-status 'STANDARD' excluding rt_extab.
    endform.
    and you must add specified line in your callf of ALV Function.
      call function 'REUSE_ALV_LIST_DISPLAY'
           exporting
                i_callback_program = g_repid
                it_fieldcat        = gt_fieldcat[]
                it_events          = t_events[]
                i_callback_user_command = 'USER_COMMAND'
                i_callback_pf_status_set = 'SET_PF_STATUS'  <<<<<< ADD THIS
           tables
                t_outtab           = mglistoutput.
    ibrahim

  • Transforming to a user defined projection produces incorrect results

    Dear all
    I have set up a user defined projection in Oracle for an obsolete Ordnance Survey projection based on the Cassini-Soldner projection. I've got the projection itself to work but when I went to do a transformation from British National Grid (SRID 81989) to my projection, it failed to transform correctly.
    I have since realised I needed a transformation entry in the SDO_COORD_OPS table. However despite adding in an entry, which I've copied below, I cannot get the transformation to work correctly. Have I made a mistake iwth one of my entries or is there an entry I need to create else where in order for this to work. Also I am not certain what the difference is between CONVERSION and TRANSFORMATION. I would be grateful of any comments or help.
    INSERT INTO SDO_COORD_OPS (
    coord_op_id,
    coord_op_name,
    coord_op_type,
    source_srid,
    target_srid,
    coord_tfm_version,
    coord_op_variant,
    coord_op_method_id,
    uom_id_source_offsets,
    uom_id_target_offsets,
    information_source,
    data_source,
    show_operation,
    is_legacy,
    legacy_code,
    reverse_op,
    is_implemented_forward,
    is_implemented_reverse)
    VALUES (
    819899616,
    'British National Grid SRID 81989 to Cassini-Soldner vers D',
    'TRANSFORMAION',
    81989, -- this is the British National Grid projection
    96163497, -- this is the obsolete projection
    NULL,
    1,
    9633,  -- this refers to Ordnance Survey National Transformation in SDO_COORD_OP_METHODS
    NULL,
    NULL,
    'Brian Adams and Ordnance Survey',
    'Brian Adams and Ordnance Survey',
    1,
    'FALSE',
    NULL,
    1,
    0,
    0);I also have a conversion entry for the obsolete projection. This is as follows:
    INSERT INTO SDO_COORD_OPS (
    coord_op_id,
    coord_op_name,
    coord_op_type,
    source_srid,
    target_srid,
    coord_tfm_version,
    coord_op_variant,
    coord_op_method_id,
    uom_id_source_offsets,
    uom_id_target_offsets,
    information_source,
    data_source,
    show_operation,
    is_legacy,
    legacy_code,
    reverse_op,
    is_implemented_forward,
    is_implemented_reverse)
    VALUES (
    (1234567,
    'Cassini-Soldner vers D',
    'CONVERSION',
    NULL,
    NULL,
    NULL,
    NULL,
    9806, -- this refers to Cassini-Solder in SDO_COORD_OP_METHODS
    NULL,
    NULL,
    'Brian Adams',
    'Brian Adams and Ordnance Survey',
    1,
    'FALSE',
    NULL,
    1,
    1,
    1);and I will be making use of the following two entries, although like above this may be wrong.
    INSERT INTO SDO_COORD_OPS (
    coord_op_id,
    coord_op_name,
    coord_op_type,
    source_srid,
    target_srid,
    coord_tfm_version,
    coord_op_variant,
    coord_op_method_id,
    uom_id_source_offsets,
    uom_id_target_offsets,
    information_source,
    data_source,
    show_operation,
    is_legacy,
    legacy_code,
    reverse_op,
    is_implemented_forward,
    is_implemented_reverse)
    VALUES (
    961681989,
    'Cassini-Soldner vers D to British National Grid SRID 81989',
    'TRANSFORMAION',
    96163497, -- this is the obsolete projection
    81989,  -- this is the British National Grid projection
    NULL,
    1,
    9806, -- this refers to Cassini-Solder in SDO_COORD_OP_METHODS
    NULL,
    NULL,
    'Brian Adams',
    'Brian Adams and Ordnance Survey',
    1,
    'FALSE',
    NULL,
    1,
    0,
    0);
    INSERT INTO SDO_COORD_OPS (
    coord_op_id,
    coord_op_name,
    coord_op_type,
    source_srid,
    target_srid,
    coord_tfm_version,
    coord_op_variant,
    coord_op_method_id,
    uom_id_source_offsets,
    uom_id_target_offsets,
    information_source,
    data_source,
    show_operation,
    is_legacy,
    legacy_code,
    reverse_op,
    is_implemented_forward,
    is_implemented_reverse)
    VALUES (
    961627700,
    'Cassini-Soldner vers D to British National Grid SRID 27700',
    'TRANSFORMAION',
    96163497, -- this is the obsolete projection
    27700, -- this is the OSGB 1936 / British National Grid projection
    NULL,
    1,
    9806,  -- this refers to Cassini-Solder in SDO_COORD_OP_METHODS
    NULL,
    NULL,
    'Brian Adams',
    'Brian Adams and Ordnance Survey',
    1,
    'FALSE',
    NULL,
    1,
    0,
    0);Kind regards
    Tim

    Hi Mike
    Thank you so much for your help. I see where I went wrong. I thought the unit of measurement referred to the unit used to measure the distance when working with the projection. As all measuring is done in metres, I thought every uom_id value entered had to be set to metres. Where as in fact the uom_id actually refers to the unit of the figure being entered in that particular insert statement and not the unit eventually used to measure distance. I thought the parameter_id value told Oracle that it was in degrees, not the uom_id, since parameter_id refers to either the longitude of origin or latitude of origin, depending on which statement was being entered.
    I am coming at my work from the point of view of being a cartography and GIS specialist who is learning how to use Oracle, rather than an Oracle specialist who is learning about cartography and GIS. I found chapter 6 rather confusing whilst I was trying to understand how I insert a projection into Oracle, and in my confusion and attempts to understand what I needed to do, I made the above mistake.
    It does state on page 6-11 of the spatial manual, for UOM_ID, "ID number of the unit of measure associated with the operation." However as I'd never set up a projection in Oracle before, I really needed more a detailed explanations as to what needs to be done and more importantly, why it needs to be done. The introduction for the table states "The SDO_COORD_OP_PARAM_VALS table contains information about parameter values for each coordinate system transformation method." However that doesn't really explain in enough detail what it means in terms of what you need to enter and why it needs to be entered.
    There is one example of inserting a projection towards the end of the chapter but it does not explain the different stages of entry and what they mean in enough detail. I had to keep referring back to the tables, in order to try and understand what is going on and that got very confusing at times. I have both the original and revised editions of Pro Oracle Spatial but they just refer me to the spatial manual for the insertion of a user defined projection. It would be really good if someone wrote a book or booklet explaining in more detail the spatial projection creation side of things in Oracle.
    I do not have privileges to insert the statements myself but when the person with the correct privileges returns from their Easter break I will get the changes made. Regarding the Airy 1830 projection, I am given two results in both cases when I run the below statements. I know that the original map uses the 1830 Airy and not the 1847 modified, which is why I've used the former in both cases. If there is another Airy that I have missed then I would be grateful if you could tell me which values I need and I will get those entries amended too:
    select * from SDO_DATUMS
    where datum_name like '%Airy%'
    DATUM_ID               DATUM_NAME                                                                       DATUM_TYPE               ELLIPSOID_ID           PRIME_MERIDIAN_ID      INFORMATION_SOURCE                                                                                                                                                                                                                                             DATA_SOURCE                              SHIFT_X                SHIFT_Y                SHIFT_Z                ROTATE_X               ROTATE_Y               ROTATE_Z               SCALE_ADJUST           IS_LEGACY LEGACY_CODE           
    6001                   Not specified (based on Airy 1830 ellipsoid)                                     GEODETIC                 7001                   8901                   EPSG                                                                                                                                                                                                                                                           EPSG                                                                                                                                                                                                      FALSE                           
    6002                   Not specified (based on Airy Modified 1849 ellipsoid)                            GEODETIC                 7002                   8901                   EPSG                                                                                                                                                                                                                                                           EPSG                                                                                                                                                                                                      FALSE                           
    2 rows selected
    select * from SDO_CRS_GEOGRAPHIC2D
    where COORD_REF_SYS_NAME like '%Airy%';
    SRID                   COORD_REF_SYS_NAME                                                               COORD_SYS_ID           DATUM_ID               INFORMATION_SOURCE                                                                                                                                                                                                                                             DATA_SOURCE                             
    4001                   Unknown datum based upon the Airy 1830 ellipsoid                                 6422                   6001                   EPSG                                                                                                                                                                                                                                                           EPSG                                    
    4002                   Unknown datum based upon the Airy Modified 1849 ellipsoid                        6422                   6002                   EPSG                                                                                                                                                                                                                                                           EPSG                                    
    2 rows selectedAs I hadn't looked through chapter 6 of spatial manual since last August, in relation to my original insert statement for sdo_coord_ref_system table, it took me sometime to figure out where to locate the other tables containing the related entries I required. Which backs up my opinion for the need of even more detailed information on the different tables, including how they link and why they link.
    Kind regards and once again thank you for your help
    Tim

  • USER DEFINED EVENTS IN ALV

    HI ALL
    JUST WANT TO KNOW CAN WE HANDLE USER DEFINED EVENTS BY SETTING USER DEFINED PF -STATUS IN ALV
    FOR EG :
    call function 'REUSE_ALV_LIST_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                I_CALLBACK_PF_STATUS_SET = K_STATUS
               I_CALLBACK_PF_STATUS_SET = 'ZTEST1'
               i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
               i_callback_u ser_command = 'USER_COMMAND'
                I_CALLBACK_USER_COMMAND  = K_USER_COMMAND
                 IS_LAYOUT                = GD_LAYOUT
                IT_SPECIAL_GROUPS        = KR_SP_GROUP
               i_grid_title           = outtext
               is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
               it_special_groups       = gd_tabgroup
               IT_EVENTS                = GT_XEVENTS
                i_save                  = 'X'
               IS_VARIANT               = K_VARIANT
              IT_EVENTS                = KR_EVENTS[]
               is_variant              = z_template
           tables
                t_outtab                = it_ekko
           exceptions
                program_error           = 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.
    endform.                    " DISPLAY_ALV_REPORT
    I HAVE MY OWN PF-STATUS IN WHICH I HAVE CREATED 1 BUTTON WHEN I GET THE OUT PUT AND CLICK ON THAT BUTTON THAN IT GOES TO STANDARD PROGRAM ....I WANT WHEN IT CLICK ON THAT BUTTON IT GOES TO MY Z PROGRAM HOW CAN I DO THAT ...
    IF POSSIBLE PLZ PROVIDE CODE OR SOME EXAMPLE .
    THANKS
    TARAN

    U can have button on application toolbar.
    You just have to use the new pf status in your report program.
    You should copy the 'STANDARD' GUI status from program SAPLKKBL using transaction SE90 >Programming SubObjects> Gui Status.
    Execute this transaction to get to next screen. select status using checkbox. click on GUI Status --> Copy.
    Enter your Z program name and the name you what for this status - you can keep it as 'STANDARD' to be simple.
    Then you can edit the new status to add or delete buttons. This will also bring in the standard SAP ALV functionality.
    Have a look at below code for using the new status.
    TYPE-POOLS: slis.
    DATA: i_qmel LIKE qmel OCCURS 0.
    data v_repid type repid.
    SELECT * FROM qmel INTO TABLE i_qmel.
    v_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = v_repid
    <b>I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'</b>
    I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
    i_structure_name = 'QMEL'
    TABLES
    t_outtab = i_qmel
    EXCEPTIONS
    program_error = 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.
    <b>form set_pf_status using rt_extab type slis_t_extab.
    set pf-status 'TEST'.
    endform.</b>
    FORM user_command USING ucomm LIKE sy-ucomm
    selfield TYPE slis_selfield.
    data lv_ucomm type sy-ucomm.
    lv_ucomm
    = sy-ucomm.
    CASE lv_ucomm.
    WHEN 'BUTTON'. "Double Click line Item
    **Write ur functinality here
    endcase.
    endform.
    Also have a look at below links.
    http://www.sap-basis-abap.com/abap/add-button-to-alv-toolbar-with-reuse-alv-list-display.htm
    ALV report
    I hope it helps.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

  • Missing user-defined fields (project definition) in project inform. system

    Dear PS friends,
    I have extended the CI_PROJ structure with some user-defined fields.
    I have started report RCNCT001 (to analyze these new fields in the project information system). The include RCNPROJR was generated and contains the new fields (table XXL_DATA). Include RCNSOM00 was generated too. This is described in note 43493.
    But Iu2019m still missing the new user-defined fields in the dynamic selection of reports (e.g. CN40).
    What else I have to do? We use SAP_APPL : SAPKH60009
    Thanks in advance for any suggestions!

    have you used user defined field or custom field via exit CNEX......
    User defined fields are activated by configuration using field key
    If you added custom fields then check out OSS note 188663 on how to create a CUS view for dynamic selection.

  • API for Work Order status from Released to Unreleased or any user defined s

    Dear All
    Is there any API for to change work order status from Released to Unreleased or any user defined status.
    Take care
    Aamir

    Hi Ben,
    As query is resolved, you should close the Thread after rewarding to the Concerned
    Thanks,
    Manish

  • Set user Defined Status in the Shopping Cart

    Hello,
    I am facing problem while Setting user defined Status in the shopping cart. Below are the steps which I have followed.
    1. I have created Status profile via Transaction 'BS02' and also created the Status 'On Hold' with Status number 'Exxxxx'.
    2. Entry of this external status is also created in the table TJ30.
    3. Also I tried assigning this Status profile in Transaction type for "BUS2121".
    After making the above configuration for the new User defined status I have used below function module in my program.
    I am using FM "CRM_STATUS_CHANGE_EXTERN" to set the User defined status in the shopping cart.
      CALL FUNCTION 'CRM_STATUS_CHANGE_EXTERN'
        EXPORTING
          objnr                    = ls_header-guid
          user_status          = lv_stat
        IMPORTING
          stonr                    = lv_stonr
    After this FM I am also using "COMMIT WORK AND WAIT ".
    But still my Status is not updated in the Shopping Cart.
    Expert please suggest if some one has work in this scenario.
    Best Regards,
    Chirag Shah

    Hi Chirag,
    try to initialize Status schema before update.
    CALL FUNCTION 'CRM_STATUS_OBJECT_CREATE'
         EXPORTING
           objnr                        = ls_header-guid
           obtyp                        = 'SCH'
           stsma                        = 'ZHOLD'
         EXCEPTIONS
           obtyp_invalid                = 1
           status_object_already_exists = 2
           stsma_invalid                = 3
           stsma_obtyp_invalid          = 4
           error_ocurred                = 5
           OTHERS                       = 6.
    Regards
    K

  • Can I change the location of my user-defined error file to the project directory?

    The LabVIEW help says that the user-defined (XML-based) error file has to be located in the labview\user.lib\errors directory.
    I would rather have the file in my Project Folders directory, as this is what is distributed. 
    Is there a way to make LabVIEW look elsewhere on startup.
    -James

    Hey, from the LabVIEW help, it looks like you don't need to worry about it.
    "If you use the Application Builder to create an installer, you can place a checkmark in the Install custom error code files? checkbox on the Advanced page of the Installer Properties dialog box to include LabVIEW error code files. The installer build includes all error code files from labview\project\errors and labview\user.lib\errors and installs them in the Shared\LabVIEW Run-Time\8.2\errors directory."
    If you select that checkbox, LabVIEW takes care of it for you.
    Hope this helps!
    Daniel Eaton
    National Instruments
    Systems Engineering
    Embedded and Industrial Control

  • Applying User Defined Variables across project

    Hello,
    I'm working with the User Defined Variables feature and can't
    seem to figure out how to apply a variable/value across all topics.
    I may have misunderstood the definition of what this is supposed to
    do, so it may be user error. It is my understanding that if you
    have information that use repeatedly, for instance if I refer to a
    product name in numerous topics and the product name changes, I can
    set up a user defined variable and set this to update all the
    occurrences. I can change it going in each topic and each sentence
    where the occurence is by right-clicking the word and selecting
    Insert User Defined Variable. Any ideas as to what I can do to make
    a global update. Also, I'm reading the help, but still seem to be
    missing something.
    Thanks,
    Michele

    Thank you, Peter! This article is very informative and much
    more clear (to me) than what I read in the RoboHelp help manual. I
    understand now that this feature is used when you are creating
    topics in a project and anticipating what may change--in which case
    you insert the variable as you need it, then if it changes in the
    future you can update it easily. I was looking at it as more of a
    global search and replace to update information that already
    exists. I think it will come in handy with our documentation
    projects.
    Thanks again. :-)
    Michele

  • Sharing User Defined Variables across projects

    Hi,
    I'm wondering if it's possible to share User Defined Variables across projects. What I have in mind is that I would like to have my User Defined Variables configured in a central location and then insert them into my projects as linked variables so that they update automatically when I change their values. For example, I define a variable named Product_Version that has its value set to 9. Then I insert this variable into all my projects as a linked variable. After 2 months the product version changes to 10, so I change the value of the variable to 10 in the location where it is stored and it is automatically updated in all the projects. Can this be done somehow? I'm new to RoboHelp and I can't find any answer. I've been searching for the solution for some time in the product help, on the Internet to no avail. I even contacted Adobe Support and they redirected me to this forum I used Help and Manual before and their way of dealing with user variables was pretty simple.

    Hi there
    Unfortunately RoboHelp doesn't offer up a way to allow this, At least, not directly.
    However, I do believe I found a way to make it happen, The variables are stored in a file named rhvariable.apj. So what you could do is to add this file as a Baggage File to each of your projects that will share the variables.
    Now you would create a Shared Location as well as a new Category in your Resource Manager. This will create a common location to store the apj file.
    Add the Baggage File to the location. Repeat the process for all projects that are sharing the variables.
    Now, when the variable gets changed in any of the participating projects, the shared location should be updated and you can accomplish the goal.
    However, note that even though you will have what you are wanting, it will still require opening each of the participating projects, synchronizing the APJ file and generating the output in order to update it all. No way I'm aware of to escape that.
    Cheers,,, Rick

  • ALV user defined status

    Hi,
    In hierarchial list display.
    I'm implementing my own user defined status.
    I have copied the standard status and modified for SAVE & BACK functions.
    In the at user command module i have coded for SAVE & BACK.
    for SAVE it's working fine where as for BACK control is not coming to my user command module.it's just going back to the previous screen.how to implement the function code for BACK.
    Regards
    Raghavendra

    Hi Raghavendra,
    in the PAI event of ur screen from where u want to go back to user command.
    sample code:
    <b>PROCESS AFTER INPUT</b>.
      <b>MODULE <modulename> AT EXIT-COMMAND.</b>
    <b>MODULE <modulename> INPUT.</b>
      IF OK-CODE = 'BACK' .
        LEAVE PROGRAM.
      ENDIF.
    <b>ENDMODULE.</b>
    instead of <b>LEAVE PROGRAM</b> u can also use
    <b>LEAVE TO SCREEN 0</b>.
    hope this works fine for u.

  • Duration between Start date of the project and user defined  Date

    Hi All,
    I need to calculate the the duration between the projects start  date and the date (month and year) the User defines. Also wat charateristics do we use to to restrict 0DATE_KYF to differentiate between forcast date and actual date.Any help will be appreciated

    You need to create formula variable for the date objects and used those variables to calculate the difference of the dates in either formula or calculated key figure.
    thanks.
    Wond

  • Can't bind status field in user defined table

    Hi!,
    I want to display the status of my document type user table, I added an EditText (unique id = txtStatus) control in ScreenPainter and Iam getting a Can't Bind error in this line of code. @Meta is my user defined table of type document
    ((SAPbouiCOM.EditText)oForm.Items.Item("txtStatus").Specific).DataBind.SetBound(true, "@META", "Status");
    Thank you!

    2 alternatives:
    1.Bind the Status field to "textStatus" EditText field in ScreenPainter
    2.Either in your code, bind the Status field to a ComoBox  field since it has valid values.
    Both works fine in my test.
    By the way, I get the same error Status field to "textStatus" EditText field.
    Kind Regards
    -Yatsea

  • I have the code for this project, but how do I add this user-defined exception that I want?

    For a final VB.NET project, I have to write a project that ascends and descends a word or number chosen by the user. 
    This is what I want to do:
    I want to add a user defined error that will stop the program and tell the user to input a value into the program if they did not. I do not know how to do this. I think I would use a Null Reference exception. 
    Here is the code for the project:
    Module Module1 'VB.NET Final Project 12/30/14 . Option 3: Write a program to run two separate threads printing numbers or words (It can do both) in ascending and descending orders. The words have to be given by the user.
        Dim Ascending As System.Threading.Thread = New Threading.Thread(AddressOf PrintAscend) 'Two threads are declared,
        Dim Descending As System.Threading.Thread = New Threading.Thread(AddressOf PrintDescend) 'ascending and descending 
        Sub Main()
            Console.WriteLine("VB.NET Final Project 12/30/14 . Option 3: Write a program to run two separate threads printing numbers or words (It can do both) in ascending and descending orders. The words have to be given by the user.")
            Ascending.Start() 'starts first thread
        End Sub
        Sub PrintAscend()
            Console.WriteLine("Please type in a word to print in ascending order.") 'the program asks for users to input a word
            Dim input As String 'as a string
            input = Console.ReadLine()
            For i As Integer = 0 To input.Length - 1
                Console.WriteLine(input.Chars(i)) 'prints the letters of the word in ascending order 
            Next
            If Ascending.ThreadState = Threading.ThreadState.Running Then Descending.Start() 'starts second thread
        End Sub
        Sub PrintDescend()
            Console.WriteLine("Please type in a word or number to print in descending order.")
            Dim input As String
            input = Console.ReadLine() 'user inputs the word that he wants
            For i As Integer = input.Length - 1 To 0 Step -1
                Console.WriteLine(input.Chars(i)) 'prints the letters of the word in descending order 
            Next
            Console.WriteLine("Please press enter key to close the program, and thanks for your time.")
            Console.ReadKey()
        End Sub
    End Module

    Dejavu again?
    Is your teacher instructing you to use a User Defined
    error or do you just want to accept the user input, check it, give a message, and repeat?
    It seems to me you are missing the basic program loop? This example checks the user input and then performs an action, then repeats. If the user enters Quit execution stops. Is that what you want to do?
    Module Module1
    Sub Main()
    Console.Title = "Make a Decision"
    Dim theline As String = ""
    Do While theline <> "Quit"
    Console.WriteLine(vbLf & "Enter a or b." & vbLf)
    theline = Console.ReadLine()
    Select Case theline
    Case "a", "A"
    Console.WriteLine(vbLf & ">> Result: You entered A.")
    Console.WriteLine(vbLf & " ** Output Complete **" & vbLf)
    Case "b", "B"
    Console.WriteLine(vbLf & ">> Result: You entered B.")
    Console.WriteLine(vbLf & " ** Output Complete **" & vbLf)
    Case Else
    Console.WriteLine(vbLf & """" & theline & """ is invalid.")
    End Select
    Loop
    End Sub

  • Copy standard giu status into user defined program

    how to copy stanadard gui-status 'STANDARD' into user defined program using se41

    Hi,
    Open Se41,
    Give the standard program's name and the GUI Status Name.
    Click on COPY button.
    Now enter your ZPROGRAM name and desired GUI STATUS Name in the popup that appears.
    Hope its done.

Maybe you are looking for