ORG values for parameters not set in configuration

Hi All,
We are creating parent / child roles for FICO & MM for a project. The business requirement / configuration is such that the org values are available only for Company code and Purchasing organization. What is the appropriate way to set this up in the child roles? For e.g. should we put in * for plant , purchasing group etc or leave it BLANK
Please provide your comments
Thanks in advance
Vijaya

Hi
FI relies on company codes (mainly) and MM relies on plant, Porg etc (again - mainly) but, without all the other objects being filled in your roles won't work.
It depends on your client's needs I suppose but it does sound a little open to me but each set up has their own design requirements, you'll have to put * in the rest of the very many org levels (and cost centres, release strategies, etc - too many to mention at org/object) if you aren't given the information either due to lack of knowledge by the functional guys (not likely, hopefully) or a top down 'do what I say approach'.
I'd get the spec in an email from somebody responsible for the implementation from the business and save it for the auditors...
Cheers
David

Similar Messages

  • Passing different (multi-) values for parameters to drill-through report, based on clicked subtotal in main report

    In Report Builder 3.0, I have made a main report in which the user can filter the underlying dataset using three parameters (all multi-value). The report shows totals grouped by these three parameters, as well as a grand total. What I want is to click
    on a total, which then opens the drill-through report for the corresponding records. I have achieved this for the grand total; the action in the corresponding text box passes all selected values of the parameters to the drill-through report.
    What I cannot figure out is how to make this work right when clicking on a subtotal. When I use the same expression as for the grand total, the same values for the parameters are passed, instead of the subset that apply to the corresponding text box in the
    main report. I expected this to work, because Report Builder /does/ correctly calculate the SUMs for the different levels, even though the expressions are the same.
    My question is: how do I pass different drill-through (multi-) values for parameters, corresponding to the respective subtotals in the main report?
    (FYI: I am using Microsoft SQL Server 2008 R2 and Report Builder 3.0 .)

    Hello Katherine,
    Thanks once more for your quick reply.
    I was aware of the textbox action "Go to report", and how to pass parameters in general. My question concerned how to determine the scope of the passed multi-value parameters (to the values that apply to the respective group/subtotal). The article you linked
    to is informative, but not a solution to my problem.
    A colleague of mine came up with a pragmatic solution: instead of trying to determine the scope of the parameter values, now I "look to the left in the results table". The two screenshots below should illustrate this. (Screenshots are in Dutch. Specific information
    is pixelated.)
    Unfortunately, I am not able to post images. Once my account is verified, I will edit them in. For now, I hope the text speaks for itself enough.
    [Screenshot: Drill-through parameters - 01: Report Builder tablix with subtotals]
    [Screenshot: Drill-through parameters - 02: Textbox properties (selected in screenshot 01) - Action - Go to report]
    The first screenshot shows the tablix in the Report Builder. The second screenshot shows the properties of the textbox selected in the first.
    Notice that I do not pass parameters for the first two columns, but the actual values. I only pass the parameter (containing /all/ user-selected values) for the third column. In the textbox below the selected one, I pass the actual values for the first column,
    and parameters for the last two. In the textbox above the selected one, I pass the actual values for all three columns.
    The only (cosmetic) flaw this approach has is that in the drill-through report, the list of selected parameters might show values that do not occur in the (corresponding part of the) results, and only for those parameters for which the main report passes (all
    user-selected) parameter values, and not the actual values in the results. The results are correct, though.
    If there is a way to directly determine the scope of multi-value parameters for passing to a drill-through report, I would still like know. But for now, this seems to work.

  • "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly

    Hi,
    I have a SSIS package named FlushFeed4Data that copy data from a table named TableA in a database named DatabaseA located on SQL server 2005 named SQL2005 to another table named Table B in a database named DatabaseB located on a server 2012 named SQL2012.
    The server SQL2005 is setup like a linked server in the server 2012. My package runs smootly: first it removes all old records in SQL2012.DatabaseB.TableB & then copy all records from SQL2005.DatabaseA.TableA  to SQL2012.DatabaseB.TableB to without
    any error message. It runs well both when I ran debugging in SQL Server Data Tools (Microsoft Visual Studio) & when I executed this package in SSIS of server SQL2012. However when I use a job named FlushFeed4Data to run this package, I've got error message:
    Executed as user NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility Version 11.0.5058.0 for 64 bitCopyright (C) Microsoft Corporation. Code: 0xC002F210. Source: Insert Data Execute SQL Task. Dexcription: Executing the query "Insert
    Into SQL2012.B.[dbo].TableB ..." failed with the following error: "Login failed for user '[MyCompanyDomainName]\SQL2012$' ". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not
    set correctly, or connection not established correctly. End Error DTExec: The package execution returned DTSER_FAILURE (1) ... The package execution failed. The step failed.
    Please help!
    Thanks
    Edward

    Hi Athur,
    Thanks so much for your reply. I'd really appreciate about that. Following the article given by your link, I got error message when trying to create proxy
    sg 14529, Level 16, State 1, Procedure sp_add_proxy, Line 45
    Proxy "MyCompanyDomainName\SSISProxyDemoUser" is not a valid Windows user.
    USE msdb
    --Create a proxy and use the same credential as created above 
    EXEC msdb.dbo.sp_add_proxy 
    @proxy_name = ', 
    @credential_name=N'SSISProxyCredentials', 
    @enabled=1 
    GO 
    So I have a question: Do I have to create a new user account that can access our network named 
    PS: Below are the steps I followed the article:
    --Script #1 - Creating a credential to be used by proxy
    USE MASTER
    GO 
    --Drop the credential if it is already existing 
    IF EXISTS (SELECT 1 FROM sys.credentials WHERE name = N'SSISProxyCredentials') 
    BEGIN 
    DROP CREDENTIAL [SSISProxyCredentials] 
    END 
    GO 
    CREATE CREDENTIAL [SSISProxyCredentials] 
    WITH IDENTITY = N'MyCompanyDomainName\SSISProxyDemoUser', 
    SECRET = N'abcd@0987' 
    GO
    --Script #2 - Creating a proxy account 
    USE msdb
    GO 
    --Drop the proxy if it is already existing 
    IF EXISTS (SELECT 1 FROM msdb.dbo.sysproxies WHERE name = N'SSISProxyDemo') 
    BEGIN 
    EXEC dbo.sp_delete_proxy 
    @proxy_name = N'SSISProxyDemo' 
    END 
    GO 
    and the rest of the script 2 hasn't been proceeded due to error:
    --Create a proxy and use the same credential as created above 
    EXEC msdb.dbo.sp_add_proxy 
    @proxy_name = N'SSISProxyDemo', 
    @credential_name=N'SSISProxyCredentials', 
    @enabled=1 
    GO 
    --To enable or disable you can use this command 
    EXEC msdb.dbo.sp_update_proxy 
    @proxy_name = N'SSISProxyDemo', 
    @enabled = 1 --@enabled
    = 0 
    GO
    Please advise me!
    Thanks,Edward

  • : "Invalid object name '#Temp'.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.

     Hi   .
        I was creating the  pass the values t in temp tables  though s sis package vs2012 .
      First I was taken on executive SQL TASK.
     IN EXCUTIVE SQL TASK  . I was write the stored proce:
    Sp;
    reate  procedure  USP_GETEMP2333
    AS
    begin
    Select  eid,ename,dept,salary from emp
    end;
    create table #temp(eid int,ename varchar(20),dept varchar(20),salary int)
      insert into #temp
       exec USP_GETMP02333
       go.
     It was executive correctly.
     I was taken another sequence container. In the sequence container iam creating one   executive  sql
    In 2<sup>nd</sup> excutive sql task: sql statements is
    if object_id('emp_fact_sal') is not null
     drop table emp_fact_sal
    select eid,ename as emp_name,sal_bar=
    case when salary<=5000 then 'l'
    when salary >5000 and salary<=7000 then 'm'
    else
    'h'
    end
    into emp_fact_sal from #temp.
     and one falt flies  it was taken to designation .
     iam changing  all  connection properties:
     in oldeb connection:
    in excutive sal task properties .
    delay validation is true,
    and retain connection maner is also true,
    and package mode is 64 bit is false.
     But iwas excutive in 2<sup>nd</sup> excutive ql task .
    Iam getting this type of errors,
                    [Execute SQL Task] Error: Executing the query " if object_id('emp_fact_sal') is not null
     drop ta..." failed with the following error: "Invalid object name '#Temp'.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established
    correctly.
     Please help me

    Arthur suggestion works but you shouldnt even be doing this on a SQL Task.
    Use a data flow task. You'll have better control over the data that is being transfered and get better performance because no staging table will be used.
    Just because there are clouds in the sky it doesn't mean it isn't blue. But someone will come and argue that in addition to clouds, birds, airplanes, pollution, sunsets, daltonism and nuclear bombs, all adding different colours to the sky, this
    is an undocumented behavior and should not be relied upon.

  • Logical DB - passing values for parameters

    Hi experts,
    i writing program basing on logical DB. How can i pass default values for parameters, which are defined in a selection screen for this logical DB?
    Thanks
    Juzio

    in my program PNP is used. identify the selection screen fields. and then use it in initialization event,
    report ztest.
    tables: pernr.
    initialization.
    PNPPERNR-LOW = '12455'.
    PNPPERNR-sign = 'I'.
    PNPPERNR-option = 'EQ'.
    append PNPPERNR.
    PNPBEGDA = SY-DATUM.

  • AIF question: USELVM="yes" not set during configuration

    Just installed Arch from the new (2010.05) install images on a new laptop.  Everything working brilliantly, but I have one question.  I set up my system to use LVM on top of dm-crypt, and the AIF tool did a splendid job of auto-configuring everything: /etc/fstab, the hooks in order in /etc/mkinitcpio.conf, and the kernel line in /boot/grub/menu.lst were all automatically configured just right.  The only thing that wasn't automatically set was the value for USELVM in /etc/rc.conf.  I set it to "yes" during the installation, and everything has been working great (with the exception of an error message about file locking initialisation on boot, but elsewhere on the forum I've read that that is a harmless message). 
    But I was curious why this value wasn't set automatically by AIF: does AIF simply not mess with /etc/rc.conf at all, is it impossible or unadvisable to do this?  Alternatively, it is actually unnecessary to set USELVM="yes" if you've got LVM on top of dm-crypt?
    I am really just curious, since AIF did such a great job of auto-configuring everything else.  I almost second-guessed myself setting USELVM="yes" manually, but as I say, everything is working as it should.
    Thanks for any info on this, and thanks devs for an awesome distro and a great installer (even better than my last install a few years ago!)
    Edit: capitalization
    Last edited by moose jaw (2010-06-05 18:59:34)

    In my experience, you are correct.  AIF does not change rc.conf EXCEPT for altering the configuration with network interfaces during installation.  And as you brought up, since the programming is there to parse rc.conf and modify the networking settings in-line with text, why doesn't it set things like LVM automatically in rc.conf?  I believe it is because the code simply isn't there for the LVM creation.  And I think requesting it from Arch is a reasonable request. 
    As to your question, I would definitely use USELVM="yes" because I have had problems before when I didn't.  I'm not exactly sure where the setting is actually applied, but I know that rc.conf is parsed during boot right after the initial ramdisk and getting that setting in there at the lowest level during boot is best.

  • A filter value for Query is set with some value automatically

    Hello SAP sourcing Guru!
    I created a query which has several filters.
    Some of Filter's type is VLV.
    When I preview the query somehow the filter values are already set with some value even though I did not set the default value.
    For example, filter name is Region and there are four regions: Asia, NA, Europe, and SA.
    I want to select one of them from drop-down menu. But Asia was already selected when I clicked the preview button for the query. I want to see "Please Select" instead of Asia from drop-down menu. I did not select "Prefill value from cache" for the filter. I made the filter Optional only. I did not set Default Value either for the filter.
    Any clues?
    Thank you for your response in advance.

    Hi,
    In the Default value field of the filter prompts, you need to mention the Class Reference ID of the corresponding field. E.g., if you have Contract document phase as a filter, then in that if you want to display a blank or none value, then you should use null:2016.
    Similarly for vlv type, the system has a value 616. Hence if you want to display a None value insteead of Asia, use the following in the Default value field:
    0:616:null.
    The way to find the class reference ID is to goto the RG > Class Reference > Look for the field that you are attempting to default on.
    Hope this helps,
    Vikram

  • Parameters not set error, when launching jdev 9i from Unix

    Hi,
    I have downloaded the patch to install jdeveloper ( p4141787_11i_GENERIC.zip )
    and ftp'ed to Unix directory and unzipped.
    I have modified the jdev.conf to the location where SDK is installed. we are using SDK version 1.4.2.06
    I have set up the variable, JDEV_USER_HOME
    When I run the jdev.exe script from jdevbin/jdev/bin
    . jdev
    I get the below error, saying that the parameters are not set.
    Oracle9i JDeveloper
    Copyright 1997, 2003 Oracle Corporation. All Rights Reserved
    sh: JDEV_NATIVE_PATH: Parameter not set.
    sh: JDEV_VERBOSE_MODE: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_NATIVE_PATH: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_APP_OPTS: Parameter not set.
    sh: JDEV_VERBOSE_MODE: Parameter not set.
    sh: JDEV_JAVA_VM: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JAVA: Parameter not set.
    Appreciate your help.
    Thanks
    Srini Pendem

    Hi,
    If this is happens only with services view bills, view consumption history.. or this happens for every other service if you are trying to access 5 minutes after logon.
    Have to restarted your ITS server after changing these parameters.
    well i am not aware of any ITS based service Bill.. can you please help me out.. if this is part of ESS/MSS service.
    regards,
    Sudhir

  • Default cell values for column not properly saved in uir file in labwindows 2009 (9.1.0 427)?

    I've run into a strange problem with the table control.  Basically, even though I set default cell values for a particular column as numeric, when I try to add items to the list it tries to add them as strings, and returns an error message that it is expecting *char instead of int.  Furthermore, when I open the uir file that contains the table in question in 2010, it appears as if the default cell values for that column are still set as strings, even though in 2009 when I open the uir file it shows as numbers.  I tried converting the uir to C code, and sure enough the C code indicated that the column still is a string type.
    I've gone ahead and made a small project to show the issue.  If you open this project in labwindows 2009 and click on the table in the table_bug.uir, and edit default cell values for column 1, you will see that the cell settings have type as numeric and data type as int.  When you run the project, however, it will fail with an error message saying that it is looking for a *char.  When this same project is loaded into labwindows 2010, clicking on the table in table_bug.uir and edit default cell values (column 1) shows the type as string.  When I change this to numeric (and change numeric attribute to int), this runs fine in 2010.  I tried simply changing the uir in 2010, and then using it in 2009, but 2009 complains that the uir is from a newer version (understandable).  If there is any workaround that would let me continue to use 2009 for the time that would be great.
    Any help would be greatly appreciated.
    thanks,
    Alex Corwin
    Solved!
    Go to Solution.
    Attachments:
    table_bug.zip ‏324 KB

    I opened the UIR in 2009 (but I have 2009 SP1) and it still showed that the default value for the first column was a string. I didn't have any problems changing it to a numeric int, and then building and running the project without error.
    Here are a few things you can try:
    1) Change the default value to a string. OK out of the dialog, re-enter the dialog, and change it back to Numeric int. Resave and see if the problem has gone away.
    2) You said you get a ".UIR is from a newer version" error when opening the 2010 UIR in 2009. Does the UIR still open if you click okay? Often times this will work just fine. Assuming you don't have any problems with this, make a minor change to the UIR in 2009, such as moving the table to the left, and then back to the right and then re-save. See if your program works now.
    Kevin B.
    National Instruments

  • FormDataIntegration Security Manager for decryption not set

    When trying to export or import from a specific PDF form, I am getting the error below.  I suspect it's the pdf b/c I can import and export from different pdf forms.  Any ideas or help in order to modify or resolve this problem?
    com.adobe.livecycle.formdataintegration.client.ImportFormDataException: Security Manager for decryption is not set
    [5/5/10 16:12:04:953 EDT] 0000001e SystemErr     R     at com.adobe.livecycle.formdataintegration.server.FormData.importData(FormData.java:98)
    [5/5/10 16:12:04:953 EDT] 0000001e SystemErr     R     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [5/5/10 16:12:04:953 EDT] 0000001e SystemErr     R     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
    [5/5/10 16:12:04:953 EDT] 0000001e SystemErr     R     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    [5/5/10 16:12:04:953 EDT] 0000001e SystemErr     R     at java.lang.reflect.Method.invoke(Method.java:615)
    [5/5/10 16:12:04:953 EDT] 0000001e SystemErr     R     at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    [5/5/10 16:12:04:953 EDT] 0000001e SystemErr     R     a

    I think you answered your own question - the PDF is password protected therefore LC can't open it to extract the data.
    You'll have to remove the security first.  You can do that in a process by using the Common.EncryptionService.Remove PDF Password Encryption operation.
    Note that you will need the document's password to remove the security.

  • How to set values for Parameters?

    Hi,
    I have the following Selection Screen;
    SELECTION-SCREEN BEGIN OF BLOCK prog WITH FRAME TITLE text-001.
      parameters: R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X',
                  R2 RADIOBUTTON GROUP RAD1.
      parameters zw_laufd like reguh-laufd.
      parameters zw_laufi like reguh-laufi.
      parameters zw_BELNR like BKPF-BELNR.
    SELECTION-SCREEN END OF BLOCK prog.
    For Parameter zw_laufd the following Module is written;
    MODULE F4_LAUFD_0200.
      REFRESH TLAUFK.
      TLAUFK-LAUFK = SPACE.
      TLAUFK-SIGN  = 'I'.
      APPEND TLAUFK.
      CALL FUNCTION 'F4_ZAHLLAUF'
        EXPORTING
          F1TYP = 'D'
          F2NME = 'zw_laufi'
        IMPORTING
          LAUFD = zw_laufd
          LAUFI = zw_laufi
        TABLES
          LAUFK = TLAUFK.
    ENDMODULE.            
    The Module Pops up a window for selection for Parameter zw_laufd. When I select a value from the popup zw_laufd gets a value and long with that Parameter zw_laufi gets a value too, but this value does not get refelcted in the screen. How to show this in the Selection screen?
    Thanks,
    Kishan

    Hi Kishan,
    Just try this code in a separate program . On selection screen do an F4 on ZW_LAUFI, select any value and then execute . You will see the selected values in list output . I am not sure what is your probelm. Are you doing some other processing in selection screen apart from this code. Or is it that you want to do F4 on LAUDF and want LAUFI to be populated ?????
    <b>data tlaufk like ILAUFK occurs 0 with header line.
    SELECTION-SCREEN BEGIN OF BLOCK prog WITH FRAME TITLE text-001.
    parameters: R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X',
    R2 RADIOBUTTON GROUP RAD1.
    parameters zw_laufd like reguh-laufd.
    parameters zw_laufi like reguh-laufi.
    parameters zw_BELNR like BKPF-BELNR.
    SELECTION-SCREEN END OF BLOCK prog.
    AT selection-screen on value-request for ZW_LAUFI.
    REFRESH TLAUFK.
    TLAUFK-LAUFK = SPACE.
    TLAUFK-SIGN = 'I'.
    APPEND TLAUFK.
    CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
    F1TYP = 'D'
    F2NME = 'ZW_LAUFI'
    IMPORTING
    LAUFD = zw_laufd
    LAUFI = zw_laufi
    TABLES
    LAUFK = TLAUFK.
    AT selection-screen on value-request for ZW_LAUFD.
    REFRESH TLAUFK.
    TLAUFK-LAUFK = SPACE.
    TLAUFK-SIGN = 'I'.
    APPEND TLAUFK.
    CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
    F1TYP = 'D'
    F2NME = 'ZW_LAUFI'
    IMPORTING
    LAUFD = zw_laufd
    LAUFI = zw_laufi
    TABLES
    LAUFK = TLAUFK.
    START-OF-SELECTion.
    write :/ zw_laufi.
    write :/ zw_laufd.</b>
    Cheers.

  • Creating List of Values for Parameters in Crystal Report

    Dear All,
    I have created a Report using Crystal Report XI and integrated that with VB Dot Net.  It uses a Stored Procedure (SQL 2000) to retrieve data.  The stored procedure has some parameters.  When I run the VB dot net exe, it prompts for the parameters.  However, I like to pass a List of Values to the Parameters, which the end user must select from the same.
    How can I create a List of Values and attach to the Crystal Report.
    Please help me in this regard,
    Naren.

    Are you trying to set a bunch of default values (e.g.; 1st name, last name, address, order number, etc.), or an actual List of Values?
    Also, remember to search the forums for possible solutions. When I enter "parameter" in the search box, I get over 7 pages of links...
    The [notes|https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_ossnotes&query=&adv=true] database and [articles|https://www.sdn.sap.com/irj/sdn/businessobjects-articles] are great information resources also.
    Oh, and confirm exact version of CR used.
    Ludek

  • Default values for parameters in Java API

    I have a Crystal report formats with some input parameters set to default values. How do I retrieve them in the Crystal Java API?
    Thanks,
    Chandra Prakash

    I normally do not look at this forum as about all I know about Java is that it comes out of the coffee machine in the kitchen...
    But see if the following KBA will help, even though it is written specifically for .NET:
    1202315 - How do I get a parameters default value's description via the NET SDK?
    - Ludek
    SCN Moderator

  • Total value for PO not displayed

    Hi,
    While creating a SSP PO, the total value is not displayed. Please suggest.
    Regards,
    Anand.

    Dear Poster
    Your thread has had no response since it's creation over
    2 weeks ago, therefore, I recommend that you either:
    - Rephrase the question.
    - Provide additional Information to prompt a response.
    - Close the thread if the answer is already known.
    Thank you for your compliance in this regard.
    Jason Boggans
    SAP SRM SDN Moderator

  • Value for parameters

    After some time in developing report in Eclipse, we have finally installed RAD 7, and I have access to our Java code.  I am looking for some advice on how to implementing all these reports(forms).  It will not make any difference if we use them as embedded or in the Enterprise.  We have the complete Business Objects suite, but I see no reason for going Enterprise at this time.  Our reports(forms) will run from 1 to 5 pages, and contain the data for that transaction only.  The will be no huge reports and no reason to access large amounts of data.  I will be using the database for some forms, POJOs for others.  We have decided to use a separate Dynamic Web Project for the forms.  The page code(Java) and the Faces JSPs are in another web project.  I plan to use a PRINT button or menu item to access the forms.  I am hoping it will not be difficult to access the application web project with the forms web project.
    I need to access data from the current page and not hard coded for my parameters.  I have two I can hard code, but the rest will come from the application.  Is the follow correct, one correct or neither?  I am suspecting neither.  This form will be using the database.
    Integer numberValue = new Integer(7);     
    JRCHelperSample.addDiscreteParameterValue(clientDoc, "EndNoteID", "99999999999999", numberValue);
    String stringValue = #{pc_NoteList.filter.fromDate};     
    JRCHelperSample.addDiscreteParameterValue(clientDoc, "NoteBeginDate", #{pc_NoteList.filter.fromDate}, stringValue);
    I have other questions, but let start with with one first.  I do not have an understanding of how I will need to call the reports, but I figure once I understand one, the rest will pretty much be a copy of the one before.

    Restarting Webcache fixed it.

Maybe you are looking for