Query Variable Error

Hi Experts!
I'm encountering this error when I'm running a query:
"Abort No value could be determined for variable 0P_KEYD2.
Abort System error in program CL_RSR_QUERY_VARIABLES and form SUBMIT:SET_DATA_P
Any ideas?
Thanks,
Maan

Maybe there was no key date set for your query in the query properties.

Similar Messages

  • Bex Query Variable error in Webi and Crystal for Enterprise

    Hi,
    We just upgrade to BOBJ 4.1 SP2 and BW7.4 SP5
    I am creating a webi report based on a BEx query. There is Variable on Period/Fiscal Year from BEX side(Mandatory prompt) when I try to create a Webi or Cyrstal for Enterprise report the below error pops up. Other Bex queries work correctly. Can it be the values in the variable the following values exist when execute from Bex i.e. 001.2012; Period 2013
    Is the SAP Note : 1611185 relevant for 4.1 SP2
    Error:
    com.businessobjects.sdk.core.server.CommunicationException$UnexpectedServerException: Termination message sent
    ABEND DBMAN (257): SQL Error: INTERNAL_ERROR
      MSGV1: INTERNAL_ERROR
    Is this True for BOBj4.1 SP2?
    http://scn.sap.com/thread/3362312
    Selection range variables are not fully supported in Crystal Reports for Enterprise.
    Message was edited by: Tienie Nothnagel

    Henry Banks wrote:
    > I know what you mean.  In BEx, it's automatic: the default values are pre-selected at runtime, based on user authorizations
    >
    > In WebI, user needs to do a 3-click workflow to select the authorized values from the prompt dialog. This can be broken down into 3 phases:
    >
    > (a) initialize prompt u2013 empty pane.
    >  (b) refresh list of values,
    >  (c) select response values.
    Thanks Henry! I was looking for this confirmation that it is a limitation of Webi and I'm not missing something.
    Henry Banks wrote:
    > ---> make this BEx variable u2018mandatoryu2019 u2013 this will trigger an automatic refresh mechanism on the list of values, and show it to the user.  This will eliminate steps (a) & (b).
    >
    It is not possible to set Authorization variables as mandatory. They are set to "optional" and cannot be changed (BEx limitation).
    Henry Banks wrote:
    > Unfortunately, BEx and WebI are not like-for-like replacement tools. Not all u2018normalu2019 BW features integrate natively into BObj.
    > So this will also have to be an excercise in positioning a new product to your onboarding users.  (i.e.  just click the button)
    > Regards,
    > H
    I understand that. Thanks for your suggestion.

  • Budget query variable error

    Experts, I have the follwing query, which works as long as I replace the variable with a data value. Just have not been able to determine what is wrong, the variable is to allow the user to select the name of the budget:
    SELECT     SUBSTRING(T1.FormatCode, 1, 8) + '-' + SUBSTRING(T1.FormatCode, 9, 3) + '-' + SUBSTRING(T1.FormatCode, 12, 3) AS 'GL Account',
                          DATENAME(month, DATEADD(month, T0.Line_ID, 0)) AS MonthName, T0.DebLTotal, T0.CredLTotal, T0.MonthPrcnt, T0.Instance, T0.BudgId, T0.Line_ID,
                          T0.AcctCode
    FROM         BGT1 AS T0 INNER JOIN
                          OACT AS T1 ON T0.AcctCode = T1.AcctCode INNER JOIN
                          OBGS AS t2 ON T0.Instance = t2.AbsId AND t2.name = '[%0]'
    ORDER BY T0.BudgId, T0.Line_ID
    Thanks

    Hi,
    How did you resolved this error..?
    I need urgently this...
    Regards
    Deepak Tyagi

  • WebI Prompts using BEx Query Variables

    Hello,
    I have the following issues with WebI report selection input paramaters (prompts) that use BW BEx Query variables. Could anyone please assist?
    Issue 1:
    The WebI report has one mandatory and two optional input paramaters (all paramaters from BW BEx Query). When I execute the report via WebI rich client directly, enter the value for mandatory input parameter and leave blanks for both optional input parameters, the report ran OK and has no issue. However, when I ran it through CMC a strange thing happen: I could not select the value for mandatory input paramater as it requires to have values for both optional input paramaters first (which I wish to have them blank and optional). When I refersh values for the mandatory paramater, it says "List of Values for current prompt requires values for following prompts:...(ie. the two optional parameters).
    Anyone has any idea - it seems like it is a CMC issue for the WebI...
    Issue 2:
    Take the same WebI report above, the issue here is the order sequence of the prompts (ie. the selection input parameters). How can we change/control the sequence of the prompts? Whatever sequence of the varaiables (input paramters) in BW BEx Query, the WebI ignores it. Please advise.
    Thanks & Regards,
    Andy

    I did not see separate thread for issue #1, therefore I'll us this thread.
    I am running into similar issue when I get an error message ''List of Values for current prompt requires values for following prompts: <Name of the prompt>".
    We are using BO V4, SP2, Patch 10 with SAP BW as DB via BEx queries.
    I opened support ticket for this issue since obviousely it's still an issue after applying patch 10.
    It's not an issue when 'Rich Internet Application' option is selected to view report in 'Reading' mode (via Launchpad Preferences then Web Inteligence; defautl value for viewing is 'Web').
    I have not tried to use Client tools but even if it works with Client tools - it is not a solution for us. Our company does not plan to install client tools on end user computers.
    Bigger issue us is that report scheduling invokes Web version (not Rich Internet Application). Therefore we cannot schedule report that is giving us problem described. I tried scheduling report from Launchpad and from CMC and both game me error highlighted.

  • Query running error

    Hi, all.
    In our PROD system we faced one problem. When we run query we get error
    "Cannot create characteristic combination: type \BI0\0100000100" doesn't exit"
    "Special situation CX_SY_CREATE_DATE_ERROR"
    I think we have problem with temporary database objects what is described in SAP note 1139396. And we execute report "SAP_DROP_TMPTABLES", but it doesn't help.
    Can anybody help us with this problem?
    wbr, Fanil. 

    This probably won't solve your issue... but have you tried to regenerate your query using RSRT -> Generate button?  I've found that this feature has helped resolved some query execution errors after transporting.
    Can you give us any information about what dates are used in your query (standard or custom, any variables created on these date InfoObjects?).  Thanks!

  • Consequences of using unconstrained query variables?

    I'm trying to determine what the consequences are (if any) of using
    unconstrained query variables vs using variables with a contains clause in
    order to navigate through collection fields.
    In the Java Data Objects book the example given for collection field
    navigation is as follows...
    String filter = "customer.orders.contains(o) && o.dispatched == false";
    q.declareVariables("Order o");
    Using uncontrained variables this could be rewritten as...
    String filter = "customer.orders.dispatched == false";
    I'm using kodo 2.5.5 and need to navigate through multiple collection
    fields. It is far simpler and easier for me to do this using the second
    example above, but I can't find any documentation describing whether its a
    good idea or not. So far the queries generated are correct.
    Regards
    Nathan

    Hi Marc,
    Using the query form with the variable is portable at present, but I can't
    help wonder whether the spec will change in the future to make using QL
    simpler. All of the examples given in both the JDO book and Kodo
    documenation only ever demonstrate the simplest example. Trying to construct
    a query that spans multiple collections is very time consuming as the
    smallest error in the QL seems to result in "red herring" error messages.
    I've constructed and example for you that uses both methods and produces
    exactly the same SQL. I'm very tempted to continue using the unconstrained
    method because it works and is so simple. Note that in the generated SQL,
    the reason that the table "BOA" is joined to most of the other tables is due
    to vertical inheritance. The example data model is a very cut down diagram
    purely to show the relationships.
    "Marc Prud'hommeaux" <[email protected]> wrote in message
    news:[email protected]...
    Nathan-
    You should use the query form with the variable, since it is portable
    and spec compliant.
    I'm actually a little surprised that the second filter works at all.
    What is the SQL that results from both the queries?
    In article <[email protected]>, nathan boyes wrote:
    I'm trying to determine what the consequences are (if any) of using
    unconstrained query variables vs using variables with a contains clause
    in
    order to navigate through collection fields.
    In the Java Data Objects book the example given for collection field
    navigation is as follows...
    String filter = "customer.orders.contains(o) && o.dispatched == false";
    q.declareVariables("Order o");
    Using uncontrained variables this could be rewritten as...
    String filter = "customer.orders.dispatched == false";
    I'm using kodo 2.5.5 and need to navigate through multiple collection
    fields. It is far simpler and easier for me to do this using the second
    example above, but I can't find any documentation describing whether itsa
    good idea or not. So far the queries generated are correct.
    Regards
    Nathan
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    begin 666 query syntax.txt
    M"7!R:79A=&4@=F]I9"!P<F]J96-T475E<GE5;F-O;G-T<F%I;F5D*$ET96T@
    M:71E;2E[#0H)"0T*"0E%>'1E;G0@97@@/2!C;VYT97AT+F=E=%!E<G-I<W0H
    M*2YG971%>'1E;G0H4')O:F5C="YC;&%S<RP@=')U92D[#0H)"5%U97)Y('$[
    M#0H)"4-O;&QE8W1I;VX@8V]L(#T@;G5L;#L-"@D)4W1R:6YG0G5F9F5R(&9I
    M;'1E<B ](&YE=R!3=')I;F="=69F97(H*3L-"@T*"0EF:6QT97(N87!P96YD
    M*")H;VUE1F]L9&5R+G)O;W1&;VQD97(N:6YD:7)E8W1#:&EL9')E;BYF;VQD
    M97))=&5M<RYI=&5M(#T]('!A<DET96TB*3L-"@D)#0H)"7$@/2!C;VYT97AT
    M+F=E=%!E<G-I<W0H*2YN97=1=65R>2AE>"D[#0H)"7$N9&5C;&%R94EM<&]R
    M=',H(FEM<&]R="!A82YC;W)R97-P;VYD96YC92Y)=&5M.R(I.PT*"0EQ+F1E
    M8VQA<F5087)A;65T97)S*"))=&5M('!A<DET96TB*3L-"@D)<2YS971&:6QT
    M97(@*&9I;'1E<BYT;U-T<FEN9R@I*3L-"@D)#0H)"6-O;" ]("A#;VQL96-T
    M:6]N*2!Q+F5X96-U=&4H:71E;2D[#0H)"0T*"7T-"@T*"7!R:79A=&4@=F]I
    M9"!P<F]J96-T475E<GE5<VEN9U9A<FEA8FQE<RA)=&5M(&ET96TI>PT*"0D-
    M"@D)17AT96YT(&5X(#T@8V]N=&5X="YG971097)S:7-T*"DN9V5T17AT96YT
    M*%!R;VIE8W0N8VQA<W,L('1R=64I.PT*"0E1=65R>2!Q.PT*"0E#;VQL96-T
    M:6]N(&-O;" ](&YU;&P[#0H-"@D)4W1R:6YG0G5F9F5R(&9I;'1E<B ](&YE
    M=R!3=')I;F="=69F97(H*3L-"@D)4W1R:6YG0G5F9F5R(&EM<&]R=',@/2!N
    M97<@4W1R:6YG0G5F9F5R*"D[#0H)"5-T<FEN9T)U9F9E<B!V87)I86)L97,@
    M/2!N97<@4W1R:6YG0G5F9F5R*"D[#0H)"0T*"0EI;7!O<G1S+F%P<&5N9"@B
    M:6UP;W)T(&%A+F-O<G)E<W!O;F1E;F-E+DET96T[("(I.PT*"0EI;7!O<G1S
    M+F%P<&5N9"@B:6UP;W)T(&%A+F9O;&1E<BY&;VQD97))=&5M.R B*3L-"@D)
    M:6UP;W)T<RYA<'!E;F0H(FEM<&]R="!A82YF;VQD97(N1F]L9&5R.R(I.PT*
    M#0H)"79A<FEA8FQE<RYA<'!E;F0H(D9O;&1E<B!V87));F1I<F5C=$-H:6QD
    M1F]L9&5R.R(I.PT*"0EV87)I86)L97,N87!P96YD*")&;VQD97))=&5M('9A
    M<D9O;&1E<DET96TB*3L-"@D)"0D-"@D)9FEL=&5R+F%P<&5N9"@B:&]M949O
    M;&1E<BYR;V]T1F]L9&5R+FEN9&ER96-T0VAI;&1R96XN8V]N=&%I;G,H=F%R
    M26YD:7)E8W1#:&EL9$9O;&1E<BD@)B8@(BD[#0H)"69I;'1E<BYA<'!E;F0H
    M(G9A<DEN9&ER96-T0VAI;&1&;VQD97(N9F]L9&5R271E;7,N8V]N=&%I;G,H
    M=F%R1F]L9&5R271E;2D@)B8@(BD[#0H)"69I;'1E<BYA<'!E;F0H(G9A<D9O
    M;&1E<DET96TN:71E;2 ]/2!P87))=&5M(BD[#0H)"0T*"0EQ(#T@8V]N=&5X
    M="YG971097)S:7-T*"DN;F5W475E<[email protected]*"0EQ+F1E8VQA<F5);7!O
    M<G1S*&EM<&]R=',N=&]3=')I;F<H*2D[#0H)"7$N9&5C;&%R95!A<F%M971E
    M<G,H(DET96T@<&%R271E;2(I.PT*"0EQ+F1E8VQA<F5687)I86)L97,H=F%R
    M:6%B;&5S+G1O4W1R:6YG*"DI.PT*"0EQ+G-E=$9I;'1E<B H9FEL=&5R+G1O
    M4W1R:6YG*"DI.PT*"0D-"@D)8V]L(#T@*$-O;&QE8W1I;VXI('$N97AE8W5T
    692AI=&5M*3L-"@D)#0H)"0T*"7T-"@``
    `
    end
    begin 666 generatedQuery.sql
    M4T5,14-4($1)4U1)3D-4( T*"70P+DE$+" -"@ET,2Y*1$]#3$%34U@L( T*
    M"70Q+DI$3TQ/0TM8+" -"@ET,2Y#55)214Y404Q415)!5$E/3DE$+" -"@ET
    M,"Y!0U1)5D5?1"P@#0H)=# N8V]M<&]N96YT260L( T*"70P+F1A=&52;VQE
    M365M8F5R<TUO9&EF:65D7V0L( T*"70P+DAO;65&;VQD97))1"P@#0H)=# N
    M3U))1TE.04Q04D]*14-4240L( T*"70P+G!R;VIE8W13=&%T=7,L( T*"70P
    M+E)%1D5214Y#15]$+" -"@ET,"Y32$]25$1%4T-27T0@#0I&4D]-( T*"5!2
    M3TI%0U0@=# @24Y.15(@2D])3B -"@E"3T$@=#$@3TX@=# N240@/2!T,2Y)
    M1"!)3DY%4B!*3TE.( T*"4A/345&3TQ$15(@=#(@3TX@=# N2&]M949O;&1E
    M<DE$(#T@=#([email protected](@2D])3B -"@E"3T$@=#,@3TX@=#(N240@/2!T
    M,RY)1"!)3DY%4B!*3TE.( T*"49/3$1%4B!T-"!/3B!T,BYR;V]T1F]L9&5R
    M240@/2!T-"Y)1"!)3DY%4B!*3TE.( T*"4)/02!T-2!/3B!T-"Y)1" ]('0U
    M+DE$($E.3D52($I/24X@#0H)26YD:7)E8W1#:&EL9$9O;&1E<B!T-B!/3B!T
    M-"Y)1" ]('0V+FEN9&ER96-T4&%[email protected](@2D])3B -"@E&3TQ$
    M15(@=#<@3TX@=#8N:6YD:7)E8W1#:&EL9$ED(#T@=#<[email protected](@2D])
    M3B -"@E"3T$@=#@@3TX@=#<N240@/2!T."Y)1"!)3DY%4B!*3TE.( T*"49/
    M3$1%4DE414T@=#D@3TX@=#<N240@/2!T.2YP87)E;G1F;VQD97)I9"!)3DY%
    M4B!*3TE.( T*"4)/02!T,3 @3TX@=#DN240@/2!T,3 N240@#0I72$5212 -
    M"@DH=#DN:71E;6ED(#T@/RD@04Y$( T*"70Q+DI$3T-,05-36" ](#\I.B!;
    M<F5U<V5D/3$[<&%R86US/7LH:6YT*3,Q,3$L*%-T<FEN9REC;VTN;6%L;&5S
    C;VYS+G-E<G9I8V5N970N86$N<')O:F5C="Y0<F]J96-T?5T`
    `
    end
    begin 666 example datamodel.doc
    MT,\1X*&Q&N$`````````````````````/@`#`/[_"0`&```````````````!
    M````(@``````````$ ``) ````$```#^____`````"$```#_____________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M_______________________LI<$`"R )! ``\!*_````````$ ``````! ``
    M?@0```X`8FIB:N `X `````````````````````````)!!8`+@P``()J`0""
    M:@$`% ``````````````````````````````:0````````#__P\`````````
    M``#__P\```````````#__P\``````````````````````&P``````*@`````
    M````J ```*@`````````J `````````8`@```````!@"````````& (``!0`
    M`````````````$P"````````? (```````!\`@```````'P"````````? (`
    M``P```"(`@``# ```$P"````````X@X``+8```"@`@```````* "````````
    MH (```````"@`@```````* "````````A0L```````"%"P```````(4+````
    M````80X```(```!C#@```````&,.````````8PX```````!C#@```````&,.
    M````````8PX``"0```"8#P``( (``+@1``!&````APX``!4`````````````
    M````````````& (```````"%"P````````````````````````````!'"0``
    M/@(``(4+````````A0L```````"%"P```````(<.````````40P```````"H
    M`````````*@`````````H (``````````````````* "``"G!@``G X``!8`
    M``!1# ```````%$,````````40P```````"%"P``0 ```*@````(`0``H (`
    M```````8`@```````* "````````80X``````````````````%$,````````
    M````````````````````````````````````````````````````````````
    M````A0L```````!A#@```````%$,```0`@``40P``````````````````&$.
    M````````L $``&@````8`@``````````````````````````````````````
    M````````````````````````````````````````````80X```````"@`@``
    M`````)0"```,````,*'_R.K3PP%,`@``, ```'P"````````Q0L``#H```!A
    M#@``````````````````80X```````"R#@``, ```.(.````````80X`````
    M``#^$0```````/\+``!2````_A$```````!A#@```````%$,````````+ (`
    M`!(````^`@``#@```*@`````````J ````````"H`````````*@`````````
    M`@#9````" @(" @(" @(" @(" @(" @(" UP<F]J96-T#0UH;VUE1F]L9&5R
    M#0U2;V]T1F]L9&5R("A&;VQD97(@;V)J96-T*0T-26YD:7)E8W1#:&EL9')E
    M;B H1F]L9&5R(&]B:F5C="D-#69O;&1E<DET96T-#6ET96T-#0T-#0T-````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````! ``$P0``'X$``#Q````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M`````````````!P#:@````!#2A0`50@!;4@`!&Y(``1S2 D$=0@!`@`$```4
    M! ``' 0``!T$```H! ``*00``$0$``!%! ``9@0``&<$``!R! ``<P0``'@$
    M``!Y! ``>@0``'L$``!\! ``?00``'X$``#]````````````````_0``````
    M`````````/T```````````````#]````````````````_0``````````````
    M`/T```````````````#]````````````````_0```````````````/T`````
    M``````````#]````````````````_0```````````````/T`````````````
    M``#]````````````````_0```````````````/T```````````````#]````
    M````````````_0```````````````/T`````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M``````````$````2``0``!0$``!]! ``_?T`````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M```````````````````````````````$! `!`0(L`#&0: $?L((N(+#&02&P
    M" <BL @'(Y"@!220H 4EL ``%[#$`ABPQ (,D,0"````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````% `/``H``0!I``\``P```````````#@``$#Q
    M_P(`. `,``8`3@!O`'(`;0!A`&P````"````& !#2A@`7T@!!&%*& !M2 D,
    M<T@)#'1("00````````````````````````\`$% \O^A`#P`# `6`$0`90!F
    M`&$`=0!L`'0`( !0`&$`<@!A`&<`<@!A`' `: `@`$8`;P!N`'0`````````
    M``````````````D````5````,0```%,```!?````90```&8```!G````: ``
    M`'X````!````````````_____P($`````````0```````````/____\#! ``
    M``````$```````````#_____! 0````````!````````````_____P4$````
    M`````0```````````/____\&! ````````$```````````#_____!P0`````
    M```(`````0````$`_____P``````````!@````(````!`/____\`````````
    M`/____\``````0#_____```````````'`````P``````````````````````
    M``````D````5````,0```%,```!?````90```&8```!G````: ```&L`````
    M```````!```````"```````#```````$```````%```````&``````@'````
    M``@(``````C__P``````````?@````0```P```4`_____P$````&(/__`0`B
    M)J,```````````!^`````````````````!0```!_````G@``````````````
    M`( ```" F@```````````````( ```" ``0``'X$```#``````0``'X$```$
    M``````0``'T$```%````#P``\#@```````;P& ```"($```"````& ````$`
    M```!````(@```$ `'O$0````__\`````_P" @( `]P``$ `/``+P7@8``! `
    M"/ (````% ```"$$```/``/P_ 4```\`!/ H`````0`)\! `````````````
    M`````````````@`*\ @`````! ``!0````\`!/!"````$@`*\ @````"! ``
    M``H``!,`"_ &````@ ````$````0\ 0````/```````1\ 0````$```````-
    M\ 0```````$`#P`$\$(````2``KP" ````,$````"@``$P`+\ 8```" ````
    M`@```!#P! ```! ``````!'P! ````4```````WP! ```````@`/``3P0@``
    M`!(`"O (````! 0````*```3``OP!@```( ````#````$/ $`````0``````
    M$? $````#0``````#? $```````#``\`!/!"````$@`*\ @````%! ````H`
    M`!,`"_ &````@ ````0````0\ 0````````````1\ 0````-```````-\ 0`
    M``````0`#P`$\$(````2``KP" ````8$````"@``$P`+\ 8```" ````!0``
    M`!#P! ```!$``````!'P! ````H```````WP! ``````!0`/``3P0@```!(`
    M"O (````!P0````*```3``OP!@```( ````&````$/ $````$@``````$? $
    M````"P``````#? $```````&``\`!/!(````0@$*\ @````)! ````H``$,`
    M"_ 8````1 $$````?P$```$`OP$``! `_P$0`! ````0\ 0````.```````1
    M\ 0````#````#P`$\$@```!"`0KP" ````H$````"@``0P`+\!@```!$`00`
    M``!_`0```0"_`0``$ #_`1 `$ ```!#P! ````T``````!'P! ````,````/
    M``3P2 ```$(!"O (````"P0````*``!#``OP& ```$0!! ```'\!```!`+\!
    M```0`/\!$ `0````$/ $````# ``````$? $`````P````\`!/!(````0@$*
    M\ @````,! ````H``$,`"_ 8````1 $$````?P$```$`OP$``! `_P$0`! `
    M```0\ 0````+```````1\ 0````#````#P`$\$@```!"`0KP" ````T$````
    M"@``0P`+\!@```!$`00```!_`0```0"_`0``$ #_`1 `$ ```!#P! ````H`
    M`````!'P! ````,````/``3P2 ```$(!"O (````& 0``$ *``!#``OP& ``
    M`$0!! ```'\!```!`+\!```0`/\!$ `0````$/ $````" ``````$? $````
    M!0````\`!/!(````0@$*\ @````9! ````H``$,`"_ 8````1 $$````?P$`
    M``$`OP$``! `_P$0`! ````0\ 0````)```````1\ 0````&````#P`$\$@`
    M``!"`0KP" ```!L$``! "@``0P`+\!@```!$`00```!_`0```0"_`0``$ #_
    M`1 `$ ```!#P! ````<``````!'P! ````4````/``3P2 ```$(!"O (````
    M' 0````*``!#``OP& ```$0!! ```'\!```!`+\!```0`/\!$ `0````$/ $
    M````!@``````$? $````!0````\`!/!(````0@$*\ @````=! ````H``$,`
    M"_ 8````1 $$````?P$```$`OP$``! `_P$0`! ````0\ 0````%```````1
    M\ 0````%````#P`$\$@```!"`0KP" ```!X$``! "@``0P`+\!@```!$`00`
    M``!_`0```0"_`0``$ #_`1 `$ ```!#P! ````0``````!'P! ````4````/
    M``3P2 ```$(!"O (````'P0````*``!#``OP& ```$0!! ```'\!```!`+\!
    M```0`/\!$ `0````$/ $`````P``````$? $````!0````\`!/!(````0@$*
    M\ @````@! ``0 H``$,`"_ 8````1 $$````?P$```$`OP$``! `_P$0`! `
    M```0\ 0````"```````1\ 0````%````#P`$\$(````2``KP" ````$$````
    M#@``4P`+\!X```"_`0``$ #+`0````#_`0``" `$`PD````_`P$``0```!'P
    M! ````$``````````0````(````#````! ````4````&````!P````@````)
    M````"@````L````,````#0````X````/````$ ```!$````2````?@````4$
    M```(!P``S!4``&04``#H%P``= ``````! 0```@'```L$ ``_!(``$@2``!T
    M```````@! ``) D``&P;``#8"0``(!P``'0``````!\$``#8"0``;!L``(P*
    M```@' ``= ``````'@0``"0)```8%0``V D``,P5``!T```````=! ``V D`
    M`!@5``","@``S!4``'0``````!P$```D"0``/!X``-@)``#P'@``= ``````
    M&P0``-@)```\'@``C H``/ >``!T```````8! ``V D``$@2``","@``_!(`
    M`'0``````!D$```D"0``2!(``-@)``#\$@``= ``````#00``-@)```\'@``
    MV D``'0B``!T```````,! ``V D``.@7``#8"0``(!P``'0```````L$``#8
    M"0``2!(``-@)``#,%0``= ``````"@0``-@)``"H# ``V D``"P0``!T````
    M```)! ``V D``%0&``#8"0``C H``'0```````($```(!P``. 0``%P-``!4
    M!@``= ```````P0```@'``","@``7 T``*@,``!T```````&! ``" <``" <
    M``!<#0``/!X``'0```````<$```(!P``="(``%P-``"0) ``= ``````````
    M`!0````=````)P```"D````S````10```%4```!G````<0```'\````'``<`
    M' `'`!P`!P`<``<`' `'```````4````&P```!T````G````9P```'$```!S
    M````=P```'\````'`#H`!P`Z``<`.@`'`#H`!P````````````$````!````
    M`@````H````1````$0```!,````4````&P```!T```!\````?P````0``P`$
    M``,`! `#``0``P`'``0``P`$``,`__\&````!P!N`&$`8@!O`'D`90!S`&P`
    M0P`Z`%P`1 !O`&,`=0!M`&4`;@!T`',`( !A`&X`9 `@`%,`90!T`'0`:0!N
    M`&<`<P!<`&X`80!B`&\`>0!E`',`7 !!`' `< !L`&D`8P!A`'0`:0!O`&X`
    M( !$`&$`= !A`%P`30!I`&,`<@!O`',`;P!F`'0`7 !7`&\`<@!D`%P`00!U
    M`'0`;P!2`&4`8P!O`'8`90!R`'D`( !S`&$`=@!E`" `;P!F`" `90!X`&$`
    M;0!P`&P`90`@`&0`80!T`&$`;0!O`&0`90!L`"X`80!S`&0`!P!N`&$`8@!O
    M`'D`90!S`#\`0P`Z`%P`1 !O`&,`=0!M`&4`;@!T`',`( !A`&X`9 `@`%,`
    M90!T`'0`:0!N`&<`<P!<`&X`80!B`&\`>0!E`',`7 !$`&4`<P!K`'0`;P!P
    M`%P`90!X`&$`;0!P`&P`90`@`&0`80!T`&$`;0!O`&0`90!L`"X`9 !O`&,`
    M!P!N`&$`8@!O`'D`90!S`#\`0P`Z`%P`1 !O`&,`=0!M`&4`;@!T`',`( !A
    M`&X`9 `@`%,`90!T`'0`:0!N`&<`<P!<`&X`80!B`&\`>0!E`',`7 !$`&4`
    M<P!K`'0`;P!P`%P`90!X`&$`;0!P`&P`90`@`&0`80!T`&$`;0!O`&0`90!L
    M`"X`9 !O`&,`_T #@ $````````````0`/(#`0`!````````````````````
    M```"$ ````````!^````0 ``" ! ``#__P$````'`%4`;@!K`&X`;P!W`&X`
    M__\!``@``````````````/__`0``````__\```(`__\`````__\```(`__\`
    M`````P```$<6D $```("!@,%! 4"`P2'>@`@````@ @`````````_P$`````
    M``!4`&D`;0!E`',`( !.`&4`=P`@`%(`;P!M`&$`;@```#46D $"``4%`0(!
    M!P8"!0<`````````$ ``````````````@ ````!3`'D`;0!B`&\`; ```#,F
    MD $```(+!@0"`@("`@2'>@`@````@ @`````````_P$```````!!`'(`:0!A
    M`&P````B``0`<0B(& #PT (``&@!`````-,R@4;3,H%&``````,`!P``````
    M`````````0`!````! `#$ $```````````````$``0````$`````````(0,`
    M\! `````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M" >@!;0`M "!@3(P````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M``````(```!3`P``````,H,1`/ 0``@`````````````````````````````
    M````````````__\2````````````````````!P!N`&$`8@!O`'D`90!S``<`
    M;@!A`&(`;P!Y`&4`<P``````````````````````````````_O\```4!`@``
    M`````````````````````0```."%G_+Y3V@0JY$(`"LGL]DP````5 $``! `
    M```!````B ````(```"0`````P```)P````$````J ````4```"X````!P``
    M`,0````(````V ````D```#H````$@```/0````*````$ $```P````<`0``
    M#0```"@!```.````- $```\````\`0``$ ```$0!```3````3 $```(```#D
    M! ``'@````$``````',`'@````$``````',`'@````@```!N86)O>65S`!X`
    M```!`````&%B;QX````+````3F]R;6%L+F1O= ``'@````@```!N86)O>65S
    M`!X````"````,P!B;QX````3````36EC<F]S;V9T(%=O<[email protected]``! ````
    M`.I6^@````! `````/* KNK3PP% `````/* KNK3PP$#`````0````,`````
    M`````P`````````#````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M`````````````````````````````````````````````````/[_```%`0(`
    M``````````````````````$````"U<W5G"X;$).7" `K+/FN, `````!```,
    M`````0```&@````/````< ````4```"4````!@```)P````1````I ```!<`
    M``"L````"P```+0````0````O ```!,```#$````%@```,P````-````U ``
    M``P```#A`````@```.0$```>````&@```$UA;&QE<V]N<R!3=&5P:&5N($IA
    M8W%U97,`( `#`````0````,````!`````P`````````#````#AL)``L`````
    M````"P`````````+``````````L`````````'A ```$````!``````P0```"
    M````'@````8```!4:71L90`#`````0``````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M```````````````````````````````````````````````````!`````@``
    M``,````$````!0````8````'````_O___PD````*````"P````P````-````
    M#@````\````0````_O___Q(````3````% ```!4````6````%P```!@```#^
    M____&@```!L````<````'0```!X````?````( ```/[____]____(P```/[_
    M___^_____O____________

  • Getting "Must declare the scalar variable" Error

    Hello All,
    I have write following query to block invoice which has Prices not equal to PriceList as below.
    -- To Block Invoices which has Prices not equal to PriceList
    IF (@transaction_type='A' OR @transaction_type = 'U') AND CAST(@OBJECT_TYPE = '18')
    BEGIN
        SELECT T1.ItemCode,
                T1.Price AS PO_Price,
                T2.U_ListPrice AS Listed_Price
            FROM OPCH AS T0 
            INNER JOIN
            PCH1 AS T1 ON
            T0.DocEntry = T1.DocEntry
            LEFT OUTER JOIN    
            [dbo].[@PRICELISTS] AS T2 ON
            T1.ItemCode = T2.U_ItemNo
        WHERE
                    T1.DocEntry = @list_of_cols_val_tab_del) AND
            (T1.Price <> T2.U_ListPrice)   
    BEGIN
    SET @error = 123
    SET @error_message = 'Deviation in price'
    END
    END
    But after Execution got following Errors
    Msg 137, Level 15, State 2, Line 2
    Must declare the scalar variable "@transaction_type".
    Msg 137, Level 15, State 2, Line 19
    Must declare the scalar variable "@list_of_cols_val_tab_del".
    Msg 137, Level 15, State 1, Line 22
    Must declare the scalar variable "@error".
    Msg 137, Level 15, State 1, Line 23
    Must declare the scalar variable "@error_message".
    Please Help
    Regards
    Hitul

    Hi Hitul,
    Please check Snapshot.
    Please see Red Lines for SBO_SP_TransactionNotification Procedure.
    Paste your code below ADD YOUR CODE HERE.
    Hope this help
    Regards::::
    Atul Chakraborty

  • Connecting Query variable with Table Values

    Hi all,,
    I'm trying to connect a query variable to table column contents. The problem is, there is an additional Date as input which is single value. As a result, the query does not get executed. It gives an error that it expects a single value for the date field.
    Am I doing something wrong. Please guide.
    Regds,
    Srinivasan.

    Hi Srinivasan,
    Sorry but i didnt got exactly what you are trying to do? You have query to which you are passing multiple values from a table. or are you selecting a single row in the table and passing it to the query? How is the variable defined in the query?
    Thanks,
    Regards,
    Vikram

  • Text lines in the BW query variables screen

    Hi gurus.
    The bw users ask me to display some text lines in the BW query variables prompt.
    The text lines are saved in a custom table.
    The only idea that I've got is to use customer exit text variables and fill them in CMOD when I_step = 1.
    I don't like this solution (I should have more the 10 text lines and so I have to mantain more than 10 Text variables) but I can't find any other solution.
    Any new idea or solution?
    Is there in Bex enviroment a functionality (that I don't know) for doing somenthing like this ?
    Thanks fo any help.
    S.

    Hi,
    to resolve it you should create all the prompts in the BW query. You are using a query with 2 parameters and then a dynamic list of values. the dynamic list of values can only work after you entered the other values.
    Ingo

  • BW Query variable default value put in Crystal report variable question

    Why BW Query variable default value put in Crystal report variable for BO InfoView to open crystal report.
    I using Analyzer to open bw query,variables had default value ,but crystal report can't had variable default value ,and can't search variable  value.
    pho:
    [http://file.itpub.net/f/e38876ad4f6efb7e73980488e7d71f8d/4ae940e9/day_091029/20091029_2b04da1232144feba180OrB23SNvXtoT.gif/p/1.gif]
    [http://file.itpub.net/f/d93ddfe61e0eaf80429726c61f1a02ff/4ae940e9/day_091029/20091029_3211ffe04bf0302fbab5FRKnbwmH80p7.gif/p/BW_QUERY_Crystal.gif]
    Edited by: flying on Oct 29, 2009 8:20 AM

    I Know what to do .
    but Crystal report date variable value are Garbage characters "###".
    PHO:
    [http://file.itpub.net/f/39a8510104476707ae21c945db93ecba/4ae97949/day_091029/20091029_32dcbb7e7d99141483aesJ9KBJHXN0Kj.gif/p/2.gif]

  • See my query and error, see my query and error

    hi master
    sir i use inner query but not run
    please see my query with error
    query :==========
    select accid as acccode,fstatus, case when fstatus=1 then
    (select sum(drbal) from accbal where substr(accbal.accid,1,length(acccode))=acccode)
    end what
    from chartofacc
    error :========
    SQL> /
    (select sum(drbal) from accbal where substr(accbal.accid,1,length(acccode))=acccode)
    ERROR at line 2:
    ORA-00904: "ACCCODE": invalid identifier
    please sir give me any idea *

    Does this column ACCCODE exist in your table accbal?
    The columns in the outer query will not be visible in the inner query but the vise versa is true.

  • Getting a bad bind variable error while compiling a custom form in R12

    Hi,
    I am getting a bad bind variable error while compiling a custom form.
    I tried setting the forms_path variable and I am still getting the error. Can anyone please suggest what can be done?
    DECLARE
    BEGIN
    IF :parameter.p_line_ship_to = 'T'
    THEN
    IF :SYSTEM.cursor_item = 'LINE.SHIP_TO'
    THEN
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    oe_lines.ship_to ('WHEN-VALIDATE-ITEM');
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    END IF;
    :parameter.p_line_ship_to := 'F';
    END IF;
    END;
    I am getting this error:
    Bad bind variable 'parameter.p_line_ship_to'

    The Parameter is not defined in the form.. But, this form is already been compiled and deployed.. I have to make some changes to the form and tried to compile it, when i am getting this error. Is it possible that the parameter would be defined in some other form or can this error be due to some other reasons?
    Thanks in Advance.

  • BW Authorizations - Query variable with processing mode as "customer exit"

    Hi,
    Iam new to BW authorizations and have not yet worked on customer exit before. I was going through the documentation at various sites but I could not get the end to end description on how the query process( when using a variable for an InfoObject) works in case of customer exit.
    Let's assume that I am using  a query variable with processing mode as "customer exit" and at the exit I  write some code to extract user's authorizations from a z table. if this is the case, then when an end user runs a query,how will the the system know what value needs to be filled in the variable for the requesting user. Are the user details  also sent to the code along with the query variable? If so how. If I mis-understood the process then forgive me and let me know the correct process.

    Hi!
    welcome to SDN!
    customer exit variables need programing by user. so if you create a customer exit variable, you got to right a program which extracts values into this variable. we can do what ever we want in program, SAP will not deal anything ´with customer exits.
    with regards
    ashwin
    PS n:  Assigning point to the helpful answers is the way of saying thanks in SDN.  you can assign points by clicking on the appropriate radio button displayed next to the answers for your question. yellow for 2, green for 6 points(2)and blue for 10 points and to close the question and marked as problem solved. closing the threads which has a solution will help the members to deal with open issues with out wasting time on problems which has a solution and also to the people who encounter the same porblem in future. This is just to give you information as you are a new user.

  • How to track query variable input in FM

    Hi All,
    There are a MultiCube1 and a Query1 based on it.
    There is Virtual Infoprovider1 based on Query1.
    And finaly there is a Query2 based on Virtual Provider1.
    How to check inputed variables of Query2 in FM for Virtual Provider1.

    Hi,
    there is no way to read query variables in the is_protected method, since data slice run time and query run time are separated.
    Of course you can do the 'usual' trick by implementing an exit variable, export some variable values to memory and read it in the is_protected method.
    But is_overlapping is the correct method to read the used selection (of a query of planning function filter) to do some initializing work. This method is called when a function is processed or a query will be opened. Is_protetecd is called on a record basis, i.e. maybe very often.
    Regards,
    Gregor

  • Save Query - An error occurred while creating connection strings for the query

    A workbook trying to edit and reload I get the following error "Save Query - An error occurred while creating connection strings for the query" No Power Pivot data model or anything.

    I am getting the same error when editing a Power Query in an Excel spreadsheet. It happens when I change a Group By step to do a Sum instead of Count Rows.

Maybe you are looking for

  • Incorrect Transaction Type displayed in FF_6

    Hi Experts, We use FF_5 to upload bank statements . However transactions which are marked as "Transfer" are reflecting in FF_6 as "PAY/SALARY " . There are some config changes required . Please suggest . Regards Anirban

  • Page Flow being cached

    I have a portlet that has various links to JSPs. These JSPs are part of another page flow portlet. The first time I click a link, everything works fine. The next time it seems like the page flow is cached - the begin() method does not get execute. I

  • Restriction of DC

    Hi everybody,                      I have created a Dc in NWDI whch is globally accepted by all the developers,But now i want to restrict that DC to some developers.So how can i do that.Please help me regarding this issue.

  • Vista and browser flash

    Ok here is the deal. I am running Vista Home. I have problems running games in browser windows. Everything is choppy and plays horrible. Anyone have any ideas of how to make this stop.

  • Is it possible to use adobe formsCentral in a offline mode?

    the case is as following: during an expositon we want to use adobe forms central. the problem is that sometimes we will loose our internet connection. Question: a) Can we use the forms in an offline mode? b) Is there any possiblity to store a filled