Query Variable Help

Dear Gurus, I was looking for a variable for Fiscal Year/Period in Busines content that can be a single entry, mandatory. I found one 0S_FPER. In the report, when I restrict Fiscal Year/Period with this variable, I wanted to select the 'offset' to -1 but it is disabled. How can get it enabled?

Vijay,
Thanks for the help. Now I understand these variable stuff little better.
I still have one problem. I cannot use the offset -1 for 2 columns. It gives mw "Program termination" error when I try to save it with 2 column having offset of -1 on the same variable.
Does anybody know how to solve this peoblem.

Similar Messages

  • 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 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.

  • BEx: How to change a Query Variable that is not visible in Filters List?

    Hello Experts,
    Good day, I'm currently editing an old query, I am changing the Query Variables with new ones, but I found one variable that I cannot replace.
    Please see the screenshot below, in the Query Properties Window [Variable Sequence Tab (right side of picture)] the Variable that I am trying to replace (Unit) is visible. But when I look for the variable in the "Filter Tab" (left side of picture) under Characteristic Restrictions, it doesn't exist in the list.
    How can I find this Variable and replace it with a new one?
    Other reports are still using this variable so it will impact the other reports if I simply edit the variable. So I need to replace it with a new variable instead.
    Thank you for your time.

    Hi,
            SInce you are searching for a variable for Unit, look into below screenshot and navigate to the variables.
    First click on drop down and select 'Entry for variable' then you will get lisl (after you click on drop down in 'Target Unit' drop down option.
    Normally these type of variable called 'Formula Variable' try editing any of the formula and locate the option as shown below,
    Hope it helps! don't forget to update the final solution and mark the correct/helpful answers.
    Remember it will help others to find the solution and motivate the members to answer your question.
    Thanks,
    Umashankar

  • Table name where query variables stored

    Hi All,
    can any one please tell me in which data base table all the custom query variables are stored???

    Hi Pousali,
      Check RSZGLOBV.
    Hope it Helps
    Srini

  • Query variable : selection option with no interval

    Hello,
    Is it possible to define a query variable as selection option, with no interval (like in abap).
    I am in 3.X version.
    Many Thanks in advance,
    Manuel

    Hi Manuel,
    This should be possible through multiple single value variables, but to ensure that the user has not in input the same charateristic value for exclusion and selection you may choose to write customer exit at the background.
    I think interval and select option would allow 'To values'.
    So I was wrong in what I said before. SORRY
    However multiple single value would not allow exclusion, I think.
    Your scenario would only be possible by excluding multiple single values in variable type select option and process the variable using customer exit, to trmove all to Values.
    But you are right, you cannot have your scenrio handled , I think.
    ( ie multiple exclusion in from values with no To Values )
    One more way is restrict your characteristic by two input ready variables, one select option for exclusion and have a customer exit to delte all inclusion that were input accidently and one multiple value ready for input variable.
    But, all in all, there would be no straight drive through this I think.
    Hope it helps,
    Regards,
    Sunmit.

  • 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____________

  • Search query variable not working

    Apologies for this essay but I felt it may be best if I include all the details in order to describe the issue I'm experiencing.
    I have two site collections in one web app called Library and Store respectively. The library site collection has a content type called Book which is made available to the Store site collection through the content type syndication. The Book content type
    has a site column in it called Book Author which is of managed metadata type (the term set has a few terms representing authors). The parent content type of the Book is the out of the box Article Page and the Store site collection has custom page layout associated
    with the Book content type.
    I then add a page and switch its page layout to my custom layout based on the Book content type and on the page, I put a content search web part. I have a managed property called BookAuthor which is mapped to the crawled property pointing at the Book Author
    field and this is where things start to go awry. The query I use in the content search web part looks something like this:
    ContentType:Book BookAuthor:{Page.Book Author}
    According to the documentation of the query variables and FQL (http://technet.microsoft.com/en-us/library/jj683123(v=office.15).aspx), this should return items that are of the Book content type where the BookAuthor is the value of the Book Author field on
    the current page that the content search web part resides on. In this case, my query returns no results. In order to test if it actually works, I manually typed in the value of the author for the BookAuthor property so it looked something like this:
    ContentType:Book BookAuthor:John Doe
    The second query returned the results I expected, but the first one didn't. I've come across a similar problem to  this and previously, I found out that SharePoint had duplicated the Book Author field in the content type such that one was named "Book
    Author" and the type showing was TaxonomyFIeldTypeMulti while the other one was named "Book Author_0" and the type showing was Note. I used the following powershell script to determine the names of the fields in the content type:
    $site = new-object Microsoft.SharePoint.SPSite("http://www.yousite.com/")
    $web = $site.OpenWeb()
    $list = $web.Lists["YourList"]
    $list.Fields | Format-Table Title, InternalName, TypeAsString
    Previously when I encountered this problem, I simply tried both fields and one would always work. For example, I would try BookAuthor:{Book Author} and BookAuthor{Book Author_0} and one of them would work. In this case, I've tried both and none of them seem
    to yield any results in my query. I noticed that I always seem to get duplicated fields only when I'm using columns of managed metadata type. I know my managed properties work because I can specify manual values and that yields the results I expect, but as
    soon as I try to use the query variable from the page fields, it doesn't work. Strangely enough, I can use the Title or any other non-managed metadata fields of the page in my query variable (e.g. {Page.Title}) and I can get results that way. I've done index
    resets and full crawls but nothing seems to fix this. Any help or insight on this would be greatly appreciated as it is driving me nuts!

    Hi,
    Please refer to the following post:
    Infoobject F4 help in the Query takes lot of time and hangs
    F4 Process takes a long time to show the values
    There are several SAP notes on performance improvement for F4 help as mentioned in the first post. You may refer to the SAP notes as well.
    Hope it helps,
    Thanks,
    Abhishek.

  • Dynamic filtering with BEx query variables in WebI 3.1

    Hi experts.
    Can anybody help me ?
    1) I use BEx query variables in WebI 3.1 .  But i can't understand how to order fields of selection screen in WebI reports
    2) How can i use Dynamic filtering with BEx query variables in WebI 3.1 ?
        It's need that  list of second field on selection screen will be accoding to result of selection first field on selection screen and so on .
        Need i use BEx user-exit variables ?
    Thank you

    Hi,
    1)  Variable sequence isn't respected in XI3.1 - and can't be modified in OLAP.unv  (this enhancement exists in 4.0 )
    2)  Dynamic filtering?  Yes, Exit routines are the best way to go for this.
    Regards,
    H

  • Date Picker for Query Variable

    Hello,
    I have a query, which has a input variable as date. For the Query Variables when i drag and create an input form, i have the field as input field. How do i change this field to a date picker drop down...I do not get any option to make it as a date picker/calendar...
    REgards,
    Vikram

    Hello Vikram,
    If I understand correctly, the field type is String, but it represents a Date. You want to be able to edit it as such.
    1. In the input Form open the Define Data dialog (using the Right Click context menu) and add a field of type Date (letu2019s say its name is u201CDATE1u201D).
    2. On the link between the input Form and the Service Open the Map Data dialog using Right Click => Map Datau2026
    3. Find the relevant Field Assign in the table. Here you want to get the Date value converted into a String. From the Assign Value drop down you can choose Define Expression to open the Dynamic Expression Editor (you can skip this and write the value yourself in the Assign Value input if you know what to write).
    4. On the right hand side you have model elements and functions to create an expression. You can use the function DSTR(@DATE,[format]) u2013 where parameter 1 is the Date field and parameter 2 is the Format (optional). The function returns a String representation of a given Date.
    5. Your expression can look like this for example: =DSTR(@DATE1,"dd/mm/yyyy"), assuming the name of the new Date field in the Form is DATE1.
    6. You can remove the old Text field from the Input Form if you donu2019t need it u2013 using the Define Data dialog.
    Hope this helps,
    Udi

  • Name of the query variables for any BI query

    Hi Experts,
    Wanted to know the query variable names for any query.
    is there any table which stores the names against any query?
    any help is much appriciated.
    thanks in advance,
    Subhasis.

    Hi Rahul,
    thanks for your reply.I have tried with these table but I have not got it.
    my requirement is,I have one query with two variables calmonth and Employee subgroup.
    Now I need the table name where I'll provide the query name and table will return the variable names.
    If the tables which you provided can give the desired output,then pls tell me the input(s) that i need to give to the table.
    thanks in advance,
    Subhasis.

  • 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]

  • 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

  • Query rule using query variables

    Hi All,
    I am working on a query rule in SharePoint 2013. I am trying to build a query text using query variables to provide profile based results to the users. The query text which I am using in the query builder is of the following format:
    {SearchBoxQuery} CombinedLanguage:{User.PreferredContentLanguage}
    but its not taking the user.preferredcontentlanguage value. Has any one worked on similar type of query rules using query variables? Please share your suggestions.
    Thanks !!

    Hi,
    As I understand, you cannot get the user.preferredcontentlanguage value.
    1. Make sure you have set the value of query variable {user.preferredcontentlanguage}, it will return -1 if not set.
    2. Make sure you search in the right result source.
    3. Please check the crawled property mapped to the managed property CombinedLanguage and make sure that there is at least one value indexed by the crawled property equal to the {user.preferredcontentlanguage}.
    The article below is about the query variables.
    https://technet.microsoft.com/en-us/library/jj683123.aspx
    The article below is about the different query variables return different result examples.
    http://techmikael.blogspot.in/2014/05/s15e03-query-variables-constant-trouble.html
    Best regards
    Sara Fan
    TechNet Community Support

  • How to enable wild search(*) on a query variable

    how to enable wild search(*) on a query variable?

    Prakash,
    When you build the variable, what did you use as the "Processing By"? Were there any other special options you had to use to get it to work....This is something our client base would love to use....
    Thank you in advance...
    Jim

Maybe you are looking for

  • How to compare each row in an internal table

    Hi, Say I have an internal table with 3 fields in each row, num1, num2, num3, each type of integer i, now I want to get the maximum of num1, num2, num3 and put this maximum number into num4, may I know how can I do that? Also, if say I need to pull o

  • Video playing issue - Green Band on top of the screen

    I am getting this type of green band repeatedly on YouTube video's in IE 9 on Windows 7 64 bit if Nvidia is engaged. Not with the Intel graphics. I have removed Flash but it won't play or display therefore it using Flash 64bit is installed. I was not

  • t:tree component is not rendering tree structure for my page

    Dear dudes, I want to create a simple tree structure in my jsf page backed by a backing bean. But my jsf page is getting executed but my tree is not getting displayed. my jsf page:<ui:composition xmlns="http://www.w3.org/1999/xhtml"      xmlns:ui="ht

  • Macbook pro 's quality

    I am considering to buy macbook or macbook pro, but i scare of alot of problem of apple's computer now, because some website in asia such as Thailand, they said that since apple produce macbook or macbook pro, the quality is bad because they have alo

  • How could I find the register name?

    I'm using Rslinx OPC server according to the Tutorial, and when I follow the 16th step  in " Configuring an Allen Bradley PLC in RSLinx ", I find that I can not successful do "type the register name you are trying to get data from or writing to". So