HOW TO:  Staging webElements Controls

comrades,
attached is an example of "staging" controls.
1) the end user will be presented with an initial set of controls
2) after choosing the control values the end user presses a link to go to the next stage of controls
3) at the next stage, the end user can either enter control values or go back to the initial stage
to best use this kind of report, after publishing the report to your enterprise system, also publish a default hyperlink to your enterprise system like
/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sType=rpt&sDocName=webElementsPromptStager&lsSstage=1&lsSproductname=All%20Products&lsSproducttype=All%20Types&lsScountry=All&lsSregion=All&lsScity=All&lsScustomer=All
this way the end user will press a hyperlink to open up the report with default prompt values instead of pressing the link to open up the report...they never have to see the default prompt screen.
NOTES:
- there is currently no steps or support to recreate this report as it is an example...if you need assistance in adapting this solution to your environment please contact our global services (consulting) department
- the report runs off of the xtreme database which ships with crystal reports
- the report is currently configured to run in xir2 java...please see the webelements user guide for more information on setting reports to your platform

hello all, ...a command object in a crystal would be used to do the actual inserts or update statements to write to a database.
webelements create the end user GUI and also write up the opendocument url. in the case of selecting details level values, the opendoc url would be satisfying multiple value prompts in conjunction with the combo control in webelements. using normal crystal prompt dialogues to do this would be pretty difficult.
there are some sample reports that you can download from https://boc.sdn.sap.com/node/323
the Reorder Form report in that download is an example of a report that is developed to pass values to a subreport based off of a command object, and in turn the command object does the database writeback.
Edited by: Jamie Wiseman on Sep 15, 2008 12:59 PM

Similar Messages

  • Manual Staging in control cycle TR creation WM/PP integration

    Hi,
    We defined Material Staging Indicator as 4 in Control Cycle
    How do we trigger TR for this materials ly??? Do we need to create TR manually? OR any transaction which will allow to create TR automatically for desired quantities
    When i go to Change production Order and WM pick list Requested quantiry/confirmed Quantory is Blank only requirement qty column has values
    How i can enter quantities manually and trigger TR
    Can i have in Prduction Order few materials manually staged and few option 1 [pick parts]

    Let me rephrase
    We are using Standard PP/WM integration to stage materials from warehouse to production Bins.
    We defined Material Staging Indicator as 4 [Manual Staging] in Control Cycle of materials [as business wishes to move materials manually from warehouse to production Bins]
    How do we trigger Transfer requests[TR] creation to initiate movement of raw materials from warehouse to Production bins.
    Do we need to create TRu2019s manually? If yes How [As I understand TR doesnu2019t allow to move more than one material at a time from one Bin to another]
    When i go to Change production Order and select WM pick list I could see Requested quantity and confirmed Quantity column are not getting filled only requirement qty column has values. All columns are grayed.
    Can we have few materials manually staged and few via Staging indicator option 1 pick parts?  so that all critical parts will be moved manually and others SAP to create TRu2019s automatically
    PLEASE HELP

  • How to stop voice control

    how to stop voice control?

    Hi Joannewpark,
    Press your Home Button to get to the Home Screen.
    Press Settings, then press again 2x fast - you will go to the Settings screen
    Press on General, then press again 2x fast - you will go to the General screen
    Use 2 fingers to indicate scroll up - Voice Over will begin to read the items on the screen, and will eventually get to the Accessibility option. When it says "Accessibility" press on it, then press on it 2x fast
    It will go to the Accessibility screen, tap on the Voice Over option one, and then again 2x fast, now tap on the Voice Over option again, and then double tap to turn it off.
    Cheers,
    GB

  • Single 3850(MC) how many AP can control

    Hi All now i testing about 3850.. 
    i have some question about 3850
    1. how many APs can control in single 3850(MC)
        if we buy Single 3850(48port) then can we use all port for AP?
    2. build a MC-MA Wireless environment, If MC goes down MA Can still working without MC?(is there kind of NSF?)
    3. for example MC has a AP and MA has a AP. then we can see ap only each 3850. how we can management whole APs
        Prime infrastructure can see whole APs, is this only way ?. I think this is not good for management Wireless.
    4. If MA has over two APs(AP1, AP2),  User1 connected AP1, User2 connected AP2.
        User1 need to connect with User2(FTP or something) , User1,2 can connect directly? without through of MC
              MC-----------------MA
                                            |
                                   AP1          AP2
                                     |                  |
                                user1           user2
     if you have any answer plz talk to me.
    thank you.

    A 3850 can support up to 50 directly-connected APs.

  • How to address form controls in jsp page

    Hello,
    I have a very stupid question. How do i empty the textfield value in my jsp page. I know that i can make a function that does that. but i dont know how to adress the control. Its got to be something like txtfield.setValue("myvalue") but i just dont know
    i cant find anything either on the internet. can somebody help me plz?
    thx very much,
    Kim

    Hi Kim,
    You can use the following JavaScript command:
    document.nameField.value = theValue;
    You can use this on submit of the form or in a click event at the field.
    I hope it be useful

  • How to get record control in sony ericsson p1i.

    How to get record control in sony ericsson p1i....
    does jsr234 helps??

    I'm not sure it is possible to get the PL/SQL record type through JDBC. Please try to access this procedure through JDBC to see if it is possible.
    You may need to convert the record type, to an object-type, i.e. wrap the procedure in another procedure that converts the record type. You could also just wrap the procedure in another that expands the record values into individual output parameters.

  • How to insert tabstrip control in module pool screen painter

    Hi all!
    plz tell e how to use tabstrip control in module pool screen painter.Also plz give me an example program using tabstrip control.

    To insert tabstrip just open layout of screen and press on the tabstrip button there .
    Use this souce code further to activate it .
    CONTROLS tabstrip TYPE TABSTRIP.
    DATA: okcode TYPE sy-ucomm,
    dynnr TYPE sy-dynnr,
    flag type flag,
    active like tabstrip-activetab .
    call SCREEN 100.
    *& Module USER_COMMAND_0100 INPUT
    text
    MODULE USER_COMMAND_0100 INPUT.
    data: lv_okcode type syucomm.
    lv_okcode = okcode.
    clear okcode.
    case lv_okcode.
    WHEN 'TAB1'.
    dynnr = '0110'.
    WHEN 'TAB2'.
    dynnr = '0120'.
    WHEN 'TAB3'.
    dynnr = '0130'.
    WHEN 'TAB4'.
    dynnr = '0140'.
    WHEN 'TAB5'.
    "check authorization, if authorization fails
    flag = 'X'. "set the global flag
    active = 'TAB1'. "store active tab in global variable
    dynnr = '0110'. "set the screen number
    WHEN 'BACK' or 'EXIT'.
    leave program.
    ENDCASE.
    IF lv_okcode(3) = 'TAB'.
    tabstrip-activetab = lv_okcode.
    ENDIF.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    *& Module STATUS_0100 OUTPUT
    text
    MODULE STATUS_0100 OUTPUT.
    SET PF-STATUS 'MAIN'.
    SET TITLEBAR 'xxx'.
    IF tabstrip-activetab IS INITIAL OR
    dynnr IS INITIAL.
    tabstrip-activetab = 'TAB1'.
    dynnr = '0110'.
    ENDIF.
    "set the activetab explicilty here
    if flag eq 'X'. "from authorization failure
    tabstrip-activetab = active. "'TAB1'
    clear flag.
    endif.
    ENDMODULE. " STATUS_0100 OUTPUT

  • How to handle the control records in case of file to idoc scenario.

    Hi All,
    can you please clarify me how to handle the control records in case of file to idoc scenario.

    Hi,
    In File to Idoc scenario even though you selected apply control record values from payload and you are not getting those correct values which you have provided in the mapping.
    Also check the checkboxes Take sender from payload and Take receiver from payload along with the Apply control record values from payload checkbox
    Regards
    Seshagiri

  • How to restore a control file without having its backup

    Hi,
    Can any one please suggest me how to restore a control file without having its backup.
    Thanks

    To add to what SB said, in years past the instructions for re-creating the control file manually were contained in the DBA Administration manual. It used to be and may still be common to be taking and saving a "backup control file to trace" for this purpose.
    If you lost only the primary copy of the control file and it is an OS file then while the database is shutdown you can copy the secondary over the primary and then use if to start the database. If the control file is stored in ASM then there should be a way to perform the copy via ASM.
    If you use rman for backups then a copy of the control file should be part of the backup process and you can retrieve it from the backup set then perform recovery using the backup control file though I do note the OP said something to the effect no backup exists. Still, I have knows of instances where the DBA did not realize that the backup set contained the control file and the spfile so I think this is worth mentioning just in case.
    HTH -- Mark D Powell --

  • How to use print control in Sap script

    I would like to use print control in Sap script.Actualy my problem I have security font Troy ECF. Using this font I would like to print amount field in Check printing.
    we count download this font with sap .we talked to customer care they told we should hard code in sapscript. pls can any1 help on this how to do and how to use print control for this fonts.

    call this funcation. crate_text.
    CALL FUNCTION 'CREATE_TEXT'
             EXPORTING
               FID               =
               FLANGUAGE         =
               FNAME             =
               FOBJECT           =
             SAVE_DIRECT       = 'X'
             FFORMAT           = '*'
             TABLES
               FLINES            =
           EXCEPTIONS
             NO_INIT           = 1
             NO_SAVE           = 2
             OTHERS            = 3
           IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
           ENDIF.

  • How to maintain Vertion Control in PL/SQL

    Hi all..
    How to maintain Vertion Control in PL/SQL. I created one procedure/function/
    package. After sometime, i made changes to it. How to maintain
    that changes. Writing manually in it, what are the changes i made is the
    only option OR is there any other option is there...?
    Thanks in advance,
    Pal

    Hi,
    Version control is there for tables in oracle, but i don't think it is available for plsql code. Best method will be to use the third party software. Using Flashback DB you can try source control certain extent.
    Regards,
    Satheesh Babu S
    http://aaryaan.com/

  • How to Create a Control In Notepad

    Hello:
    I am need help creating a control file. I have never done this before. I have to load the following script into notepad:
    load data
    infile 'names.txt'
    badfile 'names.bad'
    truncate
    into table names
    fields terminated by ','
    trailing nullcols
    (first,last)
    I then went to Command Prompt to begin the SQL Loader command and recieved the following message.
    SQL*Loader-500: Unable to open file (names.ctl)
    SQL*Loader-553: file not found
    SQL*Loader-509: System error: The system

    DUPLICATE post
    How to Create a Control In Notepad

  • How to handle table control in BDC while uploading item details for anorder

    How to handle table control in BDC while uploading item details for an order?
    What is the use of CTU_PARAMS structure in BDC?
    In Finance I have done some changes to the layout set by coping to a zscript(duning letter) and how can assign the print program?
    What is the process to test the finance script?
    How can I see the print preview whether it is coming correctly or not?
    Thanks in advance.
    Regards.
    Abhilash.

    hi,
    for the bdc control refer the following link:
    http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
    ctu_params:
    refer to the link
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/dataTransfers-LSMW%2CALE%2C+BDC
    reward if useful,
    thanks and regards

  • How to handle Table control in BDC

    How to handle Table control in BDC

    HI,
    Table Control in BDC
    HI,
    Refer the link:
    http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
    The concept is easy: it has to indicate the index of the table control in the field name, so if you have to populate the first record of table control:
    BDC-FIELDNAME = <FIELDNAME>(01).
    If you fill the second row:
    BDC-FIELDNAME = <FIELDNAME>(02).
    and so....
    Now the problem is usually on how many records you have to load, because u can fill only the rows of table control available in the screen, If you have more records than it can be displayed yuo have to simulate the command to go next page.
    The number of recod can be displayed can depend on pc resolution and many program haven't command to go to next page (in this case it could be impossible create a BDC program9.
    A way to create a bdc program resolution indipendent is to work on the first and second row.
    - Place the first hit in the first row of bdc;
    - Place the second insert in the second row of bdc;
    - Place the last hit to the top of table control;
    - Place the next hit in the second row;
    - Place the last hit to the top of table control;
    - Place the next hit in the second row;
    - .... and so
    For more info: Search in SDN with TABLE CONTROL IN BDC.
    Will get a lot of related links.
    <b>Reward points if this Helps.
    Manish</b>

  • How to use custom control.

    hi all,
        how to use custom controls in screen painter.
    can i add image to my screen  using custom control.
    is there any other way to display image on screen.
    give me some notes about custom control.
    and sample programs to display image and also the use of custom control.
    regards,
    bhaskar.

    hi vinod,
    u can use the class <b>cl_gui_picture</b> to work around with pictures on the screen
    just define a custom control on the screen
    create an object of custom container.
    create another object of cl_gui_picture giving container name as the parent name...
    u can check out the class using the transn se24....
    pls post if additional info is required...
    Regards,
    Vs

Maybe you are looking for

  • My 1st gen Ipod is not recognized by Itunes 9 (connected by firewire)... is there thomething to do ??

    Hello, everything is said in the tilte. The ipod (the one like a white brick) is seen by my powerbook (shown on the desktop), and it is recharged, but it's invisible in the last version of Itunes. thank's for your help

  • How do I install Windows on my Mac?

    i'm very new with mac, but i'm just concern if it's safe to put windows on mac? and sorry to ask this, what are the procedures to have windows? how expensive? Message was edited by: Macbeth Abuzo

  • IDOC-to-JDBC Scenario

    Hi All, We have a scenario where we are sending idocs from SAP to XI and the same is working fine but we are not able to send the acknowledgements back from XI to SAP. Can anyone pls let us know how to get the acknowledgements. Also in the SXMB_MONI

  • How can CEP work with IBM MQ?

    Hi, Our customer is using MQ. How can we make the JMS adapter work with it? Thanks,

  • XSU111.JAR could not be resolved

    Hello, I have a pb whith xsu111.jar, 11 objects can't be resolved. (I have an 8.1.6) ex: ORA-29534: referenced object scott.oracle/xml/sql/dml/OracleXMLSave could not be resolved THX null