Plz give the ans

1)why we used tiff file in  scripts?
2) if we have a quality client 300 in this client is it works scripts?
3) what is difference 4.6 c and 4.7 EE version?
4) give me some idea about ecc 6.0  version?
5) what is the purpose of code inspector?
6) in LSMW  why we prefer session method?why we used direct method some times only?
7) how to debugs smart forms?
8) difference  between split and concatenate?
9) in which situation  we can create secondary index?
10) what r the different type of session?
11)how to handle the error in call traction with step loop?
12)what is conversion routine why we used?
13) can we generated 2 session in BDC ? how?

8)difference between split and concatenate?
Split  will split a string  into different portion  , splitting at a particular charactor.
lets  a = 'a b c d'
split a   at ' '  into  b c d e.
then b ='a'
c = 'b'
d = 'c'
e = 'd'
But concatinate will combaine different pieces of string into one sstring
CONCATENATE b c d e INTO  a.
then a = 'abcd'
11)how to handle the error in call traction with step loop?
data : bdcmsg like bdcmsgcoll occurs 0 with header line.
call transaction 'SE11' using it_bdc mode 'N' update 'A' messages into bdcmsg.
loop at bdcmsg.
call function 'FORMAT_MESSAGE'
exporting
   id              = sy-msgid
   lang            = '-D'
   no              = bdcmsg-msgnr
   v1              = bdcmsg-msgv1
   v2              = bdcmsg-msgv2
   v3              = bdcmsg-msgv3
   v4              = bdcmsg-msgv4
importing
   msg             = bdcmsg-msgv1
exceptions
   not_found       = 1
   others          = 2
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
if bdcmsg-msgnr = 428 .
success = success + 1.
endif.
write: /  bdcmsg-msgv1.
endloop.
Here bdcmsgcoll  is a  message handaling structure  .
13) can we generated 2 session in BDC ? how?
*& Report  ZBDCZMASTERSESSION
report  zbdczmastersession.
tables: plsc.
types: begin of s1,
       empid type zmaster-empid,
       name type zmaster-name,
       age type zmaster-age,
       end of s1.
data : it_tab type s1 occurs 0 with header line.
data : it_bdc type bdcdata occurs 0 with header line.
data : session like apqi-groupid value 'Sar'.
select * from zmaster into table it_tab.
call function 'BDC_OPEN_GROUP'
exporting
client          = sy-mandt
group          = session
user          = sy-uname
exceptions
   client_invalid            = 1
   destination_invalid       = 2
   group_invalid             = 3
   group_is_locked           = 4
   holddate_invalid          = 5
   internal_error            = 6
   queue_error               = 7
   running                   = 8
   system_lock_error         = 9
   user_invalid              = 10
   others                    = 11
if sy-subrc <> 0.
message id sy-msgid type sy-msgty number sy-msgno
         with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
refresh it_bdc.
loop at it_tab.
*IF SY-TABIX < 2.
refresh it_bdc.
perform bdc_dynpro      using 'SAPMSRD0' '0102'.
perform bdc_field       using 'BDC_CURSOR'
                              'RSRD1-TBMA_VAL'.
perform bdc_field       using 'BDC_OKCODE'
                              '=SHOW'.
perform bdc_field       using 'RSRD1-TBMA'
                              'X'.
perform bdc_field       using 'RSRD1-TBMA_VAL'
                              'ZMASTER'.
perform bdc_dynpro      using 'SAPLSD41' '2200'.
perform bdc_field       using 'BDC_OKCODE'
                              '=TDED'.
perform bdc_field       using 'BDC_CURSOR'
                              'DD03P-FIELDNAME(01)'.
perform bdc_dynpro      using '/1BCDWB/DBZMASTER' '0101'.
perform bdc_field       using 'BDC_CURSOR'
                              'ZMASTER-AGE'.
perform bdc_field       using 'BDC_OKCODE'
                              '=SAVE'.
perform bdc_field       using 'ZMASTER-EMPID'
                              it_tab-empid.
perform bdc_field       using 'ZMASTER-NAME'
                              it_tab-name.
perform bdc_field       using 'ZMASTER-AGE'
                              it_tab-age.
perform bdc_dynpro      using '/1BCDWB/DBZMASTER' '0101'.
perform bdc_field       using 'BDC_OKCODE'
                              '/EBACK'.
perform bdc_field       using 'BDC_CURSOR'
                              'ZMASTER-EMPID'.
perform bdc_dynpro      using 'SAPLSD41' '2200'.
perform bdc_field       using 'BDC_OKCODE'
                              '=WB_BACK'.
perform bdc_field       using 'BDC_CURSOR'
                              'DD03P-FIELDNAME(01)'.
perform bdc_dynpro      using 'SAPMSRD0' '0102'.
perform bdc_field       using 'BDC_CURSOR'
                              'RSRD1-TBMA_VAL'.
perform bdc_field       using 'BDC_OKCODE'
                              '=BACK'.
perform bdc_field       using 'RSRD1-TBMA'
                              'X'.
perform bdc_field       using 'RSRD1-TBMA_VAL'
                              'ZMASTER'.
*call transaction 'SE11' using it_bdc mode 'A' UPDATE 'A' MESSAGES INTO BDCMSG.
*CALL FUNCTION 'BDC_INSERT'
EXPORTING
  TCODE                  = 'SE11'
*TABLES
*DYNPROTAB     = IT_BDC
EXCEPTIONS
  INTERNAL_ERROR         = 1
  NOT_OPEN               = 2
  QUEUE_ERROR            = 3
  TCODE_INVALID          = 4
  PRINTING_INVALID       = 5
  POSTING_INVALID        = 6
  OTHERS                 = 7
*IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
*ENDIF.
*WRITE:/ ' CREATED '.
*ENDIF.
endloop.
call function 'BDC_CLOSE_GROUP'
exceptions
   not_open          = 1
   queue_error       = 2
   others            = 3
if sy-subrc <> 0.
message id sy-msgid type sy-msgty number sy-msgno
         with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
*call transaction 'SM35'.
*SUBMIT RSBDCSUB.
*SUBMIT RSBDCreo.
submit rsbdclog.
       Start new screen                                              *
form bdc_dynpro using program dynpro.
  clear it_bdc.
  it_bdc-program  = program.
  it_bdc-dynpro   = dynpro.
  it_bdc-dynbegin = 'X'.
  append it_bdc.
endform.
       Insert field                                                  *
form bdc_field using fnam fval.
  if fval <> ''.
    clear it_bdc.
    it_bdc-fnam = fnam.
    it_bdc-fval = fval.
    append it_bdc.
  endif.
endform.
'BDC_OPEN_GROUP' will create sessions

Similar Messages

  • Plz give the difference between procedure and function atleast 10 differenc

    plz give the difference between procedure and function atleast 10 differenc

    From http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_packages.htm#i1006378
    >
    The only difference between procedures and functions is that functions always return a single value to the caller, while procedures do not return a value to the caller.
    >
    Edited by: P. Forstmann on 28 oct. 2010 15:30

  • It is Very simple but intresting...........plz give me ans of my simple pro

    <h4>
    Hi friends ,
    I have some probs. that i can not understood the
    logic behind this......if any one know plz reply me.
    This is one sample prog.
    class test
         public static void main(String str[])
              int i=10;
              int j=i++;
              System.out.println(j + " " + i);
    output : i=11 and j=10
    =================================================================
    now if i change this prog.
    class test
         public static void main(String str[])
              int i=10;
              i=i++;
              System.out.println(i);
    now it display value of i is : 10
    why ? the rule of post increment is that first
    assign the value and then increment the value of the
    variable. But when i m using same var. as left side
    it will not increment.
    Can any one help me why is it?
    plz reply me if u know...
    Thank You in Advance.
    </h4>

    ThomHehl wrote:
    I'm just kinda spitballing here, but you have to think about the way this gets translated into machine code.
    When you do an assignment, it moves a value from one memory location to another. When it sees both assignments and that there are further operations to do on the sending part, in order to prevent the value from getting "stepped on" it first creates a new memory location to store the value, then continues processing what is still in the register. In this case, it increments i after the new location has been created.
    This is how it would operate if precedence is to work properly and you had further operations that were lower priority than assignment. Make sense?No.
    Whenever we have LHS = RHS; RHS is evaulated completely and the value of the RHS expression is then stored in the LHS variable. In the case of i = i++; we first evaluate the i++, which has the side effect of incrementing i. Then the value of the expression i++ is stored in the LHS--in i.
    Since the value of i++ is i's original value (Remember, the post-increment operator increments the variable after getting its current value), that's what's stored in the LHS as a result of the assignment.
    int i = 1;
    i = i++;
    // is equivalent to
    int i = 1;
    tmp = i; // get original value of i as the value of the expression i++, tmp = 1
    i = i + 1; // increment i, i = 2
    i = tmp; // this is the "i = " part

  • I WANNA LEARN BI7.0 AS STEP BYSTEP plz give the sujestions for tht

    hai this is satish
            i wanna to learn bi7 so plzzzz help to m e

    hi satish,
    check out the following link it will guide you to know about BI object creation.
    http://help.sap.com/saphelp_nw04s/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    if helpful provide points.
    regards
    harikrishna N

  • Hello Apple, Plz give us the classic look option like iOS 6. We miss that appearance which shew all icons as a gems but now in ios 7 all icons look like a cheap stickers and worst than android look. Plz think about it, heartily request to You dear Apple.

    Hello Apple, Plz give us the classic look option like iOS 6. We miss that appearance which shew all icons as a gems but now in ios 7 all icons look like a cheap stickers and worst than android look. Plz think about it, heartily request to You dear Apple.

    There is no Apple in this forum this is a user to user forum.
    send your feedback here http://www.apple.com/feedback/

  • I having apple 8 GB ipod , i need saving my pictures ipod to my computer, plz give me the method.............!

    i having apple 8 GB ipod nano , i need saving my pictures ipod to my computer, plz give me the method or solution............!

    You'll likely need the assistance of some third party software such as the one below to get the job done.  Keep in mind that your photos will no longer be in their full resolution, but instead will be the scaled down thumbnail versions that were optimized for viewing on your iPod.
    http://www.macroplant.com/phonetopc/
    Google "copy photos from iPod" for more possible software solutions.
    B-rock

  • Hello dear repersented. i have a iphone 3g seriel no.85945sy43nr using at saudi arbia bcz this phone is coming from Uk thats y the sim is not working at here . so plz give me sulution of this problum.

    hello dear repersented. i have a iphone 3g seriel no.85945sy43nr using at saudi arbia bcz this phone is coming from Uk thats y the sim is not working at here . so plz give me sulution of this problum.

    um..pretty simple solution. when you bought this iphone its obviously still linked to the old sim which is probably a UK carrier. you need to contact whoever you bought it from and get them to pay the fee to use this phone on a saudi arabian sim.

  • I create an id. on review option when i enter visa card and security code, it always gives an error msg "Invalid Secruity code". but i use this code for money withdraw from ATM and for shopping also. plz tell the solution ????

    i create an id. on review option when i enter visa card and security code, it always gives an error msg "Invalid Secruity code". but i use this code for money withdraw from ATM and for shopping also. plz tell the solution ????

    The code they are asking for is the last three digits of the number on the back of the card (you don't use this when using an ATM or presenting the card in shops).

  • Hiii..the lan setting does niot configure in my mac os x 10.8.2...plz give me the clue that i configure my setting easily.

    the lan setting does niot configure in my mac os x 10.8.2...plz give me the clue that i configure my setting easily.

    How to set up Outlook.com with IMAP
    Outlook.com or Hotmail.com IMAP setup
    Getting Hotmail IMAP to Work on a Mac

  • HT1751 I cant able to retrieve my contacts from the library .So plz give solution :)

    I cant able to retrieve my contacts from the library .So plz give solution

    With your iPod connected to iTunes right->click on it's device name in the left hand pane of iTunes under devices and select Export Playlists.
    B-rock

  • How to give the no of lines per a page in alv report

    hi
    could u plz inform me
    how to give the no of lines per page in alv report
    in ordinary report we can give line-count na
    how can we give in alvs.
    thanx
    kals.

    Hi Kalyan,
    There is another Forum(Abap Development) where u can post abap related stuffs and u can also get quick answers there..
    Cheers...
    Santosh

  • Plz chk the code wats wrong in it

    hi
    i m having itab with vbeln
    and ztable with objnr and ordsent.
    where objnr and vbeln are equal
    so now when i find objnr EQ vbeln i have to modify the ztable-ordsent = ' '.
    i have writen the followin code
    LOOP AT lt_ztsd2marc INTO ls_ztsd2marc.
        READ TABLE ct_success INTO ls_success WITH KEY ordnr =
        ls_ztsd2marc-ordnr.
        IF sy-subrc EQ 0.
          ls_ztsd2marc-ordsent = ' '.
          MODIFY TABLE lt_ztsd2marc FROM ls_ztsd2marc TRANSPORTING ordsent .
          MODIFY ztsd2marc FROM TABLE lt_ztsd2marc.
          IF sy-subrc EQ 0.
            MESSAGE s112(z2).
          ENDIF.
        ENDIF.
      ENDLOOP.
    its updating it in work area but the changes are not gettin reflected in the internal table and not even in my ztable ztsd2marc.
    plz tell me wat is wrong in this code?

    hi..
    jus try the code below.. it'll def give the solution to ur question.
    i've jus modified little of ur code that u posted.
    LOOP AT lt_ztsd2marc INTO ls_ztsd2marc.
    READ TABLE ct_success INTO ls_success WITH KEY ordnr =
    ls_ztsd2marc-ordnr.
    IF sy-subrc EQ 0.
    ls_ztsd2marc-ordsent = ' '.
    MODIFY TABLE lt_ztsd2marc FROM ls_ztsd2marc TRANSPORTING ordsent
    where ordnr = ls_ztsd2marc-ordnr .
    **MODIFY ztsd2marc FROM TABLE lt_ztsd2marc.
    update ztsd2marc set ordsent = it_ztsd2marc-orsent
    where ordnr = it_ztsd2marc-ordnr.
    IF sy-subrc EQ 0.
    MESSAGE s112(z2).
    ENDIF.
    ENDIF.
    ENDLOOP.
    all the best

  • I have iphone 5S after update of 8.0 and 8.0.2 t consume battery very much( only 3 hrs backup). Plz give some solution.Now i am going frustrated from Apple

    I have iphone 5S after update of 8.0 and 8.0.2 t consume battery very much( only 3 hrs backup). Plz give some solution.Now i am going frustrated from Apple

    I'm not sure, but I know it's not recommended to upgrade to iOS 8 on anything older than an iPhone 5. I only lost my music playlists and music that was on my phone, but that music is also on my iTunes, not the playlists though, and I don't want to go through ALL my iTunes library to fix it either... But it seems I don't have a choice right now.
    Whatever you do, do NOT upgrade to iCloud Drive, keep iCloud till OS X Yosemite comes out, if your computer is a Mac. I also just noticed that all my documents on my phone are gone from Pages, BUT if I go on the iCloud website they are still there. Hopefully it will all work itself out when I can update my macbook pro to OS X Yosemite.
    If you backed up your phone and all your purchases off your iPhone prior to trying to upgrade you should be fine... But I'm not even remotely sure.

  • I m a new user plz give me icloud account bt previous owner she dead and i dont know about this information this phone. plz Help me icloud account as early as possible

    i m a new user plz give me icloud account bt previous owner she dead and i dont know about this information this phone. plz Help me icloud account as early as possible

    Apple is not here and will NOT give you the information. Contact the relatives of the "dead" owner.

  • I have iPhone 4 and I have purchased this from Dubai and now I am in India but now my phone didnot working here .so plz give me solution for this so I will use this in India.can I factory unlocked my iPhone by apple store at jaipur india

    I have iPhone 4 and I have purchased this from Dubai and now I am in India but now my phone didnot working here .so plz give me solution for this so I will use this in India.can I factory unlocked my iPhone by apple store at jaipur india

    ONLY the carrier it is locked to can authorize unlocking it. Most have restrictions in that you must be a current customer and have maintained service for a minimum period of time. Do yourself a favor, sell it and purchase a phone in India instead.

Maybe you are looking for

  • Adding Pre. account no. field from vendor master to PO header screen

    Hi, I want to add the field lfb1-altkn (Pre.acct.no.) to the purchase order header screen under org structure tab. This field has to contain the value from the Vendor Master Accounting Information View Prev.acct no. field. Please let me know how to p

  • Adobe PDF email problem

    Hello all, I use "Scansoft" to create pdf's of excell sheets, I then just click on email to create an email to send using "Thunderbird" I've used this method without fail over the last few years.  The problem I now have is as I click on email after c

  • Embedding YouTube videos in iWeb 08 -

    Is this possible? Can you point me in the right direction if it can be done on iWeb 1.1.2? Thanks!

  • Records Management - transports

    Hello, i have a question regarded to Records Management. Does anybody know how to add to the transport request more documents all at once? We just know how to add one document and it's quite annoying if there is like 50 documents and we need to repea

  • External editing

    how do I select multiple photos in lightroom and then open them to edit in photoshop?