Selection conditions not met when executing planiing function

Hi,
I am getting an error "Value # for characteristic Budgeting Value Type is not contained in the relevant selection conditions." I have several error messages similar to this for 2 or 3 other characteristics. What could this be caused of? I have data from the table that I am picking up from.
Thanks,
RT

Rob,
Within the planning package that is relevant for the planning function you are trying to execute, there maybe restrictions(selections) in terms of what "Budgeting Value Type" you are allowed to plan for. If, within your function you are trying to plan for a different "Budgeting Value Type" that is not part of the selections defined in the package, then you would get similar error messages.
Please check to see if the planning package allows for # Budgeting Value Type & similar checks for other characteristics that you get error messages for.
Regards,
KK

Similar Messages

  • Blank page appears when condition not met.

    Hi,
    As a part of my requirement, I am developing XML report template that has first page as "statement of account" and second page as "remittance advice".
    Since we require 'remittance advice' in fixed position(for scanning barcodes), we need to have it in separate page. Second page content (remittance advice) will be be produced on certain conditions. When condition is not met it results in blank page.
    We have used MS word in-built page break functionality in our template. We have also tried using <?split-by-page-break:?> but this does not work with our condition. It gives no page break and formatting gets messed up.
    We are facing same issue in another reports where we need to display 'Remittance advice' on conditional basis.
    Did anyone experience such problem? Any help or suggestion to remove the blank page would be greatly appreciated. Thanks.
    Regards,
    Pratul

    Using the page break logicyou provided, word treats it as same page header and I'm unable to place different header for second page here. If I break the link to change header different from previous page and try to give different header in second page this gets reflected in first page as well. So, logically there is no section break here which is required to have different header in MS word. Any idea on this?
    Regards,
    Pratul.

  • Documnt not posted when executed transaction FBWD

    rHi,
    When I execute FBWD transaction for returned BoE, I am getting a msg as "Document Posted" and another msg as "1 item selected in addition".
    But actually, there is no dcument is getting posted. Please let me know if anyone faced this scenario and how to overcome this. There is no batch session also getting created.
    Even for other company code, where batch session created, when I run that batch from SM35, it is finishing posting the document showing with all screens, but finally no document getting generated and the same msg apearing in that batch session log as well "1 item selected in addition".
    Regards
    Suresh

    Hi,
    The IDOC is successfully coming from XI, but there is problem in R\3 end.
    Idoc status is 51 with "Application document not posted"
    This indicates that the logic for posting the application document is not coded properly in inbound function module. Verify the logic once again.
    Also you need to confirm that the data related or in application configuration is right. If the data values are not correct the above error get generated.
    refer blow link for the program
    http://help.sap.com/saphelp_nw04/helpdata/en/78/21760251ce11d189570000e829fbbd/frameset.htm
    Thanks
    Swarup
    Edited by: Swarup Sawant on Jan 28, 2008 11:13 AM

  • Getting error "Column is not indexed " when executing query on ORACLE 10g

    Hi all,
    When executing the below query im getting the error "ORA-20000:Column is not indexed"
    query:
    select xmlelement("nexml:result",xmlattributes('http://namespaces.nextance.com/nex/xml' as "xmlns:nexml"),xmlelement("nexml:value",count(*))).getClobVal()
    from "permission"
    where ( ((contains(object_value,'(searchDocument) inpath(/permission/action)') > 0)) and ((existsNode(object_value,'/permission[resource/resourcekey/@type[. = "document"]]') = 1)) and ((contains(object_value,'(GeneralUser) inpath(/permission/principal/@name)') > 0)) and ((existsNode(object_value,'/permission[principal/@type[. = "group"]]') = 1)) and ((existsNode(object_value,'/permission[type[. = "allow"]]') = 1)) and ((contains(object_value,'(nexip) inpath(/permission/resource/resourcekey/field/@value)') > 0) or (contains(object_value,'(Corporate) inpath(/permission/resource/resourcekey/field/@value)') > 0) or (contains(object_value,'(ProcurementAgreement) inpath(/permission/resource/resourcekey/field/@value)') > 0) or (contains(object_value,'(Procurement) inpath(/permission/resource/resourcekey/field/@value)') > 0) or (contains(object_value,'(SalesAgreement) inpath(/permission/resource/resourcekey/field/@value)') > 0)) )
    Then after checking some forum, i replaced "contains" with "ora:contains" and executed the query. Now im not getting the first error but got a new error "invalid relational operator"
    So please help me in resolving the errors?
    Thanks in advance.

    Anil kumar wrote:
    Hi,
    Thanks for your reply. Could you please explain your solution in detail?Hi,
    I just have a try...
    create table t (id int,my_lob clob)
    begin
    insert into t values(101,'Oracle redwood shores USA');
    insert into t values (102,'HP palo alto USA');
    insert into t values(103,'Capgemini  FRANCE');;
    end;
    create index my_idx on t(my_lob) indextype is ctxsys.context
    select *
    from t
    where contains(my_lob,'USA',1)>0
    Output
    ID      MY_LOB
    101     Oracle redwood shores USA
    102     HP palo alto USA Hope it helps,
    CKLP

  • Routine in DTP. Selection conditions not visible

    Hello,
    I am under BW7.0
    I am filtering data with a routine in a DTP. The routine is reading a custom table that user maintain. It contains a date range.
    This works, the correct data is selected.
    My problem is that in the request the 'Selection Conditions' field is empty and consequently, I cannot delete in the cube the same selections.
    This was working under BW3.5..
    Many Thanks,
    Alex-

    Hello,
    Here is the code. It is working as I expect. And debugging gives me the correct start and end date. But this is not reflected in the request 'Selection conditions'.
    TYPES:
    BEGIN OF BCSZP_TYPE,
    JJJJPER TYPE ZCBCSZP-ZEITPUNKT,
    RELEV   TYPE ZCBCSZP-RELEVANT,
    END OF BCSZP_TYPE.
    DATA: BCSZP_TAB TYPE STANDARD TABLE OF BCSZP_TYPE,
          BCSZP_WA TYPE BCSZP_TYPE,
          start_date type sy-datum,
          end_date type sy-datum.
      SELECT ZEITPUNKT
             RELEVANT
        FROM ZCBCSZP
        INTO TABLE BCSZP_TAB
       WHERE ZEITPUNKT <> ''.
      READ TABLE BCSZP_TAB INTO BCSZP_WA
      WITH KEY RELEV = 'X'.
      CALL FUNCTION 'FIRST_DAY_IN_PERIOD_GET'
        EXPORTING
          I_GJAHR        = BCSZP_WA-JJJJPER(4)
          I_PERIV        = 'K6'
          I_POPER        = BCSZP_WA-JJJJPER+4(3)
        IMPORTING
          E_DATE         = start_date
        EXCEPTIONS
          INPUT_FALSE    = 1
          T009_NOTFOUND  = 2
          T009B_NOTFOUND = 3
          OTHERS         = 4.
      CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET'
        EXPORTING
          I_GJAHR        = BCSZP_WA-JJJJPER(4)
          I_PERIV        = 'K6'
          I_POPER        = BCSZP_WA-JJJJPER+4(3)
        IMPORTING
          E_DATE         = end_date
        EXCEPTIONS
          INPUT_FALSE    = 1
          T009_NOTFOUND  = 2
          T009B_NOTFOUND = 3
          OTHERS         = 4.
      read table l_t_range with key
           fieldname = 'FKDAT'.
      l_idx = sy-tabix.
      l_t_range-sign = 'I'.
      l_t_range-option = 'BT'.
      l_t_range-low = start_date.
      l_t_range-high = end_date.
      if l_idx <> 0.
        modify l_t_range index l_idx.
      else.
        append l_t_range.
      endif.
      p_subrc = 0.

  • Authorization issue in WAD when executing planning function

    Hi All,
    I am facing the bellow authorization issue-
    Termination message sent
    WARNING BRAIN (800): You do not have the authorization for component !!AZF2PO_AGR
    MSGV1: ZF2PO_AGR
    MSGV2: REP
    MSGV3: !!AZF2PO_AGR
    MSGV4: 16
    ABEND RSBOLAP (002): No Authorization
    I am getting this issue When Calling Planning function from WAD application using button. This authorization fail is happening in portal when the Planning function is executed.
    Error explains that there is no authorization for component u201C!!AZF2PO_AGRu201D.Where as in actual we donu2019t have any component as stated.
    Instead we have an aggregation level with technical name ZF2PO_AGR.
    We have already Assigned the below Planning objects-
    S_RS_ALVL
    S_RS_PLENQ
    S_RS_PLSE
    S_RS_PLSQ
    S_RS_PLST
    To Summarize-There is a web application with button linked to planning functuion.When clicked on this button after execution of web template we get the above error.
    Have found note 1000006,but it says Support package 12 and all but we in support package 20

    Hi Guys,
    I know this thread is answered but I have a similar problem I think.
    I have a WAD that is published to the portal. I have added the WAD to a page via a hyperlink, the page resides in KM. When a user opens the page, via a URL iView, the see the page, but when they click on the link to open the WAD, I get the following error:
    Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 07:19_26/02/10_0067_18934750
    Refer to the log file for details about this exception.
    When I assign the Super Admin (UME Role) to the user, they can execute the WAD no problem.
    I am not an Authorizations person, so any pointers as to where I should start looking would be greatly appreciated.
    Thanks.
    Freddie.

  • Spool not creating when executing in background

    Hi All
    When i try to execute background printing for transaction code MCBA, system is finishing the job but not creating the spool. But for other transactions it is creating the spool corectly.
    Please Advice.
    Thanks
    Ravindra Suvarna

    Hi ravindra,
    1. U are right.
    2. The output does not come when we run this
       in background.
    3. The reason in the program for mcba.
    4. Its program name is :
       RMCB0100
    5. inside this there is one include RMCS00AL
    6. Which has the condition
       <b>IF SY-BATCH</b>
      (for background detecting)
    7. Now what it does afterwords, i could not detect,
      but
    8. This program DOES SOMETHING / DOES NOT DO SOMETHING
       specially for BACKGROUND PROCESS,
       BY DETECTING IT THRU
       SY-BATCH.
    regards,
    amit m.

  • Error when executing Planning function in BEx Web

    Hi everyone,
    When executing a planning function in BEx Web, via Web Application Designer, I am getting the following error message.
    ABEND BRAIN (178): Common entries are not permitted for plan queries and input queries
      MSGV1: Aggregation level name
    Where do I go wrong?
    Thanks in advance, hope this is enough info.

    Hi  Geerts,
    If i understood well, you have some problem with your query. Please check the query that you have on WAD and wich characteristics did you have on your level (the level on wich the query is based).
    Pls, check the correct execution on that query on Query Designer too. That query is a plan query? it`s ready for input ?
    Hope this help
    Natalia.

  • Not able to execute pipelined function?

    i have created this
    create or replace type assm as object(c1c number,c2 number);
    create or replace type asn as table of assm;
    1 create or replace function claim(ref_date date,start_month varchar2(20)) return asn.assm pipelined as
    2 i number;
    3 j number;
    4 k number;
    5 mytype asn.assn;
    6 begin
    7 mytype.c1c:=to_char(ref_date,'dd');
    8 if start_month is null then
    9 i:=12;
    10 else
    11 i:=to_number(to_char(to_date(to_char(start_month),'mon'),'mm'));
    12 k:=i;
    13 j:=to_number(to_char(ref_date,'mm'));
    14 if k!=1 then
    15 while(i<=1) loop
    16 select to_char(to_date(to_char(i),'mm'),'mon'),(select count(*) from employees,dept where
    employees.department_id=dept.ddepartment_id and
    to_char(hire_date,'monyyyy')=to_char(to_date(to_char(i),'mm'),'mon')||to_char(to_number(to_char(ref_date,'yyyy')-4))) as a1 into mytype.c2 from dual;
    17 pipe row(mytype);
    18 i:=i+1;
    19 end loop;
    20 return;
    21 exception when others then
    22 dbms_output.put_line('error'||sqlcode||sqlerrm);
    23 return;
    24 end;
    iam getting the following errors
    1/50 PLS_00103- Encountered the following symbol ")"
    16/49 pls-00103- Encountered the symbol select
    16/255 encountered the symbol ")"

    Procedure/function parameters have data type, not length/precision. So parameter start_month should be VARCHAR2, not VARCHAR2(20). Your code also references uninitialized object.
    SY.

  • Select Last  X days when execute query

    Hello,
    ı need  last N stop date of machines in my query, ı have stop date and when ı execute the query ı want to see just last 3 stop. have can ı make it?
    the filters of my query  are: Fiscal Year and Fiscal Period.
    ı cant give any condition because stop date is not key figure,has anyone any ideas??

    you can create condition on the stop date irrespective of key figure or not.
    Create the formual which has condition
    ( A  = B) * C + D
    The above statment means:
    If A = B
    then Display C
    or Display D.

  • Unix script not working when executed from SAP PI communication channel

    Hi Experts,
    I am currently using the Run OS command after message processing functionality of the file adapter.
    However, the unix script doesn't seem to work when run via communication channel.
    The script runs properly when executed manually.
    The communication channel logs don't show any error as well.
    Do you have any ideas as to where the error might be.
    Thanks,
    Mike

    Hi All,
    Thank you for your replies. I appreciate this.
    @Anand, here is the script:
    #!/usr/bin/sh
    #version 1
    hostname=$(uname -a | cut -f 2 -d " ")
    MAILTO="[email protected] "
    homedir=$PWD
    echo $homedir | mailx -m -s "OB10 $hostname" $MAILTO
    /opt/java6/bin/jar -xvf OB10.zip
    ll | mailx -m -s "OB10 $hostname" $MAILTO
    What's puzzling me is that I am able to receive the email alerts.
    This means that the user has sufficient authorization to execute the script.
    But the unzip command is not working.
    I have seen the unzip work when run manually.
    Thanks,
    Mike

  • "OS requirements not met" when installing CS5.5 on Windows 8

    I am trying to install the trial version of CS5.5 to my Surface Pro, running Windows 8 Professional 64-bit.
    Installation fails completely for all components.
    No Adobe products other than Flash Player and Reader have ever been installed on this computer before.
    I have no security software installed at all.
    Based on google results, I have already tried:
    - installing from safe mode
    - running the windows system file checker to make sure Windows Installer is working (it reported no problems)
    - settting user account control to the lowest setting
    Here is the error log:
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 140 error(s), 207 warning(s)
    WARNING: DW066: OS requirements not met for {0D96CFE6-376D-44B8-808A-16F3BEB73263}
    WARNING: DW066: OS requirements not met for {7202D4A7-F7E6-4e7a-B77D-7B1C4E8B5CA6}
    WARNING: DW066: OS requirements not met for {43A1C48E-3E50-410e-951C-E17A66BBF824}
    WARNING: DW066: OS requirements not met for {3450d4c5-a82b-4428-a512-842ee1555a14}
    WARNING: DW066: OS requirements not met for {11C0657F-2BD4-4CBC-87F3-9455DC91886E}
    WARNING: DW066: OS requirements not met for {8F366029-8F3C-4400-BB65-7BFD1A58F200}
    WARNING: DW066: OS requirements not met for {B55FDCCB-8A45-4943-8D90-585C3490A032}
    WARNING: DW066: OS requirements not met for {4603E0C5-6880-4A4F-BCF8-DF1F6AE0E317}
    WARNING: DW066: OS requirements not met for {EB186BF2-0A84-40A2-B794-0326D3DF9973}
    WARNING: DW066: OS requirements not met for {0669F23C-1B69-41B4-A3ED-4F54A5986D66}
    WARNING: DW066: OS requirements not met for {6BC81374-1E33-4495-93E2-DD2B10D358EE}
    WARNING: DW066: OS requirements not met for {067E43CD-3E9C-44BA-89FA-EDE7461BC22B}
    WARNING: DW066: OS requirements not met for {C1302004-7A3C-467A-80AC-4D0C9F6982C1}
    WARNING: DW066: OS requirements not met for {7CAD45EF-24AD-4281-9236-7F8DDB0B9538}
    WARNING: DW066: OS requirements not met for {C2F8BD34-1692-40F9-BA1B-1CFB2B5FED3A}
    WARNING: DW066: OS requirements not met for {00AEBAF2-D950-467B-BD24-449BCA2A4424}
    WARNING: DW066: OS requirements not met for {FF5837B9-6F4D-1014-B2FA-C016F4A584FA}
    WARNING: DW066: OS requirements not met for {F37EA9EC-638F-4E61-BED4-BDB10461D73B}
    WARNING: DW066: OS requirements not met for {7745F18B-FD8A-4011-BE16-588900C503D0}
    WARNING: DW066: OS requirements not met for {32C78855-194D-4E66-9EB5-D6DC1C418D79}
    WARNING: DW066: OS requirements not met for {89823DB1-05CA-1016-BA4A-BE6A29E42461}
    WARNING: DW066: OS requirements not met for {7CF76BDA-73EA-4C46-A59D-FC3142D83E65}
    WARNING: DW066: OS requirements not met for {0A186736-9C62-48B2-B1DF-8A9C5CF7C997}
    WARNING: DW066: OS requirements not met for {4C08199E-0D93-4227-8325-F024E71CA7A1}
    WARNING: DW066: OS requirements not met for {BD3F3C6B-5F98-109B-A0CA-B0FAE4A7D983}
    WARNING: DW066: OS requirements not met for {301D39AF-43B1-445B-88CF-D78584200322}
    WARNING: DW066: OS requirements not met for {CC35904A-0197-4F06-BD70-9CE3DB24DBFD}
    WARNING: DW066: OS requirements not met for {4B51E596-6BB0-4244-9AB9-344AD5FA6726}
    WARNING: DW066: OS requirements not met for {CCB778B5-25B8-4E57-9F20-72B11B443EF9}
    WARNING: DW066: OS requirements not met for {07C64F28-6F4E-1014-A82C-D40EE8D79912}
    WARNING: DW066: OS requirements not met for {260BF844-6F4D-1014-A611-DFCB82217C38}
    WARNING: DW066: OS requirements not met for {47CE893F-A0FF-4094-AA16-5209AEA7C7E0}
    WARNING: DW066: OS requirements not met for {208DE3D5-541C-41B0-8595-7A608A6E4306}
    WARNING: DW066: OS requirements not met for {4A4F91EA-5951-4C5C-B911-027D802817EB}
    WARNING: DW066: OS requirements not met for {4883A813-2805-4FA8-A91C-073BA7B2667A}
    WARNING: DW066: OS requirements not met for {9F16123E-05FC-1016-91BC-C090234C0EE3}
    WARNING: DW066: OS requirements not met for {AC76BA86-1033-F400-7760-000000000005}
    WARNING: DW066: OS requirements not met for {B7091600-995D-44EC-9B67-0E2025FDA600}
    WARNING: DW066: OS requirements not met for {D5B1535A-FDFC-4B40-B2E2-21DA83D9CB57}
    WARNING: DW066: OS requirements not met for {AD60EB24-4CEE-4CA0-A6AA-526EAF41F2DB}
    WARNING: DW066: OS requirements not met for {650C9D09-D5BD-4532-8BEE-01DBC1DF5537}
    WARNING: DW066: OS requirements not met for {D57FC112-312E-4D70-860F-2DB8FB6858F0}
    WARNING: DW066: OS requirements not met for {5D2A85AB-7391-4EAC-AA61-D5D9C09E4F17}
    WARNING: DW066: OS requirements not met for {3D51982E-45C6-4B4B-9362-B356E1610821}
    WARNING: DW066: OS requirements not met for {0215A652-E081-4B09-9333-DC85AAB67FFA}
    WARNING: DW066: OS requirements not met for {35ED8892-98E5-488A-A23C-6DB842A46EA5}
    WARNING: DW066: OS requirements not met for {DD309051-FACF-4A5E-87F1-C57154BB3DE8}
    WARNING: DW066: OS requirements not met for {B32795C5-827C-4184-9A36-FF23AB3CDA30}
    WARNING: DW066: OS requirements not met for {D8CCCF4C-C227-427C-B4BE-736657D2AB7E}
    WARNING: DW066: OS requirements not met for {8DADF070-FE60-4899-8EF0-4242E7702F7D}
    WARNING: DW066: OS requirements not met for {1C9D6B02-8B92-4E40-8B22-37D8C95430F0}
    WARNING: DW066: OS requirements not met for {FB720658-01F4-4002-BB69-49E66CD82E30}
    WARNING: DW066: OS requirements not met for {BF093B6B-F94F-4D77-99C9-4C0F6B2F44B6}
    WARNING: DW066: OS requirements not met for {23767F5D-A80C-4264-B8EA-ED4085FC332A}
    WARNING: DW066: OS requirements not met for {DDBDE7B0-6FC4-40B1-B673-66EEE8CB60CF}
    WARNING: DW066: OS requirements not met for {E82097B9-A3B8-404A-9A92-AC16A8AC9576}
    WARNING: DW066: OS requirements not met for {C61B093E-259E-45D8-B9B6-24630A700398}
    WARNING: DW066: OS requirements not met for {08EF22BC-43B2-4B4E-BA12-52B18F418F38}
    WARNING: DW066: OS requirements not met for {EDE888ED-3BD7-4D8C-AB35-7E4C661A94D9}
    WARNING: DW066: OS requirements not met for {10355145-8A4C-47F3-994B-B9B81B4DABF5}
    WARNING: DW066: OS requirements not met for {F9F276DA-9EC6-492C-AF58-F27C5EC19D66}
    WARNING: DW066: OS requirements not met for {CE45CAE5-0B56-4C52-AE07-98A05027A049}
    WARNING: DW066: OS requirements not met for {FE35B66A-C8F1-4D62-B823-C2EE2C7DA702}
    WARNING: DW066: OS requirements not met for {D97AF04B-B70A-4862-BC25-31E6D9C4A529}
    WARNING: DW066: OS requirements not met for {970C9F3A-39C5-480B-BE51-7C70AB9F84DB}
    WARNING: DW066: OS requirements not met for {E348E466-429A-4FB0-AFCF-8306C16BBFF1}
    WARNING: DW066: OS requirements not met for {2EA9B52E-8613-41A0-9EEF-FF54AD4CC810}
    WARNING: DW066: OS requirements not met for {857CC5F0-040E-1016-A173-D55ADD80C260}
    WARNING: DW066: OS requirements not met for {B98CCEE8-0217-1016-B5BF-F06B878DAC9A}
    WARNING: DW066: OS requirements not met for {50509A36-0291-1016-9CCF-FC05E9E55550}
    ----------- Payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 -----------
    ERROR: Install MSI payload failed with error: 1601 - The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
    MSI Error message:
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe ExtendScript Toolkit CS5.5: Install failed
    ERROR: DW050:  - Adobe Buzzword CS5.5: Install failed
    ERROR: DW050:  - Adobe Dreamweaver CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Microsoft_VC90_ATL_x86: Install failed
    ERROR: DW050:  - Adobe Linguistics CS5 x64: Install failed
    ERROR: DW050:  - AIR for Apple iOS support (FB): Install failed
    ERROR: DW050:  - Digital Publishing: Failed due to Language Pack installation failure
    ERROR: DW050:  - Microsoft_VC90_CRT_x86: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 Core: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Premiere Pro CS5.5 Support: Install failed
    ERROR: DW050:  - Adobe Media Encoder CS5.5: Install failed
    ERROR: DW050:  - Microsoft_VC80_ATL_x86: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 Core_x64: Failed due to Language Pack installation failure
    ERROR: DW050:  - Recommended Common Fonts Installation x64: Install failed
    ERROR: DW050:  - AdobeColorNA CS5.5: Install failed
    ERROR: DW050:  - Suite Shared Configuration CS5.5: Install failed
    ERROR: DW050:  - AdobePDFL x64 CS5: Install failed
    ERROR: DW050:  - DynamiclinkSupport: Install failed
    ERROR: DW050:  - Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_USLanguagePack: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFCLOC_x86_x64: Install failed
    ERROR: DW050:  - IE Plugin CS5.1: Install failed
    ERROR: DW050:  - Adobe Illustrator CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Digital Publishing Application Language Files_AdobeDigitalPublishingAppLang-en_US: Install failed
    ERROR: DW050:  - Adobe Flash CS5.5_AdobeMobileExtension_Flash11.5-en_US: Install failed
    ERROR: DW050:  - Adobe XMP Panels CS5: Install failed
    ERROR: DW050:  - Pixel Bender Toolkit: Install failed
    ERROR: DW050:  - Adobe WinSoft Linguistics Plugin CS5.5: Install failed
    ERROR: DW050:  - Photoshop Camera Raw (64 bit)_6.3_AdobeCameraRaw6.0All-x64: Install failed
    ERROR: DW050:  - Adobe Hunspell Linguistics Plugin CS5.5: Install failed
    ERROR: DW050:  - CSXS Story Extension: Install failed
    ERROR: DW050:  - Adobe Dreamweaver CS5.5_AdobeDreamweaver11.5en_USLanguagePack: Install failed
    ERROR: DW050:  - Photoshop Camera Raw: Install failed
    ERROR: DW050:  - Adobe OnLocation CS5.1_AdobeOnLocation5.1en_USLanguagePack: Install failed
    ERROR: DW050:  - Camera Profiles Installer: Install failed
    ERROR: DW050:  - Adobe Extension Manager CS5.5: Install failed
    ERROR: DW050:  - Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll: Install failed
    ERROR: DW050:  - Adobe Flash Player 10 Plugin: Install failed
    ERROR: DW050:  - AdobeColorCommonSetRGB: Install failed
    ERROR: DW050:  - Microsoft_VC80_CRT_x86_x64: Install failed
    ERROR: DW050:  - AdobeColorPhotoshop CS5.5: Install failed
    ERROR: DW050:  - Firefox Plugin CS5.1: Install failed
    ERROR: DW050:  - Adobe Linguistics CS5.5: Install failed
    ERROR: DW050:  - Adobe Device Central CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Office Plugin CS5.1: Install failed
    ERROR: DW050:  - Adobe Mini Bridge CS5.1: Install failed
    ERROR: DW050:  - AdobeMotionPicture CS5.5: Install failed
    ERROR: DW050:  - Adobe SING CS5: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Common Language Files_AdobeInDesign7xCommonLang-en_US: Install failed
    ERROR: DW050:  - AdobeColorCommonSetCMYK: Install failed
    ERROR: DW050:  - Adobe OnLocation CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe InDesign CS5.5 Application Feature Set Files: Install failed
    ERROR: DW050:  - Photoshop Camera Raw (64 bit): Install failed
    ERROR: DW050:  - Microsoft_VC90_MFC_x86: Install failed
    ERROR: DW050:  - Adobe Flash Builder 4.5: Install failed
    ERROR: DW050:  - Adobe Media Encoder CS5.5 X64: Install failed
    ERROR: DW050:  - AIR for APPLE IOS Support (FP): Install failed
    ERROR: DW050:  - Adobe Linguistics CS5: Install failed
    ERROR: DW050:  - PDF Settings CS5: Install failed
    ERROR: DW050:  - AdobeTypeSupport CS5: Install failed
    ERROR: DW050:  - Adobe CSXS Infrastructure CS5.5: Install failed
    ERROR: DW050:  - Adobe Flash Player 10 ActiveX: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Common Base Files: Install failed
    ERROR: DW050:  - Adobe Flash Fonts1: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5 Support: Install failed
    ERROR: DW050:  - Adobe OnLocation CS5.1 Third Party Content Wrapper: Install failed
    ERROR: DW050:  - AdobeHelp: Install failed
    ERROR: DW050:  - Required Common Fonts Installation x64: Install failed
    ERROR: DW050:  - Microsoft_VC90_ATL_x86_x64: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Application Base Files: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe InDesign CS5.5 Icon Handler: Install failed
    ERROR: DW050:  - Adobe Fireworks CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Story: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFCLOC_x86_x64: Install failed
    ERROR: DW050:  - Microsoft_VC80_ATL_x86_x64: Install failed
    ERROR: DW050:  - Microsoft_VC90_CRT_x86_x64: Install failed
    ERROR: DW050:  - Microsoft_VC80_CRT_x86: Install failed
    ERROR: DW050:  - Adobe Device Central CS5.5_DeviceCentral3.5LP-en_US: Install failed
    ERROR: DW050:  - Adobe Flash CS5.5_AdobeFlash11.5-en_USLanguagePack: Install failed
    ERROR: DW050:  - AdobeCMaps x64 CS5: Install failed
    ERROR: DW050:  - AdobeTypeSupport x64 CS5: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Icon Handler x64: Install failed
    ERROR: DW050:  - Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFC_x86_x64: Install failed
    ERROR: DW050:  - AdobeColorJA CS5.5: Install failed
    ERROR: DW050:  - AdobeOutputModule: Install failed
    ERROR: DW050:  - Acrobat Professional: Install failed
    ERROR: DW050:  - Adobe Audition_AdobeAudition4en_USLanguagePack: Install failed
    ERROR: DW050:  - Adobe WinSoft Linguistics Plugin CS5: Install failed
    ERROR: DW050:  - Adobe Contribute CS5.1_AdobeContribute6.1en_USLanguagePack: Install failed
    ERROR: DW050:  - Adobe WinSoft Linguistics Plugin CS5 x64: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFCLOC_x86: Install failed
    ERROR: DW050:  - AIR for APPLE IOS Support Wrapper: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Application Language Files_AdobeInDesign7xAppLang-en_US: Install failed
    ERROR: DW050:  - AdobePDFL CS5: Install failed
    ERROR: DW050:  - AdobeCMaps CS5: Install failed
    ERROR: DW050:  - Adobe Toolhints CS5.5: Install failed
    ERROR: DW050:  - Adobe CSXS Extensions CS5.5: Install failed
    ERROR: DW050:  - Adobe Encore CS5.1_AdobeEncore5.1en_USLanguagePack: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5 Presets: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5 Third Party Content Wrapper: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5_AdobeAfterEffects10.5en_USLanguagePack: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFC_x86_x64: Install failed
    ERROR: DW050:  - ph: Install failed
    ERROR: DW050:  - Adobe ReviewPanel CS5.5: Install failed
    ERROR: DW050:  - Required Common Fonts Installation: Install failed
    ERROR: DW050:  - AdobeColorVideoProfilesAE CS5.5: Install failed
    ERROR: DW050:  - AmericanEnglishSpeechAnalysisModels: Install failed
    ERROR: DW050:  - Adobe Premiere Pro CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Player for Embedding x64 3.1: Install failed
    ERROR: DW050:  - Adobe SwitchBoard 2.0: Install failed
    ERROR: DW050:  - HIL Help Search: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFC_x86: Install failed
    ERROR: DW050:  - Adobe Player for Embedding 3.1: Install failed
    ERROR: DW050:  - CS5.5 Master Collection: Install failed
    ERROR: DW050:  - Adobe Audition: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Flash Catalyst CS5.5: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFCLOC_x86: Install failed
    ERROR: DW050:  - Adobe Flash CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - SiteCatalyst NetAverages CS5.5: Install failed
    ERROR: DW050:  - Adobe Contribute CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Illustrator CS5.1_AdobeIllustrator15_1en_USLanguagePack: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Application Base Files2: Install failed
    ERROR: DW050:  - Adobe Flash CS5.5_AdobeMobileExtension_Flash11.5-mul: Install failed
    ERROR: DW050:  - Recommended Common Fonts Installation: Install failed
    ERROR: DW050:  - AdobeJRE: Install failed
    ERROR: DW050:  - Adobe Player for Embedding 3.2: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - AdobeColorVideoProfilesCS CS5.5: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 English Language Pack_AdobePhotoshop12-en_US: Install failed
    ERROR: DW050:  - Adobe Bridge CS5.1: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 Support: Install failed
    ERROR: DW050:  - Adobe Dreamweaver Widget Browser: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 English Language Pack_x64_AdobePhotoshop12-en_US_x64: Install failed
    ERROR: DW050:  - Adobe Encore CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All: Install failed
    ERROR: DW050:  - Adobe Premiere Pro CS5.5_AdobePremierePro5.5en_USLanguagePack: Install failed
    ERROR: DW050:  - AdobeColorEU CS5.5: Install failed
    ERROR: DW050:  - Adobe Content Viewer: Install failed

    I am going to post my findings for anyone else experiencing similar issues.
    - The article Ned Murphy linked to above does not contain instructions for Windows 8.  The instructions for Windows 7 recommend running the command "sfc /scannow" on the command line.  However, the sfc /scannow does not work quite as well in Windows 8 as it does in Windows 7.  For me personally, it got to 100% complete within about ten minutes, and then stayed at 100% complete for several hours without actually finishing.  One could be forgiven for thinking that it had finished after sitting at 100% complete for two hours, and closing the command prompt window.  But don't do that.  After about four hours, the command finally finished running, and informed me that it was unable to repair the Windows Installer.
    - There is a different command in Windows 8 that repairs many of the same kind of system errors as sfc /scannnow, but through a different method.  This command is "dism /online /cleanup-image /restorehealth"  In my case it repaired the Windows Installer and allowed sfc /scannow to run correctly afterwards.
    - However, this didn't actually resolve the problem.
    - I finally got on a coworker's Windows XP computer which Photoshop had been successfully installed onto.  I copied and pasted his entire C:/Program Files/Adobe/ folder onto a flash drive, and then got back on my own Windows 8 computer and copied and pasted the entire folder from my flash drive into C:/Program Files (x86)/Adobe/ on my own computer's hard drive.  Just pasted the entire program folder, without installing it.
    - Astonishingly, that seems to have worked, even though the original install was to Windows XP.  I assume it would also work if it had been installed to Windows Vista or Windows 7.
    - The only major problem I have noticed so far is that Photoshop cannot detect my video card settings, and so enabling OpenGL drawing in the Performance tab of the program preferences causes it to crash.  This does not matter to me as I can simply disable OpenGL drawing (and the program does so automatically when it opens and displays a warning).

  • Why is my selection tool not working when trying to rotate or scale?

    I cant get my selection tool to work when I'm trying to scale or rotate an image. It only works to select and move.

    emain,
    Maybe View>Show Bounding Box.

  • FM does not exist when executing Smartform

    Hi,
    When we are executing a Smartform in Production Server, FM not generating. But at the same smartform generating FM in Quality Server.
    What should be the problem..

    Hi Anil ,
    I assume that  you are using CALL FUNCTION '/1BCDWB/SF00000048'
    IF you use this Function, It will be changed from one server to another server,
    Now only one way to you is the following:
    The FM 'SSF_FUNCTION_MODULE_NAME' is only used to find the generated FM name of the smartform. Once you get the generated FM name, you can call this function by passing the name of the generated FM dynamically. In the same code, you can send your export parameters outop.
    What you have to do is this,
    "Assume your smartform name is ZSMARTFORM.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname                 = 'ZSMARTFORM'
    *   VARIANT                  = ' '
    *   DIRECT_CALL              = ' '
    IMPORTING
       FM_NAME                  = wrk_fname
    * EXCEPTIONS
    *   NO_FORM                  = 1
    *   NO_FUNCTION_MODULE       = 2
    *   OTHERS                   = 3
    outop-tddest = 'CANONMF4'.
      outop-tdprinter = 'CANONMF4'.
      cparam-no_dialog = 'X'.
      cparam-preview = space.
      cparam-getotf = 'X'.
      IF f1 = 'X'.
        CALL FUNCTION wrk_fname
          EXPORTING
            control_parameters = cparam
            output_options     = outop
            user_settings      = space
          IMPORTING
            job_output_info    = tab_otf_data
          TABLES
            itab               = itab     .
    If you want to get all the import and export parameters automatically into your code, click on Pattern and give the function module name /1BCDWB/SF00000053 directly. Then, remove the function module name and in its place use the variable wrk_fname which holds the function module name. In this way, when used in different landscapes (DEV, QAS, PRD), we will be able to get the correct FM name of the smartform without any error.
    Hope this is clear to you.
    with Regards
    Murthy

  • Virtual Key Figures its not populated when execute query

    Hi All
    I did a BADI for populate a Virtual Key Figure, I follow the instructions of link
    Link:[http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60e34f63-f44c-2c10-488e-c89b04e0ca7c?quicklink=index&overridelayout=true]
    In addition I add the code section of data declarated on example of: CL_EXM_IM_RSR_OLAP_BADI section define: IF_EX_RSR_OLAP_BADI~DEFINE, only information that said:
      DATA: l_s_chanm   TYPE rrke_s_chanm,
            l_kyfnm     TYPE rsd_kyfnm.
      FIELD-SYMBOLS:
            <l_s_chanm> TYPE rrke_s_chanm.
    I test the query on RSRT and the virtual Key Figure is "0.00" this look like if the virtual key figure is not populated.
    I did other things like:
    Set a Break Point on COMPUTE section of my BADI, I saw that the value is assigned, but I don't know how I can continue reviewing the pass of this value to result of query.
    I generate again the query on RSRT.
    My code is:
    IF_EX_RSR_OLAP_BADI~DEFINE
    method IF_EX_RSR_OLAP_BADI~DEFINE.
      data: L_S_CHANM   type RRKE_S_CHANM,
            L_KYFNM     type RSD_KYFNM.
      field-symbols:
            <L_S_CHANM> type RRKE_S_CHANM.
      case I_S_RKB1D-INFOCUBE.
        when 'ZGTO_OB2'.
          append 'ZVIRTKF' to C_T_KYFNM.
      endcase.
    endmethod. 
    IF_EX_RSR_OLAP_BADI~COMPUTE
    method IF_EX_RSR_OLAP_BADI~COMPUTE.
      field-symbols <FS_ZVIRTKF> type any.
      P_KYF_ZVIRTKF = 16.
      assign component P_KYF_ZVIRTKF of structure C_S_DATA
      to <FS_ZVIRTKF>.
      <FS_ZVIRTKF> = 10 .
    endmethod.
    I will appreciate your recommendations, Thanks in advanced.
    Al

    Thank you very much Sanganya
    I saw this:
    I put a break point on P_KYF_ZVIRTKF = 16., then I saw that P_KYF_ZVIRTKF obtain value 16.
    Then on sentence: assign component P_KYF_ZVIRTKF of structure C_S_DATA
    to <FS_ZVIRTKF> , when the system pass this line, I review the sy-subrc and is equal 4, as I understood the ASSIGN sentence did not be complete, the value shoul be 0.
    Then when the system try to run the sentence: <FS_ZVIRTKF> = 10  the system send an Execution error that say:  GETWA_NOT_ASSIGNED...
      Error analysis
        You attempted to access an unassigned field symbol
        (data segment 32780).
        This error may occur if
        - You address a typed field symbol before it has been set with
          ASSIGN
        - You address a field symbol that pointed to the line of an
          internal table that was deleted
        - You address a field symbol that was previously reset using
          UNASSIGN or that pointed to a local field that no
          longer exists
        - You address a global function interface, although the
          respective function module is not active - that is, is
          not in the list of active calls. The list of active calls
          can be taken from this short dump.
    Exactly the line selected with error is:
    >>>>    <fs_zvirtkf> = '10.0'.
    I will appreciate your help
    Thank you
    Al

Maybe you are looking for

  • ORA-01722: Invalid number error

    Hello, I am wondering if anyone may help with this problem, because I can't understand the problem and why it occurs. I have a from to add new employees to a table. The columns are: user_id (generated), user_name, team_lead, manager, start_date, end_

  • HT5634 How to Install Windows 7 or 8 on my MacBook Pro

    Welcome once again....I have a really bugging queston....I just got a MacBook Pro with 4GB and 750GB HDD and I want to partition my hardrive so I can use windows 7 or 8 on it... But when i go to the Boot Camp Assistant...This is what it says--Screen

  • Call to Function module doesnt refresh

    Hi We called a ABAP BDC FM in our VC model. This is triggered by clicking a button. But for any reason we want to call the FM again using the button, it doesnt refresh the result. How to clear the previously called session of the FM to get new result

  • Updation of RG1 register

    Hi, Once again I am putting this question. When I am trying to update the RG1 register with t.code J1I5,At the time of simulation,I am not able to simulate the some material document (getting the red tab against them).So that I am not able to update

  • Named destination

    Hi, I need to implement named destination parameter with url to open pdf file at a particular bookmark using adobe X/XI. We exported MS Word to PDF with creating bookmarks as Word bookmarks selected,but named destination not working. When we exported